/* source/reset/reset.less */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
[tabindex="-1"]:focus {
  outline: none !important;
}
[hidden] {
  display: none !important;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
svg:not(:root) {
  overflow: hidden;
}
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
img:not([alt]) {
  filter: blur(2px);
}
article > * + * {
  margin-top: 1em;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
[disabled],
.disabled {
  pointer-events: none !important;
  color: lightgray !important;
}

/* source/common-css/media.less */
:root {
  --media-fs: 0;
  --media-xs: 360px;
  --media-sm: 576px;
  --media-ld: 640px;
  --media-md: 768px;
  --media-lg: 992px;
  --media-xl: 1200px;
  --media-xxl: 1400px;
  --media-xxxl: 2000px;
}

/* source/common-css/base-theme.less */
:root {
  --layout-fs: 0;
  --layout-xs: 360px;
  --layout-sm: 576px;
  --layout-ld: 640px;
  --layout-md: 768px;
  --layout-lg: 992px;
  --layout-xl: 1200px;
  --layout-xxl: 1400px;
  --layout-xxxl: 2000px;
  --control-height-normal: 36px;
  --control-height-mini: 20px;
  --control-height-small: 26px;
  --control-height-medium: 30px;
  --control-height-large: 54px;
}
:root {
  --default-background: #fff;
  --default-color: #191919;
  --default-color-hover: #000000;
  --default-background-disabled: #f7f8fa;
  --default-color-disabled: #c9ccd6;
  --body-background: var(--default-background);
  --body-color: var(--default-color);
  --body-color-secondary: #a2a5b1;
  --border-color: #e8e8e8;
  --link-color: #5a87cb;
  --link-color-hover: #0056B3FF;
  --selected-color: #1FB1F8FF;
  --selected-row-background: #f5f8fe;
  --selected-item-background: #d4e2ff;
}
.dark-side {
  --default-background: #1e1f22;
  --default-color: #dbdfe7;
  --default-color-hover: #dbdfe7;
  --default-background-disabled: #343637;
  --default-color-disabled: #54565a;
  --body-background: var(--default-background);
  --body-color: var(--default-color);
  --body-color-secondary: #c0c0c0;
  --border-color: #4a4d51;
  --link-color: #4493f8;
  --link-color-hover: #2771d1;
  --selected-row-background: #26282e;
  --selected-item-background: #2e436e;
}
body {
  background-color: var(--body-background);
  color: var(--body-color);
}

/* source/common-css/ani.less */
:root {
  --base-duration-0: 0ms;
  --base-duration-100: 100ms;
  --base-duration-1000: 1s;
  --base-duration-200: 200ms;
  --base-duration-300: 300ms;
  --base-duration-400: 400ms;
  --base-duration-500: 500ms;
  --base-duration-600: 600ms;
  --base-duration-700: 700ms;
  --base-duration-800: 800ms;
  --base-duration-900: 900ms;
  --base-easing-easeIn: cubic-bezier(0.7, 0.1, 0.75, 0.9);
  --base-easing-easeInOut: cubic-bezier(0.6, 0, 0.2, 1);
  --base-easing-easeOut: cubic-bezier(0.3, 0.8, 0.6, 1);
  --base-easing-linear: cubic-bezier(0, 0, 1, 1);
}
.ani-spin,
.ani-hover-spin:hover {
  animation: ani-spin 1.5s linear infinite;
}
.ani-spin-reverse,
.ani-hover-spin-reverse:hover {
  animation: ani-spin-reverse 1.5s linear infinite;
}
.ani-pulse,
.ani-hover-pulse:hover {
  animation: ani-pulse 1.7s infinite;
}
.ani-spanner,
.ani-hover-spanner:hover {
  transform-origin: 90% 35%;
  animation: ani-wrench 2.5s ease infinite;
}
.ani-ring,
.ani-hover-ring:hover {
  transform-origin: 50% 0;
  animation: ani-ring 2s ease infinite;
}
.ani-vertical,
.ani-hover-vertical:hover {
  animation: ani-vertical 2s ease infinite;
}
.ani-horizontal,
.ani-hover-horizontal:hover {
  animation: ani-horizontal 2s ease infinite;
}
.ani-flash,
.ani-hover-flash:hover {
  animation: ani-flash 2s ease infinite;
}
.ani-bounce,
.ani-hover-bounce:hover {
  animation: ani-bounce 2s ease infinite;
}
.ani-float,
.ani-hover-float:hover {
  animation: ani-float 2s linear infinite;
}
.ani-heartbeat,
.ani-hover-heartbeat:hover {
  animation: ani-heartbeat 2s linear infinite;
}
.ani-shake,
.ani-hover-shake:hover {
  animation: ani-wrench 2.5s ease infinite;
}
.ani-shuttle,
.ani-hover-shuttle:hover {
  animation: ani-shuttle 2s linear infinite;
}
.ani-pass,
.ani-hover-pass:hover {
  animation: ani-pass 2s linear infinite;
}
.ani-ripple,
.ani-hover-ripple:hover {
  animation: ani-ripple 2s infinite linear;
}
@keyframes swinging {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(10deg);
  }
  10% {
    transform: rotate(-9deg);
  }
  15% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(-7deg);
  }
  25% {
    transform: rotate(6deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  35% {
    transform: rotate(4deg);
  }
  40% {
    transform: rotate(-3deg);
  }
  45% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes cubemove {
  25% {
    transform: translateX(10px) rotate(-90deg);
  }
  50% {
    transform: translateX(10px) translateY(10px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(10px) translateY(10px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(10px) rotate(-270deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes orbit {
  0% {
    opacity: 1;
    animation-timing-function: ease-out;
    transform: rotate(225deg);
  }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear;
  }
  35% {
    transform: rotate(495deg);
    animation-timing-function: ease-in-out;
  }
  42% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  70% {
    opacity: 1;
    transform: rotate(835deg);
    animation-timing-function: linear;
  }
  76% {
    opacity: 1;
  }
  77% {
    transform: rotate(955deg);
    animation-timing-function: ease-in;
  }
  78% {
    transform: rotate(955deg);
    opacity: 0;
  }
  100% {
    transform: rotate(955deg);
    opacity: 0;
  }
}
@keyframes metro-slide {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes metro-opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ani-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes ani-spin-reverse {
  0% {
    transform: rotate(359deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes ani-pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes ani-wrench {
  0% {
    transform: rotate(-12deg);
  }
  8% {
    transform: rotate(12deg);
  }
  10% {
    transform: rotate(24deg);
  }
  18% {
    transform: rotate(-24deg);
  }
  20% {
    transform: rotate(-24deg);
  }
  28% {
    transform: rotate(24deg);
  }
  30% {
    transform: rotate(24deg);
  }
  38% {
    transform: rotate(-24deg);
  }
  40% {
    transform: rotate(-24deg);
  }
  48% {
    transform: rotate(24deg);
  }
  50% {
    transform: rotate(24deg);
  }
  58% {
    transform: rotate(-24deg);
  }
  60% {
    transform: rotate(-24deg);
  }
  68% {
    transform: rotate(24deg);
  }
  75% {
    transform: rotate(0deg);
  }
}
@keyframes ani-ring {
  0% {
    transform: rotate(-15deg);
  }
  2% {
    transform: rotate(15deg);
  }
  4% {
    transform: rotate(-18deg);
  }
  6% {
    transform: rotate(18deg);
  }
  8% {
    transform: rotate(-22deg);
  }
  10% {
    transform: rotate(22deg);
  }
  12% {
    transform: rotate(-18deg);
  }
  14% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-12deg);
  }
  18% {
    transform: rotate(12deg);
  }
  20% {
    transform: rotate(0deg);
  }
}
@keyframes ani-vertical {
  0% {
    transform: translate(0, -3px);
  }
  4% {
    transform: translate(0, 3px);
  }
  8% {
    transform: translate(0, -3px);
  }
  12% {
    transform: translate(0, 3px);
  }
  16% {
    transform: translate(0, -3px);
  }
  20% {
    transform: translate(0, 3px);
  }
  22% {
    transform: translate(0, 0);
  }
}
@keyframes ani-horizontal {
  0% {
    transform: translate(0, 0);
  }
  6% {
    transform: translate(5px, 0);
  }
  12% {
    transform: translate(0, 0);
  }
  18% {
    transform: translate(5px, 0);
  }
  24% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(5px, 0);
  }
  36% {
    transform: translate(0, 0);
  }
}
@keyframes ani-flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes ani-bounce {
  0%, 10%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes ani-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani-heartbeat {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes ani-shuttle {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-8deg);
  }
  30%, 50%, 70% {
    transform: scale(1.3) rotate(8deg);
  }
  40%, 60% {
    transform: scale(1.3) rotate(-8deg);
  }
  80% {
    transform: scale(1) rotate(0);
  }
}
@keyframes ani-pass {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  50% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateX(50%);
    opacity: 0;
  }
}
@keyframes ani-ripple {
  0% {
    opacity: 0.6;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ani-shrink {
  0% {
    transform: scale(1);
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes ani-pre-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ani-bg-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* source/common-css/border.less */
:root {
  --border-radius: 6px;
}
.no-border {
  border: 0 !important;
}
.no-border-left {
  border-left: none !important;
}
.no-border-right {
  border-right: none !important;
}
.no-border-top {
  border-top: none !important;
}
.no-border-bottom {
  border-bottom: none !important;
}
.no-border-visible {
  border-color: transparent !important;
}
.border-none {
  border: 0 !important;
}
.border-left-none {
  border-left: none !important;
}
.border-right-none {
  border-right: none !important;
}
.border-top-none {
  border-top: none !important;
}
.border-bottom-none {
  border-bottom: none !important;
}
.border-visible-none {
  border-color: transparent !important;
}
.border {
  border: 1px solid transparent;
}
.border-left {
  border-left: 1px solid transparent;
}
.border-right {
  border-right: 1px solid transparent;
}
.border-top {
  border-top: 1px solid transparent;
}
.border-bottom {
  border-bottom: 1px solid transparent;
}
.border-radius,
.rounded {
  border-radius: var(--border-radius);
}
.border-radius-half,
.to-cycle {
  border-radius: 50%;
}
.border-size-1 {
  border-width: 1px !important;
}
.border-radius-1 {
  border-radius: 1px !important;
}
.border-size-2 {
  border-width: 2px !important;
}
.border-radius-2 {
  border-radius: 2px !important;
}
.border-size-3 {
  border-width: 3px !important;
}
.border-radius-3 {
  border-radius: 3px !important;
}
.border-size-4 {
  border-width: 4px !important;
}
.border-radius-4 {
  border-radius: 4px !important;
}
.border-size-5 {
  border-width: 5px !important;
}
.border-radius-5 {
  border-radius: 5px !important;
}
.border-size-6 {
  border-width: 6px !important;
}
.border-radius-6 {
  border-radius: 6px !important;
}
.border-size-7 {
  border-width: 7px !important;
}
.border-radius-7 {
  border-radius: 7px !important;
}
.border-size-8 {
  border-width: 8px !important;
}
.border-radius-8 {
  border-radius: 8px !important;
}
.border-size-9 {
  border-width: 9px !important;
}
.border-radius-9 {
  border-radius: 9px !important;
}
.border-size-10 {
  border-width: 10px !important;
}
.border-radius-10 {
  border-radius: 10px !important;
}
.border-size-11 {
  border-width: 11px !important;
}
.border-radius-11 {
  border-radius: 11px !important;
}
.border-size-12 {
  border-width: 12px !important;
}
.border-radius-12 {
  border-radius: 12px !important;
}
.border-size-13 {
  border-width: 13px !important;
}
.border-radius-13 {
  border-radius: 13px !important;
}
.border-size-14 {
  border-width: 14px !important;
}
.border-radius-14 {
  border-radius: 14px !important;
}
.border-size-15 {
  border-width: 15px !important;
}
.border-radius-15 {
  border-radius: 15px !important;
}
.border-size-16 {
  border-width: 16px !important;
}
.border-radius-16 {
  border-radius: 16px !important;
}
.border-size-17 {
  border-width: 17px !important;
}
.border-radius-17 {
  border-radius: 17px !important;
}
.border-size-18 {
  border-width: 18px !important;
}
.border-radius-18 {
  border-radius: 18px !important;
}
.border-size-19 {
  border-width: 19px !important;
}
.border-radius-19 {
  border-radius: 19px !important;
}
.border-size-20 {
  border-width: 20px !important;
}
.border-radius-20 {
  border-radius: 20px !important;
}
@container (min-width: 0) {
  .border-none-fs {
    border: none !important;
  }
  .border-top-none-fs {
    border-top: none !important;
  }
  .border-right-none-fs {
    border-right: none !important;
  }
  .border-bottom-none-fs {
    border-bottom: none !important;
  }
  .border-left-none-fs {
    border-left: none !important;
  }
}
@container (min-width: 360px) {
  .border-none-xs {
    border: none !important;
  }
  .border-top-none-xs {
    border-top: none !important;
  }
  .border-right-none-xs {
    border-right: none !important;
  }
  .border-bottom-none-xs {
    border-bottom: none !important;
  }
  .border-left-none-xs {
    border-left: none !important;
  }
}
@container (min-width: 576px) {
  .border-none-sm {
    border: none !important;
  }
  .border-top-none-sm {
    border-top: none !important;
  }
  .border-right-none-sm {
    border-right: none !important;
  }
  .border-bottom-none-sm {
    border-bottom: none !important;
  }
  .border-left-none-sm {
    border-left: none !important;
  }
}
@container (min-width: 640px) {
  .border-none-ld {
    border: none !important;
  }
  .border-top-none-ld {
    border-top: none !important;
  }
  .border-right-none-ld {
    border-right: none !important;
  }
  .border-bottom-none-ld {
    border-bottom: none !important;
  }
  .border-left-none-ld {
    border-left: none !important;
  }
}
@container (min-width: 768px) {
  .border-none-md {
    border: none !important;
  }
  .border-top-none-md {
    border-top: none !important;
  }
  .border-right-none-md {
    border-right: none !important;
  }
  .border-bottom-none-md {
    border-bottom: none !important;
  }
  .border-left-none-md {
    border-left: none !important;
  }
}
@container (min-width: 992px) {
  .border-none-lg {
    border: none !important;
  }
  .border-top-none-lg {
    border-top: none !important;
  }
  .border-right-none-lg {
    border-right: none !important;
  }
  .border-bottom-none-lg {
    border-bottom: none !important;
  }
  .border-left-none-lg {
    border-left: none !important;
  }
}
@container (min-width: 1200px) {
  .border-none-xl {
    border: none !important;
  }
  .border-top-none-xl {
    border-top: none !important;
  }
  .border-right-none-xl {
    border-right: none !important;
  }
  .border-bottom-none-xl {
    border-bottom: none !important;
  }
  .border-left-none-xl {
    border-left: none !important;
  }
}
@container (min-width: 1400px) {
  .border-none-xxl {
    border: none !important;
  }
  .border-top-none-xxl {
    border-top: none !important;
  }
  .border-right-none-xxl {
    border-right: none !important;
  }
  .border-bottom-none-xxl {
    border-bottom: none !important;
  }
  .border-left-none-xxl {
    border-left: none !important;
  }
}
@container (min-width: 2000px) {
  .border-none-xxxl {
    border: none !important;
  }
  .border-top-none-xxxl {
    border-top: none !important;
  }
  .border-right-none-xxxl {
    border-right: none !important;
  }
  .border-bottom-none-xxxl {
    border-bottom: none !important;
  }
  .border-left-none-xxxl {
    border-left: none !important;
  }
}
.border-solid {
  border-style: solid !important;
}
.border-dashed {
  border-style: dashed !important;
}
.border-dotted {
  border-style: dotted !important;
}
.border-double {
  border-style: double !important;
}
.border-groove {
  border-style: groove !important;
}
.border-inset {
  border-style: inset !important;
}
.border-outset {
  border-style: outset !important;
}
.border-ridge {
  border-style: ridge !important;
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: true; }
:root {
  --animated-border-speed: 3s;
  --animated-border-size: 2px;
  --animated-border-color: #50a8ff;
  --animated-border-color-1: #ff4545;
  --animated-border-color-2: #00ff99;
  --animated-border-color-3: #006aff;
  --animated-border-color-4: #ff0095;
  --animated-border-color-5: #ff4545;
}
.rainbow-border::after,
[class*=rainbow-border-]::after,
.rainbow-border::before,
[class*=rainbow-border-]::before {
  content: "";
  position: absolute;
  background-image:
    conic-gradient(
      from var(--angle),
      var(--animated-border-color-1),
      var(--animated-border-color-2),
      var(--animated-border-color-3),
      var(--animated-border-color-4),
      var(--animated-border-color-5));
  top: calc(var(--animated-border-size) * -1);
  left: calc(var(--animated-border-size) * -1);
  z-index: -1;
  padding: 4px;
  border-radius: inherit;
  width: calc(100% + var(--animated-border-size) * 2);
  height: calc(100% + var(--animated-border-size) * 2);
  animation: var(--animated-border-speed) spin-angle linear infinite;
}
.rainbow-border::before,
[class*=rainbow-border-]::before {
  filter: blur(0.5rem);
  opacity: 0.5;
}
.rainbow-border-hover::after,
.rainbow-border-hover::before {
  background-image: initial;
  transition: opacity 0.5s;
  opacity: 0;
}
.rainbow-border-hover:hover::after,
.rainbow-border-hover:hover::before {
  opacity: 1;
  background-image:
    conic-gradient(
      from var(--angle),
      #ff4545,
      #00ff99,
      #006aff,
      #ff0095,
      #ff4545);
}
.animated-border::before,
[class*=animated-border-]::before {
  content: "";
  position: absolute;
  width: calc(100% + var(--animated-border-size) * 2);
  height: calc(100% + var(--animated-border-size) * 2);
  background:
    repeating-conic-gradient(
      from var(--angle),
      var(--animated-border-color) 0%,
      var(--animated-border-color) 5%,
      transparent 5%,
      transparent 40%,
      var(--animated-border-color) 50%);
  border-radius: inherit;
  animation: spin-angle var(--animated-border-speed) linear infinite;
  inset: calc(-1 * var(--animated-border-size));
  z-index: -1;
}
.animated-border-hover::before,
[class*=animated-border-hover-]::before {
  background: initial;
  transition: opacity 0.5s;
  opacity: 0;
}
.animated-border-hover:hover::before,
[class*=animated-border-hover-]:hover::before {
  opacity: 1;
  background:
    repeating-conic-gradient(
      from var(--angle),
      var(--animated-border-color) 0%,
      var(--animated-border-color) 5%,
      transparent 5%,
      transparent 40%,
      var(--animated-border-color) 50%);
}
.animated-border-lime,
.animated-border-hover-lime {
  --animated-border-color: #AEFD6C;
}
.animated-border-green,
.animated-border-hover-green {
  --animated-border-color: #00b500;
}
.animated-border-emerald,
.animated-border-hover-emerald {
  --animated-border-color: #50c878;
}
.animated-border-blue,
.animated-border-hover-blue {
  --animated-border-color: #5e87ff;
}
.animated-border-teal,
.animated-border-hover-teal {
  --animated-border-color: #1ac5c5;
}
.animated-border-cyan,
.animated-border-hover-cyan {
  --animated-border-color: #94b6ff;
}
.animated-border-cobalt,
.animated-border-hover-cobalt {
  --animated-border-color: #0047ab;
}
.animated-border-indigo,
.animated-border-hover-indigo {
  --animated-border-color: #6400a8;
}
.animated-border-almost,
.animated-border-hover-almost {
  --animated-border-color: #6a2ded;
}
.animated-border-violet,
.animated-border-hover-violet {
  --animated-border-color: #ee82ee;
}
.animated-border-pink,
.animated-border-hover-pink {
  --animated-border-color: #ffc0cb;
}
.animated-border-magenta,
.animated-border-hover-magenta {
  --animated-border-color: #ff00ff;
}
.animated-border-crimson,
.animated-border-hover-crimson {
  --animated-border-color: #df0e38;
}
.animated-border-red,
.animated-border-hover-red {
  --animated-border-color: #ff0000;
}
.animated-border-orange,
.animated-border-hover-orange {
  --animated-border-color: #ffa500;
}
.animated-border-amber,
.animated-border-hover-amber {
  --animated-border-color: #ffca2a;
}
.animated-border-yellow,
.animated-border-hover-yellow {
  --animated-border-color: #ffe95e;
}
.animated-border-brown,
.animated-border-hover-brown {
  --animated-border-color: #ca773c;
}
.animated-border-olive,
.animated-border-hover-olive {
  --animated-border-color: #a1a100;
}
.animated-border-steel,
.animated-border-hover-steel {
  --animated-border-color: #7b91a6;
}
.animated-border-mauve,
.animated-border-hover-mauve {
  --animated-border-color: #e0afff;
}
.animated-border-taupe,
.animated-border-hover-taupe {
  --animated-border-color: #977e67;
}
.animated-border-champagne,
.animated-border-hover-champagne {
  --animated-border-color: #f7e6ca;
}
.animated-border-khaki,
.animated-border-hover-khaki {
  --animated-border-color: #d5c58a;
}
.animated-border-charcoal,
.animated-border-hover-charcoal {
  --animated-border-color: #989898;
}
.animated-border-bronze,
.animated-border-hover-bronze {
  --animated-border-color: #e48d3e;
}
.animated-border-windstorm,
.animated-border-hover-windstorm {
  --animated-border-color: #799ed6;
}
.animated-border-nude,
.animated-border-hover-nude {
  --animated-border-color: #f7d9bc;
}
.animated-border-terracotta,
.animated-border-hover-terracotta {
  --animated-border-color: #e35336;
}
.animated-border-coral,
.animated-border-hover-coral {
  --animated-border-color: #ff8559;
}
.animated-border-army,
.animated-border-hover-army {
  --animated-border-color: #5d6532;
}
.animated-border-seashell,
.animated-border-hover-seashell {
  --animated-border-color: #fff1e7;
}
.animated-border-sand,
.animated-border-hover-sand {
  --animated-border-color: #f1e0ae;
}
@keyframes spin-angle {
  to {
    --angle: 360deg;
  }
}
*:has([class*=animated-border-], [class*=rainbow-border]) {
  position: relative;
  z-index: 1;
}

/* source/common-css/cursors.less */
.c-auto {
  cursor: auto;
}
.c-default {
  cursor: default;
}
.c-none {
  cursor: none;
}
.c-help {
  cursor: help;
}
.c-pointer {
  cursor: pointer;
}
.c-progress {
  cursor: progress;
}
.c-wait {
  cursor: wait;
}
.c-cell {
  cursor: cell;
}
.c-crosshair {
  cursor: crosshair;
}
.c-text {
  cursor: text;
}
.c-text-vertical {
  cursor: vertical-text;
}
.c-alias {
  cursor: alias;
}
.c-copy {
  cursor: copy;
}
.c-move {
  cursor: move;
}
.c-no-drop {
  cursor: no-drop;
}
.c-not-allowed {
  cursor: not-allowed;
}
.c-all-scroll {
  cursor: all-scroll;
}
.c-col-resize {
  cursor: col-resize;
}
.c-row-resize {
  cursor: row-resize;
}
.c-n-resize {
  cursor: n-resize;
}
.c-e-resize {
  cursor: e-resize;
}
.c-s-resize {
  cursor: s-resize;
}
.c-w-resize {
  cursor: w-resize;
}
.c-ne-resize {
  cursor: ne-resize;
}
.c-nw-resize {
  cursor: nw-resize;
}
.c-se-resize {
  cursor: se-resize;
}
.c-sw-resize {
  cursor: sw-resize;
}
.c-ew-resize {
  cursor: ew-resize;
}
.c-ns-resize {
  cursor: ns-resize;
}
.c-nesw-resize {
  cursor: nesw-resize;
}
.c-nwse-resize {
  cursor: nwse-resize;
}
.c-zoom-in {
  cursor: zoom-in;
}
.c-zoom-out {
  cursor: zoom-out;
}
.c-grab {
  cursor: grab;
}
.c-grabbing {
  cursor: grabbing;
}
.c-none {
  cursor: none;
}

/* source/common-css/debug.less */
.debug {
  outline: 1px dotted red !important;
  min-width: 1px;
  min-height: 1px;
}

/* source/common-css/display.less */
.visible {
  visibility: visible !important;
}
.no-visible {
  visibility: hidden !important;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
@container (min-width: 0) {
  .visible-fs {
    visibility: visible !important;
  }
  .no-visible-fs {
    visibility: hidden !important;
  }
  .d-none-fs {
    display: none !important;
  }
  .d-block-fs {
    display: block !important;
  }
  .d-inline-fs {
    display: inline !important;
  }
  .d-inline-block-fs {
    display: inline-block !important;
  }
  .d-table-fs {
    display: table !important;
  }
  .d-table-row-fs {
    display: table-row !important;
  }
  .d-table-cell-fs {
    display: table-cell !important;
  }
}
@container (min-width: 360px) {
  .visible-xs {
    visibility: visible !important;
  }
  .no-visible-xs {
    visibility: hidden !important;
  }
  .d-none-xs {
    display: none !important;
  }
  .d-block-xs {
    display: block !important;
  }
  .d-inline-xs {
    display: inline !important;
  }
  .d-inline-block-xs {
    display: inline-block !important;
  }
  .d-table-xs {
    display: table !important;
  }
  .d-table-row-xs {
    display: table-row !important;
  }
  .d-table-cell-xs {
    display: table-cell !important;
  }
}
@container (min-width: 576px) {
  .visible-sm {
    visibility: visible !important;
  }
  .no-visible-sm {
    visibility: hidden !important;
  }
  .d-none-sm {
    display: none !important;
  }
  .d-block-sm {
    display: block !important;
  }
  .d-inline-sm {
    display: inline !important;
  }
  .d-inline-block-sm {
    display: inline-block !important;
  }
  .d-table-sm {
    display: table !important;
  }
  .d-table-row-sm {
    display: table-row !important;
  }
  .d-table-cell-sm {
    display: table-cell !important;
  }
}
@container (min-width: 640px) {
  .visible-ld {
    visibility: visible !important;
  }
  .no-visible-ld {
    visibility: hidden !important;
  }
  .d-none-ld {
    display: none !important;
  }
  .d-block-ld {
    display: block !important;
  }
  .d-inline-ld {
    display: inline !important;
  }
  .d-inline-block-ld {
    display: inline-block !important;
  }
  .d-table-ld {
    display: table !important;
  }
  .d-table-row-ld {
    display: table-row !important;
  }
  .d-table-cell-ld {
    display: table-cell !important;
  }
}
@container (min-width: 768px) {
  .visible-md {
    visibility: visible !important;
  }
  .no-visible-md {
    visibility: hidden !important;
  }
  .d-none-md {
    display: none !important;
  }
  .d-block-md {
    display: block !important;
  }
  .d-inline-md {
    display: inline !important;
  }
  .d-inline-block-md {
    display: inline-block !important;
  }
  .d-table-md {
    display: table !important;
  }
  .d-table-row-md {
    display: table-row !important;
  }
  .d-table-cell-md {
    display: table-cell !important;
  }
}
@container (min-width: 992px) {
  .visible-lg {
    visibility: visible !important;
  }
  .no-visible-lg {
    visibility: hidden !important;
  }
  .d-none-lg {
    display: none !important;
  }
  .d-block-lg {
    display: block !important;
  }
  .d-inline-lg {
    display: inline !important;
  }
  .d-inline-block-lg {
    display: inline-block !important;
  }
  .d-table-lg {
    display: table !important;
  }
  .d-table-row-lg {
    display: table-row !important;
  }
  .d-table-cell-lg {
    display: table-cell !important;
  }
}
@container (min-width: 1200px) {
  .visible-xl {
    visibility: visible !important;
  }
  .no-visible-xl {
    visibility: hidden !important;
  }
  .d-none-xl {
    display: none !important;
  }
  .d-block-xl {
    display: block !important;
  }
  .d-inline-xl {
    display: inline !important;
  }
  .d-inline-block-xl {
    display: inline-block !important;
  }
  .d-table-xl {
    display: table !important;
  }
  .d-table-row-xl {
    display: table-row !important;
  }
  .d-table-cell-xl {
    display: table-cell !important;
  }
}
@container (min-width: 1400px) {
  .visible-xxl {
    visibility: visible !important;
  }
  .no-visible-xxl {
    visibility: hidden !important;
  }
  .d-none-xxl {
    display: none !important;
  }
  .d-block-xxl {
    display: block !important;
  }
  .d-inline-xxl {
    display: inline !important;
  }
  .d-inline-block-xxl {
    display: inline-block !important;
  }
  .d-table-xxl {
    display: table !important;
  }
  .d-table-row-xxl {
    display: table-row !important;
  }
  .d-table-cell-xxl {
    display: table-cell !important;
  }
}
@container (min-width: 2000px) {
  .visible-xxxl {
    visibility: visible !important;
  }
  .no-visible-xxxl {
    visibility: hidden !important;
  }
  .d-none-xxxl {
    display: none !important;
  }
  .d-block-xxxl {
    display: block !important;
  }
  .d-inline-xxxl {
    display: inline !important;
  }
  .d-inline-block-xxxl {
    display: inline-block !important;
  }
  .d-table-xxxl {
    display: table !important;
  }
  .d-table-row-xxxl {
    display: table-row !important;
  }
  .d-table-cell-xxxl {
    display: table-cell !important;
  }
}

/* source/common-css/embed.less */
.embed-container {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.embed-container::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video,
.embed-container .embed-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-container.size-21x9::before {
  padding-top: 42.85714286%;
}
.embed-container.size-16x9::before {
  padding-top: 56.25%;
}
.embed-container.size-4x3::before {
  padding-top: 75%;
}
.embed-container.size-1x1::before {
  padding-top: 100%;
}

/* source/common-css/flex.less */
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@container (min-width: 0) {
  .d-flex-fs {
    display: flex !important;
  }
  .d-inline-flex-fs {
    display: inline-flex !important;
  }
}
@container (min-width: 360px) {
  .d-flex-xs {
    display: flex !important;
  }
  .d-inline-flex-xs {
    display: inline-flex !important;
  }
}
@container (min-width: 576px) {
  .d-flex-sm {
    display: flex !important;
  }
  .d-inline-flex-sm {
    display: inline-flex !important;
  }
}
@container (min-width: 640px) {
  .d-flex-ld {
    display: flex !important;
  }
  .d-inline-flex-ld {
    display: inline-flex !important;
  }
}
@container (min-width: 768px) {
  .d-flex-md {
    display: flex !important;
  }
  .d-inline-flex-md {
    display: inline-flex !important;
  }
}
@container (min-width: 992px) {
  .d-flex-lg {
    display: flex !important;
  }
  .d-inline-flex-lg {
    display: inline-flex !important;
  }
}
@container (min-width: 1200px) {
  .d-flex-xl {
    display: flex !important;
  }
  .d-inline-flex-xl {
    display: inline-flex !important;
  }
}
@container (min-width: 1400px) {
  .d-flex-xxl {
    display: flex !important;
  }
  .d-inline-flex-xxl {
    display: inline-flex !important;
  }
}
@container (min-width: 2000px) {
  .d-flex-xxxl {
    display: flex !important;
  }
  .d-inline-flex-xxxl {
    display: inline-flex !important;
  }
}
.gap-1 {
  gap: 4px !important;
}
.gap-2 {
  gap: 8px !important;
}
.gap-3 {
  gap: 12px !important;
}
.gap-4 {
  gap: 16px !important;
}
.gap-5 {
  gap: 20px !important;
}
.gap-6 {
  gap: 24px !important;
}
.gap-7 {
  gap: 28px !important;
}
.gap-8 {
  gap: 32px !important;
}
.gap-9 {
  gap: 36px !important;
}
.gap-10 {
  gap: 40px !important;
}
.gap-11 {
  gap: 44px !important;
}
.gap-12 {
  gap: 48px !important;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.order-13 {
  order: 13;
}
.order-14 {
  order: 14;
}
.order-15 {
  order: 15;
}
.order-16 {
  order: 16;
}
.order-17 {
  order: 17;
}
.order-18 {
  order: 18;
}
.order-19 {
  order: 19;
}
.order-20 {
  order: 20;
}
.order-21 {
  order: 21;
}
.order-22 {
  order: 22;
}
.order-23 {
  order: 23;
}
.order-24 {
  order: 24;
}
.flex-equal-items > * {
  flex: 1;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-align-normal {
  align-items: normal !important;
}
.flex-align-stretch {
  align-items: stretch !important;
}
.flex-align-start {
  align-items: flex-start !important;
}
.flex-align-end {
  align-items: flex-end !important;
}
.flex-align-baseline {
  align-items: baseline !important;
}
.flex-align-baseline-first {
  align-items: first baseline !important;
}
.flex-align-baseline-last {
  align-items: last baseline !important;
}
.flex-align-center {
  align-items: center !important;
}
.flex-align-center-safe {
  align-items: safe center !important;
}
.flex-align-center-unsafe {
  align-items: unsafe center !important;
}
.flex-align-inherit {
  align-items: inherit !important;
}
.flex-align-initial {
  align-items: initial !important;
}
.flex-align-revert {
  align-items: revert !important;
}
.flex-align-unset {
  align-items: unset !important;
}
.flex-align-items-normal {
  align-items: normal !important;
}
.flex-align-items-stretch {
  align-items: stretch !important;
}
.flex-align-items-start {
  align-items: flex-start !important;
}
.flex-align-items-end {
  align-items: flex-end !important;
}
.flex-align-items-baseline {
  align-items: baseline !important;
}
.flex-align-items-baseline-first {
  align-items: first baseline !important;
}
.flex-align-items-baseline-last {
  align-items: last baseline !important;
}
.flex-align-items-center {
  align-items: center !important;
}
.flex-align-items-center-safe {
  align-items: safe center !important;
}
.flex-align-items-center-unsafe {
  align-items: unsafe center !important;
}
.flex-align-items-inherit {
  align-items: inherit !important;
}
.flex-align-items-initial {
  align-items: initial !important;
}
.flex-align-items-revert {
  align-items: revert !important;
}
.flex-align-items-unset {
  align-items: unset !important;
}
.flex-align-self-auto {
  align-self: auto !important;
}
.flex-align-self-normal {
  align-self: normal !important;
}
.flex-align-self-start {
  align-self: flex-start !important;
}
.flex-align-self-end {
  align-self: flex-end !important;
}
.flex-align-self-center {
  align-self: center !important;
}
.flex-align-self-center-safe {
  align-self: safe center !important;
}
.flex-align-self-center-unsafe {
  align-self: unsafe center !important;
}
.flex-align-self-baseline {
  align-self: baseline !important;
}
.flex-align-self-baseline-first {
  align-self: first baseline !important;
}
.flex-align-self-baseline-last {
  align-self: last baseline !important;
}
.flex-align-self-stretch {
  align-self: stretch !important;
}
.flex-align-self-inherit {
  align-self: inherit !important;
}
.flex-align-self-initial {
  align-self: initial !important;
}
.flex-align-self-revert {
  align-self: revert !important;
}
.flex-align-self-unset {
  align-self: unset !important;
}
.flex-align-content-normal {
  align-content: normal !important;
}
.flex-align-content-start {
  align-content: flex-start !important;
}
.flex-align-content-end {
  align-content: flex-end !important;
}
.flex-align-content-baseline {
  align-content: baseline !important;
}
.flex-align-content-baseline-first {
  align-content: first baseline !important;
}
.flex-align-content-baseline-last {
  align-content: last baseline !important;
}
.flex-align-content-between {
  align-content: space-between !important;
}
.flex-align-content-around {
  align-content: space-around !important;
}
.flex-align-content-evenly {
  align-content: space-evenly !important;
}
.flex-align-content-stretch {
  align-content: stretch !important;
}
.flex-align-content-center {
  align-content: center !important;
}
.flex-align-content-center-safe {
  align-content: safe center !important;
}
.flex-align-content-center-unsafe {
  align-content: unsafe center !important;
}
.flex-align-content-inherit {
  align-content: inherit !important;
}
.flex-align-content-initial {
  align-content: initial !important;
}
.flex-align-content-revert {
  align-content: revert !important;
}
.flex-align-content-unset {
  align-content: unset !important;
}
.flex-justify-items-normal {
  justify-items: normal !important;
}
.flex-justify-items-stretch {
  justify-items: stretch !important;
}
.flex-justify-items-start {
  justify-items: flex-start !important;
}
.flex-justify-items-end {
  justify-items: flex-end !important;
}
.flex-justify-items-left {
  justify-items: left !important;
}
.flex-justify-items-right {
  justify-items: right !important;
}
.flex-justify-items-baseline {
  justify-items: baseline !important;
}
.flex-justify-items-baseline-first {
  justify-items: first baseline !important;
}
.flex-justify-items-baseline-last {
  justify-items: last baseline !important;
}
.flex-justify-items-center {
  justify-items: center !important;
}
.flex-justify-items-center-safe {
  justify-items: safe center !important;
}
.flex-justify-items-center-unsafe {
  justify-items: unsafe center !important;
}
.flex-justify-items-inherit {
  justify-items: inherit !important;
}
.flex-justify-items-initial {
  justify-items: initial !important;
}
.flex-justify-items-revert {
  justify-items: revert !important;
}
.flex-justify-items-unset {
  justify-items: unset !important;
}
.flex-justify-self-inherit {
  justify-self: inherit !important;
}
.flex-justify-self-initial {
  justify-self: initial !important;
}
.flex-justify-self-revert {
  justify-self: revert !important;
}
.flex-justify-self-unset {
  justify-self: unset !important;
}
.flex-justify-self-auto {
  justify-self: auto !important;
}
.flex-justify-self-normal {
  justify-self: normal !important;
}
.flex-justify-self-start {
  justify-self: flex-start !important;
}
.flex-justify-self-end {
  justify-self: flex-end !important;
}
.flex-justify-self-center {
  justify-self: center !important;
}
.flex-justify-self-stretch {
  justify-self: stretch !important;
}
.flex-justify-self-baseline {
  justify-self: baseline !important;
}
.flex-justify-self-baseline-first {
  justify-self: first baseline !important;
}
.flex-justify-self-baseline-last {
  justify-self: last baseline !important;
}
.flex-justify-self-left {
  justify-self: left !important;
}
.flex-justify-self-right {
  justify-self: right !important;
}
.flex-justify-content-center {
  justify-content: center !important;
}
.flex-justify-content-center-safe {
  justify-content: safe center !important;
}
.flex-justify-content-center-unsafe {
  justify-content: unsafe center !important;
}
.flex-justify-content-start {
  justify-content: flex-start !important;
}
.flex-justify-content-end {
  justify-content: flex-end !important;
}
.flex-justify-content-left {
  justify-content: left !important;
}
.flex-justify-content-right {
  justify-content: right !important;
}
.flex-justify-content-normal {
  justify-content: normal !important;
}
.flex-justify-content-between {
  justify-content: space-between !important;
}
.flex-justify-content-around {
  justify-content: space-around !important;
}
.flex-justify-content-evenly {
  justify-content: space-evenly !important;
}
.flex-justify-content-stretch {
  justify-content: stretch !important;
}
.flex-justify-content-inherit {
  justify-content: inherit !important;
}
.flex-justify-content-initial {
  justify-content: initial !important;
}
.flex-justify-content-revert {
  justify-content: revert !important;
}
.flex-justify-content-unset {
  justify-content: unset !important;
}
.flex-justify-center {
  justify-content: center !important;
}
.flex-justify-center-safe {
  justify-content: safe center !important;
}
.flex-justify-center-unsafe {
  justify-content: unsafe center !important;
}
.flex-justify-start {
  justify-content: flex-start !important;
}
.flex-justify-end {
  justify-content: flex-end !important;
}
.flex-justify-left {
  justify-content: left !important;
}
.flex-justify-right {
  justify-content: right !important;
}
.flex-justify-normal {
  justify-content: normal !important;
}
.flex-justify-between {
  justify-content: space-between !important;
}
.flex-justify-around {
  justify-content: space-around !important;
}
.flex-justify-evenly {
  justify-content: space-evenly !important;
}
.flex-justify-stretch {
  justify-content: stretch !important;
}
.flex-justify-inherit {
  justify-content: inherit !important;
}
.flex-justify-initial {
  justify-content: initial !important;
}
.flex-justify-revert {
  justify-content: revert !important;
}
.flex-justify-unset {
  justify-content: unset !important;
}
.flex-no-shrink > * {
  flex-shrink: 0 !important;
}
.flex-shrink > * {
  flex-shrink: 1 !important;
}
.flex-no-grow > * {
  flex-grow: 0 !important;
}
.flex-grow > * {
  flex-grow: 1 !important;
}
.flex-no-shrink-self {
  flex-shrink: 0 !important;
}
.flex-shrink-self {
  flex-shrink: 1 !important;
}
.flex-no-grow-self {
  flex-grow: 0 !important;
}
.flex-grow-self {
  flex-grow: 1 !important;
}
.flex-right {
  margin-left: auto !important;
}
.flex-left {
  margin-right: auto !important;
}
.flex-top {
  margin-bottom: auto !important;
}
.flex-bottom {
  margin-top: auto !important;
}
.flex-center {
  align-items: center !important;
  justify-content: center !important;
}
@container (min-width: 0) {
  .flex-nowrap-fs {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-fs {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-fs {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-fs {
    flex-direction: column !important;
  }
  .flex-column-reverse-fs {
    flex-direction: column-reverse !important;
  }
  .flex-row-fs {
    flex-direction: row !important;
  }
  .flex-row-reverse-fs {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-fs > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-fs > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-fs > * {
    flex-grow: 0 !important;
  }
  .flex-grow-fs > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-fs {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-fs {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-fs {
    flex-grow: 0 !important;
  }
  .flex-grow-self-fs {
    flex-grow: 1 !important;
  }
  .flex-right-fs {
    margin-left: auto !important;
  }
  .flex-left-fs {
    margin-right: auto !important;
  }
  .flex-top-fs {
    margin-bottom: auto !important;
  }
  .flex-bottom-fs {
    margin-top: auto !important;
  }
  .flex-center-fs {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-fs {
    align-items: normal !important;
  }
  .flex-align-stretch-fs {
    align-items: stretch !important;
  }
  .flex-align-start-fs {
    align-items: flex-start !important;
  }
  .flex-align-end-fs {
    align-items: flex-end !important;
  }
  .flex-align-baseline-fs {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-fs {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-fs {
    align-items: last baseline !important;
  }
  .flex-align-center-fs {
    align-items: center !important;
  }
  .flex-align-center-safe-fs {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-fs {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-fs {
    align-items: inherit !important;
  }
  .flex-align-initial-fs {
    align-items: initial !important;
  }
  .flex-align-revert-fs {
    align-items: revert !important;
  }
  .flex-align-unset-fs {
    align-items: unset !important;
  }
  .flex-align-items-normal-fs {
    align-items: normal !important;
  }
  .flex-align-items-stretch-fs {
    align-items: stretch !important;
  }
  .flex-align-items-start-fs {
    align-items: flex-start !important;
  }
  .flex-align-items-end-fs {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-fs {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-fs {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-fs {
    align-items: last baseline !important;
  }
  .flex-align-items-center-fs {
    align-items: center !important;
  }
  .flex-align-items-center-safe-fs {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-fs {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-fs {
    align-items: inherit !important;
  }
  .flex-align-items-initial-fs {
    align-items: initial !important;
  }
  .flex-align-items-revert-fs {
    align-items: revert !important;
  }
  .flex-align-items-unset-fs {
    align-items: unset !important;
  }
  .flex-align-self-auto-fs {
    align-self: auto !important;
  }
  .flex-align-self-normal-fs {
    align-self: normal !important;
  }
  .flex-align-self-start-fs {
    align-self: flex-start !important;
  }
  .flex-align-self-end-fs {
    align-self: flex-end !important;
  }
  .flex-align-self-center-fs {
    align-self: center !important;
  }
  .flex-align-self-center-safe-fs {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-fs {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-fs {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-fs {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-fs {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-fs {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-fs {
    align-self: inherit !important;
  }
  .flex-align-self-initial-fs {
    align-self: initial !important;
  }
  .flex-align-self-revert-fs {
    align-self: revert !important;
  }
  .flex-align-self-unset-fs {
    align-self: unset !important;
  }
  .flex-align-content-normal-fs {
    align-content: normal !important;
  }
  .flex-align-content-start-fs {
    align-content: flex-start !important;
  }
  .flex-align-content-end-fs {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-fs {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-fs {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-fs {
    align-content: last baseline !important;
  }
  .flex-align-content-between-fs {
    align-content: space-between !important;
  }
  .flex-align-content-around-fs {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-fs {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-fs {
    align-content: stretch !important;
  }
  .flex-align-content-center-fs {
    align-content: center !important;
  }
  .flex-align-content-center-safe-fs {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-fs {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-fs {
    align-content: inherit !important;
  }
  .flex-align-content-initial-fs {
    align-content: initial !important;
  }
  .flex-align-content-revert-fs {
    align-content: revert !important;
  }
  .flex-align-content-unset-fs {
    align-content: unset !important;
  }
  .flex-justify-items-normal-fs {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-fs {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-fs {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-fs {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-fs {
    justify-items: left !important;
  }
  .flex-justify-items-right-fs {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-fs {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-fs {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-fs {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-fs {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-fs {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-fs {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-fs {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-fs {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-fs {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-fs {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-fs {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-fs {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-fs {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-fs {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-fs {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-fs {
    justify-self: normal !important;
  }
  .flex-justify-self-start-fs {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-fs {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-fs {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-fs {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-fs {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-fs {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-fs {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-fs {
    justify-self: left !important;
  }
  .flex-justify-self-right-fs {
    justify-self: right !important;
  }
  .flex-justify-content-center-fs {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-fs {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-fs {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-fs {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-fs {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-fs {
    justify-content: left !important;
  }
  .flex-justify-content-right-fs {
    justify-content: right !important;
  }
  .flex-justify-content-normal-fs {
    justify-content: normal !important;
  }
  .flex-justify-content-between-fs {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-fs {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-fs {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-fs {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-fs {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-fs {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-fs {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-fs {
    justify-content: unset !important;
  }
  .flex-justify-center-fs {
    justify-content: center !important;
  }
  .flex-justify-center-safe-fs {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-fs {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-fs {
    justify-content: flex-start !important;
  }
  .flex-justify-end-fs {
    justify-content: flex-end !important;
  }
  .flex-justify-left-fs {
    justify-content: left !important;
  }
  .flex-justify-right-fs {
    justify-content: right !important;
  }
  .flex-justify-normal-fs {
    justify-content: normal !important;
  }
  .flex-justify-between-fs {
    justify-content: space-between !important;
  }
  .flex-justify-around-fs {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-fs {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-fs {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-fs {
    justify-content: inherit !important;
  }
  .flex-justify-initial-fs {
    justify-content: initial !important;
  }
  .flex-justify-revert-fs {
    justify-content: revert !important;
  }
  .flex-justify-unset-fs {
    justify-content: unset !important;
  }
  .order-1-fs {
    order: 1 !important;
  }
  .order-2-fs {
    order: 2 !important;
  }
  .order-3-fs {
    order: 3 !important;
  }
  .order-4-fs {
    order: 4 !important;
  }
  .order-5-fs {
    order: 5 !important;
  }
  .order-6-fs {
    order: 6 !important;
  }
  .order-7-fs {
    order: 7 !important;
  }
  .order-8-fs {
    order: 8 !important;
  }
  .order-9-fs {
    order: 9 !important;
  }
  .order-10-fs {
    order: 10 !important;
  }
  .order-11-fs {
    order: 11 !important;
  }
  .order-12-fs {
    order: 12 !important;
  }
  .order-13-fs {
    order: 13 !important;
  }
  .order-14-fs {
    order: 14 !important;
  }
  .order-15-fs {
    order: 15 !important;
  }
  .order-16-fs {
    order: 16 !important;
  }
  .order-17-fs {
    order: 17 !important;
  }
  .order-18-fs {
    order: 18 !important;
  }
  .order-19-fs {
    order: 19 !important;
  }
  .order-20-fs {
    order: 20 !important;
  }
  .order-21-fs {
    order: 21 !important;
  }
  .order-22-fs {
    order: 22 !important;
  }
  .order-23-fs {
    order: 23 !important;
  }
  .order-24-fs {
    order: 24 !important;
  }
  .gap-1-fs {
    gap: 4px !important;
  }
  .gap-2-fs {
    gap: 8px !important;
  }
  .gap-3-fs {
    gap: 12px !important;
  }
  .gap-4-fs {
    gap: 16px !important;
  }
  .gap-5-fs {
    gap: 20px !important;
  }
  .gap-6-fs {
    gap: 24px !important;
  }
  .gap-7-fs {
    gap: 28px !important;
  }
  .gap-8-fs {
    gap: 32px !important;
  }
  .gap-9-fs {
    gap: 36px !important;
  }
  .gap-10-fs {
    gap: 40px !important;
  }
  .gap-11-fs {
    gap: 44px !important;
  }
  .gap-12-fs {
    gap: 48px !important;
  }
}
@container (min-width: 360px) {
  .flex-nowrap-xs {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-xs {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-xs {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-xs {
    flex-direction: column !important;
  }
  .flex-column-reverse-xs {
    flex-direction: column-reverse !important;
  }
  .flex-row-xs {
    flex-direction: row !important;
  }
  .flex-row-reverse-xs {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-xs > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xs > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-xs > * {
    flex-grow: 0 !important;
  }
  .flex-grow-xs > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-xs {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-xs {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-xs {
    flex-grow: 0 !important;
  }
  .flex-grow-self-xs {
    flex-grow: 1 !important;
  }
  .flex-right-xs {
    margin-left: auto !important;
  }
  .flex-left-xs {
    margin-right: auto !important;
  }
  .flex-top-xs {
    margin-bottom: auto !important;
  }
  .flex-bottom-xs {
    margin-top: auto !important;
  }
  .flex-center-xs {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-xs {
    align-items: normal !important;
  }
  .flex-align-stretch-xs {
    align-items: stretch !important;
  }
  .flex-align-start-xs {
    align-items: flex-start !important;
  }
  .flex-align-end-xs {
    align-items: flex-end !important;
  }
  .flex-align-baseline-xs {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-xs {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-xs {
    align-items: last baseline !important;
  }
  .flex-align-center-xs {
    align-items: center !important;
  }
  .flex-align-center-safe-xs {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-xs {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-xs {
    align-items: inherit !important;
  }
  .flex-align-initial-xs {
    align-items: initial !important;
  }
  .flex-align-revert-xs {
    align-items: revert !important;
  }
  .flex-align-unset-xs {
    align-items: unset !important;
  }
  .flex-align-items-normal-xs {
    align-items: normal !important;
  }
  .flex-align-items-stretch-xs {
    align-items: stretch !important;
  }
  .flex-align-items-start-xs {
    align-items: flex-start !important;
  }
  .flex-align-items-end-xs {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-xs {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-xs {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-xs {
    align-items: last baseline !important;
  }
  .flex-align-items-center-xs {
    align-items: center !important;
  }
  .flex-align-items-center-safe-xs {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-xs {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-xs {
    align-items: inherit !important;
  }
  .flex-align-items-initial-xs {
    align-items: initial !important;
  }
  .flex-align-items-revert-xs {
    align-items: revert !important;
  }
  .flex-align-items-unset-xs {
    align-items: unset !important;
  }
  .flex-align-self-auto-xs {
    align-self: auto !important;
  }
  .flex-align-self-normal-xs {
    align-self: normal !important;
  }
  .flex-align-self-start-xs {
    align-self: flex-start !important;
  }
  .flex-align-self-end-xs {
    align-self: flex-end !important;
  }
  .flex-align-self-center-xs {
    align-self: center !important;
  }
  .flex-align-self-center-safe-xs {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-xs {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-xs {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-xs {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-xs {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-xs {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-xs {
    align-self: inherit !important;
  }
  .flex-align-self-initial-xs {
    align-self: initial !important;
  }
  .flex-align-self-revert-xs {
    align-self: revert !important;
  }
  .flex-align-self-unset-xs {
    align-self: unset !important;
  }
  .flex-align-content-normal-xs {
    align-content: normal !important;
  }
  .flex-align-content-start-xs {
    align-content: flex-start !important;
  }
  .flex-align-content-end-xs {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-xs {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-xs {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-xs {
    align-content: last baseline !important;
  }
  .flex-align-content-between-xs {
    align-content: space-between !important;
  }
  .flex-align-content-around-xs {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-xs {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-xs {
    align-content: stretch !important;
  }
  .flex-align-content-center-xs {
    align-content: center !important;
  }
  .flex-align-content-center-safe-xs {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-xs {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-xs {
    align-content: inherit !important;
  }
  .flex-align-content-initial-xs {
    align-content: initial !important;
  }
  .flex-align-content-revert-xs {
    align-content: revert !important;
  }
  .flex-align-content-unset-xs {
    align-content: unset !important;
  }
  .flex-justify-items-normal-xs {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-xs {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-xs {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-xs {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-xs {
    justify-items: left !important;
  }
  .flex-justify-items-right-xs {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-xs {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-xs {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-xs {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-xs {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-xs {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-xs {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-xs {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-xs {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-xs {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-xs {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-xs {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-xs {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-xs {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-xs {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-xs {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-xs {
    justify-self: normal !important;
  }
  .flex-justify-self-start-xs {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-xs {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-xs {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-xs {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-xs {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-xs {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-xs {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-xs {
    justify-self: left !important;
  }
  .flex-justify-self-right-xs {
    justify-self: right !important;
  }
  .flex-justify-content-center-xs {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-xs {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-xs {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-xs {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-xs {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-xs {
    justify-content: left !important;
  }
  .flex-justify-content-right-xs {
    justify-content: right !important;
  }
  .flex-justify-content-normal-xs {
    justify-content: normal !important;
  }
  .flex-justify-content-between-xs {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-xs {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-xs {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-xs {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-xs {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-xs {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-xs {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-xs {
    justify-content: unset !important;
  }
  .flex-justify-center-xs {
    justify-content: center !important;
  }
  .flex-justify-center-safe-xs {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-xs {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-xs {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xs {
    justify-content: flex-end !important;
  }
  .flex-justify-left-xs {
    justify-content: left !important;
  }
  .flex-justify-right-xs {
    justify-content: right !important;
  }
  .flex-justify-normal-xs {
    justify-content: normal !important;
  }
  .flex-justify-between-xs {
    justify-content: space-between !important;
  }
  .flex-justify-around-xs {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-xs {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-xs {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-xs {
    justify-content: inherit !important;
  }
  .flex-justify-initial-xs {
    justify-content: initial !important;
  }
  .flex-justify-revert-xs {
    justify-content: revert !important;
  }
  .flex-justify-unset-xs {
    justify-content: unset !important;
  }
  .order-1-xs {
    order: 1 !important;
  }
  .order-2-xs {
    order: 2 !important;
  }
  .order-3-xs {
    order: 3 !important;
  }
  .order-4-xs {
    order: 4 !important;
  }
  .order-5-xs {
    order: 5 !important;
  }
  .order-6-xs {
    order: 6 !important;
  }
  .order-7-xs {
    order: 7 !important;
  }
  .order-8-xs {
    order: 8 !important;
  }
  .order-9-xs {
    order: 9 !important;
  }
  .order-10-xs {
    order: 10 !important;
  }
  .order-11-xs {
    order: 11 !important;
  }
  .order-12-xs {
    order: 12 !important;
  }
  .order-13-xs {
    order: 13 !important;
  }
  .order-14-xs {
    order: 14 !important;
  }
  .order-15-xs {
    order: 15 !important;
  }
  .order-16-xs {
    order: 16 !important;
  }
  .order-17-xs {
    order: 17 !important;
  }
  .order-18-xs {
    order: 18 !important;
  }
  .order-19-xs {
    order: 19 !important;
  }
  .order-20-xs {
    order: 20 !important;
  }
  .order-21-xs {
    order: 21 !important;
  }
  .order-22-xs {
    order: 22 !important;
  }
  .order-23-xs {
    order: 23 !important;
  }
  .order-24-xs {
    order: 24 !important;
  }
  .gap-1-xs {
    gap: 4px !important;
  }
  .gap-2-xs {
    gap: 8px !important;
  }
  .gap-3-xs {
    gap: 12px !important;
  }
  .gap-4-xs {
    gap: 16px !important;
  }
  .gap-5-xs {
    gap: 20px !important;
  }
  .gap-6-xs {
    gap: 24px !important;
  }
  .gap-7-xs {
    gap: 28px !important;
  }
  .gap-8-xs {
    gap: 32px !important;
  }
  .gap-9-xs {
    gap: 36px !important;
  }
  .gap-10-xs {
    gap: 40px !important;
  }
  .gap-11-xs {
    gap: 44px !important;
  }
  .gap-12-xs {
    gap: 48px !important;
  }
}
@container (min-width: 576px) {
  .flex-nowrap-sm {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-sm {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-sm {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-sm {
    flex-direction: column !important;
  }
  .flex-column-reverse-sm {
    flex-direction: column-reverse !important;
  }
  .flex-row-sm {
    flex-direction: row !important;
  }
  .flex-row-reverse-sm {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-sm > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-sm > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-sm > * {
    flex-grow: 0 !important;
  }
  .flex-grow-sm > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-sm {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-sm {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-sm {
    flex-grow: 0 !important;
  }
  .flex-grow-self-sm {
    flex-grow: 1 !important;
  }
  .flex-right-sm {
    margin-left: auto !important;
  }
  .flex-left-sm {
    margin-right: auto !important;
  }
  .flex-top-sm {
    margin-bottom: auto !important;
  }
  .flex-bottom-sm {
    margin-top: auto !important;
  }
  .flex-center-sm {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-sm {
    align-items: normal !important;
  }
  .flex-align-stretch-sm {
    align-items: stretch !important;
  }
  .flex-align-start-sm {
    align-items: flex-start !important;
  }
  .flex-align-end-sm {
    align-items: flex-end !important;
  }
  .flex-align-baseline-sm {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-sm {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-sm {
    align-items: last baseline !important;
  }
  .flex-align-center-sm {
    align-items: center !important;
  }
  .flex-align-center-safe-sm {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-sm {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-sm {
    align-items: inherit !important;
  }
  .flex-align-initial-sm {
    align-items: initial !important;
  }
  .flex-align-revert-sm {
    align-items: revert !important;
  }
  .flex-align-unset-sm {
    align-items: unset !important;
  }
  .flex-align-items-normal-sm {
    align-items: normal !important;
  }
  .flex-align-items-stretch-sm {
    align-items: stretch !important;
  }
  .flex-align-items-start-sm {
    align-items: flex-start !important;
  }
  .flex-align-items-end-sm {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-sm {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-sm {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-sm {
    align-items: last baseline !important;
  }
  .flex-align-items-center-sm {
    align-items: center !important;
  }
  .flex-align-items-center-safe-sm {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-sm {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-sm {
    align-items: inherit !important;
  }
  .flex-align-items-initial-sm {
    align-items: initial !important;
  }
  .flex-align-items-revert-sm {
    align-items: revert !important;
  }
  .flex-align-items-unset-sm {
    align-items: unset !important;
  }
  .flex-align-self-auto-sm {
    align-self: auto !important;
  }
  .flex-align-self-normal-sm {
    align-self: normal !important;
  }
  .flex-align-self-start-sm {
    align-self: flex-start !important;
  }
  .flex-align-self-end-sm {
    align-self: flex-end !important;
  }
  .flex-align-self-center-sm {
    align-self: center !important;
  }
  .flex-align-self-center-safe-sm {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-sm {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-sm {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-sm {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-sm {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-sm {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-sm {
    align-self: inherit !important;
  }
  .flex-align-self-initial-sm {
    align-self: initial !important;
  }
  .flex-align-self-revert-sm {
    align-self: revert !important;
  }
  .flex-align-self-unset-sm {
    align-self: unset !important;
  }
  .flex-align-content-normal-sm {
    align-content: normal !important;
  }
  .flex-align-content-start-sm {
    align-content: flex-start !important;
  }
  .flex-align-content-end-sm {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-sm {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-sm {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-sm {
    align-content: last baseline !important;
  }
  .flex-align-content-between-sm {
    align-content: space-between !important;
  }
  .flex-align-content-around-sm {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-sm {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-sm {
    align-content: stretch !important;
  }
  .flex-align-content-center-sm {
    align-content: center !important;
  }
  .flex-align-content-center-safe-sm {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-sm {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-sm {
    align-content: inherit !important;
  }
  .flex-align-content-initial-sm {
    align-content: initial !important;
  }
  .flex-align-content-revert-sm {
    align-content: revert !important;
  }
  .flex-align-content-unset-sm {
    align-content: unset !important;
  }
  .flex-justify-items-normal-sm {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-sm {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-sm {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-sm {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-sm {
    justify-items: left !important;
  }
  .flex-justify-items-right-sm {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-sm {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-sm {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-sm {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-sm {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-sm {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-sm {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-sm {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-sm {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-sm {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-sm {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-sm {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-sm {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-sm {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-sm {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-sm {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-sm {
    justify-self: normal !important;
  }
  .flex-justify-self-start-sm {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-sm {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-sm {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-sm {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-sm {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-sm {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-sm {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-sm {
    justify-self: left !important;
  }
  .flex-justify-self-right-sm {
    justify-self: right !important;
  }
  .flex-justify-content-center-sm {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-sm {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-sm {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-sm {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-sm {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-sm {
    justify-content: left !important;
  }
  .flex-justify-content-right-sm {
    justify-content: right !important;
  }
  .flex-justify-content-normal-sm {
    justify-content: normal !important;
  }
  .flex-justify-content-between-sm {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-sm {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-sm {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-sm {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-sm {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-sm {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-sm {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-sm {
    justify-content: unset !important;
  }
  .flex-justify-center-sm {
    justify-content: center !important;
  }
  .flex-justify-center-safe-sm {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-sm {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-sm {
    justify-content: flex-start !important;
  }
  .flex-justify-end-sm {
    justify-content: flex-end !important;
  }
  .flex-justify-left-sm {
    justify-content: left !important;
  }
  .flex-justify-right-sm {
    justify-content: right !important;
  }
  .flex-justify-normal-sm {
    justify-content: normal !important;
  }
  .flex-justify-between-sm {
    justify-content: space-between !important;
  }
  .flex-justify-around-sm {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-sm {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-sm {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-sm {
    justify-content: inherit !important;
  }
  .flex-justify-initial-sm {
    justify-content: initial !important;
  }
  .flex-justify-revert-sm {
    justify-content: revert !important;
  }
  .flex-justify-unset-sm {
    justify-content: unset !important;
  }
  .order-1-sm {
    order: 1 !important;
  }
  .order-2-sm {
    order: 2 !important;
  }
  .order-3-sm {
    order: 3 !important;
  }
  .order-4-sm {
    order: 4 !important;
  }
  .order-5-sm {
    order: 5 !important;
  }
  .order-6-sm {
    order: 6 !important;
  }
  .order-7-sm {
    order: 7 !important;
  }
  .order-8-sm {
    order: 8 !important;
  }
  .order-9-sm {
    order: 9 !important;
  }
  .order-10-sm {
    order: 10 !important;
  }
  .order-11-sm {
    order: 11 !important;
  }
  .order-12-sm {
    order: 12 !important;
  }
  .order-13-sm {
    order: 13 !important;
  }
  .order-14-sm {
    order: 14 !important;
  }
  .order-15-sm {
    order: 15 !important;
  }
  .order-16-sm {
    order: 16 !important;
  }
  .order-17-sm {
    order: 17 !important;
  }
  .order-18-sm {
    order: 18 !important;
  }
  .order-19-sm {
    order: 19 !important;
  }
  .order-20-sm {
    order: 20 !important;
  }
  .order-21-sm {
    order: 21 !important;
  }
  .order-22-sm {
    order: 22 !important;
  }
  .order-23-sm {
    order: 23 !important;
  }
  .order-24-sm {
    order: 24 !important;
  }
  .gap-1-sm {
    gap: 4px !important;
  }
  .gap-2-sm {
    gap: 8px !important;
  }
  .gap-3-sm {
    gap: 12px !important;
  }
  .gap-4-sm {
    gap: 16px !important;
  }
  .gap-5-sm {
    gap: 20px !important;
  }
  .gap-6-sm {
    gap: 24px !important;
  }
  .gap-7-sm {
    gap: 28px !important;
  }
  .gap-8-sm {
    gap: 32px !important;
  }
  .gap-9-sm {
    gap: 36px !important;
  }
  .gap-10-sm {
    gap: 40px !important;
  }
  .gap-11-sm {
    gap: 44px !important;
  }
  .gap-12-sm {
    gap: 48px !important;
  }
}
@container (min-width: 640px) {
  .flex-nowrap-ld {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-ld {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-ld {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-ld {
    flex-direction: column !important;
  }
  .flex-column-reverse-ld {
    flex-direction: column-reverse !important;
  }
  .flex-row-ld {
    flex-direction: row !important;
  }
  .flex-row-reverse-ld {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-ld > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-ld > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-ld > * {
    flex-grow: 0 !important;
  }
  .flex-grow-ld > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-ld {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-ld {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-ld {
    flex-grow: 0 !important;
  }
  .flex-grow-self-ld {
    flex-grow: 1 !important;
  }
  .flex-right-ld {
    margin-left: auto !important;
  }
  .flex-left-ld {
    margin-right: auto !important;
  }
  .flex-top-ld {
    margin-bottom: auto !important;
  }
  .flex-bottom-ld {
    margin-top: auto !important;
  }
  .flex-center-ld {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-ld {
    align-items: normal !important;
  }
  .flex-align-stretch-ld {
    align-items: stretch !important;
  }
  .flex-align-start-ld {
    align-items: flex-start !important;
  }
  .flex-align-end-ld {
    align-items: flex-end !important;
  }
  .flex-align-baseline-ld {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-ld {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-ld {
    align-items: last baseline !important;
  }
  .flex-align-center-ld {
    align-items: center !important;
  }
  .flex-align-center-safe-ld {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-ld {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-ld {
    align-items: inherit !important;
  }
  .flex-align-initial-ld {
    align-items: initial !important;
  }
  .flex-align-revert-ld {
    align-items: revert !important;
  }
  .flex-align-unset-ld {
    align-items: unset !important;
  }
  .flex-align-items-normal-ld {
    align-items: normal !important;
  }
  .flex-align-items-stretch-ld {
    align-items: stretch !important;
  }
  .flex-align-items-start-ld {
    align-items: flex-start !important;
  }
  .flex-align-items-end-ld {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-ld {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-ld {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-ld {
    align-items: last baseline !important;
  }
  .flex-align-items-center-ld {
    align-items: center !important;
  }
  .flex-align-items-center-safe-ld {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-ld {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-ld {
    align-items: inherit !important;
  }
  .flex-align-items-initial-ld {
    align-items: initial !important;
  }
  .flex-align-items-revert-ld {
    align-items: revert !important;
  }
  .flex-align-items-unset-ld {
    align-items: unset !important;
  }
  .flex-align-self-auto-ld {
    align-self: auto !important;
  }
  .flex-align-self-normal-ld {
    align-self: normal !important;
  }
  .flex-align-self-start-ld {
    align-self: flex-start !important;
  }
  .flex-align-self-end-ld {
    align-self: flex-end !important;
  }
  .flex-align-self-center-ld {
    align-self: center !important;
  }
  .flex-align-self-center-safe-ld {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-ld {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-ld {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-ld {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-ld {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-ld {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-ld {
    align-self: inherit !important;
  }
  .flex-align-self-initial-ld {
    align-self: initial !important;
  }
  .flex-align-self-revert-ld {
    align-self: revert !important;
  }
  .flex-align-self-unset-ld {
    align-self: unset !important;
  }
  .flex-align-content-normal-ld {
    align-content: normal !important;
  }
  .flex-align-content-start-ld {
    align-content: flex-start !important;
  }
  .flex-align-content-end-ld {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-ld {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-ld {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-ld {
    align-content: last baseline !important;
  }
  .flex-align-content-between-ld {
    align-content: space-between !important;
  }
  .flex-align-content-around-ld {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-ld {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-ld {
    align-content: stretch !important;
  }
  .flex-align-content-center-ld {
    align-content: center !important;
  }
  .flex-align-content-center-safe-ld {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-ld {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-ld {
    align-content: inherit !important;
  }
  .flex-align-content-initial-ld {
    align-content: initial !important;
  }
  .flex-align-content-revert-ld {
    align-content: revert !important;
  }
  .flex-align-content-unset-ld {
    align-content: unset !important;
  }
  .flex-justify-items-normal-ld {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-ld {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-ld {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-ld {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-ld {
    justify-items: left !important;
  }
  .flex-justify-items-right-ld {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-ld {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-ld {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-ld {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-ld {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-ld {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-ld {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-ld {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-ld {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-ld {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-ld {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-ld {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-ld {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-ld {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-ld {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-ld {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-ld {
    justify-self: normal !important;
  }
  .flex-justify-self-start-ld {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-ld {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-ld {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-ld {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-ld {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-ld {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-ld {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-ld {
    justify-self: left !important;
  }
  .flex-justify-self-right-ld {
    justify-self: right !important;
  }
  .flex-justify-content-center-ld {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-ld {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-ld {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-ld {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-ld {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-ld {
    justify-content: left !important;
  }
  .flex-justify-content-right-ld {
    justify-content: right !important;
  }
  .flex-justify-content-normal-ld {
    justify-content: normal !important;
  }
  .flex-justify-content-between-ld {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-ld {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-ld {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-ld {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-ld {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-ld {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-ld {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-ld {
    justify-content: unset !important;
  }
  .flex-justify-center-ld {
    justify-content: center !important;
  }
  .flex-justify-center-safe-ld {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-ld {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-ld {
    justify-content: flex-start !important;
  }
  .flex-justify-end-ld {
    justify-content: flex-end !important;
  }
  .flex-justify-left-ld {
    justify-content: left !important;
  }
  .flex-justify-right-ld {
    justify-content: right !important;
  }
  .flex-justify-normal-ld {
    justify-content: normal !important;
  }
  .flex-justify-between-ld {
    justify-content: space-between !important;
  }
  .flex-justify-around-ld {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-ld {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-ld {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-ld {
    justify-content: inherit !important;
  }
  .flex-justify-initial-ld {
    justify-content: initial !important;
  }
  .flex-justify-revert-ld {
    justify-content: revert !important;
  }
  .flex-justify-unset-ld {
    justify-content: unset !important;
  }
  .order-1-ld {
    order: 1 !important;
  }
  .order-2-ld {
    order: 2 !important;
  }
  .order-3-ld {
    order: 3 !important;
  }
  .order-4-ld {
    order: 4 !important;
  }
  .order-5-ld {
    order: 5 !important;
  }
  .order-6-ld {
    order: 6 !important;
  }
  .order-7-ld {
    order: 7 !important;
  }
  .order-8-ld {
    order: 8 !important;
  }
  .order-9-ld {
    order: 9 !important;
  }
  .order-10-ld {
    order: 10 !important;
  }
  .order-11-ld {
    order: 11 !important;
  }
  .order-12-ld {
    order: 12 !important;
  }
  .order-13-ld {
    order: 13 !important;
  }
  .order-14-ld {
    order: 14 !important;
  }
  .order-15-ld {
    order: 15 !important;
  }
  .order-16-ld {
    order: 16 !important;
  }
  .order-17-ld {
    order: 17 !important;
  }
  .order-18-ld {
    order: 18 !important;
  }
  .order-19-ld {
    order: 19 !important;
  }
  .order-20-ld {
    order: 20 !important;
  }
  .order-21-ld {
    order: 21 !important;
  }
  .order-22-ld {
    order: 22 !important;
  }
  .order-23-ld {
    order: 23 !important;
  }
  .order-24-ld {
    order: 24 !important;
  }
  .gap-1-ld {
    gap: 4px !important;
  }
  .gap-2-ld {
    gap: 8px !important;
  }
  .gap-3-ld {
    gap: 12px !important;
  }
  .gap-4-ld {
    gap: 16px !important;
  }
  .gap-5-ld {
    gap: 20px !important;
  }
  .gap-6-ld {
    gap: 24px !important;
  }
  .gap-7-ld {
    gap: 28px !important;
  }
  .gap-8-ld {
    gap: 32px !important;
  }
  .gap-9-ld {
    gap: 36px !important;
  }
  .gap-10-ld {
    gap: 40px !important;
  }
  .gap-11-ld {
    gap: 44px !important;
  }
  .gap-12-ld {
    gap: 48px !important;
  }
}
@container (min-width: 768px) {
  .flex-nowrap-md {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-md {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-md {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-md {
    flex-direction: column !important;
  }
  .flex-column-reverse-md {
    flex-direction: column-reverse !important;
  }
  .flex-row-md {
    flex-direction: row !important;
  }
  .flex-row-reverse-md {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-md > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-md > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-md > * {
    flex-grow: 0 !important;
  }
  .flex-grow-md > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-md {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-md {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-md {
    flex-grow: 0 !important;
  }
  .flex-grow-self-md {
    flex-grow: 1 !important;
  }
  .flex-right-md {
    margin-left: auto !important;
  }
  .flex-left-md {
    margin-right: auto !important;
  }
  .flex-top-md {
    margin-bottom: auto !important;
  }
  .flex-bottom-md {
    margin-top: auto !important;
  }
  .flex-center-md {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-md {
    align-items: normal !important;
  }
  .flex-align-stretch-md {
    align-items: stretch !important;
  }
  .flex-align-start-md {
    align-items: flex-start !important;
  }
  .flex-align-end-md {
    align-items: flex-end !important;
  }
  .flex-align-baseline-md {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-md {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-md {
    align-items: last baseline !important;
  }
  .flex-align-center-md {
    align-items: center !important;
  }
  .flex-align-center-safe-md {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-md {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-md {
    align-items: inherit !important;
  }
  .flex-align-initial-md {
    align-items: initial !important;
  }
  .flex-align-revert-md {
    align-items: revert !important;
  }
  .flex-align-unset-md {
    align-items: unset !important;
  }
  .flex-align-items-normal-md {
    align-items: normal !important;
  }
  .flex-align-items-stretch-md {
    align-items: stretch !important;
  }
  .flex-align-items-start-md {
    align-items: flex-start !important;
  }
  .flex-align-items-end-md {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-md {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-md {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-md {
    align-items: last baseline !important;
  }
  .flex-align-items-center-md {
    align-items: center !important;
  }
  .flex-align-items-center-safe-md {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-md {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-md {
    align-items: inherit !important;
  }
  .flex-align-items-initial-md {
    align-items: initial !important;
  }
  .flex-align-items-revert-md {
    align-items: revert !important;
  }
  .flex-align-items-unset-md {
    align-items: unset !important;
  }
  .flex-align-self-auto-md {
    align-self: auto !important;
  }
  .flex-align-self-normal-md {
    align-self: normal !important;
  }
  .flex-align-self-start-md {
    align-self: flex-start !important;
  }
  .flex-align-self-end-md {
    align-self: flex-end !important;
  }
  .flex-align-self-center-md {
    align-self: center !important;
  }
  .flex-align-self-center-safe-md {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-md {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-md {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-md {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-md {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-md {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-md {
    align-self: inherit !important;
  }
  .flex-align-self-initial-md {
    align-self: initial !important;
  }
  .flex-align-self-revert-md {
    align-self: revert !important;
  }
  .flex-align-self-unset-md {
    align-self: unset !important;
  }
  .flex-align-content-normal-md {
    align-content: normal !important;
  }
  .flex-align-content-start-md {
    align-content: flex-start !important;
  }
  .flex-align-content-end-md {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-md {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-md {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-md {
    align-content: last baseline !important;
  }
  .flex-align-content-between-md {
    align-content: space-between !important;
  }
  .flex-align-content-around-md {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-md {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-md {
    align-content: stretch !important;
  }
  .flex-align-content-center-md {
    align-content: center !important;
  }
  .flex-align-content-center-safe-md {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-md {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-md {
    align-content: inherit !important;
  }
  .flex-align-content-initial-md {
    align-content: initial !important;
  }
  .flex-align-content-revert-md {
    align-content: revert !important;
  }
  .flex-align-content-unset-md {
    align-content: unset !important;
  }
  .flex-justify-items-normal-md {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-md {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-md {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-md {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-md {
    justify-items: left !important;
  }
  .flex-justify-items-right-md {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-md {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-md {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-md {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-md {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-md {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-md {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-md {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-md {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-md {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-md {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-md {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-md {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-md {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-md {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-md {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-md {
    justify-self: normal !important;
  }
  .flex-justify-self-start-md {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-md {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-md {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-md {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-md {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-md {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-md {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-md {
    justify-self: left !important;
  }
  .flex-justify-self-right-md {
    justify-self: right !important;
  }
  .flex-justify-content-center-md {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-md {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-md {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-md {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-md {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-md {
    justify-content: left !important;
  }
  .flex-justify-content-right-md {
    justify-content: right !important;
  }
  .flex-justify-content-normal-md {
    justify-content: normal !important;
  }
  .flex-justify-content-between-md {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-md {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-md {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-md {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-md {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-md {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-md {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-md {
    justify-content: unset !important;
  }
  .flex-justify-center-md {
    justify-content: center !important;
  }
  .flex-justify-center-safe-md {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-md {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-md {
    justify-content: flex-start !important;
  }
  .flex-justify-end-md {
    justify-content: flex-end !important;
  }
  .flex-justify-left-md {
    justify-content: left !important;
  }
  .flex-justify-right-md {
    justify-content: right !important;
  }
  .flex-justify-normal-md {
    justify-content: normal !important;
  }
  .flex-justify-between-md {
    justify-content: space-between !important;
  }
  .flex-justify-around-md {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-md {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-md {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-md {
    justify-content: inherit !important;
  }
  .flex-justify-initial-md {
    justify-content: initial !important;
  }
  .flex-justify-revert-md {
    justify-content: revert !important;
  }
  .flex-justify-unset-md {
    justify-content: unset !important;
  }
  .order-1-md {
    order: 1 !important;
  }
  .order-2-md {
    order: 2 !important;
  }
  .order-3-md {
    order: 3 !important;
  }
  .order-4-md {
    order: 4 !important;
  }
  .order-5-md {
    order: 5 !important;
  }
  .order-6-md {
    order: 6 !important;
  }
  .order-7-md {
    order: 7 !important;
  }
  .order-8-md {
    order: 8 !important;
  }
  .order-9-md {
    order: 9 !important;
  }
  .order-10-md {
    order: 10 !important;
  }
  .order-11-md {
    order: 11 !important;
  }
  .order-12-md {
    order: 12 !important;
  }
  .order-13-md {
    order: 13 !important;
  }
  .order-14-md {
    order: 14 !important;
  }
  .order-15-md {
    order: 15 !important;
  }
  .order-16-md {
    order: 16 !important;
  }
  .order-17-md {
    order: 17 !important;
  }
  .order-18-md {
    order: 18 !important;
  }
  .order-19-md {
    order: 19 !important;
  }
  .order-20-md {
    order: 20 !important;
  }
  .order-21-md {
    order: 21 !important;
  }
  .order-22-md {
    order: 22 !important;
  }
  .order-23-md {
    order: 23 !important;
  }
  .order-24-md {
    order: 24 !important;
  }
  .gap-1-md {
    gap: 4px !important;
  }
  .gap-2-md {
    gap: 8px !important;
  }
  .gap-3-md {
    gap: 12px !important;
  }
  .gap-4-md {
    gap: 16px !important;
  }
  .gap-5-md {
    gap: 20px !important;
  }
  .gap-6-md {
    gap: 24px !important;
  }
  .gap-7-md {
    gap: 28px !important;
  }
  .gap-8-md {
    gap: 32px !important;
  }
  .gap-9-md {
    gap: 36px !important;
  }
  .gap-10-md {
    gap: 40px !important;
  }
  .gap-11-md {
    gap: 44px !important;
  }
  .gap-12-md {
    gap: 48px !important;
  }
}
@container (min-width: 992px) {
  .flex-nowrap-lg {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-lg {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-lg {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-lg {
    flex-direction: column !important;
  }
  .flex-column-reverse-lg {
    flex-direction: column-reverse !important;
  }
  .flex-row-lg {
    flex-direction: row !important;
  }
  .flex-row-reverse-lg {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-lg > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-lg > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-lg > * {
    flex-grow: 0 !important;
  }
  .flex-grow-lg > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-lg {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-lg {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-lg {
    flex-grow: 0 !important;
  }
  .flex-grow-self-lg {
    flex-grow: 1 !important;
  }
  .flex-right-lg {
    margin-left: auto !important;
  }
  .flex-left-lg {
    margin-right: auto !important;
  }
  .flex-top-lg {
    margin-bottom: auto !important;
  }
  .flex-bottom-lg {
    margin-top: auto !important;
  }
  .flex-center-lg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-lg {
    align-items: normal !important;
  }
  .flex-align-stretch-lg {
    align-items: stretch !important;
  }
  .flex-align-start-lg {
    align-items: flex-start !important;
  }
  .flex-align-end-lg {
    align-items: flex-end !important;
  }
  .flex-align-baseline-lg {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-lg {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-lg {
    align-items: last baseline !important;
  }
  .flex-align-center-lg {
    align-items: center !important;
  }
  .flex-align-center-safe-lg {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-lg {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-lg {
    align-items: inherit !important;
  }
  .flex-align-initial-lg {
    align-items: initial !important;
  }
  .flex-align-revert-lg {
    align-items: revert !important;
  }
  .flex-align-unset-lg {
    align-items: unset !important;
  }
  .flex-align-items-normal-lg {
    align-items: normal !important;
  }
  .flex-align-items-stretch-lg {
    align-items: stretch !important;
  }
  .flex-align-items-start-lg {
    align-items: flex-start !important;
  }
  .flex-align-items-end-lg {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-lg {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-lg {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-lg {
    align-items: last baseline !important;
  }
  .flex-align-items-center-lg {
    align-items: center !important;
  }
  .flex-align-items-center-safe-lg {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-lg {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-lg {
    align-items: inherit !important;
  }
  .flex-align-items-initial-lg {
    align-items: initial !important;
  }
  .flex-align-items-revert-lg {
    align-items: revert !important;
  }
  .flex-align-items-unset-lg {
    align-items: unset !important;
  }
  .flex-align-self-auto-lg {
    align-self: auto !important;
  }
  .flex-align-self-normal-lg {
    align-self: normal !important;
  }
  .flex-align-self-start-lg {
    align-self: flex-start !important;
  }
  .flex-align-self-end-lg {
    align-self: flex-end !important;
  }
  .flex-align-self-center-lg {
    align-self: center !important;
  }
  .flex-align-self-center-safe-lg {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-lg {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-lg {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-lg {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-lg {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-lg {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-lg {
    align-self: inherit !important;
  }
  .flex-align-self-initial-lg {
    align-self: initial !important;
  }
  .flex-align-self-revert-lg {
    align-self: revert !important;
  }
  .flex-align-self-unset-lg {
    align-self: unset !important;
  }
  .flex-align-content-normal-lg {
    align-content: normal !important;
  }
  .flex-align-content-start-lg {
    align-content: flex-start !important;
  }
  .flex-align-content-end-lg {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-lg {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-lg {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-lg {
    align-content: last baseline !important;
  }
  .flex-align-content-between-lg {
    align-content: space-between !important;
  }
  .flex-align-content-around-lg {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-lg {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-lg {
    align-content: stretch !important;
  }
  .flex-align-content-center-lg {
    align-content: center !important;
  }
  .flex-align-content-center-safe-lg {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-lg {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-lg {
    align-content: inherit !important;
  }
  .flex-align-content-initial-lg {
    align-content: initial !important;
  }
  .flex-align-content-revert-lg {
    align-content: revert !important;
  }
  .flex-align-content-unset-lg {
    align-content: unset !important;
  }
  .flex-justify-items-normal-lg {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-lg {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-lg {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-lg {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-lg {
    justify-items: left !important;
  }
  .flex-justify-items-right-lg {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-lg {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-lg {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-lg {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-lg {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-lg {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-lg {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-lg {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-lg {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-lg {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-lg {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-lg {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-lg {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-lg {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-lg {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-lg {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-lg {
    justify-self: normal !important;
  }
  .flex-justify-self-start-lg {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-lg {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-lg {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-lg {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-lg {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-lg {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-lg {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-lg {
    justify-self: left !important;
  }
  .flex-justify-self-right-lg {
    justify-self: right !important;
  }
  .flex-justify-content-center-lg {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-lg {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-lg {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-lg {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-lg {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-lg {
    justify-content: left !important;
  }
  .flex-justify-content-right-lg {
    justify-content: right !important;
  }
  .flex-justify-content-normal-lg {
    justify-content: normal !important;
  }
  .flex-justify-content-between-lg {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-lg {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-lg {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-lg {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-lg {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-lg {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-lg {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-lg {
    justify-content: unset !important;
  }
  .flex-justify-center-lg {
    justify-content: center !important;
  }
  .flex-justify-center-safe-lg {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-lg {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-lg {
    justify-content: flex-start !important;
  }
  .flex-justify-end-lg {
    justify-content: flex-end !important;
  }
  .flex-justify-left-lg {
    justify-content: left !important;
  }
  .flex-justify-right-lg {
    justify-content: right !important;
  }
  .flex-justify-normal-lg {
    justify-content: normal !important;
  }
  .flex-justify-between-lg {
    justify-content: space-between !important;
  }
  .flex-justify-around-lg {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-lg {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-lg {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-lg {
    justify-content: inherit !important;
  }
  .flex-justify-initial-lg {
    justify-content: initial !important;
  }
  .flex-justify-revert-lg {
    justify-content: revert !important;
  }
  .flex-justify-unset-lg {
    justify-content: unset !important;
  }
  .order-1-lg {
    order: 1 !important;
  }
  .order-2-lg {
    order: 2 !important;
  }
  .order-3-lg {
    order: 3 !important;
  }
  .order-4-lg {
    order: 4 !important;
  }
  .order-5-lg {
    order: 5 !important;
  }
  .order-6-lg {
    order: 6 !important;
  }
  .order-7-lg {
    order: 7 !important;
  }
  .order-8-lg {
    order: 8 !important;
  }
  .order-9-lg {
    order: 9 !important;
  }
  .order-10-lg {
    order: 10 !important;
  }
  .order-11-lg {
    order: 11 !important;
  }
  .order-12-lg {
    order: 12 !important;
  }
  .order-13-lg {
    order: 13 !important;
  }
  .order-14-lg {
    order: 14 !important;
  }
  .order-15-lg {
    order: 15 !important;
  }
  .order-16-lg {
    order: 16 !important;
  }
  .order-17-lg {
    order: 17 !important;
  }
  .order-18-lg {
    order: 18 !important;
  }
  .order-19-lg {
    order: 19 !important;
  }
  .order-20-lg {
    order: 20 !important;
  }
  .order-21-lg {
    order: 21 !important;
  }
  .order-22-lg {
    order: 22 !important;
  }
  .order-23-lg {
    order: 23 !important;
  }
  .order-24-lg {
    order: 24 !important;
  }
  .gap-1-lg {
    gap: 4px !important;
  }
  .gap-2-lg {
    gap: 8px !important;
  }
  .gap-3-lg {
    gap: 12px !important;
  }
  .gap-4-lg {
    gap: 16px !important;
  }
  .gap-5-lg {
    gap: 20px !important;
  }
  .gap-6-lg {
    gap: 24px !important;
  }
  .gap-7-lg {
    gap: 28px !important;
  }
  .gap-8-lg {
    gap: 32px !important;
  }
  .gap-9-lg {
    gap: 36px !important;
  }
  .gap-10-lg {
    gap: 40px !important;
  }
  .gap-11-lg {
    gap: 44px !important;
  }
  .gap-12-lg {
    gap: 48px !important;
  }
}
@container (min-width: 1200px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-xl {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-xl {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-xl {
    flex-direction: column !important;
  }
  .flex-column-reverse-xl {
    flex-direction: column-reverse !important;
  }
  .flex-row-xl {
    flex-direction: row !important;
  }
  .flex-row-reverse-xl {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-xl > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xl > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-xl > * {
    flex-grow: 0 !important;
  }
  .flex-grow-xl > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-xl {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-xl {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-xl {
    flex-grow: 0 !important;
  }
  .flex-grow-self-xl {
    flex-grow: 1 !important;
  }
  .flex-right-xl {
    margin-left: auto !important;
  }
  .flex-left-xl {
    margin-right: auto !important;
  }
  .flex-top-xl {
    margin-bottom: auto !important;
  }
  .flex-bottom-xl {
    margin-top: auto !important;
  }
  .flex-center-xl {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-xl {
    align-items: normal !important;
  }
  .flex-align-stretch-xl {
    align-items: stretch !important;
  }
  .flex-align-start-xl {
    align-items: flex-start !important;
  }
  .flex-align-end-xl {
    align-items: flex-end !important;
  }
  .flex-align-baseline-xl {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-xl {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-xl {
    align-items: last baseline !important;
  }
  .flex-align-center-xl {
    align-items: center !important;
  }
  .flex-align-center-safe-xl {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-xl {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-xl {
    align-items: inherit !important;
  }
  .flex-align-initial-xl {
    align-items: initial !important;
  }
  .flex-align-revert-xl {
    align-items: revert !important;
  }
  .flex-align-unset-xl {
    align-items: unset !important;
  }
  .flex-align-items-normal-xl {
    align-items: normal !important;
  }
  .flex-align-items-stretch-xl {
    align-items: stretch !important;
  }
  .flex-align-items-start-xl {
    align-items: flex-start !important;
  }
  .flex-align-items-end-xl {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-xl {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-xl {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-xl {
    align-items: last baseline !important;
  }
  .flex-align-items-center-xl {
    align-items: center !important;
  }
  .flex-align-items-center-safe-xl {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-xl {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-xl {
    align-items: inherit !important;
  }
  .flex-align-items-initial-xl {
    align-items: initial !important;
  }
  .flex-align-items-revert-xl {
    align-items: revert !important;
  }
  .flex-align-items-unset-xl {
    align-items: unset !important;
  }
  .flex-align-self-auto-xl {
    align-self: auto !important;
  }
  .flex-align-self-normal-xl {
    align-self: normal !important;
  }
  .flex-align-self-start-xl {
    align-self: flex-start !important;
  }
  .flex-align-self-end-xl {
    align-self: flex-end !important;
  }
  .flex-align-self-center-xl {
    align-self: center !important;
  }
  .flex-align-self-center-safe-xl {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-xl {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-xl {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-xl {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-xl {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-xl {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-xl {
    align-self: inherit !important;
  }
  .flex-align-self-initial-xl {
    align-self: initial !important;
  }
  .flex-align-self-revert-xl {
    align-self: revert !important;
  }
  .flex-align-self-unset-xl {
    align-self: unset !important;
  }
  .flex-align-content-normal-xl {
    align-content: normal !important;
  }
  .flex-align-content-start-xl {
    align-content: flex-start !important;
  }
  .flex-align-content-end-xl {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-xl {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-xl {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-xl {
    align-content: last baseline !important;
  }
  .flex-align-content-between-xl {
    align-content: space-between !important;
  }
  .flex-align-content-around-xl {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-xl {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-xl {
    align-content: stretch !important;
  }
  .flex-align-content-center-xl {
    align-content: center !important;
  }
  .flex-align-content-center-safe-xl {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-xl {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-xl {
    align-content: inherit !important;
  }
  .flex-align-content-initial-xl {
    align-content: initial !important;
  }
  .flex-align-content-revert-xl {
    align-content: revert !important;
  }
  .flex-align-content-unset-xl {
    align-content: unset !important;
  }
  .flex-justify-items-normal-xl {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-xl {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-xl {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-xl {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-xl {
    justify-items: left !important;
  }
  .flex-justify-items-right-xl {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-xl {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-xl {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-xl {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-xl {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-xl {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-xl {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-xl {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-xl {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-xl {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-xl {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-xl {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-xl {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-xl {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-xl {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-xl {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-xl {
    justify-self: normal !important;
  }
  .flex-justify-self-start-xl {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-xl {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-xl {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-xl {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-xl {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-xl {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-xl {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-xl {
    justify-self: left !important;
  }
  .flex-justify-self-right-xl {
    justify-self: right !important;
  }
  .flex-justify-content-center-xl {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-xl {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-xl {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-xl {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-xl {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-xl {
    justify-content: left !important;
  }
  .flex-justify-content-right-xl {
    justify-content: right !important;
  }
  .flex-justify-content-normal-xl {
    justify-content: normal !important;
  }
  .flex-justify-content-between-xl {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-xl {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-xl {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-xl {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-xl {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-xl {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-xl {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-xl {
    justify-content: unset !important;
  }
  .flex-justify-center-xl {
    justify-content: center !important;
  }
  .flex-justify-center-safe-xl {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-xl {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-xl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xl {
    justify-content: flex-end !important;
  }
  .flex-justify-left-xl {
    justify-content: left !important;
  }
  .flex-justify-right-xl {
    justify-content: right !important;
  }
  .flex-justify-normal-xl {
    justify-content: normal !important;
  }
  .flex-justify-between-xl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xl {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-xl {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-xl {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-xl {
    justify-content: inherit !important;
  }
  .flex-justify-initial-xl {
    justify-content: initial !important;
  }
  .flex-justify-revert-xl {
    justify-content: revert !important;
  }
  .flex-justify-unset-xl {
    justify-content: unset !important;
  }
  .order-1-xl {
    order: 1 !important;
  }
  .order-2-xl {
    order: 2 !important;
  }
  .order-3-xl {
    order: 3 !important;
  }
  .order-4-xl {
    order: 4 !important;
  }
  .order-5-xl {
    order: 5 !important;
  }
  .order-6-xl {
    order: 6 !important;
  }
  .order-7-xl {
    order: 7 !important;
  }
  .order-8-xl {
    order: 8 !important;
  }
  .order-9-xl {
    order: 9 !important;
  }
  .order-10-xl {
    order: 10 !important;
  }
  .order-11-xl {
    order: 11 !important;
  }
  .order-12-xl {
    order: 12 !important;
  }
  .order-13-xl {
    order: 13 !important;
  }
  .order-14-xl {
    order: 14 !important;
  }
  .order-15-xl {
    order: 15 !important;
  }
  .order-16-xl {
    order: 16 !important;
  }
  .order-17-xl {
    order: 17 !important;
  }
  .order-18-xl {
    order: 18 !important;
  }
  .order-19-xl {
    order: 19 !important;
  }
  .order-20-xl {
    order: 20 !important;
  }
  .order-21-xl {
    order: 21 !important;
  }
  .order-22-xl {
    order: 22 !important;
  }
  .order-23-xl {
    order: 23 !important;
  }
  .order-24-xl {
    order: 24 !important;
  }
  .gap-1-xl {
    gap: 4px !important;
  }
  .gap-2-xl {
    gap: 8px !important;
  }
  .gap-3-xl {
    gap: 12px !important;
  }
  .gap-4-xl {
    gap: 16px !important;
  }
  .gap-5-xl {
    gap: 20px !important;
  }
  .gap-6-xl {
    gap: 24px !important;
  }
  .gap-7-xl {
    gap: 28px !important;
  }
  .gap-8-xl {
    gap: 32px !important;
  }
  .gap-9-xl {
    gap: 36px !important;
  }
  .gap-10-xl {
    gap: 40px !important;
  }
  .gap-11-xl {
    gap: 44px !important;
  }
  .gap-12-xl {
    gap: 48px !important;
  }
}
@container (min-width: 1400px) {
  .flex-nowrap-xxl {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-xxl {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-xxl {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-xxl {
    flex-direction: column !important;
  }
  .flex-column-reverse-xxl {
    flex-direction: column-reverse !important;
  }
  .flex-row-xxl {
    flex-direction: row !important;
  }
  .flex-row-reverse-xxl {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-xxl > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xxl > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-xxl > * {
    flex-grow: 0 !important;
  }
  .flex-grow-xxl > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-xxl {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-xxl {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-xxl {
    flex-grow: 0 !important;
  }
  .flex-grow-self-xxl {
    flex-grow: 1 !important;
  }
  .flex-right-xxl {
    margin-left: auto !important;
  }
  .flex-left-xxl {
    margin-right: auto !important;
  }
  .flex-top-xxl {
    margin-bottom: auto !important;
  }
  .flex-bottom-xxl {
    margin-top: auto !important;
  }
  .flex-center-xxl {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-xxl {
    align-items: normal !important;
  }
  .flex-align-stretch-xxl {
    align-items: stretch !important;
  }
  .flex-align-start-xxl {
    align-items: flex-start !important;
  }
  .flex-align-end-xxl {
    align-items: flex-end !important;
  }
  .flex-align-baseline-xxl {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-xxl {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-xxl {
    align-items: last baseline !important;
  }
  .flex-align-center-xxl {
    align-items: center !important;
  }
  .flex-align-center-safe-xxl {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-xxl {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-xxl {
    align-items: inherit !important;
  }
  .flex-align-initial-xxl {
    align-items: initial !important;
  }
  .flex-align-revert-xxl {
    align-items: revert !important;
  }
  .flex-align-unset-xxl {
    align-items: unset !important;
  }
  .flex-align-items-normal-xxl {
    align-items: normal !important;
  }
  .flex-align-items-stretch-xxl {
    align-items: stretch !important;
  }
  .flex-align-items-start-xxl {
    align-items: flex-start !important;
  }
  .flex-align-items-end-xxl {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-xxl {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-xxl {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-xxl {
    align-items: last baseline !important;
  }
  .flex-align-items-center-xxl {
    align-items: center !important;
  }
  .flex-align-items-center-safe-xxl {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-xxl {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-xxl {
    align-items: inherit !important;
  }
  .flex-align-items-initial-xxl {
    align-items: initial !important;
  }
  .flex-align-items-revert-xxl {
    align-items: revert !important;
  }
  .flex-align-items-unset-xxl {
    align-items: unset !important;
  }
  .flex-align-self-auto-xxl {
    align-self: auto !important;
  }
  .flex-align-self-normal-xxl {
    align-self: normal !important;
  }
  .flex-align-self-start-xxl {
    align-self: flex-start !important;
  }
  .flex-align-self-end-xxl {
    align-self: flex-end !important;
  }
  .flex-align-self-center-xxl {
    align-self: center !important;
  }
  .flex-align-self-center-safe-xxl {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-xxl {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-xxl {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-xxl {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-xxl {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-xxl {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-xxl {
    align-self: inherit !important;
  }
  .flex-align-self-initial-xxl {
    align-self: initial !important;
  }
  .flex-align-self-revert-xxl {
    align-self: revert !important;
  }
  .flex-align-self-unset-xxl {
    align-self: unset !important;
  }
  .flex-align-content-normal-xxl {
    align-content: normal !important;
  }
  .flex-align-content-start-xxl {
    align-content: flex-start !important;
  }
  .flex-align-content-end-xxl {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-xxl {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-xxl {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-xxl {
    align-content: last baseline !important;
  }
  .flex-align-content-between-xxl {
    align-content: space-between !important;
  }
  .flex-align-content-around-xxl {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-xxl {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-xxl {
    align-content: stretch !important;
  }
  .flex-align-content-center-xxl {
    align-content: center !important;
  }
  .flex-align-content-center-safe-xxl {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-xxl {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-xxl {
    align-content: inherit !important;
  }
  .flex-align-content-initial-xxl {
    align-content: initial !important;
  }
  .flex-align-content-revert-xxl {
    align-content: revert !important;
  }
  .flex-align-content-unset-xxl {
    align-content: unset !important;
  }
  .flex-justify-items-normal-xxl {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-xxl {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-xxl {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-xxl {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-xxl {
    justify-items: left !important;
  }
  .flex-justify-items-right-xxl {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-xxl {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-xxl {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-xxl {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-xxl {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-xxl {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-xxl {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-xxl {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-xxl {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-xxl {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-xxl {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-xxl {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-xxl {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-xxl {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-xxl {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-xxl {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-xxl {
    justify-self: normal !important;
  }
  .flex-justify-self-start-xxl {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-xxl {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-xxl {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-xxl {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-xxl {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-xxl {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-xxl {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-xxl {
    justify-self: left !important;
  }
  .flex-justify-self-right-xxl {
    justify-self: right !important;
  }
  .flex-justify-content-center-xxl {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-xxl {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-xxl {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-xxl {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-xxl {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-xxl {
    justify-content: left !important;
  }
  .flex-justify-content-right-xxl {
    justify-content: right !important;
  }
  .flex-justify-content-normal-xxl {
    justify-content: normal !important;
  }
  .flex-justify-content-between-xxl {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-xxl {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-xxl {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-xxl {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-xxl {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-xxl {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-xxl {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-xxl {
    justify-content: unset !important;
  }
  .flex-justify-center-xxl {
    justify-content: center !important;
  }
  .flex-justify-center-safe-xxl {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-xxl {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-xxl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xxl {
    justify-content: flex-end !important;
  }
  .flex-justify-left-xxl {
    justify-content: left !important;
  }
  .flex-justify-right-xxl {
    justify-content: right !important;
  }
  .flex-justify-normal-xxl {
    justify-content: normal !important;
  }
  .flex-justify-between-xxl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xxl {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-xxl {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-xxl {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-xxl {
    justify-content: inherit !important;
  }
  .flex-justify-initial-xxl {
    justify-content: initial !important;
  }
  .flex-justify-revert-xxl {
    justify-content: revert !important;
  }
  .flex-justify-unset-xxl {
    justify-content: unset !important;
  }
  .order-1-xxl {
    order: 1 !important;
  }
  .order-2-xxl {
    order: 2 !important;
  }
  .order-3-xxl {
    order: 3 !important;
  }
  .order-4-xxl {
    order: 4 !important;
  }
  .order-5-xxl {
    order: 5 !important;
  }
  .order-6-xxl {
    order: 6 !important;
  }
  .order-7-xxl {
    order: 7 !important;
  }
  .order-8-xxl {
    order: 8 !important;
  }
  .order-9-xxl {
    order: 9 !important;
  }
  .order-10-xxl {
    order: 10 !important;
  }
  .order-11-xxl {
    order: 11 !important;
  }
  .order-12-xxl {
    order: 12 !important;
  }
  .order-13-xxl {
    order: 13 !important;
  }
  .order-14-xxl {
    order: 14 !important;
  }
  .order-15-xxl {
    order: 15 !important;
  }
  .order-16-xxl {
    order: 16 !important;
  }
  .order-17-xxl {
    order: 17 !important;
  }
  .order-18-xxl {
    order: 18 !important;
  }
  .order-19-xxl {
    order: 19 !important;
  }
  .order-20-xxl {
    order: 20 !important;
  }
  .order-21-xxl {
    order: 21 !important;
  }
  .order-22-xxl {
    order: 22 !important;
  }
  .order-23-xxl {
    order: 23 !important;
  }
  .order-24-xxl {
    order: 24 !important;
  }
  .gap-1-xxl {
    gap: 4px !important;
  }
  .gap-2-xxl {
    gap: 8px !important;
  }
  .gap-3-xxl {
    gap: 12px !important;
  }
  .gap-4-xxl {
    gap: 16px !important;
  }
  .gap-5-xxl {
    gap: 20px !important;
  }
  .gap-6-xxl {
    gap: 24px !important;
  }
  .gap-7-xxl {
    gap: 28px !important;
  }
  .gap-8-xxl {
    gap: 32px !important;
  }
  .gap-9-xxl {
    gap: 36px !important;
  }
  .gap-10-xxl {
    gap: 40px !important;
  }
  .gap-11-xxl {
    gap: 44px !important;
  }
  .gap-12-xxl {
    gap: 48px !important;
  }
}
@container (min-width: 2000px) {
  .flex-nowrap-xxxl {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-xxxl {
    flex-wrap: wrap !important;
  }
  .flex-wrap-reverse-xxxl {
    flex-wrap: wrap-reverse !important;
  }
  .flex-column-xxxl {
    flex-direction: column !important;
  }
  .flex-column-reverse-xxxl {
    flex-direction: column-reverse !important;
  }
  .flex-row-xxxl {
    flex-direction: row !important;
  }
  .flex-row-reverse-xxxl {
    flex-direction: row-reverse !important;
  }
  .flex-no-shrink-xxxl > * {
    flex-shrink: 0 !important;
  }
  .flex-shrink-xxxl > * {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-xxxl > * {
    flex-grow: 0 !important;
  }
  .flex-grow-xxxl > * {
    flex-grow: 1 !important;
  }
  .flex-no-shrink-self-xxxl {
    flex-shrink: 0 !important;
  }
  .flex-shrink-self-xxxl {
    flex-shrink: 1 !important;
  }
  .flex-no-grow-self-xxxl {
    flex-grow: 0 !important;
  }
  .flex-grow-self-xxxl {
    flex-grow: 1 !important;
  }
  .flex-right-xxxl {
    margin-left: auto !important;
  }
  .flex-left-xxxl {
    margin-right: auto !important;
  }
  .flex-top-xxxl {
    margin-bottom: auto !important;
  }
  .flex-bottom-xxxl {
    margin-top: auto !important;
  }
  .flex-center-xxxl {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .flex-align-normal-xxxl {
    align-items: normal !important;
  }
  .flex-align-stretch-xxxl {
    align-items: stretch !important;
  }
  .flex-align-start-xxxl {
    align-items: flex-start !important;
  }
  .flex-align-end-xxxl {
    align-items: flex-end !important;
  }
  .flex-align-baseline-xxxl {
    align-items: baseline !important;
  }
  .flex-align-baseline-first-xxxl {
    align-items: first baseline !important;
  }
  .flex-align-baseline-last-xxxl {
    align-items: last baseline !important;
  }
  .flex-align-center-xxxl {
    align-items: center !important;
  }
  .flex-align-center-safe-xxxl {
    align-items: safe center !important;
  }
  .flex-align-center-unsafe-xxxl {
    align-items: unsafe center !important;
  }
  .flex-align-inherit-xxxl {
    align-items: inherit !important;
  }
  .flex-align-initial-xxxl {
    align-items: initial !important;
  }
  .flex-align-revert-xxxl {
    align-items: revert !important;
  }
  .flex-align-unset-xxxl {
    align-items: unset !important;
  }
  .flex-align-items-normal-xxxl {
    align-items: normal !important;
  }
  .flex-align-items-stretch-xxxl {
    align-items: stretch !important;
  }
  .flex-align-items-start-xxxl {
    align-items: flex-start !important;
  }
  .flex-align-items-end-xxxl {
    align-items: flex-end !important;
  }
  .flex-align-items-baseline-xxxl {
    align-items: baseline !important;
  }
  .flex-align-items-baseline-first-xxxl {
    align-items: first baseline !important;
  }
  .flex-align-items-baseline-last-xxxl {
    align-items: last baseline !important;
  }
  .flex-align-items-center-xxxl {
    align-items: center !important;
  }
  .flex-align-items-center-safe-xxxl {
    align-items: safe center !important;
  }
  .flex-align-items-center-unsafe-xxxl {
    align-items: unsafe center !important;
  }
  .flex-align-items-inherit-xxxl {
    align-items: inherit !important;
  }
  .flex-align-items-initial-xxxl {
    align-items: initial !important;
  }
  .flex-align-items-revert-xxxl {
    align-items: revert !important;
  }
  .flex-align-items-unset-xxxl {
    align-items: unset !important;
  }
  .flex-align-self-auto-xxxl {
    align-self: auto !important;
  }
  .flex-align-self-normal-xxxl {
    align-self: normal !important;
  }
  .flex-align-self-start-xxxl {
    align-self: flex-start !important;
  }
  .flex-align-self-end-xxxl {
    align-self: flex-end !important;
  }
  .flex-align-self-center-xxxl {
    align-self: center !important;
  }
  .flex-align-self-center-safe-xxxl {
    align-self: safe center !important;
  }
  .flex-align-self-center-unsafe-xxxl {
    align-self: unsafe center !important;
  }
  .flex-align-self-baseline-xxxl {
    align-self: baseline !important;
  }
  .flex-align-self-baseline-first-xxxl {
    align-self: first baseline !important;
  }
  .flex-align-self-baseline-last-xxxl {
    align-self: last baseline !important;
  }
  .flex-align-self-stretch-xxxl {
    align-self: stretch !important;
  }
  .flex-align-self-inherit-xxxl {
    align-self: inherit !important;
  }
  .flex-align-self-initial-xxxl {
    align-self: initial !important;
  }
  .flex-align-self-revert-xxxl {
    align-self: revert !important;
  }
  .flex-align-self-unset-xxxl {
    align-self: unset !important;
  }
  .flex-align-content-normal-xxxl {
    align-content: normal !important;
  }
  .flex-align-content-start-xxxl {
    align-content: flex-start !important;
  }
  .flex-align-content-end-xxxl {
    align-content: flex-end !important;
  }
  .flex-align-content-baseline-xxxl {
    align-content: baseline !important;
  }
  .flex-align-content-baseline-first-xxxl {
    align-content: first baseline !important;
  }
  .flex-align-content-baseline-last-xxxl {
    align-content: last baseline !important;
  }
  .flex-align-content-between-xxxl {
    align-content: space-between !important;
  }
  .flex-align-content-around-xxxl {
    align-content: space-around !important;
  }
  .flex-align-content-evenly-xxxl {
    align-content: space-evenly !important;
  }
  .flex-align-content-stretch-xxxl {
    align-content: stretch !important;
  }
  .flex-align-content-center-xxxl {
    align-content: center !important;
  }
  .flex-align-content-center-safe-xxxl {
    align-content: safe center !important;
  }
  .flex-align-content-center-unsafe-xxxl {
    align-content: unsafe center !important;
  }
  .flex-align-content-inherit-xxxl {
    align-content: inherit !important;
  }
  .flex-align-content-initial-xxxl {
    align-content: initial !important;
  }
  .flex-align-content-revert-xxxl {
    align-content: revert !important;
  }
  .flex-align-content-unset-xxxl {
    align-content: unset !important;
  }
  .flex-justify-items-normal-xxxl {
    justify-items: normal !important;
  }
  .flex-justify-items-stretch-xxxl {
    justify-items: stretch !important;
  }
  .flex-justify-items-start-xxxl {
    justify-items: flex-start !important;
  }
  .flex-justify-items-end-xxxl {
    justify-items: flex-end !important;
  }
  .flex-justify-items-left-xxxl {
    justify-items: left !important;
  }
  .flex-justify-items-right-xxxl {
    justify-items: right !important;
  }
  .flex-justify-items-baseline-xxxl {
    justify-items: baseline !important;
  }
  .flex-justify-items-baseline-first-xxxl {
    justify-items: first baseline !important;
  }
  .flex-justify-items-baseline-last-xxxl {
    justify-items: last baseline !important;
  }
  .flex-justify-items-center-xxxl {
    justify-items: center !important;
  }
  .flex-justify-items-center-safe-xxxl {
    justify-items: safe center !important;
  }
  .flex-justify-items-center-unsafe-xxxl {
    justify-items: unsafe center !important;
  }
  .flex-justify-items-inherit-xxxl {
    justify-items: inherit !important;
  }
  .flex-justify-items-initial-xxxl {
    justify-items: initial !important;
  }
  .flex-justify-items-revert-xxxl {
    justify-items: revert !important;
  }
  .flex-justify-items-unset-xxxl {
    justify-items: unset !important;
  }
  .flex-justify-self-inherit-xxxl {
    justify-self: inherit !important;
  }
  .flex-justify-self-initial-xxxl {
    justify-self: initial !important;
  }
  .flex-justify-self-revert-xxxl {
    justify-self: revert !important;
  }
  .flex-justify-self-unset-xxxl {
    justify-self: unset !important;
  }
  .flex-justify-self-auto-xxxl {
    justify-self: auto !important;
  }
  .flex-justify-self-normal-xxxl {
    justify-self: normal !important;
  }
  .flex-justify-self-start-xxxl {
    justify-self: flex-start !important;
  }
  .flex-justify-self-end-xxxl {
    justify-self: flex-end !important;
  }
  .flex-justify-self-center-xxxl {
    justify-self: center !important;
  }
  .flex-justify-self-stretch-xxxl {
    justify-self: stretch !important;
  }
  .flex-justify-self-baseline-xxxl {
    justify-self: baseline !important;
  }
  .flex-justify-self-baseline-first-xxxl {
    justify-self: first baseline !important;
  }
  .flex-justify-self-baseline-last-xxxl {
    justify-self: last baseline !important;
  }
  .flex-justify-self-left-xxxl {
    justify-self: left !important;
  }
  .flex-justify-self-right-xxxl {
    justify-self: right !important;
  }
  .flex-justify-content-center-xxxl {
    justify-content: center !important;
  }
  .flex-justify-content-center-safe-xxxl {
    justify-content: safe center !important;
  }
  .flex-justify-content-center-unsafe-xxxl {
    justify-content: unsafe center !important;
  }
  .flex-justify-content-start-xxxl {
    justify-content: flex-start !important;
  }
  .flex-justify-content-end-xxxl {
    justify-content: flex-end !important;
  }
  .flex-justify-content-left-xxxl {
    justify-content: left !important;
  }
  .flex-justify-content-right-xxxl {
    justify-content: right !important;
  }
  .flex-justify-content-normal-xxxl {
    justify-content: normal !important;
  }
  .flex-justify-content-between-xxxl {
    justify-content: space-between !important;
  }
  .flex-justify-content-around-xxxl {
    justify-content: space-around !important;
  }
  .flex-justify-content-evenly-xxxl {
    justify-content: space-evenly !important;
  }
  .flex-justify-content-stretch-xxxl {
    justify-content: stretch !important;
  }
  .flex-justify-content-inherit-xxxl {
    justify-content: inherit !important;
  }
  .flex-justify-content-initial-xxxl {
    justify-content: initial !important;
  }
  .flex-justify-content-revert-xxxl {
    justify-content: revert !important;
  }
  .flex-justify-content-unset-xxxl {
    justify-content: unset !important;
  }
  .flex-justify-center-xxxl {
    justify-content: center !important;
  }
  .flex-justify-center-safe-xxxl {
    justify-content: safe center !important;
  }
  .flex-justify-center-unsafe-xxxl {
    justify-content: unsafe center !important;
  }
  .flex-justify-start-xxxl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xxxl {
    justify-content: flex-end !important;
  }
  .flex-justify-left-xxxl {
    justify-content: left !important;
  }
  .flex-justify-right-xxxl {
    justify-content: right !important;
  }
  .flex-justify-normal-xxxl {
    justify-content: normal !important;
  }
  .flex-justify-between-xxxl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xxxl {
    justify-content: space-around !important;
  }
  .flex-justify-evenly-xxxl {
    justify-content: space-evenly !important;
  }
  .flex-justify-stretch-xxxl {
    justify-content: stretch !important;
  }
  .flex-justify-inherit-xxxl {
    justify-content: inherit !important;
  }
  .flex-justify-initial-xxxl {
    justify-content: initial !important;
  }
  .flex-justify-revert-xxxl {
    justify-content: revert !important;
  }
  .flex-justify-unset-xxxl {
    justify-content: unset !important;
  }
  .order-1-xxxl {
    order: 1 !important;
  }
  .order-2-xxxl {
    order: 2 !important;
  }
  .order-3-xxxl {
    order: 3 !important;
  }
  .order-4-xxxl {
    order: 4 !important;
  }
  .order-5-xxxl {
    order: 5 !important;
  }
  .order-6-xxxl {
    order: 6 !important;
  }
  .order-7-xxxl {
    order: 7 !important;
  }
  .order-8-xxxl {
    order: 8 !important;
  }
  .order-9-xxxl {
    order: 9 !important;
  }
  .order-10-xxxl {
    order: 10 !important;
  }
  .order-11-xxxl {
    order: 11 !important;
  }
  .order-12-xxxl {
    order: 12 !important;
  }
  .order-13-xxxl {
    order: 13 !important;
  }
  .order-14-xxxl {
    order: 14 !important;
  }
  .order-15-xxxl {
    order: 15 !important;
  }
  .order-16-xxxl {
    order: 16 !important;
  }
  .order-17-xxxl {
    order: 17 !important;
  }
  .order-18-xxxl {
    order: 18 !important;
  }
  .order-19-xxxl {
    order: 19 !important;
  }
  .order-20-xxxl {
    order: 20 !important;
  }
  .order-21-xxxl {
    order: 21 !important;
  }
  .order-22-xxxl {
    order: 22 !important;
  }
  .order-23-xxxl {
    order: 23 !important;
  }
  .order-24-xxxl {
    order: 24 !important;
  }
  .gap-1-xxxl {
    gap: 4px !important;
  }
  .gap-2-xxxl {
    gap: 8px !important;
  }
  .gap-3-xxxl {
    gap: 12px !important;
  }
  .gap-4-xxxl {
    gap: 16px !important;
  }
  .gap-5-xxxl {
    gap: 20px !important;
  }
  .gap-6-xxxl {
    gap: 24px !important;
  }
  .gap-7-xxxl {
    gap: 28px !important;
  }
  .gap-8-xxxl {
    gap: 32px !important;
  }
  .gap-9-xxxl {
    gap: 36px !important;
  }
  .gap-10-xxxl {
    gap: 40px !important;
  }
  .gap-11-xxxl {
    gap: 44px !important;
  }
  .gap-12-xxxl {
    gap: 48px !important;
  }
}

/* source/common-css/float.less */
.clear-float::after {
  display: block;
  clear: both;
  content: "";
}
.place-right,
.float-right {
  float: right !important;
}
.place-left,
.float-left {
  float: left !important;
}
.place-none,
.float-none,
.no-float {
  float: none !important;
}
@container (min-width: 0) {
  .place-right-fs,
  .float-right-fs {
    float: right !important;
  }
  .place-left-fs,
  .float-left-fs {
    float: left !important;
  }
  .place-none-fs,
  .float-none-fs,
  .no-float-fs {
    float: none !important;
  }
}
@container (min-width: 360px) {
  .place-right-xs,
  .float-right-xs {
    float: right !important;
  }
  .place-left-xs,
  .float-left-xs {
    float: left !important;
  }
  .place-none-xs,
  .float-none-xs,
  .no-float-xs {
    float: none !important;
  }
}
@container (min-width: 576px) {
  .place-right-sm,
  .float-right-sm {
    float: right !important;
  }
  .place-left-sm,
  .float-left-sm {
    float: left !important;
  }
  .place-none-sm,
  .float-none-sm,
  .no-float-sm {
    float: none !important;
  }
}
@container (min-width: 640px) {
  .place-right-ld,
  .float-right-ld {
    float: right !important;
  }
  .place-left-ld,
  .float-left-ld {
    float: left !important;
  }
  .place-none-ld,
  .float-none-ld,
  .no-float-ld {
    float: none !important;
  }
}
@container (min-width: 768px) {
  .place-right-md,
  .float-right-md {
    float: right !important;
  }
  .place-left-md,
  .float-left-md {
    float: left !important;
  }
  .place-none-md,
  .float-none-md,
  .no-float-md {
    float: none !important;
  }
}
@container (min-width: 992px) {
  .place-right-lg,
  .float-right-lg {
    float: right !important;
  }
  .place-left-lg,
  .float-left-lg {
    float: left !important;
  }
  .place-none-lg,
  .float-none-lg,
  .no-float-lg {
    float: none !important;
  }
}
@container (min-width: 1200px) {
  .place-right-xl,
  .float-right-xl {
    float: right !important;
  }
  .place-left-xl,
  .float-left-xl {
    float: left !important;
  }
  .place-none-xl,
  .float-none-xl,
  .no-float-xl {
    float: none !important;
  }
}
@container (min-width: 1400px) {
  .place-right-xxl,
  .float-right-xxl {
    float: right !important;
  }
  .place-left-xxl,
  .float-left-xxl {
    float: left !important;
  }
  .place-none-xxl,
  .float-none-xxl,
  .no-float-xxl {
    float: none !important;
  }
}
@container (min-width: 2000px) {
  .place-right-xxxl,
  .float-right-xxxl {
    float: right !important;
  }
  .place-left-xxxl,
  .float-left-xxxl {
    float: left !important;
  }
  .place-none-xxxl,
  .float-none-xxxl,
  .no-float-xxxl {
    float: none !important;
  }
}

/* source/common-css/font.less */
@font-face {
  font-family: "digital";
  font-weight: 400;
  font-style: normal;
  src: url(data:application/font-woff;base64,d09GRgABAAAAACLoABEAAAAAYGwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABgAAAABwAAAAcXxj59EdERUYAAAGcAAAAHQAAACAAqgAET1MvMgAAAbwAAABNAAAAYHRwuQ5jbWFwAAACDAAAAPIAAAGqqm1PKGN2dCAAAAMAAAAADgAAAA4K4wYDZnBnbQAAAxAAAAGxAAACZVO0L6dnYXNwAAAExAAAAAgAAAAIAAAAEGdseWYAAATMAAAZEAAAUYhYV1NCaGVhZAAAHdwAAAAvAAAANgAQXKJoaGVhAAAeDAAAACAAAAAkC1wHdmhtdHgAAB4sAAAAqQAAAfSUaSbGbG9jYQAAHtgAAADsAAAA/KEHthhtYXhwAAAfxAAAACAAAAAgAaEBLW5hbWUAAB/kAAABmwAAA4S7IBQVcG9zdAAAIYAAAAEdAAABxhWlPDJwcmVwAAAioAAAAEAAAABAXMm7eXdlYmYAACLgAAAABgAAAAZYtlGqAAAAAQAAAADMPaLPAAAAAMULTfAAAAAAzdAJNHjaY2BkYGDgA2IJBhBgYmAEwhogZgHzGAAJngCvAAAAeNpjYGY2YpzAwMrAwirOsouBgZELQjN7M8QyPmJgYGKAgQagJAMScPQJCWZwYOB9wMCW9i+NgYFNhpGdAaqG1ZbVFkgpMDACAOLJCaQAAAB42mNgYGBmgGAZBkYGEFgC5DGC+SwMHUBajkEAKMIHZPEy1DEsYFjJsFaBS0FEQVJBVkFJQV8h/gHD//9gnbwMClB5BgUBBQkFGSR5xv9f/z/+f+j/rv/bH6Q+SHgQ+yD6QfgD7wcyCjVQe/EARjYGuCJGJiDBhK4A6AUWVjZ2Dk4ubh5ePn4BQSFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHV09fQNDI2MTUzNzC0sraxtbO3sHRydnF1c3dw9PL28fXz//gMCg4JDQsPCIyKjomNi4+IREBqJAJRAnE1KUBCaLS8orSssYiAYAUd84ZQAAABMFKgUqAJUAlQBEBREAAHjaXVG7TltBEN0NDwOBxNggOdoUs5mQxnuhBQnE1Y1iZDuF5QhpN3KRi3EBH0CBRA3arxmgoaRImwYhF0h8Qj4hEjNriKI0Ozuzc86ZM0vKkap36WvPU+ckkMLdBs02/U5ItbMA96Tr642MtIMHWmxm9Mp1+/4LBpvRlDtqAOU9bykPGU07gVq0p/7R/AqG+/wf8zsYtDTT9NQ6CekhBOabcUuD7xnNussP+oLV4WIwMKSYpuIuP6ZS/rc052rLsLWR0byDMxH5yTRAU2ttBJr+1CHV83EUS5DLprE2mJiy/iQTwYXJdFVTtcz42sFdsrPoYIMqzYEH2MNWeQweDg8mFNK3JMosDRH2YqvECBGTHAo55dzJ/qRA+UgSxrxJSjvjhrUGxpHXwKA2T7P/PJtNbW8dwvhZHMF3vxlLOvjIhtoYEWI7YimACURCRlX5hhrPvSwG5FL7z0CUgOXxj3+dCLTu2EQ8l7V1DjFWCHp+29zyy4q7VrnOi0J3b6pqqNIpzftezr7HA54eC8NBY8Gbz/v+SoH6PCyuNGgOBEN6N3r/orXqiKu8Fz6yJ9O/sVoAAAAAAQAB//8AD3ja7VxdjBvXdb53ZshZ/nNmSA65/NnlcsnV7iqiRGa1ZCzHshOk9jCo2mQD5IVpK7RygiAVHSgN9GLYSlAVjZEGiAkkTuGgfYiNVk1nSMouhKZ+cNAmRfRQJNgWcG05gR+qBxfFAq2BSEv3nHtnhkPucNcGkjytsJo/crn3np/vfOecy0sE8lFChD8MfIqIRCanLErq5wayFHi7YQUD/3luIApwSSwRHwfw8UAOBu+fG1B83lTKSrWslD8qLI9X6bfGnw186pd/+1HpNiHwaV047gUehKsFkiDnyQDuNy0q3h1EBLLJDtRM1k2ya0mhRsMSpbuWHIOLOFwodJNYEaqoAymYaLfbp880t5ppcWtbV0RlO6Mrcrff71X7LUOr9vt0Y69XG/+QvkOv97XO/jtVmBLpij8SSoEPE4mEyCNkIMDfM4PNkSSSiLRphhowBXgiN6kZZoOAv2+KSStAN60FGEEERyBIimoFFvDva0pTkbfx0O0bP+93JI1ujHc7H8ejQUgU5vuG+A2pSwIkQhSikyKpkHVSJ1vkAfIw+S3yPWIG6tbK+WYThWAtPdhomOt1K/wxeFCFB/JHGg1qPlo3o7uWmgU5JGEU6Ty8K5m0NmBUp8/Cw1PwsNmGi8fgSTKqqMOQWFpd1dvmhvLy0vJKpVo7sY63p9ThWvncI3BJLBpQ1Jtx/eTWuYfwpXXlZVVLZ0CmH8TbqnozGEoVGw/ADcxzu6nLFZEdNZB3WhY9x/f+ardjdJyfyx0DT+x/1cAL/tOb81wIwRP6RTiMH/6iYXzRoN9h76FXeobR64wtfPkKe/mJTueJDn1u6uW/x5f/BA5gcSHSfbcsfj5YAL2EiUqyoJcyqZINcoa8RAYS2KR5hmlkEAN7sFTx7iibkmKxTSsr3qVmo24Gdy0SAYmHwEBCSatINwellVoDnuSlu4Pl1XW4NPNJaxM0Uof3JBtWEy5DQUUd0ZiWyqKQi4qptq3NPChMSesCPqorlphpo3rAyszNtplVBqWlk2DtZkodBsMfOIXvUpXhQmilgpcx1ZRBQw/Rsl6uiQo4gXh2u5zR5bK4XYaj1kzLaznaBBeB/6gRTQGHCYLF0lda+/9maP1eRTOET8DFuPRxg77V6YwLt/pGpw//OgY4lGZ0W31NeJW+1Rp/tyecMlJaZ3v//0CW+1e6IOGL9MLYEnbY8ZPdTqd7r0yv92r77xgaAfmCz0sEfN7PB35OBqcRAZIrYPBnQN4LKO/Fk80mv4qA5Ndrpxdim2araa3DnaayO6lpaaiKc+imZrDheGoWhFwEd4inQf7FpFWC+9UNUEsZXi8nrbNw/wBcNhvWgxTVCfoIR5JaiutjEAvpIGurXAKUWa+fRrmfVYYnTp5pMKdZPwO6Ki+f3ca31xRzCXShjmKJjc06PtFAe0X4lYg6ELI5BlHaFvhADXTSBCegAFcr6BBBeW0LECs99eqW1tCp99UuQplmvNnqGbS083pPbfX6mtFi+Oa88s03etXxz0+6r4iv3Wld7mv0t41U/95fC4/8ePyg+CS++xa8o3PnfvdNfCu9AOqm139MX+3sv7J/wXndeBNwufvup8WXpD0SZPrKkALo6wQ5Rf6ODAI2WptK3YrBqVC3cnBaAoyq10151yQNKyLdHaoReWHTiuqg1DQIO5K0TtBNc71hVeHuJChmeVexVuA60bBOgxrSKoiVxpSC7RX5trmiDuPJxVMuVIGVm4oyDEc2PsDNHjxg8yReFpSbaipT4u6QUy2t3LYdQi7X1tDYuSesKYhJ4BxyObDFwoXIfQPeUen2hR0w2Q0QLeAFdwJu+/TbrfG/0wvbRqpW7Vd7vWq324Lnl+lbtd74eXyncZteaN3uAeBo/b09kOL4mdr9N7u1Ht2gGxCDdgByCMXYw2KfBNJkkccOOyzmUIgDdsBh/4MQaez4AqHFjiv4ORL6k1D3+NPvkoGCegGFDDR0Gh0dI+s4hoQI1bByIGaJQOSKqggvMQUupQDYqq6MiCCHIsx+VXMBZLeNQpNFdpyC72qvhbOHGXc6tw12vEVvgByutoSr9EZ3e3y1t/9tkIi0h0jrO1bHhgay7eBsrNFdU2XRzUzzsWIYs0Ji21a/FVXQr5RRPKmldRyrrJoppmdP8PGMu9v5Scf52btc+8z29mdqhjOye28jQI13usIP6fXt7ninivqhDwqvAvbrJEfYmNJMfporP1TIQ7QO9oIwuq0n6BKV18CEtuRu4amnCpe+YnSuXco//XT+0rWO8RX69uNG5xJYkQE/hUsd4/FCB6877G9dFHbF14AD1YiZqJshFm3gzzH2E9s1BeZIZqDBWA+LwPhHcZb4ByGSvtAxXjTgp/OC8DzcOPe2rb1bJnukDxpYJ6ZUHwnM0vyMjNEZk4IkddvY+jZ7YZ8j7Ai7wl3QX5kxFSQpFFUWxA8aiRKRpU1LtoeIXtbt0LcMY1yAQbFYSznng7GIMJYJ33MuKAzPO6YA+ywkdkDm+oyzAXH8vG1DVR6dWXBgB2pGAYpwHgtIy2gQfX+b4SxleNqlSztv9OiXX0eYNBgeChbHPUC4yWeHQRdphnV/bjOAAmcAKjLCpSY7W2kc8CqG/wGJJDHch0FLsYYZTloZgLhiw1rEQANIBzYcDuKQwN/MjDIQUmmMJosAUKIT4K0gxHozrZwHvAxHYolszoYxVTWjblTnGOaEdrlMeQB3Oa8dx6u9Pg/lH2iNP0J/gdjFQgUGbxuthMIkhve5E2CUFstTHNnm6EESI2fJIIjyDgn2gZpxBiwyB5YIO1kJVAByG0uItR0AmYzQHUrf7y8SkL5XD0mIOUXyF1wLLgkzc01OxpJAAjIqI2MZ1EZpQsZQF6AIHURfgFEt2SoAwqWoGRSrrgwTgB8saqhDIS6meHxBFwiilqxQuI3SH8oLhSK+LalYerY9owqmBR5Uqq4S3mntfxuV8E1bAw6VAolPK0GqgvAZfbrtEUJgys4V4KRLpGdbYpZbItq7mfcwIyUmAReyFBTDct1Ud81cw8qAEMAMyzD5DITVUSguJhOTaaoYRk2NRdBUurSEk4woVm5xMknv/PxtTTkwxylrk37izHD8sJ/GJXeuEugb5/plHsMGKcE+jEBxKZhbGOeW8+ZikINhqEjAXQa8DaYpQlgbBILhNosQlhyCcwIjGbHCEObAk8ygcpNIsbjOaHdKHYjolSyBg1npvjPt1Q5ODrCw0Bo/3tPmTs3Xlr9u67HoySkOMWM7p0AzzttmHJo1Y8E247w6FBNxjxnraMZmlhlxMJxbtI14AYXinyvMqHomL/ij1jgyrebZZGBW08QHV/NkhXzHlsLKBFcRT0d5XVJBCnmUQsUfWgsggmUQxarr0WpGz3PyNxTSWTbLZRBFSsu5orCCBZhzXhmEwkU0DV29KUcSC9zk04oVi7ePAFp/ubg46y8aP6g9ICE/H/ic7QPIi8xUk/Ojif0jFzjUBZAhR2wE85j/SwJYvsYtX1ZYpNfmxxK/ACLsHhk1CJF9db5Ovn9Q62a16a/9jbnaNysNNABzrcEy6lkbGEFwdYxgoImYec2zgZe5DfB6SFoZxuKV1SMj7mFYOB135yDiezAKjziDPhiySv7qIIqYy3OCYtUPTcwSq06YKw2r5oMpIyHhgsoAQqMrRC+m3ERM4RJLYhGCe9N7ApZZuR0ptMNAZsr4gLPQDbInaaxeuUlMwpgqMEsrgNJYYP4jcf/htQIrxDkrKyByrkk3+pAE2pwT+TN8ngT58CpjvkH8oJDXEWX+QWH2QYw880/Cygmj0BJ8KhubLuxIVVZzLBC7sggfMhLgibRpLjRYXREG06RyJQT5DO3ephutzvgZeqXTGu8Kz4x/9hh9jl55dPwz9nk/gNzhScYTNhxWbkbqloxDjNp5n83NMXWJeei5OEXSOw5Zl93q2PsZL21SzLxoBcR/e/w11Bz90m36+/Tk+GvCPz86fmYqHmLNN05SgAt/NlP3NfUmO1txMONUkkTAjFM4mcJUJRgkjuiXBtsFko01N4Z7w0gimXK9WdHwctHJc1MU81y5zcw1EFxkgBFXrXTGrR+DdaZ9KV1/HplD/dJztd6eeNOPyvGa1wwWLkPuskkapE3+w8NsGRxueeBwkcPhImi00Rid2GR3J1AWH/IHR/DkQaZQhoejdYnEJRYoAS7N9aR1Eny+2bBOw4PthvUAyKsWxowEEhFrHb1fUFMMNq3TJ4FCaTmR+fwiyMwMIyRYhZMguU31vCKHIvHEQrG0XK5UT9WbrTbK8YRiroDYVSv2wfZc7MQCQqC2htnr2havwOhpXic+Aku/2e+3xvfshwAMt/u3jgTV+69/qC9oT9yq9Vp7t1rbPRo0NNofP9zt1e7A1Ts+GBu0axMl0NBzvD5hlpqDOKqmzM9IsUe6FojH7OpKjRmmHG049RVTYrVHc6mBqQeGqzW74DKMqxorWGSVYVJJZXjyYSXSKGodSxsYr0xNeZnKEQEMtIrvwBp+eGmZWaviKcocia7VXusoaBVCWLF5H/jqF9vLZI38je3HAliyMgnoRHEC+on5AX2FB/Rqw1p3ArqQdgP6TTFgmyZGdEnjEV1Aoh8slNsspoOAikxAblCvrXEYGMXiKxVbjFZ0lXs6Cqs6sc2tCRpSb9moT39gGPvf5zYn7AA6Pmx4ZNhttbpw6BjXZo3vMx3DI8Op2hLnemWP/HZmMIAXFjIHxcWyALeOMElV08pNXjI4krt4UlMPb53nP77cvUy+6qNpaq7ML4QUeCEE3KHiTEBIs0LIEFVrY7SkTdSaybenayGLxaWyo8PSfB0epb0jteZTDHTjVnlKDk/4aG2KwBZ8FFic5asTJeZttq6rQzTg95mX+CvWcfhDWaebf5Q9+HeRY58/4GVnAc8tKDv4xsHMFBHKhghltu7YDI/AMC9qTU1iPlShjvzzzG/96vJMXrzD/CKd+XUlmdqkdD0vyfwfVt994X1lmAFPfIsRjSyCFz9jR7fF5iAs8CiH50GRks2RlggUQTya7djeGh8GtxQ4db5hZSdOjcofxBMa600qVhJFlVVNBSSjsbCG/p7AsCbEMvoy8+WwOojmC+221xbO4rk5N5ZB1PIrxUxMwxTC2Lu82psbwLCmqf26apov0uuXq+wvxr0cUJqyTczvP2vbpcLt0i11sfw+yHpndgHzYH6PxgipO+T3psCye9G1vwgTP0aDWDzLuvUeOwvMS1n989PqUfVZbks5YLNftW1p2balDD+jGYUdMyofNCOcTAnusg1rZcaGFpVRUk1l0LfMkteO8syOblI5JvCibBgiQuqgDfE63vYWbeghp2hzwISq9JVeFSzpAvOmCb4IIfAiMCIs7d3q0VfgrfvXPQUbcUYGj5FBHOcfaFoJ0CbzozDTZmrGmNL2PM04zCgRhwsJpqAMKNrVgUlgmuYdd7dFX+n7jpS3badx0OnZYr3gT20NFW0uuzzhsqxAcJDAqtiKxRacX7nAnoKpKqAaS0/DXRKRz0zAtMDQ1PNhbCNqmdwSrw/MxXzW1dQOpa3f63f2jiCs41P0xnjHGIcOt9kND/59egb/ik1bZe8J71LobnEFGUsY184IsYSaKTOPm1HhVpOmK9ocLOv36Ma1Fw7DMZjQeLc7sT4OLMAuqzMxb7Ke4qu+PeDV6R6wk6OUeI5iN6ncpjAkKC/H4klFS2V0O0lJJ5xe8VAKZIu8TnQ+zPrFi4WlcoU3ja2F5faBtvEcfu22kOlzwM4uGfYZvZKxtEP6yb5ELXAgjytifYExmZiHycQcJlOak7q5LSNGapRJ0hZP+iRtnOfcRJ7DMQk7LeFsjuUvMcVaWGzP2r4n46i6skCjP5BmIFk9aPNOgnHbnTzkZe++LT45U2dYwzg/XWGoeNuXhyRl5QNJmcuAxBRQIM6ArLw2qa/mOGmPc9Ke0bOl5RWehx3ew9xq6unK9No9+uCzaO7TfcwTvb1ey17UNzfp34Y30d+5A8bxCNiNiwJBH9tYRX44DxenKK8vROJ6ogrc5Seg6Cb4JeUlTPAhccG7il+OzwyGwyPL8DlPPIId64AnwUqOHprgY0hnLx2W3/d747xxWO9VZX1Hu/dqLh2yBm75QIU5x5de4VK38oGlbjng0IrKV24UVe8atxw6mblor2/LF/j6tsMaVhn98JbV9FI2/6aVs4JtqinDY/znQBYyiUPMaPIYzxbr8OoqxPaFXVy1FIWJKiy2E0uGmD4IJzXeUbQH6MI/LqpwB/U9owO43+9Id9gQANFusJVGmnCPXh9fNWb1wfvAX57uAzOrLXCrHeQpBrDl6SZ4gnk0hPOZhrBDI1VGIzNeGqmyLO1lcGMllV5cmiWSdmib3wLB0Cbs+NbnQk5g23/HP1ZLbqwOkCjYYI78nu2jsSZj6Ga6aTP1RYcqR/i6Mg0X8XFd5OEyghMUWAoakGJxhuDIU4DJgxcOhWgyxxe0AvBoaWpPakvDErAbqO+Mn8HZ0C/dsXEHTQhC8h3gXs5MLt6hG/CQbnhCswdvJA8Pe5oMknbfJuZ08Zeb9uoVDjKBgzwMtZbx42EqOk0MGFiG8zGbgcWSoEWigxYXlPMhKgkRNZVbXJ3QE1uD6DjlGgtA+ixDYUqs9OkPWvs/NegJozOhKW7hxGWfN0DDLzDz3fFLG6QDPOWUm/9wGaQcGWTrbHUVW8EzpOGYygfNFvGAv2vpCkdA0bOgp1Ltvf7Jq5+kS9Xea56lPdKeQccP/Mt//3j/nwx3mc+BnjzWeu0YaercpxbRl/AwSkalxRjrqFFzybE2G+IU0AZkLsiRCxAqbZQb0kg0ySBdGQApZGUsgLi4C3EKdh9w5UUU+2daqlhi9S9lEJKz7fY0wOmHt8xq81plRy1MmNYHcoUPk0EUJSB57FJt8hV5mTpaHlhVFIZP2MI7kSYV1h1c4AvvUD90xalhlHVnudVGb3wPYZj+b2f89UqHXm+NXwUuP74LGurtv4XI17/36X5fsHpCgamHj42+xfwmxPTzCTJIEL7KZXZN4yAQVhq2u8iTMpSpgbQjCT5cHQKtFJBDgr2oMThxAuYCTVwaikPnixqRb/SfgjHuI0WnYrX31EyhEKwd5I3rWmqXnTVpj0/WpEWcKMEOkzVpQsTuPrG44Boy/Mk3dq7u0FK15zVYHznYdWIzya00iDrSmuxshWyRhHcR/eKTpZNxbPLI7iIzbOWElFE0pjJez5dMYt9Ons1RINl8s1p9s9W95hoXCCeg1+avFRM/xuIljrc09X2KEOs9YvfQ6RZuUTlEt2ha7tIrdLxLL9Arj4pPYscQbnj/0FkvKH6O9CEGl3ilhk/dXS+4ULebt+g1QVAkuMcvEIS/D1Eekyz8DEmjNwIXQT8nsEOK6x9juP7RXbYYs5ctWkLAXv6Idbg0huo9I6B39joqOe4RHfeIjntExz2i4x7RcY/ouEd03CM67hEd94iOe0THPaLjHtFxj+i4R3TcIzruER33iI57RMc9ouMe0XGP6LhH9GvuETH9CK+6PAb95gtkkCY8Kg9yiL9FCEABms6BbgLul2oHkaTuqbU53wpn4RaykjSvswUUS8YqFMWNReIJvhGJFYH0y8xxkuIpwvi1kTrXDONa/3L12Werf9x/+vKkmXT5abYXAuQizyEzFR7HHUV2qtMtJWefBBZXamQgz3SUFjgG4AYJ7pfXtpnmIbSxrKEvaaDHe09ClJrICvMalXGaL3h6KewL5KDPUTEXxC+QF21ZxXdNrQHgcXcgRtIoMpSVGsftrrLMUIP8C+QgGMxxQDDDhKYnbTqbwr0MQPFpu8UUZBE4M5HZNlou20ek9xTukrJfrVIRDPapa4zOtZgEGT8J6DWIfPdVxvMvCTv0hmO4ODfhkvgN8W1PbrNDcEMaqdBkVmrRXKMx1GLKAiNpwwi7kvkccUqgdB3mpOLXoCIaZGkiiSayyMotOYZxLtR21c23F+HD1j1P+E5WuDEV/uPbVU2O4hm4+Ee4qMK5BefbrBrJeySvMRsOuXXzdfIPNs6sc5yJopetNtkZCwejQlGKgpoK4l0z1Rhl8+wu635j1iLhCcNKAvxk+K4lWpLVT9bAYDZtGLJolH0VDsIB5mRYZjNXlJtxIWcX0tdUECHquoBfnAuttNl+PBp+JxQ1n8XE3kxANlfxfuPL2ROBfbGY7x/AtmQJyrpjo32hvr1/EbSNX6n7y+39nz727DZzkD9o7am4Y5HxIjNjRgqkVut+i+2TcP+OEALdA3pdhd/dv4Gx1mPp03uUEP8tSH7z7xG/wd6jz+6ZMrNTivC8Yexf5L/Kf++19/Z7/9Xp7Gfd33P3FarY+wqRqd1esFApebYUAl8E6xV/RDcgSOz+Kvcm4vvrFez99T5k94Plpj0gM9Bw9tVDHiPxffVC7r56WGQI2vvqOdQDRtoHf/pXugFS3hUmY/5N7+WHe/Y8J1wVXwLUOUXMUH0kimRB2rRP9hdvR0GJPeQn55u3HzzbbGTSqWBlpdZ9vtd7Hv8LL/ae/+5luGbyxwD3IPuOLDmjlBW8/uWr/w+Ms03PeNpjYGRgYABiJutfC+L5bb4yyHMwgMDZC5wmCPq/IqstmwyQy8HABBIFAAvRCOIAeNpjYGRgYJP595OBgYOBgeH/f1ZbBqAICqgFAG+CBOF42mN6w+DCwcDAwLyIgYFJj4GB0Z8hlqmKIZb5LRCfYIhliQViIYZYsHg3BDMrALExRAxOn4BgZDYuDFIDNm8DRD+YRldXi0TXkmD+LST2MdzqmByB9BEofQyCmTjpZz8oDMFmKUDCGhT2LOaQ8GDmY2BgkwHGCZQGuouBsR2IWSCY4TCQtgDSYUA1xlA9xhBzQGbAw7cSEpdM14B8C4gZrDYMDACegG1/AAAAeNpjYGDQgcIchiWMBUxqTP+YVzGfY1FhqWLZwPKAlYVVjdWNtYT1H5sF2y52A/Z5HAocmzilOA9wRXA1cC3jOsf1j1uNewFPES8H7wref3xNfJ/4Q/gfCWQILBLkEOwSvCGUJHROOEz4ikiKyDfRGtF9YhZic8SVxDPEX0lYSEyQ2CMpImknmSDZIiUltUtaQHqKDItMmswX2SrZLXJScnPkXsmXyD9QyFB4plimxKHUp3RB2Ut5nYqJSpXKH1Uv1V2qD9T81NaorVEPU8/AAavUe9Tnqe9Sv6b+Q0NGI0ijS2MHGB4BAH3hSjMAAQAAAH0ASAAMAAAAAAACAAEAAgAWAAABAADhAAAAAHjapVLLTsJQED0X0AjxkYBh3bC3lgIFjBujcWFcSaI7k1oRiTwaKPhYGr+CP/APjHHlSvd+gR/gyg/w3OklMbIwxt703jMz58ydmRbACh6hoJ8cMtyTUKk0zwdaMVbI4tngBJbxZnCS/neDUyjg0+A5eCpv8Dyyat/gBWyqY4PTKKiJwYtw1ZPBS7hVHwbnsJoIDX5BPnFn8CucxMQpuqVyxavW6tjGAE34iLifwsIJrrk30MYNPT1coE97Cx1aV+T1yGpSY9N7z9eFw1UTTUSt5q2hKnGt6vAcMFsL54wPxWry1DnGcqdm6liEEBtY57qUZZM1zaj5Y6nHRsCKutiRnG0yfDL0jQeMtzCi5TP3bHzWY/3QHEpVQ3L6vMlCkbc50qHuJZQ+dD+OaLW/yDWb9z8z/Z3191ntSj1N8nxBFs7oH/AMTce6X196G4ne5r+UoS5mxVm6wg1Y33emztGRbmMrkFwRowH3mGXLpFyUUEYFHidUQx1H5J9IJT1hxtNuyNws7FGpv4H269djvy7V8T6dfukL/ReIfQB42m3Ox06CYRCF4XeUJh0E7AV79//p2FHA3nuXRAUTY4yGhQs3blx4N9bLUwLf0rN5MmeSyVBFOb9BXvgvzyBVUk01BoyYMGOhBis27Dhw4sKNBy+1+PAToI56GmikiWZaaKWNdoJ00EkX3fTQSx/9DDDIEMOMMIqGTogwEaLEiJMgyRjjTDDJFNPMkGKWOdJkyDLPAossscwKq6yxzgabbLHNDrvssc8BhxxxzAmnnHHOBTkx8CZGMYlZLFIjVrGJXRziFJe4xSNeqeWdD7754ZMvXsUnfgmY8rdP9wXdXLy70TQtXTGlKctzqLRQ6sqQMqyMKKPKmDKuTCiTylRFXd3Vdev1Tb74cHWZeyxUqlC2YrRspvTCH961Se8AAAC4Af+FsAGNAEuwCFBYsQEBjlmxRgYrWCGwEFlLsBRSWCGwgFkdsAYrXFgAsAMgRbADK0QBsAQgRbADK0RZsBQrAAFRqli1AAA=);
}
:root {
  --font-name:
    -apple-system,
    system-ui,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Ubuntu",
    "Helvetica Neue",
    sans-serif;
  --font-symbol:
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol,
    "Noto Color Emoji";
  --font-size: 1rem;
  --line-height: 1.5;
  --font-style: normal;
  --font-weight: 400;
}
html {
  font-family: var(--font-name);
  font-size: 100%;
}
body {
  font-family: var(--font-name);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-style: var(--font-style);
  font-weight: var(--font-weight);
}

/* source/common-css/images.less */
:root {
  --thumb-background: rgba(255, 255, 255, 0.8);
  --img-overlay-background: rgba(70, 140, 255, 0.7);
  --img-overlay-color: #ffffff;
  --img-border-radius: 6px;
}
.dark-side {
  --thumb-background: rgba(0, 0, 0, 0.8);
  --img-overlay-background: rgba(70, 140, 255, 0.7);
  --img-overlay-color: #ffffff;
}
.img-container,
.img-fluid,
.img-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  vertical-align: middle;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: var(--img-border-radius);
}
.img-thumbnail {
  padding: 0.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--thumb-background);
}
.img-container {
  display: block;
}
.img-container img {
  width: 100%;
  height: auto;
  position: relative;
  object-fit: cover;
}
.img-container .image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 2em;
  background-color: var(--img-overlay-background);
  color: var(--img-overlay-color);
  text-align: center;
  border-radius: inherit;
  transition: all 0.3s ease-in-out;
}
.img-container .image-overlay * {
  color: inherit;
}
@media (hover: hover) {
  .img-container .image-overlay:hover {
    opacity: 1;
  }
  .img-container .image-overlay:hover:before,
  .img-container .image-overlay:hover:after {
    opacity: 1;
    transform: scale(1);
  }
}
@media (hover: none) {
  .img-container .image-overlay:active {
    opacity: 1;
  }
  .img-container .image-overlay:active:before,
  .img-container .image-overlay:active:after {
    opacity: 1;
    transform: scale(1);
  }
}
.img-container .image-overlay:before,
.img-container .image-overlay:after {
  display: block;
  position: absolute;
  content: "";
  border: 1px solid var(--border-color);
  border-radius: 6px;
  top: 1em;
  bottom: 1em;
  left: 1em;
  right: 1em;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}
.img-container .image-overlay:after {
  border-left: none;
  border-right: none;
  bottom: 1em;
  top: 1em;
}
.img-container .image-overlay:before {
  border-top: none;
  border-bottom: none;
  bottom: 1em;
  top: 1em;
}
.img-container.thumbnail {
  padding: 0.25rem;
  border: 1px solid var(--border-color);
  background-color: var(--thumb-background);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.img-container.thumbnail img {
  flex: 1;
  border-radius: calc(var(--img-border-radius)/2);
}
.img-container.thumbnail .title {
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.img-container.thumbnail .description {
  font-size: 13px;
  line-height: 1.2;
  margin-top: 0.25rem;
  padding: 0 0.5rem 0.5rem;
}
figure {
  margin: 0 0 1rem;
}
figure img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  vertical-align: middle;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.flip-image-horizontal {
  transform: scaleX(-1);
}
.flip-image-vertical {
  transform: scaleY(-1);
}
.flip-image {
  transform: scale(-1);
}
.fit-cover {
  object-fit: cover;
}
.fit-contain {
  object-fit: contain;
}
.fit-fill {
  object-fit: fill;
}
.fit-scale-down {
  object-fit: scale-down;
}
.fit-none {
  object-fit: none;
}

/* source/common-css/lists.less */
:root {
  --step-list-number-color: #757575;
}
.dark-side {
  --step-list-number-color: #ffedbc;
}
.step-list {
  margin: 0 0 0 3em;
  padding: 0;
  list-style-type: none;
  counter-reset: li;
}
.step-list > li {
  border-left: 1px var(--border-color) solid;
  position: relative;
  padding: 0 1rem;
  margin: 1rem;
  vertical-align: top;
}
.step-list > li::before {
  position: absolute;
  content: counter(li);
  counter-increment: li;
  font-size: 2rem;
  color: var(--step-list-number-color);
  left: -0.5rem;
  top: 0;
  margin-left: -2em;
  width: 1.8em;
  text-align: right;
}
.custom-list-marker {
  list-style: none inside;
}
.custom-list-marker li {
  position: relative;
  padding-left: 1.2em;
}
.custom-list-marker li::before {
  content: attr(data-marker);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.items-list,
.feed-list {
  margin: 0;
  padding: 4px;
  position: relative;
  display: block;
  list-style: none inside;
}
.items-list .item,
.feed-list .item,
.items-list > li,
.feed-list > li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
  height: 56px;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  cursor: default;
}
.items-list .item .avatar,
.feed-list .item .avatar,
.items-list > li .avatar,
.feed-list > li .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -21px;
  font-size: 32px;
  line-height: 42px;
}
.items-list .item .second-action,
.feed-list .item .second-action,
.items-list > li .second-action,
.feed-list > li .second-action {
  position: absolute;
  right: 16px;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  top: 50%;
  margin-top: -12px;
  cursor: pointer;
}
.items-list .item .label,
.feed-list .item .label,
.items-list > li .label,
.feed-list > li .label,
.items-list .item .second-label,
.feed-list .item .second-label,
.items-list > li .second-label,
.feed-list > li .second-label {
  display: block;
}
.items-list .item .label,
.feed-list .item .label,
.items-list > li .label,
.feed-list > li .label {
  line-height: 1;
}
.items-list .item .second-label,
.feed-list .item .second-label,
.items-list > li .second-label,
.feed-list > li .second-label {
  font-size: 0.9em;
  color: #515151;
  line-height: 1;
}
.items-list .item .avatar ~ .label,
.feed-list .item .avatar ~ .label,
.items-list > li .avatar ~ .label,
.feed-list > li .avatar ~ .label,
.items-list .item .avatar ~ .second-label,
.feed-list .item .avatar ~ .second-label,
.items-list > li .avatar ~ .second-label,
.feed-list > li .avatar ~ .second-label {
  padding-left: 56px;
}
.items-list .item + .item,
.feed-list .item + .item {
  border-top: 1px var(--border-color) solid;
}
.items-list > li + li,
.feed-list > li + li {
  border-top: 1px var(--border-color) solid;
}
.feed-list .title {
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  height: 36px;
  line-height: 36px;
  display: block;
}
.feed-list .item + .title,
.feed-list li + .title {
  margin-top: 1rem;
}
.feed-list .title + .item,
.feed-list .title + li,
.feed-list li + .title {
  border-top: 1px transparent solid;
}
.feed-list .item,
.feed-list > li {
  height: 104px;
  padding: 16px 0;
  justify-content: space-around;
}
.feed-list .item .avatar,
.feed-list > li .avatar {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 96px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0;
  object-fit: cover;
}
.feed-list .item .second-label,
.feed-list > li .second-label {
  font-size: 10px;
}
.feed-list .item .avatar ~ .label,
.feed-list > li .avatar ~ .label,
.feed-list .item .avatar ~ .second-label,
.feed-list > li .avatar ~ .second-label {
  margin-left: 128px;
  margin-right: 16px;
  padding-left: 0;
}
.feed-list .item .avatar.on-right,
.feed-list > li .avatar.on-right {
  float: none;
  left: auto;
  right: 16px;
}
.feed-list .item .avatar.on-right ~ .label,
.feed-list > li .avatar.on-right ~ .label,
.feed-list .item .avatar.on-right ~ .second-label,
.feed-list > li .avatar.on-right ~ .second-label {
  margin-left: 16px;
  margin-right: 128px;
}
.group-list {
  margin: 0;
  position: relative;
  display: block;
  list-style: none inside;
  border: 1px solid var(--border-color);
}
.group-list .item,
.group-list > li {
  display: block;
  position: relative;
  padding: 4px 8px;
}
.group-list .item + .item,
.group-list > li + li {
  border-top: 1px solid var(--border-color);
}
.group-list.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.group-list.horizontal .item,
.group-list.horizontal > li {
  flex-basis: 100%;
}
.group-list.horizontal .item + .item,
.group-list.horizontal > li + li {
  border-top: none;
  border-left: 1px solid var(--border-color);
}
.inline-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.inline-list li {
  display: inline-block;
  margin-right: 0.625rem;
}
.inline-list li:last-child {
  margin-right: 0;
}
.unstyled-list {
  list-style: none inside;
  margin-left: 0;
}
ol.decimal {
  list-style-type: decimal;
}
ol.roman-upper {
  list-style-type: upper-roman;
}
ol.roman-lower {
  list-style-type: lower-roman;
}
ol.alpha-upper {
  list-style-type: upper-alpha;
}
ol.alpha-lower {
  list-style-type: lower-alpha;
}
ol.latin-upper {
  list-style-type: upper-latin;
}
ol.latin-lower {
  list-style-type: lower-latin;
}
.no-style {
  list-style-type: none;
}

/* source/common-css/position.less */
.fixed-top,
.fixed-bottom {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
.fixed-top {
  top: 0;
  bottom: auto;
}
.fixed-bottom {
  top: auto;
  bottom: 0;
}
.pos-relative {
  position: relative !important;
}
.pos-absolute {
  position: absolute !important;
}
.pos-static {
  position: static !important;
}
.pos-fixed {
  position: fixed !important;
}
.pos-sticky {
  position: sticky !important;
  top: 0;
  align-self: flex-start !important;
}
@container (min-width: 0) {
  .pos-relative-fs {
    position: relative !important;
  }
  .pos-absolute-fs {
    position: absolute !important;
  }
  .pos-static-fs {
    position: static !important;
  }
  .pos-fixed-fs {
    position: fixed !important;
  }
}
@container (min-width: 360px) {
  .pos-relative-xs {
    position: relative !important;
  }
  .pos-absolute-xs {
    position: absolute !important;
  }
  .pos-static-xs {
    position: static !important;
  }
  .pos-fixed-xs {
    position: fixed !important;
  }
}
@container (min-width: 576px) {
  .pos-relative-sm {
    position: relative !important;
  }
  .pos-absolute-sm {
    position: absolute !important;
  }
  .pos-static-sm {
    position: static !important;
  }
  .pos-fixed-sm {
    position: fixed !important;
  }
}
@container (min-width: 640px) {
  .pos-relative-ld {
    position: relative !important;
  }
  .pos-absolute-ld {
    position: absolute !important;
  }
  .pos-static-ld {
    position: static !important;
  }
  .pos-fixed-ld {
    position: fixed !important;
  }
}
@container (min-width: 768px) {
  .pos-relative-md {
    position: relative !important;
  }
  .pos-absolute-md {
    position: absolute !important;
  }
  .pos-static-md {
    position: static !important;
  }
  .pos-fixed-md {
    position: fixed !important;
  }
}
@container (min-width: 992px) {
  .pos-relative-lg {
    position: relative !important;
  }
  .pos-absolute-lg {
    position: absolute !important;
  }
  .pos-static-lg {
    position: static !important;
  }
  .pos-fixed-lg {
    position: fixed !important;
  }
}
@container (min-width: 1200px) {
  .pos-relative-xl {
    position: relative !important;
  }
  .pos-absolute-xl {
    position: absolute !important;
  }
  .pos-static-xl {
    position: static !important;
  }
  .pos-fixed-xl {
    position: fixed !important;
  }
}
@container (min-width: 1400px) {
  .pos-relative-xxl {
    position: relative !important;
  }
  .pos-absolute-xxl {
    position: absolute !important;
  }
  .pos-static-xxl {
    position: static !important;
  }
  .pos-fixed-xxl {
    position: fixed !important;
  }
}
@container (min-width: 2000px) {
  .pos-relative-xxxl {
    position: relative !important;
  }
  .pos-absolute-xxxl {
    position: absolute !important;
  }
  .pos-static-xxxl {
    position: static !important;
  }
  .pos-fixed-xxxl {
    position: fixed !important;
  }
}

/* source/common-css/position-ext.less */
.put-n {
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  top: 0 !important;
  transform: translateX(-50%) translateY(-100%);
}
.put-nw {
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  top: 0 !important;
  transform: translateY(-100%);
}
.put-ne {
  left: auto !important;
  bottom: auto !important;
  top: 0 !important;
  right: 0 !important;
  transform: translateY(-100%);
}
.put-wn {
  bottom: auto !important;
  right: auto !important;
  top: 0 !important;
  left: 0 !important;
  transform: translateX(-100%);
}
.put-w {
  bottom: auto !important;
  right: auto !important;
  top: 50% !important;
  left: 0 !important;
  transform: translateX(-100%) translateY(-50%);
}
.put-ws {
  top: auto !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  transform: translateX(-100%);
}
.put-en {
  bottom: auto !important;
  left: auto !important;
  top: 0 !important;
  right: 0 !important;
  transform: translateX(100%);
}
.put-e {
  bottom: auto !important;
  left: auto !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateX(100%) translateY(-50%);
}
.put-es {
  top: auto !important;
  left: auto !important;
  bottom: 0 !important;
  right: 0 !important;
  transform: translateX(100%);
}
.put-s {
  bottom: auto !important;
  right: auto !important;
  top: 100% !important;
  left: 0 !important;
}
.put-sw {
  bottom: auto !important;
  right: auto !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.put-se {
  bottom: auto !important;
  left: auto !important;
  top: 100% !important;
  right: 0 !important;
}
.put-left {
  left: 0 !important;
  right: auto !important;
}
.put-right {
  left: auto !important;
  right: 0 !important;
}
.pos-top-left {
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
}
.pos-top-center {
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%);
}
.pos-top-right {
  right: 0 !important;
  top: 0 !important;
  left: auto !important;
  bottom: auto !important;
}
.pos-bottom-left {
  top: auto !important;
  right: auto !important;
  left: 0 !important;
  bottom: 0 !important;
}
.pos-bottom-center {
  top: auto !important;
  left: 50% !important;
  bottom: 0 !important;
  right: auto !important;
  transform: translateX(-50%);
}
.pos-bottom-right {
  bottom: 0 !important;
  right: 0 !important;
  top: auto !important;
  left: auto !important;
}
.pos-left-center {
  left: 0 !important;
  top: 50% !important;
  bottom: auto !important;
  right: auto !important;
  transform: translateY(-50%);
}
.pos-right-center {
  right: 0;
  top: 50%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}
.pos-center {
  top: 50% !important;
  left: 50% !important;
  bottom: auto !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-50%);
}
@container (min-width: 0) {
  .put-left-fs {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-fs {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-fs {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-fs {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-fs {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-fs {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-fs {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-fs {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-fs {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-fs {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-fs {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-fs {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-fs {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-fs {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 360px) {
  .put-left-xs {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-xs {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-xs {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-xs {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-xs {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-xs {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-xs {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-xs {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-xs {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-xs {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-xs {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-xs {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-xs {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-xs {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 576px) {
  .put-left-sm {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-sm {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-sm {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-sm {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-sm {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-sm {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-sm {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-sm {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-sm {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-sm {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-sm {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-sm {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-sm {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-sm {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 640px) {
  .put-left-ld {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-ld {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-ld {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-ld {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-ld {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-ld {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-ld {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-ld {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-ld {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-ld {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-ld {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-ld {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-ld {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-ld {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 768px) {
  .put-left-md {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-md {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-md {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-md {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-md {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-md {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-md {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-md {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-md {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-md {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-md {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-md {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-md {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-md {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 992px) {
  .put-left-lg {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-lg {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-lg {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-lg {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-lg {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-lg {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-lg {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-lg {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-lg {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-lg {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-lg {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-lg {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-lg {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-lg {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 1200px) {
  .put-left-xl {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-xl {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-xl {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-xl {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-xl {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-xl {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-xl {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-xl {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-xl {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-xl {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-xl {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-xl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-xl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-xl {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 1400px) {
  .put-left-xxl {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-xxl {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-xxl {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-xxl {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-xxl {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-xxl {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-xxl {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-xxl {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-xxl {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-xxl {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-xxl {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-xxl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-xxl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-xxl {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}
@container (min-width: 2000px) {
  .put-left-xxxl {
    left: 0 !important;
    right: auto !important;
  }
  .put-right-xxxl {
    left: auto !important;
    right: 0 !important;
  }
  .put-n-xxxl {
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) translateY(-100%);
  }
  .put-nw-xxxl {
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    top: 0 !important;
    transform: translateY(-100%);
  }
  .put-ne-xxxl {
    left: auto !important;
    bottom: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateY(-100%);
  }
  .put-wn-xxxl {
    bottom: auto !important;
    right: auto !important;
    top: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-w-xxxl {
    bottom: auto !important;
    right: auto !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateX(-100%) translateY(-50%);
  }
  .put-ws-xxxl {
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: translateX(-100%);
  }
  .put-en-xxxl {
    bottom: auto !important;
    left: auto !important;
    top: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-e-xxxl {
    bottom: auto !important;
    left: auto !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateX(100%) translateY(-50%);
  }
  .put-es-xxxl {
    top: auto !important;
    left: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    transform: translateX(100%);
  }
  .put-s-xxxl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 0 !important;
  }
  .put-sw-xxxl {
    bottom: auto !important;
    right: auto !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .put-se-xxxl {
    bottom: auto !important;
    left: auto !important;
    top: 100% !important;
    right: 0 !important;
  }
}

/* source/common-css/print.less */
@media print {
  .d-none-print {
    display: none !important;
  }
  .d-block-print {
    display: block !important;
  }
  .d-inline-print {
    display: inline !important;
  }
  .d-inline-block-print {
    display: inline-block !important;
  }
  .d-table-print {
    display: table !important;
  }
  .d-table-row-print {
    display: table-row !important;
  }
  .d-table-cell-print {
    display: table-cell !important;
  }
  .d-flex-print {
    display: flex !important;
  }
  .d-inline-flex-print {
    display: inline-flex !important;
  }
  .visible-print {
    visibility: visible !important;
  }
  .no-visible-print {
    visibility: hidden !important;
  }
  .overflow-print {
    overflow: auto !important;
  }
  .no-overflow-print {
    overflow: hidden !important;
  }
  .scroll-print {
    overflow: scroll !important;
  }
  .scroll-x-print {
    overflow-x: auto !important;
  }
  .scroll-y-print {
    overflow-y: auto !important;
  }
  .no-scroll-print {
    overflow: hidden !important;
  }
  .no-scroll-x-print {
    overflow-x: hidden !important;
  }
  .no-scroll-y-print {
    overflow-y: hidden !important;
  }
  .wrap-print {
    white-space: normal !important;
  }
  .no-wrap-print {
    white-space: nowrap !important;
  }
}

/* source/common-css/sizing.less */
.w-auto {
  width: auto !important;
}
.h-auto {
  height: auto !important;
}
.w-fs {
  width: 0 !important;
}
.w-xs {
  width: 360px !important;
}
.w-sm {
  width: 576px !important;
}
.w-ld {
  width: 640px !important;
}
.w-md {
  width: 768px !important;
}
.w-lg {
  width: 992px !important;
}
.w-xl {
  width: 1200px !important;
}
.w-xxl {
  width: 1400px !important;
}
.w-xxxl {
  width: 2000px !important;
}
.h-10-vh {
  height: 10vh !important;
}
.w-10-vw {
  width: 10vw !important;
}
.h-10 {
  height: 10% !important;
}
.w-10 {
  width: 10% !important;
}
.h-max-10 {
  max-height: 10% !important;
}
.w-max-10 {
  max-width: 10% !important;
}
.h-min-10 {
  min-height: 10% !important;
}
.w-min-10 {
  min-width: 10% !important;
}
.h-20-vh {
  height: 20vh !important;
}
.w-20-vw {
  width: 20vw !important;
}
.h-20 {
  height: 20% !important;
}
.w-20 {
  width: 20% !important;
}
.h-max-20 {
  max-height: 20% !important;
}
.w-max-20 {
  max-width: 20% !important;
}
.h-min-20 {
  min-height: 20% !important;
}
.w-min-20 {
  min-width: 20% !important;
}
.h-25-vh {
  height: 25vh !important;
}
.w-25-vw {
  width: 25vw !important;
}
.h-25 {
  height: 25% !important;
}
.w-25 {
  width: 25% !important;
}
.h-max-25 {
  max-height: 25% !important;
}
.w-max-25 {
  max-width: 25% !important;
}
.h-min-25 {
  min-height: 25% !important;
}
.w-min-25 {
  min-width: 25% !important;
}
.h-33-vh {
  height: 33vh !important;
}
.w-33-vw {
  width: 33vw !important;
}
.h-33 {
  height: 33% !important;
}
.w-33 {
  width: 33% !important;
}
.h-max-33 {
  max-height: 33% !important;
}
.w-max-33 {
  max-width: 33% !important;
}
.h-min-33 {
  min-height: 33% !important;
}
.w-min-33 {
  min-width: 33% !important;
}
.h-50-vh {
  height: 50vh !important;
}
.w-50-vw {
  width: 50vw !important;
}
.h-50 {
  height: 50% !important;
}
.w-50 {
  width: 50% !important;
}
.h-max-50 {
  max-height: 50% !important;
}
.w-max-50 {
  max-width: 50% !important;
}
.h-min-50 {
  min-height: 50% !important;
}
.w-min-50 {
  min-width: 50% !important;
}
.h-66-vh {
  height: 66vh !important;
}
.w-66-vw {
  width: 66vw !important;
}
.h-66 {
  height: 66% !important;
}
.w-66 {
  width: 66% !important;
}
.h-max-66 {
  max-height: 66% !important;
}
.w-max-66 {
  max-width: 66% !important;
}
.h-min-66 {
  min-height: 66% !important;
}
.w-min-66 {
  min-width: 66% !important;
}
.h-75-vh {
  height: 75vh !important;
}
.w-75-vw {
  width: 75vw !important;
}
.h-75 {
  height: 75% !important;
}
.w-75 {
  width: 75% !important;
}
.h-max-75 {
  max-height: 75% !important;
}
.w-max-75 {
  max-width: 75% !important;
}
.h-min-75 {
  min-height: 75% !important;
}
.w-min-75 {
  min-width: 75% !important;
}
.h-80-vh {
  height: 80vh !important;
}
.w-80-vw {
  width: 80vw !important;
}
.h-80 {
  height: 80% !important;
}
.w-80 {
  width: 80% !important;
}
.h-max-80 {
  max-height: 80% !important;
}
.w-max-80 {
  max-width: 80% !important;
}
.h-min-80 {
  min-height: 80% !important;
}
.w-min-80 {
  min-width: 80% !important;
}
.h-90-vh {
  height: 90vh !important;
}
.w-90-vw {
  width: 90vw !important;
}
.h-90 {
  height: 90% !important;
}
.w-90 {
  width: 90% !important;
}
.h-max-90 {
  max-height: 90% !important;
}
.w-max-90 {
  max-width: 90% !important;
}
.h-min-90 {
  min-height: 90% !important;
}
.w-min-90 {
  min-width: 90% !important;
}
.h-100-vh {
  height: 100vh !important;
}
.w-100-vw {
  width: 100vw !important;
}
.h-100 {
  height: 100% !important;
}
.w-100 {
  width: 100% !important;
}
.h-max-100 {
  max-height: 100% !important;
}
.w-max-100 {
  max-width: 100% !important;
}
.h-min-100 {
  min-height: 100% !important;
}
.w-min-100 {
  min-width: 100% !important;
}
@container (min-width: 0) {
  .w-auto-fs {
    width: auto !important;
  }
  .h-auto-fs {
    height: auto !important;
  }
  .h-10-fs-vh {
    height: 10vh !important;
  }
  .w-10-fs-vw {
    width: 10vw !important;
  }
  .h-10-fs {
    height: 10% !important;
  }
  .w-10-fs {
    width: 10% !important;
  }
  .h-max-10-fs {
    max-height: 10% !important;
  }
  .w-max-10-fs {
    min-width: 10% !important;
  }
  .h-min-10-fs {
    min-height: 10% !important;
  }
  .w-min-10-fs {
    min-width: 10% !important;
  }
  .h-20-fs-vh {
    height: 20vh !important;
  }
  .w-20-fs-vw {
    width: 20vw !important;
  }
  .h-20-fs {
    height: 20% !important;
  }
  .w-20-fs {
    width: 20% !important;
  }
  .h-max-20-fs {
    max-height: 20% !important;
  }
  .w-max-20-fs {
    min-width: 20% !important;
  }
  .h-min-20-fs {
    min-height: 20% !important;
  }
  .w-min-20-fs {
    min-width: 20% !important;
  }
  .h-25-fs-vh {
    height: 25vh !important;
  }
  .w-25-fs-vw {
    width: 25vw !important;
  }
  .h-25-fs {
    height: 25% !important;
  }
  .w-25-fs {
    width: 25% !important;
  }
  .h-max-25-fs {
    max-height: 25% !important;
  }
  .w-max-25-fs {
    min-width: 25% !important;
  }
  .h-min-25-fs {
    min-height: 25% !important;
  }
  .w-min-25-fs {
    min-width: 25% !important;
  }
  .h-33-fs-vh {
    height: 33vh !important;
  }
  .w-33-fs-vw {
    width: 33vw !important;
  }
  .h-33-fs {
    height: 33% !important;
  }
  .w-33-fs {
    width: 33% !important;
  }
  .h-max-33-fs {
    max-height: 33% !important;
  }
  .w-max-33-fs {
    min-width: 33% !important;
  }
  .h-min-33-fs {
    min-height: 33% !important;
  }
  .w-min-33-fs {
    min-width: 33% !important;
  }
  .h-50-fs-vh {
    height: 50vh !important;
  }
  .w-50-fs-vw {
    width: 50vw !important;
  }
  .h-50-fs {
    height: 50% !important;
  }
  .w-50-fs {
    width: 50% !important;
  }
  .h-max-50-fs {
    max-height: 50% !important;
  }
  .w-max-50-fs {
    min-width: 50% !important;
  }
  .h-min-50-fs {
    min-height: 50% !important;
  }
  .w-min-50-fs {
    min-width: 50% !important;
  }
  .h-66-fs-vh {
    height: 66vh !important;
  }
  .w-66-fs-vw {
    width: 66vw !important;
  }
  .h-66-fs {
    height: 66% !important;
  }
  .w-66-fs {
    width: 66% !important;
  }
  .h-max-66-fs {
    max-height: 66% !important;
  }
  .w-max-66-fs {
    min-width: 66% !important;
  }
  .h-min-66-fs {
    min-height: 66% !important;
  }
  .w-min-66-fs {
    min-width: 66% !important;
  }
  .h-75-fs-vh {
    height: 75vh !important;
  }
  .w-75-fs-vw {
    width: 75vw !important;
  }
  .h-75-fs {
    height: 75% !important;
  }
  .w-75-fs {
    width: 75% !important;
  }
  .h-max-75-fs {
    max-height: 75% !important;
  }
  .w-max-75-fs {
    min-width: 75% !important;
  }
  .h-min-75-fs {
    min-height: 75% !important;
  }
  .w-min-75-fs {
    min-width: 75% !important;
  }
  .h-80-fs-vh {
    height: 80vh !important;
  }
  .w-80-fs-vw {
    width: 80vw !important;
  }
  .h-80-fs {
    height: 80% !important;
  }
  .w-80-fs {
    width: 80% !important;
  }
  .h-max-80-fs {
    max-height: 80% !important;
  }
  .w-max-80-fs {
    min-width: 80% !important;
  }
  .h-min-80-fs {
    min-height: 80% !important;
  }
  .w-min-80-fs {
    min-width: 80% !important;
  }
  .h-90-fs-vh {
    height: 90vh !important;
  }
  .w-90-fs-vw {
    width: 90vw !important;
  }
  .h-90-fs {
    height: 90% !important;
  }
  .w-90-fs {
    width: 90% !important;
  }
  .h-max-90-fs {
    max-height: 90% !important;
  }
  .w-max-90-fs {
    min-width: 90% !important;
  }
  .h-min-90-fs {
    min-height: 90% !important;
  }
  .w-min-90-fs {
    min-width: 90% !important;
  }
  .h-100-fs-vh {
    height: 100vh !important;
  }
  .w-100-fs-vw {
    width: 100vw !important;
  }
  .h-100-fs {
    height: 100% !important;
  }
  .w-100-fs {
    width: 100% !important;
  }
  .h-max-100-fs {
    max-height: 100% !important;
  }
  .w-max-100-fs {
    min-width: 100% !important;
  }
  .h-min-100-fs {
    min-height: 100% !important;
  }
  .w-min-100-fs {
    min-width: 100% !important;
  }
}
@container (min-width: 360px) {
  .w-auto-xs {
    width: auto !important;
  }
  .h-auto-xs {
    height: auto !important;
  }
  .h-10-xs-vh {
    height: 10vh !important;
  }
  .w-10-xs-vw {
    width: 10vw !important;
  }
  .h-10-xs {
    height: 10% !important;
  }
  .w-10-xs {
    width: 10% !important;
  }
  .h-max-10-xs {
    max-height: 10% !important;
  }
  .w-max-10-xs {
    min-width: 10% !important;
  }
  .h-min-10-xs {
    min-height: 10% !important;
  }
  .w-min-10-xs {
    min-width: 10% !important;
  }
  .h-20-xs-vh {
    height: 20vh !important;
  }
  .w-20-xs-vw {
    width: 20vw !important;
  }
  .h-20-xs {
    height: 20% !important;
  }
  .w-20-xs {
    width: 20% !important;
  }
  .h-max-20-xs {
    max-height: 20% !important;
  }
  .w-max-20-xs {
    min-width: 20% !important;
  }
  .h-min-20-xs {
    min-height: 20% !important;
  }
  .w-min-20-xs {
    min-width: 20% !important;
  }
  .h-25-xs-vh {
    height: 25vh !important;
  }
  .w-25-xs-vw {
    width: 25vw !important;
  }
  .h-25-xs {
    height: 25% !important;
  }
  .w-25-xs {
    width: 25% !important;
  }
  .h-max-25-xs {
    max-height: 25% !important;
  }
  .w-max-25-xs {
    min-width: 25% !important;
  }
  .h-min-25-xs {
    min-height: 25% !important;
  }
  .w-min-25-xs {
    min-width: 25% !important;
  }
  .h-33-xs-vh {
    height: 33vh !important;
  }
  .w-33-xs-vw {
    width: 33vw !important;
  }
  .h-33-xs {
    height: 33% !important;
  }
  .w-33-xs {
    width: 33% !important;
  }
  .h-max-33-xs {
    max-height: 33% !important;
  }
  .w-max-33-xs {
    min-width: 33% !important;
  }
  .h-min-33-xs {
    min-height: 33% !important;
  }
  .w-min-33-xs {
    min-width: 33% !important;
  }
  .h-50-xs-vh {
    height: 50vh !important;
  }
  .w-50-xs-vw {
    width: 50vw !important;
  }
  .h-50-xs {
    height: 50% !important;
  }
  .w-50-xs {
    width: 50% !important;
  }
  .h-max-50-xs {
    max-height: 50% !important;
  }
  .w-max-50-xs {
    min-width: 50% !important;
  }
  .h-min-50-xs {
    min-height: 50% !important;
  }
  .w-min-50-xs {
    min-width: 50% !important;
  }
  .h-66-xs-vh {
    height: 66vh !important;
  }
  .w-66-xs-vw {
    width: 66vw !important;
  }
  .h-66-xs {
    height: 66% !important;
  }
  .w-66-xs {
    width: 66% !important;
  }
  .h-max-66-xs {
    max-height: 66% !important;
  }
  .w-max-66-xs {
    min-width: 66% !important;
  }
  .h-min-66-xs {
    min-height: 66% !important;
  }
  .w-min-66-xs {
    min-width: 66% !important;
  }
  .h-75-xs-vh {
    height: 75vh !important;
  }
  .w-75-xs-vw {
    width: 75vw !important;
  }
  .h-75-xs {
    height: 75% !important;
  }
  .w-75-xs {
    width: 75% !important;
  }
  .h-max-75-xs {
    max-height: 75% !important;
  }
  .w-max-75-xs {
    min-width: 75% !important;
  }
  .h-min-75-xs {
    min-height: 75% !important;
  }
  .w-min-75-xs {
    min-width: 75% !important;
  }
  .h-80-xs-vh {
    height: 80vh !important;
  }
  .w-80-xs-vw {
    width: 80vw !important;
  }
  .h-80-xs {
    height: 80% !important;
  }
  .w-80-xs {
    width: 80% !important;
  }
  .h-max-80-xs {
    max-height: 80% !important;
  }
  .w-max-80-xs {
    min-width: 80% !important;
  }
  .h-min-80-xs {
    min-height: 80% !important;
  }
  .w-min-80-xs {
    min-width: 80% !important;
  }
  .h-90-xs-vh {
    height: 90vh !important;
  }
  .w-90-xs-vw {
    width: 90vw !important;
  }
  .h-90-xs {
    height: 90% !important;
  }
  .w-90-xs {
    width: 90% !important;
  }
  .h-max-90-xs {
    max-height: 90% !important;
  }
  .w-max-90-xs {
    min-width: 90% !important;
  }
  .h-min-90-xs {
    min-height: 90% !important;
  }
  .w-min-90-xs {
    min-width: 90% !important;
  }
  .h-100-xs-vh {
    height: 100vh !important;
  }
  .w-100-xs-vw {
    width: 100vw !important;
  }
  .h-100-xs {
    height: 100% !important;
  }
  .w-100-xs {
    width: 100% !important;
  }
  .h-max-100-xs {
    max-height: 100% !important;
  }
  .w-max-100-xs {
    min-width: 100% !important;
  }
  .h-min-100-xs {
    min-height: 100% !important;
  }
  .w-min-100-xs {
    min-width: 100% !important;
  }
}
@container (min-width: 576px) {
  .w-auto-sm {
    width: auto !important;
  }
  .h-auto-sm {
    height: auto !important;
  }
  .h-10-sm-vh {
    height: 10vh !important;
  }
  .w-10-sm-vw {
    width: 10vw !important;
  }
  .h-10-sm {
    height: 10% !important;
  }
  .w-10-sm {
    width: 10% !important;
  }
  .h-max-10-sm {
    max-height: 10% !important;
  }
  .w-max-10-sm {
    min-width: 10% !important;
  }
  .h-min-10-sm {
    min-height: 10% !important;
  }
  .w-min-10-sm {
    min-width: 10% !important;
  }
  .h-20-sm-vh {
    height: 20vh !important;
  }
  .w-20-sm-vw {
    width: 20vw !important;
  }
  .h-20-sm {
    height: 20% !important;
  }
  .w-20-sm {
    width: 20% !important;
  }
  .h-max-20-sm {
    max-height: 20% !important;
  }
  .w-max-20-sm {
    min-width: 20% !important;
  }
  .h-min-20-sm {
    min-height: 20% !important;
  }
  .w-min-20-sm {
    min-width: 20% !important;
  }
  .h-25-sm-vh {
    height: 25vh !important;
  }
  .w-25-sm-vw {
    width: 25vw !important;
  }
  .h-25-sm {
    height: 25% !important;
  }
  .w-25-sm {
    width: 25% !important;
  }
  .h-max-25-sm {
    max-height: 25% !important;
  }
  .w-max-25-sm {
    min-width: 25% !important;
  }
  .h-min-25-sm {
    min-height: 25% !important;
  }
  .w-min-25-sm {
    min-width: 25% !important;
  }
  .h-33-sm-vh {
    height: 33vh !important;
  }
  .w-33-sm-vw {
    width: 33vw !important;
  }
  .h-33-sm {
    height: 33% !important;
  }
  .w-33-sm {
    width: 33% !important;
  }
  .h-max-33-sm {
    max-height: 33% !important;
  }
  .w-max-33-sm {
    min-width: 33% !important;
  }
  .h-min-33-sm {
    min-height: 33% !important;
  }
  .w-min-33-sm {
    min-width: 33% !important;
  }
  .h-50-sm-vh {
    height: 50vh !important;
  }
  .w-50-sm-vw {
    width: 50vw !important;
  }
  .h-50-sm {
    height: 50% !important;
  }
  .w-50-sm {
    width: 50% !important;
  }
  .h-max-50-sm {
    max-height: 50% !important;
  }
  .w-max-50-sm {
    min-width: 50% !important;
  }
  .h-min-50-sm {
    min-height: 50% !important;
  }
  .w-min-50-sm {
    min-width: 50% !important;
  }
  .h-66-sm-vh {
    height: 66vh !important;
  }
  .w-66-sm-vw {
    width: 66vw !important;
  }
  .h-66-sm {
    height: 66% !important;
  }
  .w-66-sm {
    width: 66% !important;
  }
  .h-max-66-sm {
    max-height: 66% !important;
  }
  .w-max-66-sm {
    min-width: 66% !important;
  }
  .h-min-66-sm {
    min-height: 66% !important;
  }
  .w-min-66-sm {
    min-width: 66% !important;
  }
  .h-75-sm-vh {
    height: 75vh !important;
  }
  .w-75-sm-vw {
    width: 75vw !important;
  }
  .h-75-sm {
    height: 75% !important;
  }
  .w-75-sm {
    width: 75% !important;
  }
  .h-max-75-sm {
    max-height: 75% !important;
  }
  .w-max-75-sm {
    min-width: 75% !important;
  }
  .h-min-75-sm {
    min-height: 75% !important;
  }
  .w-min-75-sm {
    min-width: 75% !important;
  }
  .h-80-sm-vh {
    height: 80vh !important;
  }
  .w-80-sm-vw {
    width: 80vw !important;
  }
  .h-80-sm {
    height: 80% !important;
  }
  .w-80-sm {
    width: 80% !important;
  }
  .h-max-80-sm {
    max-height: 80% !important;
  }
  .w-max-80-sm {
    min-width: 80% !important;
  }
  .h-min-80-sm {
    min-height: 80% !important;
  }
  .w-min-80-sm {
    min-width: 80% !important;
  }
  .h-90-sm-vh {
    height: 90vh !important;
  }
  .w-90-sm-vw {
    width: 90vw !important;
  }
  .h-90-sm {
    height: 90% !important;
  }
  .w-90-sm {
    width: 90% !important;
  }
  .h-max-90-sm {
    max-height: 90% !important;
  }
  .w-max-90-sm {
    min-width: 90% !important;
  }
  .h-min-90-sm {
    min-height: 90% !important;
  }
  .w-min-90-sm {
    min-width: 90% !important;
  }
  .h-100-sm-vh {
    height: 100vh !important;
  }
  .w-100-sm-vw {
    width: 100vw !important;
  }
  .h-100-sm {
    height: 100% !important;
  }
  .w-100-sm {
    width: 100% !important;
  }
  .h-max-100-sm {
    max-height: 100% !important;
  }
  .w-max-100-sm {
    min-width: 100% !important;
  }
  .h-min-100-sm {
    min-height: 100% !important;
  }
  .w-min-100-sm {
    min-width: 100% !important;
  }
}
@container (min-width: 640px) {
  .w-auto-ld {
    width: auto !important;
  }
  .h-auto-ld {
    height: auto !important;
  }
  .h-10-ld-vh {
    height: 10vh !important;
  }
  .w-10-ld-vw {
    width: 10vw !important;
  }
  .h-10-ld {
    height: 10% !important;
  }
  .w-10-ld {
    width: 10% !important;
  }
  .h-max-10-ld {
    max-height: 10% !important;
  }
  .w-max-10-ld {
    min-width: 10% !important;
  }
  .h-min-10-ld {
    min-height: 10% !important;
  }
  .w-min-10-ld {
    min-width: 10% !important;
  }
  .h-20-ld-vh {
    height: 20vh !important;
  }
  .w-20-ld-vw {
    width: 20vw !important;
  }
  .h-20-ld {
    height: 20% !important;
  }
  .w-20-ld {
    width: 20% !important;
  }
  .h-max-20-ld {
    max-height: 20% !important;
  }
  .w-max-20-ld {
    min-width: 20% !important;
  }
  .h-min-20-ld {
    min-height: 20% !important;
  }
  .w-min-20-ld {
    min-width: 20% !important;
  }
  .h-25-ld-vh {
    height: 25vh !important;
  }
  .w-25-ld-vw {
    width: 25vw !important;
  }
  .h-25-ld {
    height: 25% !important;
  }
  .w-25-ld {
    width: 25% !important;
  }
  .h-max-25-ld {
    max-height: 25% !important;
  }
  .w-max-25-ld {
    min-width: 25% !important;
  }
  .h-min-25-ld {
    min-height: 25% !important;
  }
  .w-min-25-ld {
    min-width: 25% !important;
  }
  .h-33-ld-vh {
    height: 33vh !important;
  }
  .w-33-ld-vw {
    width: 33vw !important;
  }
  .h-33-ld {
    height: 33% !important;
  }
  .w-33-ld {
    width: 33% !important;
  }
  .h-max-33-ld {
    max-height: 33% !important;
  }
  .w-max-33-ld {
    min-width: 33% !important;
  }
  .h-min-33-ld {
    min-height: 33% !important;
  }
  .w-min-33-ld {
    min-width: 33% !important;
  }
  .h-50-ld-vh {
    height: 50vh !important;
  }
  .w-50-ld-vw {
    width: 50vw !important;
  }
  .h-50-ld {
    height: 50% !important;
  }
  .w-50-ld {
    width: 50% !important;
  }
  .h-max-50-ld {
    max-height: 50% !important;
  }
  .w-max-50-ld {
    min-width: 50% !important;
  }
  .h-min-50-ld {
    min-height: 50% !important;
  }
  .w-min-50-ld {
    min-width: 50% !important;
  }
  .h-66-ld-vh {
    height: 66vh !important;
  }
  .w-66-ld-vw {
    width: 66vw !important;
  }
  .h-66-ld {
    height: 66% !important;
  }
  .w-66-ld {
    width: 66% !important;
  }
  .h-max-66-ld {
    max-height: 66% !important;
  }
  .w-max-66-ld {
    min-width: 66% !important;
  }
  .h-min-66-ld {
    min-height: 66% !important;
  }
  .w-min-66-ld {
    min-width: 66% !important;
  }
  .h-75-ld-vh {
    height: 75vh !important;
  }
  .w-75-ld-vw {
    width: 75vw !important;
  }
  .h-75-ld {
    height: 75% !important;
  }
  .w-75-ld {
    width: 75% !important;
  }
  .h-max-75-ld {
    max-height: 75% !important;
  }
  .w-max-75-ld {
    min-width: 75% !important;
  }
  .h-min-75-ld {
    min-height: 75% !important;
  }
  .w-min-75-ld {
    min-width: 75% !important;
  }
  .h-80-ld-vh {
    height: 80vh !important;
  }
  .w-80-ld-vw {
    width: 80vw !important;
  }
  .h-80-ld {
    height: 80% !important;
  }
  .w-80-ld {
    width: 80% !important;
  }
  .h-max-80-ld {
    max-height: 80% !important;
  }
  .w-max-80-ld {
    min-width: 80% !important;
  }
  .h-min-80-ld {
    min-height: 80% !important;
  }
  .w-min-80-ld {
    min-width: 80% !important;
  }
  .h-90-ld-vh {
    height: 90vh !important;
  }
  .w-90-ld-vw {
    width: 90vw !important;
  }
  .h-90-ld {
    height: 90% !important;
  }
  .w-90-ld {
    width: 90% !important;
  }
  .h-max-90-ld {
    max-height: 90% !important;
  }
  .w-max-90-ld {
    min-width: 90% !important;
  }
  .h-min-90-ld {
    min-height: 90% !important;
  }
  .w-min-90-ld {
    min-width: 90% !important;
  }
  .h-100-ld-vh {
    height: 100vh !important;
  }
  .w-100-ld-vw {
    width: 100vw !important;
  }
  .h-100-ld {
    height: 100% !important;
  }
  .w-100-ld {
    width: 100% !important;
  }
  .h-max-100-ld {
    max-height: 100% !important;
  }
  .w-max-100-ld {
    min-width: 100% !important;
  }
  .h-min-100-ld {
    min-height: 100% !important;
  }
  .w-min-100-ld {
    min-width: 100% !important;
  }
}
@container (min-width: 768px) {
  .w-auto-md {
    width: auto !important;
  }
  .h-auto-md {
    height: auto !important;
  }
  .h-10-md-vh {
    height: 10vh !important;
  }
  .w-10-md-vw {
    width: 10vw !important;
  }
  .h-10-md {
    height: 10% !important;
  }
  .w-10-md {
    width: 10% !important;
  }
  .h-max-10-md {
    max-height: 10% !important;
  }
  .w-max-10-md {
    min-width: 10% !important;
  }
  .h-min-10-md {
    min-height: 10% !important;
  }
  .w-min-10-md {
    min-width: 10% !important;
  }
  .h-20-md-vh {
    height: 20vh !important;
  }
  .w-20-md-vw {
    width: 20vw !important;
  }
  .h-20-md {
    height: 20% !important;
  }
  .w-20-md {
    width: 20% !important;
  }
  .h-max-20-md {
    max-height: 20% !important;
  }
  .w-max-20-md {
    min-width: 20% !important;
  }
  .h-min-20-md {
    min-height: 20% !important;
  }
  .w-min-20-md {
    min-width: 20% !important;
  }
  .h-25-md-vh {
    height: 25vh !important;
  }
  .w-25-md-vw {
    width: 25vw !important;
  }
  .h-25-md {
    height: 25% !important;
  }
  .w-25-md {
    width: 25% !important;
  }
  .h-max-25-md {
    max-height: 25% !important;
  }
  .w-max-25-md {
    min-width: 25% !important;
  }
  .h-min-25-md {
    min-height: 25% !important;
  }
  .w-min-25-md {
    min-width: 25% !important;
  }
  .h-33-md-vh {
    height: 33vh !important;
  }
  .w-33-md-vw {
    width: 33vw !important;
  }
  .h-33-md {
    height: 33% !important;
  }
  .w-33-md {
    width: 33% !important;
  }
  .h-max-33-md {
    max-height: 33% !important;
  }
  .w-max-33-md {
    min-width: 33% !important;
  }
  .h-min-33-md {
    min-height: 33% !important;
  }
  .w-min-33-md {
    min-width: 33% !important;
  }
  .h-50-md-vh {
    height: 50vh !important;
  }
  .w-50-md-vw {
    width: 50vw !important;
  }
  .h-50-md {
    height: 50% !important;
  }
  .w-50-md {
    width: 50% !important;
  }
  .h-max-50-md {
    max-height: 50% !important;
  }
  .w-max-50-md {
    min-width: 50% !important;
  }
  .h-min-50-md {
    min-height: 50% !important;
  }
  .w-min-50-md {
    min-width: 50% !important;
  }
  .h-66-md-vh {
    height: 66vh !important;
  }
  .w-66-md-vw {
    width: 66vw !important;
  }
  .h-66-md {
    height: 66% !important;
  }
  .w-66-md {
    width: 66% !important;
  }
  .h-max-66-md {
    max-height: 66% !important;
  }
  .w-max-66-md {
    min-width: 66% !important;
  }
  .h-min-66-md {
    min-height: 66% !important;
  }
  .w-min-66-md {
    min-width: 66% !important;
  }
  .h-75-md-vh {
    height: 75vh !important;
  }
  .w-75-md-vw {
    width: 75vw !important;
  }
  .h-75-md {
    height: 75% !important;
  }
  .w-75-md {
    width: 75% !important;
  }
  .h-max-75-md {
    max-height: 75% !important;
  }
  .w-max-75-md {
    min-width: 75% !important;
  }
  .h-min-75-md {
    min-height: 75% !important;
  }
  .w-min-75-md {
    min-width: 75% !important;
  }
  .h-80-md-vh {
    height: 80vh !important;
  }
  .w-80-md-vw {
    width: 80vw !important;
  }
  .h-80-md {
    height: 80% !important;
  }
  .w-80-md {
    width: 80% !important;
  }
  .h-max-80-md {
    max-height: 80% !important;
  }
  .w-max-80-md {
    min-width: 80% !important;
  }
  .h-min-80-md {
    min-height: 80% !important;
  }
  .w-min-80-md {
    min-width: 80% !important;
  }
  .h-90-md-vh {
    height: 90vh !important;
  }
  .w-90-md-vw {
    width: 90vw !important;
  }
  .h-90-md {
    height: 90% !important;
  }
  .w-90-md {
    width: 90% !important;
  }
  .h-max-90-md {
    max-height: 90% !important;
  }
  .w-max-90-md {
    min-width: 90% !important;
  }
  .h-min-90-md {
    min-height: 90% !important;
  }
  .w-min-90-md {
    min-width: 90% !important;
  }
  .h-100-md-vh {
    height: 100vh !important;
  }
  .w-100-md-vw {
    width: 100vw !important;
  }
  .h-100-md {
    height: 100% !important;
  }
  .w-100-md {
    width: 100% !important;
  }
  .h-max-100-md {
    max-height: 100% !important;
  }
  .w-max-100-md {
    min-width: 100% !important;
  }
  .h-min-100-md {
    min-height: 100% !important;
  }
  .w-min-100-md {
    min-width: 100% !important;
  }
}
@container (min-width: 992px) {
  .w-auto-lg {
    width: auto !important;
  }
  .h-auto-lg {
    height: auto !important;
  }
  .h-10-lg-vh {
    height: 10vh !important;
  }
  .w-10-lg-vw {
    width: 10vw !important;
  }
  .h-10-lg {
    height: 10% !important;
  }
  .w-10-lg {
    width: 10% !important;
  }
  .h-max-10-lg {
    max-height: 10% !important;
  }
  .w-max-10-lg {
    min-width: 10% !important;
  }
  .h-min-10-lg {
    min-height: 10% !important;
  }
  .w-min-10-lg {
    min-width: 10% !important;
  }
  .h-20-lg-vh {
    height: 20vh !important;
  }
  .w-20-lg-vw {
    width: 20vw !important;
  }
  .h-20-lg {
    height: 20% !important;
  }
  .w-20-lg {
    width: 20% !important;
  }
  .h-max-20-lg {
    max-height: 20% !important;
  }
  .w-max-20-lg {
    min-width: 20% !important;
  }
  .h-min-20-lg {
    min-height: 20% !important;
  }
  .w-min-20-lg {
    min-width: 20% !important;
  }
  .h-25-lg-vh {
    height: 25vh !important;
  }
  .w-25-lg-vw {
    width: 25vw !important;
  }
  .h-25-lg {
    height: 25% !important;
  }
  .w-25-lg {
    width: 25% !important;
  }
  .h-max-25-lg {
    max-height: 25% !important;
  }
  .w-max-25-lg {
    min-width: 25% !important;
  }
  .h-min-25-lg {
    min-height: 25% !important;
  }
  .w-min-25-lg {
    min-width: 25% !important;
  }
  .h-33-lg-vh {
    height: 33vh !important;
  }
  .w-33-lg-vw {
    width: 33vw !important;
  }
  .h-33-lg {
    height: 33% !important;
  }
  .w-33-lg {
    width: 33% !important;
  }
  .h-max-33-lg {
    max-height: 33% !important;
  }
  .w-max-33-lg {
    min-width: 33% !important;
  }
  .h-min-33-lg {
    min-height: 33% !important;
  }
  .w-min-33-lg {
    min-width: 33% !important;
  }
  .h-50-lg-vh {
    height: 50vh !important;
  }
  .w-50-lg-vw {
    width: 50vw !important;
  }
  .h-50-lg {
    height: 50% !important;
  }
  .w-50-lg {
    width: 50% !important;
  }
  .h-max-50-lg {
    max-height: 50% !important;
  }
  .w-max-50-lg {
    min-width: 50% !important;
  }
  .h-min-50-lg {
    min-height: 50% !important;
  }
  .w-min-50-lg {
    min-width: 50% !important;
  }
  .h-66-lg-vh {
    height: 66vh !important;
  }
  .w-66-lg-vw {
    width: 66vw !important;
  }
  .h-66-lg {
    height: 66% !important;
  }
  .w-66-lg {
    width: 66% !important;
  }
  .h-max-66-lg {
    max-height: 66% !important;
  }
  .w-max-66-lg {
    min-width: 66% !important;
  }
  .h-min-66-lg {
    min-height: 66% !important;
  }
  .w-min-66-lg {
    min-width: 66% !important;
  }
  .h-75-lg-vh {
    height: 75vh !important;
  }
  .w-75-lg-vw {
    width: 75vw !important;
  }
  .h-75-lg {
    height: 75% !important;
  }
  .w-75-lg {
    width: 75% !important;
  }
  .h-max-75-lg {
    max-height: 75% !important;
  }
  .w-max-75-lg {
    min-width: 75% !important;
  }
  .h-min-75-lg {
    min-height: 75% !important;
  }
  .w-min-75-lg {
    min-width: 75% !important;
  }
  .h-80-lg-vh {
    height: 80vh !important;
  }
  .w-80-lg-vw {
    width: 80vw !important;
  }
  .h-80-lg {
    height: 80% !important;
  }
  .w-80-lg {
    width: 80% !important;
  }
  .h-max-80-lg {
    max-height: 80% !important;
  }
  .w-max-80-lg {
    min-width: 80% !important;
  }
  .h-min-80-lg {
    min-height: 80% !important;
  }
  .w-min-80-lg {
    min-width: 80% !important;
  }
  .h-90-lg-vh {
    height: 90vh !important;
  }
  .w-90-lg-vw {
    width: 90vw !important;
  }
  .h-90-lg {
    height: 90% !important;
  }
  .w-90-lg {
    width: 90% !important;
  }
  .h-max-90-lg {
    max-height: 90% !important;
  }
  .w-max-90-lg {
    min-width: 90% !important;
  }
  .h-min-90-lg {
    min-height: 90% !important;
  }
  .w-min-90-lg {
    min-width: 90% !important;
  }
  .h-100-lg-vh {
    height: 100vh !important;
  }
  .w-100-lg-vw {
    width: 100vw !important;
  }
  .h-100-lg {
    height: 100% !important;
  }
  .w-100-lg {
    width: 100% !important;
  }
  .h-max-100-lg {
    max-height: 100% !important;
  }
  .w-max-100-lg {
    min-width: 100% !important;
  }
  .h-min-100-lg {
    min-height: 100% !important;
  }
  .w-min-100-lg {
    min-width: 100% !important;
  }
}
@container (min-width: 1200px) {
  .w-auto-xl {
    width: auto !important;
  }
  .h-auto-xl {
    height: auto !important;
  }
  .h-10-xl-vh {
    height: 10vh !important;
  }
  .w-10-xl-vw {
    width: 10vw !important;
  }
  .h-10-xl {
    height: 10% !important;
  }
  .w-10-xl {
    width: 10% !important;
  }
  .h-max-10-xl {
    max-height: 10% !important;
  }
  .w-max-10-xl {
    min-width: 10% !important;
  }
  .h-min-10-xl {
    min-height: 10% !important;
  }
  .w-min-10-xl {
    min-width: 10% !important;
  }
  .h-20-xl-vh {
    height: 20vh !important;
  }
  .w-20-xl-vw {
    width: 20vw !important;
  }
  .h-20-xl {
    height: 20% !important;
  }
  .w-20-xl {
    width: 20% !important;
  }
  .h-max-20-xl {
    max-height: 20% !important;
  }
  .w-max-20-xl {
    min-width: 20% !important;
  }
  .h-min-20-xl {
    min-height: 20% !important;
  }
  .w-min-20-xl {
    min-width: 20% !important;
  }
  .h-25-xl-vh {
    height: 25vh !important;
  }
  .w-25-xl-vw {
    width: 25vw !important;
  }
  .h-25-xl {
    height: 25% !important;
  }
  .w-25-xl {
    width: 25% !important;
  }
  .h-max-25-xl {
    max-height: 25% !important;
  }
  .w-max-25-xl {
    min-width: 25% !important;
  }
  .h-min-25-xl {
    min-height: 25% !important;
  }
  .w-min-25-xl {
    min-width: 25% !important;
  }
  .h-33-xl-vh {
    height: 33vh !important;
  }
  .w-33-xl-vw {
    width: 33vw !important;
  }
  .h-33-xl {
    height: 33% !important;
  }
  .w-33-xl {
    width: 33% !important;
  }
  .h-max-33-xl {
    max-height: 33% !important;
  }
  .w-max-33-xl {
    min-width: 33% !important;
  }
  .h-min-33-xl {
    min-height: 33% !important;
  }
  .w-min-33-xl {
    min-width: 33% !important;
  }
  .h-50-xl-vh {
    height: 50vh !important;
  }
  .w-50-xl-vw {
    width: 50vw !important;
  }
  .h-50-xl {
    height: 50% !important;
  }
  .w-50-xl {
    width: 50% !important;
  }
  .h-max-50-xl {
    max-height: 50% !important;
  }
  .w-max-50-xl {
    min-width: 50% !important;
  }
  .h-min-50-xl {
    min-height: 50% !important;
  }
  .w-min-50-xl {
    min-width: 50% !important;
  }
  .h-66-xl-vh {
    height: 66vh !important;
  }
  .w-66-xl-vw {
    width: 66vw !important;
  }
  .h-66-xl {
    height: 66% !important;
  }
  .w-66-xl {
    width: 66% !important;
  }
  .h-max-66-xl {
    max-height: 66% !important;
  }
  .w-max-66-xl {
    min-width: 66% !important;
  }
  .h-min-66-xl {
    min-height: 66% !important;
  }
  .w-min-66-xl {
    min-width: 66% !important;
  }
  .h-75-xl-vh {
    height: 75vh !important;
  }
  .w-75-xl-vw {
    width: 75vw !important;
  }
  .h-75-xl {
    height: 75% !important;
  }
  .w-75-xl {
    width: 75% !important;
  }
  .h-max-75-xl {
    max-height: 75% !important;
  }
  .w-max-75-xl {
    min-width: 75% !important;
  }
  .h-min-75-xl {
    min-height: 75% !important;
  }
  .w-min-75-xl {
    min-width: 75% !important;
  }
  .h-80-xl-vh {
    height: 80vh !important;
  }
  .w-80-xl-vw {
    width: 80vw !important;
  }
  .h-80-xl {
    height: 80% !important;
  }
  .w-80-xl {
    width: 80% !important;
  }
  .h-max-80-xl {
    max-height: 80% !important;
  }
  .w-max-80-xl {
    min-width: 80% !important;
  }
  .h-min-80-xl {
    min-height: 80% !important;
  }
  .w-min-80-xl {
    min-width: 80% !important;
  }
  .h-90-xl-vh {
    height: 90vh !important;
  }
  .w-90-xl-vw {
    width: 90vw !important;
  }
  .h-90-xl {
    height: 90% !important;
  }
  .w-90-xl {
    width: 90% !important;
  }
  .h-max-90-xl {
    max-height: 90% !important;
  }
  .w-max-90-xl {
    min-width: 90% !important;
  }
  .h-min-90-xl {
    min-height: 90% !important;
  }
  .w-min-90-xl {
    min-width: 90% !important;
  }
  .h-100-xl-vh {
    height: 100vh !important;
  }
  .w-100-xl-vw {
    width: 100vw !important;
  }
  .h-100-xl {
    height: 100% !important;
  }
  .w-100-xl {
    width: 100% !important;
  }
  .h-max-100-xl {
    max-height: 100% !important;
  }
  .w-max-100-xl {
    min-width: 100% !important;
  }
  .h-min-100-xl {
    min-height: 100% !important;
  }
  .w-min-100-xl {
    min-width: 100% !important;
  }
}
@container (min-width: 1400px) {
  .w-auto-xxl {
    width: auto !important;
  }
  .h-auto-xxl {
    height: auto !important;
  }
  .h-10-xxl-vh {
    height: 10vh !important;
  }
  .w-10-xxl-vw {
    width: 10vw !important;
  }
  .h-10-xxl {
    height: 10% !important;
  }
  .w-10-xxl {
    width: 10% !important;
  }
  .h-max-10-xxl {
    max-height: 10% !important;
  }
  .w-max-10-xxl {
    min-width: 10% !important;
  }
  .h-min-10-xxl {
    min-height: 10% !important;
  }
  .w-min-10-xxl {
    min-width: 10% !important;
  }
  .h-20-xxl-vh {
    height: 20vh !important;
  }
  .w-20-xxl-vw {
    width: 20vw !important;
  }
  .h-20-xxl {
    height: 20% !important;
  }
  .w-20-xxl {
    width: 20% !important;
  }
  .h-max-20-xxl {
    max-height: 20% !important;
  }
  .w-max-20-xxl {
    min-width: 20% !important;
  }
  .h-min-20-xxl {
    min-height: 20% !important;
  }
  .w-min-20-xxl {
    min-width: 20% !important;
  }
  .h-25-xxl-vh {
    height: 25vh !important;
  }
  .w-25-xxl-vw {
    width: 25vw !important;
  }
  .h-25-xxl {
    height: 25% !important;
  }
  .w-25-xxl {
    width: 25% !important;
  }
  .h-max-25-xxl {
    max-height: 25% !important;
  }
  .w-max-25-xxl {
    min-width: 25% !important;
  }
  .h-min-25-xxl {
    min-height: 25% !important;
  }
  .w-min-25-xxl {
    min-width: 25% !important;
  }
  .h-33-xxl-vh {
    height: 33vh !important;
  }
  .w-33-xxl-vw {
    width: 33vw !important;
  }
  .h-33-xxl {
    height: 33% !important;
  }
  .w-33-xxl {
    width: 33% !important;
  }
  .h-max-33-xxl {
    max-height: 33% !important;
  }
  .w-max-33-xxl {
    min-width: 33% !important;
  }
  .h-min-33-xxl {
    min-height: 33% !important;
  }
  .w-min-33-xxl {
    min-width: 33% !important;
  }
  .h-50-xxl-vh {
    height: 50vh !important;
  }
  .w-50-xxl-vw {
    width: 50vw !important;
  }
  .h-50-xxl {
    height: 50% !important;
  }
  .w-50-xxl {
    width: 50% !important;
  }
  .h-max-50-xxl {
    max-height: 50% !important;
  }
  .w-max-50-xxl {
    min-width: 50% !important;
  }
  .h-min-50-xxl {
    min-height: 50% !important;
  }
  .w-min-50-xxl {
    min-width: 50% !important;
  }
  .h-66-xxl-vh {
    height: 66vh !important;
  }
  .w-66-xxl-vw {
    width: 66vw !important;
  }
  .h-66-xxl {
    height: 66% !important;
  }
  .w-66-xxl {
    width: 66% !important;
  }
  .h-max-66-xxl {
    max-height: 66% !important;
  }
  .w-max-66-xxl {
    min-width: 66% !important;
  }
  .h-min-66-xxl {
    min-height: 66% !important;
  }
  .w-min-66-xxl {
    min-width: 66% !important;
  }
  .h-75-xxl-vh {
    height: 75vh !important;
  }
  .w-75-xxl-vw {
    width: 75vw !important;
  }
  .h-75-xxl {
    height: 75% !important;
  }
  .w-75-xxl {
    width: 75% !important;
  }
  .h-max-75-xxl {
    max-height: 75% !important;
  }
  .w-max-75-xxl {
    min-width: 75% !important;
  }
  .h-min-75-xxl {
    min-height: 75% !important;
  }
  .w-min-75-xxl {
    min-width: 75% !important;
  }
  .h-80-xxl-vh {
    height: 80vh !important;
  }
  .w-80-xxl-vw {
    width: 80vw !important;
  }
  .h-80-xxl {
    height: 80% !important;
  }
  .w-80-xxl {
    width: 80% !important;
  }
  .h-max-80-xxl {
    max-height: 80% !important;
  }
  .w-max-80-xxl {
    min-width: 80% !important;
  }
  .h-min-80-xxl {
    min-height: 80% !important;
  }
  .w-min-80-xxl {
    min-width: 80% !important;
  }
  .h-90-xxl-vh {
    height: 90vh !important;
  }
  .w-90-xxl-vw {
    width: 90vw !important;
  }
  .h-90-xxl {
    height: 90% !important;
  }
  .w-90-xxl {
    width: 90% !important;
  }
  .h-max-90-xxl {
    max-height: 90% !important;
  }
  .w-max-90-xxl {
    min-width: 90% !important;
  }
  .h-min-90-xxl {
    min-height: 90% !important;
  }
  .w-min-90-xxl {
    min-width: 90% !important;
  }
  .h-100-xxl-vh {
    height: 100vh !important;
  }
  .w-100-xxl-vw {
    width: 100vw !important;
  }
  .h-100-xxl {
    height: 100% !important;
  }
  .w-100-xxl {
    width: 100% !important;
  }
  .h-max-100-xxl {
    max-height: 100% !important;
  }
  .w-max-100-xxl {
    min-width: 100% !important;
  }
  .h-min-100-xxl {
    min-height: 100% !important;
  }
  .w-min-100-xxl {
    min-width: 100% !important;
  }
}
@container (min-width: 2000px) {
  .w-auto-xxxl {
    width: auto !important;
  }
  .h-auto-xxxl {
    height: auto !important;
  }
  .h-10-xxxl-vh {
    height: 10vh !important;
  }
  .w-10-xxxl-vw {
    width: 10vw !important;
  }
  .h-10-xxxl {
    height: 10% !important;
  }
  .w-10-xxxl {
    width: 10% !important;
  }
  .h-max-10-xxxl {
    max-height: 10% !important;
  }
  .w-max-10-xxxl {
    min-width: 10% !important;
  }
  .h-min-10-xxxl {
    min-height: 10% !important;
  }
  .w-min-10-xxxl {
    min-width: 10% !important;
  }
  .h-20-xxxl-vh {
    height: 20vh !important;
  }
  .w-20-xxxl-vw {
    width: 20vw !important;
  }
  .h-20-xxxl {
    height: 20% !important;
  }
  .w-20-xxxl {
    width: 20% !important;
  }
  .h-max-20-xxxl {
    max-height: 20% !important;
  }
  .w-max-20-xxxl {
    min-width: 20% !important;
  }
  .h-min-20-xxxl {
    min-height: 20% !important;
  }
  .w-min-20-xxxl {
    min-width: 20% !important;
  }
  .h-25-xxxl-vh {
    height: 25vh !important;
  }
  .w-25-xxxl-vw {
    width: 25vw !important;
  }
  .h-25-xxxl {
    height: 25% !important;
  }
  .w-25-xxxl {
    width: 25% !important;
  }
  .h-max-25-xxxl {
    max-height: 25% !important;
  }
  .w-max-25-xxxl {
    min-width: 25% !important;
  }
  .h-min-25-xxxl {
    min-height: 25% !important;
  }
  .w-min-25-xxxl {
    min-width: 25% !important;
  }
  .h-33-xxxl-vh {
    height: 33vh !important;
  }
  .w-33-xxxl-vw {
    width: 33vw !important;
  }
  .h-33-xxxl {
    height: 33% !important;
  }
  .w-33-xxxl {
    width: 33% !important;
  }
  .h-max-33-xxxl {
    max-height: 33% !important;
  }
  .w-max-33-xxxl {
    min-width: 33% !important;
  }
  .h-min-33-xxxl {
    min-height: 33% !important;
  }
  .w-min-33-xxxl {
    min-width: 33% !important;
  }
  .h-50-xxxl-vh {
    height: 50vh !important;
  }
  .w-50-xxxl-vw {
    width: 50vw !important;
  }
  .h-50-xxxl {
    height: 50% !important;
  }
  .w-50-xxxl {
    width: 50% !important;
  }
  .h-max-50-xxxl {
    max-height: 50% !important;
  }
  .w-max-50-xxxl {
    min-width: 50% !important;
  }
  .h-min-50-xxxl {
    min-height: 50% !important;
  }
  .w-min-50-xxxl {
    min-width: 50% !important;
  }
  .h-66-xxxl-vh {
    height: 66vh !important;
  }
  .w-66-xxxl-vw {
    width: 66vw !important;
  }
  .h-66-xxxl {
    height: 66% !important;
  }
  .w-66-xxxl {
    width: 66% !important;
  }
  .h-max-66-xxxl {
    max-height: 66% !important;
  }
  .w-max-66-xxxl {
    min-width: 66% !important;
  }
  .h-min-66-xxxl {
    min-height: 66% !important;
  }
  .w-min-66-xxxl {
    min-width: 66% !important;
  }
  .h-75-xxxl-vh {
    height: 75vh !important;
  }
  .w-75-xxxl-vw {
    width: 75vw !important;
  }
  .h-75-xxxl {
    height: 75% !important;
  }
  .w-75-xxxl {
    width: 75% !important;
  }
  .h-max-75-xxxl {
    max-height: 75% !important;
  }
  .w-max-75-xxxl {
    min-width: 75% !important;
  }
  .h-min-75-xxxl {
    min-height: 75% !important;
  }
  .w-min-75-xxxl {
    min-width: 75% !important;
  }
  .h-80-xxxl-vh {
    height: 80vh !important;
  }
  .w-80-xxxl-vw {
    width: 80vw !important;
  }
  .h-80-xxxl {
    height: 80% !important;
  }
  .w-80-xxxl {
    width: 80% !important;
  }
  .h-max-80-xxxl {
    max-height: 80% !important;
  }
  .w-max-80-xxxl {
    min-width: 80% !important;
  }
  .h-min-80-xxxl {
    min-height: 80% !important;
  }
  .w-min-80-xxxl {
    min-width: 80% !important;
  }
  .h-90-xxxl-vh {
    height: 90vh !important;
  }
  .w-90-xxxl-vw {
    width: 90vw !important;
  }
  .h-90-xxxl {
    height: 90% !important;
  }
  .w-90-xxxl {
    width: 90% !important;
  }
  .h-max-90-xxxl {
    max-height: 90% !important;
  }
  .w-max-90-xxxl {
    min-width: 90% !important;
  }
  .h-min-90-xxxl {
    min-height: 90% !important;
  }
  .w-min-90-xxxl {
    min-width: 90% !important;
  }
  .h-100-xxxl-vh {
    height: 100vh !important;
  }
  .w-100-xxxl-vw {
    width: 100vw !important;
  }
  .h-100-xxxl {
    height: 100% !important;
  }
  .w-100-xxxl {
    width: 100% !important;
  }
  .h-max-100-xxxl {
    max-height: 100% !important;
  }
  .w-max-100-xxxl {
    min-width: 100% !important;
  }
  .h-min-100-xxxl {
    min-height: 100% !important;
  }
  .w-min-100-xxxl {
    min-width: 100% !important;
  }
}

/* source/common-css/spacing.less */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-left: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.p-1 {
  padding: 4px !important;
}
.pr-1 {
  padding-right: 4px !important;
}
.pl-1 {
  padding-left: 4px !important;
}
.pt-1 {
  padding-top: 4px !important;
}
.pb-1 {
  padding-bottom: 4px !important;
}
.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.m-1 {
  margin: 4px !important;
}
.mr-1 {
  margin-right: 4px !important;
}
.ml-1 {
  margin-left: 4px !important;
}
.mt-1 {
  margin-top: 4px !important;
}
.mb-1 {
  margin-bottom: 4px !important;
}
.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.mr-1-minus {
  margin-right: -4px !important;
}
.ml-1-minus {
  margin-left: -4px !important;
}
.mt-1-minus {
  margin-top: -4px !important;
}
.mb-1-minus {
  margin-bottom: -4px !important;
}
.p-2 {
  padding: 8px !important;
}
.pr-2 {
  padding-right: 8px !important;
}
.pl-2 {
  padding-left: 8px !important;
}
.pt-2 {
  padding-top: 8px !important;
}
.pb-2 {
  padding-bottom: 8px !important;
}
.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.m-2 {
  margin: 8px !important;
}
.mr-2 {
  margin-right: 8px !important;
}
.ml-2 {
  margin-left: 8px !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.mr-2-minus {
  margin-right: -8px !important;
}
.ml-2-minus {
  margin-left: -8px !important;
}
.mt-2-minus {
  margin-top: -8px !important;
}
.mb-2-minus {
  margin-bottom: -8px !important;
}
.p-3 {
  padding: 12px !important;
}
.pr-3 {
  padding-right: 12px !important;
}
.pl-3 {
  padding-left: 12px !important;
}
.pt-3 {
  padding-top: 12px !important;
}
.pb-3 {
  padding-bottom: 12px !important;
}
.px-3 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.m-3 {
  margin: 12px !important;
}
.mr-3 {
  margin-right: 12px !important;
}
.ml-3 {
  margin-left: 12px !important;
}
.mt-3 {
  margin-top: 12px !important;
}
.mb-3 {
  margin-bottom: 12px !important;
}
.mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.mr-3-minus {
  margin-right: -12px !important;
}
.ml-3-minus {
  margin-left: -12px !important;
}
.mt-3-minus {
  margin-top: -12px !important;
}
.mb-3-minus {
  margin-bottom: -12px !important;
}
.p-4 {
  padding: 16px !important;
}
.pr-4 {
  padding-right: 16px !important;
}
.pl-4 {
  padding-left: 16px !important;
}
.pt-4 {
  padding-top: 16px !important;
}
.pb-4 {
  padding-bottom: 16px !important;
}
.px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.m-4 {
  margin: 16px !important;
}
.mr-4 {
  margin-right: 16px !important;
}
.ml-4 {
  margin-left: 16px !important;
}
.mt-4 {
  margin-top: 16px !important;
}
.mb-4 {
  margin-bottom: 16px !important;
}
.mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.mr-4-minus {
  margin-right: -16px !important;
}
.ml-4-minus {
  margin-left: -16px !important;
}
.mt-4-minus {
  margin-top: -16px !important;
}
.mb-4-minus {
  margin-bottom: -16px !important;
}
.p-5 {
  padding: 20px !important;
}
.pr-5 {
  padding-right: 20px !important;
}
.pl-5 {
  padding-left: 20px !important;
}
.pt-5 {
  padding-top: 20px !important;
}
.pb-5 {
  padding-bottom: 20px !important;
}
.px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-5 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.m-5 {
  margin: 20px !important;
}
.mr-5 {
  margin-right: 20px !important;
}
.ml-5 {
  margin-left: 20px !important;
}
.mt-5 {
  margin-top: 20px !important;
}
.mb-5 {
  margin-bottom: 20px !important;
}
.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.mr-5-minus {
  margin-right: -20px !important;
}
.ml-5-minus {
  margin-left: -20px !important;
}
.mt-5-minus {
  margin-top: -20px !important;
}
.mb-5-minus {
  margin-bottom: -20px !important;
}
.p-6 {
  padding: 24px !important;
}
.pr-6 {
  padding-right: 24px !important;
}
.pl-6 {
  padding-left: 24px !important;
}
.pt-6 {
  padding-top: 24px !important;
}
.pb-6 {
  padding-bottom: 24px !important;
}
.px-6 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.m-6 {
  margin: 24px !important;
}
.mr-6 {
  margin-right: 24px !important;
}
.ml-6 {
  margin-left: 24px !important;
}
.mt-6 {
  margin-top: 24px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}
.mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}
.my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.mr-6-minus {
  margin-right: -24px !important;
}
.ml-6-minus {
  margin-left: -24px !important;
}
.mt-6-minus {
  margin-top: -24px !important;
}
.mb-6-minus {
  margin-bottom: -24px !important;
}
.p-7 {
  padding: 28px !important;
}
.pr-7 {
  padding-right: 28px !important;
}
.pl-7 {
  padding-left: 28px !important;
}
.pt-7 {
  padding-top: 28px !important;
}
.pb-7 {
  padding-bottom: 28px !important;
}
.px-7 {
  padding-left: 28px !important;
  padding-right: 28px !important;
}
.py-7 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
.m-7 {
  margin: 28px !important;
}
.mr-7 {
  margin-right: 28px !important;
}
.ml-7 {
  margin-left: 28px !important;
}
.mt-7 {
  margin-top: 28px !important;
}
.mb-7 {
  margin-bottom: 28px !important;
}
.mx-7 {
  margin-left: 28px !important;
  margin-right: 28px !important;
}
.my-7 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}
.mr-7-minus {
  margin-right: -28px !important;
}
.ml-7-minus {
  margin-left: -28px !important;
}
.mt-7-minus {
  margin-top: -28px !important;
}
.mb-7-minus {
  margin-bottom: -28px !important;
}
.p-8 {
  padding: 32px !important;
}
.pr-8 {
  padding-right: 32px !important;
}
.pl-8 {
  padding-left: 32px !important;
}
.pt-8 {
  padding-top: 32px !important;
}
.pb-8 {
  padding-bottom: 32px !important;
}
.px-8 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
.py-8 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.m-8 {
  margin: 32px !important;
}
.mr-8 {
  margin-right: 32px !important;
}
.ml-8 {
  margin-left: 32px !important;
}
.mt-8 {
  margin-top: 32px !important;
}
.mb-8 {
  margin-bottom: 32px !important;
}
.mx-8 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}
.my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.mr-8-minus {
  margin-right: -32px !important;
}
.ml-8-minus {
  margin-left: -32px !important;
}
.mt-8-minus {
  margin-top: -32px !important;
}
.mb-8-minus {
  margin-bottom: -32px !important;
}
.p-9 {
  padding: 36px !important;
}
.pr-9 {
  padding-right: 36px !important;
}
.pl-9 {
  padding-left: 36px !important;
}
.pt-9 {
  padding-top: 36px !important;
}
.pb-9 {
  padding-bottom: 36px !important;
}
.px-9 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}
.py-9 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}
.m-9 {
  margin: 36px !important;
}
.mr-9 {
  margin-right: 36px !important;
}
.ml-9 {
  margin-left: 36px !important;
}
.mt-9 {
  margin-top: 36px !important;
}
.mb-9 {
  margin-bottom: 36px !important;
}
.mx-9 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}
.my-9 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}
.mr-9-minus {
  margin-right: -36px !important;
}
.ml-9-minus {
  margin-left: -36px !important;
}
.mt-9-minus {
  margin-top: -36px !important;
}
.mb-9-minus {
  margin-bottom: -36px !important;
}
.p-10 {
  padding: 40px !important;
}
.pr-10 {
  padding-right: 40px !important;
}
.pl-10 {
  padding-left: 40px !important;
}
.pt-10 {
  padding-top: 40px !important;
}
.pb-10 {
  padding-bottom: 40px !important;
}
.px-10 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.py-10 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.m-10 {
  margin: 40px !important;
}
.mr-10 {
  margin-right: 40px !important;
}
.ml-10 {
  margin-left: 40px !important;
}
.mt-10 {
  margin-top: 40px !important;
}
.mb-10 {
  margin-bottom: 40px !important;
}
.mx-10 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.my-10 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.mr-10-minus {
  margin-right: -40px !important;
}
.ml-10-minus {
  margin-left: -40px !important;
}
.mt-10-minus {
  margin-top: -40px !important;
}
.mb-10-minus {
  margin-bottom: -40px !important;
}
.p-11 {
  padding: 44px !important;
}
.pr-11 {
  padding-right: 44px !important;
}
.pl-11 {
  padding-left: 44px !important;
}
.pt-11 {
  padding-top: 44px !important;
}
.pb-11 {
  padding-bottom: 44px !important;
}
.px-11 {
  padding-left: 44px !important;
  padding-right: 44px !important;
}
.py-11 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}
.m-11 {
  margin: 44px !important;
}
.mr-11 {
  margin-right: 44px !important;
}
.ml-11 {
  margin-left: 44px !important;
}
.mt-11 {
  margin-top: 44px !important;
}
.mb-11 {
  margin-bottom: 44px !important;
}
.mx-11 {
  margin-left: 44px !important;
  margin-right: 44px !important;
}
.my-11 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}
.mr-11-minus {
  margin-right: -44px !important;
}
.ml-11-minus {
  margin-left: -44px !important;
}
.mt-11-minus {
  margin-top: -44px !important;
}
.mb-11-minus {
  margin-bottom: -44px !important;
}
.p-12 {
  padding: 48px !important;
}
.pr-12 {
  padding-right: 48px !important;
}
.pl-12 {
  padding-left: 48px !important;
}
.pt-12 {
  padding-top: 48px !important;
}
.pb-12 {
  padding-bottom: 48px !important;
}
.px-12 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}
.py-12 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.m-12 {
  margin: 48px !important;
}
.mr-12 {
  margin-right: 48px !important;
}
.ml-12 {
  margin-left: 48px !important;
}
.mt-12 {
  margin-top: 48px !important;
}
.mb-12 {
  margin-bottom: 48px !important;
}
.mx-12 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}
.my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}
.mr-12-minus {
  margin-right: -48px !important;
}
.ml-12-minus {
  margin-left: -48px !important;
}
.mt-12-minus {
  margin-top: -48px !important;
}
.mb-12-minus {
  margin-bottom: -48px !important;
}
.p-13 {
  padding: 52px !important;
}
.pr-13 {
  padding-right: 52px !important;
}
.pl-13 {
  padding-left: 52px !important;
}
.pt-13 {
  padding-top: 52px !important;
}
.pb-13 {
  padding-bottom: 52px !important;
}
.px-13 {
  padding-left: 52px !important;
  padding-right: 52px !important;
}
.py-13 {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}
.m-13 {
  margin: 52px !important;
}
.mr-13 {
  margin-right: 52px !important;
}
.ml-13 {
  margin-left: 52px !important;
}
.mt-13 {
  margin-top: 52px !important;
}
.mb-13 {
  margin-bottom: 52px !important;
}
.mx-13 {
  margin-left: 52px !important;
  margin-right: 52px !important;
}
.my-13 {
  margin-top: 52px !important;
  margin-bottom: 52px !important;
}
.mr-13-minus {
  margin-right: -52px !important;
}
.ml-13-minus {
  margin-left: -52px !important;
}
.mt-13-minus {
  margin-top: -52px !important;
}
.mb-13-minus {
  margin-bottom: -52px !important;
}
.p-14 {
  padding: 56px !important;
}
.pr-14 {
  padding-right: 56px !important;
}
.pl-14 {
  padding-left: 56px !important;
}
.pt-14 {
  padding-top: 56px !important;
}
.pb-14 {
  padding-bottom: 56px !important;
}
.px-14 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
.py-14 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.m-14 {
  margin: 56px !important;
}
.mr-14 {
  margin-right: 56px !important;
}
.ml-14 {
  margin-left: 56px !important;
}
.mt-14 {
  margin-top: 56px !important;
}
.mb-14 {
  margin-bottom: 56px !important;
}
.mx-14 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}
.my-14 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}
.mr-14-minus {
  margin-right: -56px !important;
}
.ml-14-minus {
  margin-left: -56px !important;
}
.mt-14-minus {
  margin-top: -56px !important;
}
.mb-14-minus {
  margin-bottom: -56px !important;
}
.p-15 {
  padding: 60px !important;
}
.pr-15 {
  padding-right: 60px !important;
}
.pl-15 {
  padding-left: 60px !important;
}
.pt-15 {
  padding-top: 60px !important;
}
.pb-15 {
  padding-bottom: 60px !important;
}
.px-15 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-15 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.m-15 {
  margin: 60px !important;
}
.mr-15 {
  margin-right: 60px !important;
}
.ml-15 {
  margin-left: 60px !important;
}
.mt-15 {
  margin-top: 60px !important;
}
.mb-15 {
  margin-bottom: 60px !important;
}
.mx-15 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-15 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.mr-15-minus {
  margin-right: -60px !important;
}
.ml-15-minus {
  margin-left: -60px !important;
}
.mt-15-minus {
  margin-top: -60px !important;
}
.mb-15-minus {
  margin-bottom: -60px !important;
}
.p-16 {
  padding: 64px !important;
}
.pr-16 {
  padding-right: 64px !important;
}
.pl-16 {
  padding-left: 64px !important;
}
.pt-16 {
  padding-top: 64px !important;
}
.pb-16 {
  padding-bottom: 64px !important;
}
.px-16 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}
.py-16 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.m-16 {
  margin: 64px !important;
}
.mr-16 {
  margin-right: 64px !important;
}
.ml-16 {
  margin-left: 64px !important;
}
.mt-16 {
  margin-top: 64px !important;
}
.mb-16 {
  margin-bottom: 64px !important;
}
.mx-16 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}
.my-16 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}
.mr-16-minus {
  margin-right: -64px !important;
}
.ml-16-minus {
  margin-left: -64px !important;
}
.mt-16-minus {
  margin-top: -64px !important;
}
.mb-16-minus {
  margin-bottom: -64px !important;
}
.p-17 {
  padding: 68px !important;
}
.pr-17 {
  padding-right: 68px !important;
}
.pl-17 {
  padding-left: 68px !important;
}
.pt-17 {
  padding-top: 68px !important;
}
.pb-17 {
  padding-bottom: 68px !important;
}
.px-17 {
  padding-left: 68px !important;
  padding-right: 68px !important;
}
.py-17 {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}
.m-17 {
  margin: 68px !important;
}
.mr-17 {
  margin-right: 68px !important;
}
.ml-17 {
  margin-left: 68px !important;
}
.mt-17 {
  margin-top: 68px !important;
}
.mb-17 {
  margin-bottom: 68px !important;
}
.mx-17 {
  margin-left: 68px !important;
  margin-right: 68px !important;
}
.my-17 {
  margin-top: 68px !important;
  margin-bottom: 68px !important;
}
.mr-17-minus {
  margin-right: -68px !important;
}
.ml-17-minus {
  margin-left: -68px !important;
}
.mt-17-minus {
  margin-top: -68px !important;
}
.mb-17-minus {
  margin-bottom: -68px !important;
}
.p-18 {
  padding: 72px !important;
}
.pr-18 {
  padding-right: 72px !important;
}
.pl-18 {
  padding-left: 72px !important;
}
.pt-18 {
  padding-top: 72px !important;
}
.pb-18 {
  padding-bottom: 72px !important;
}
.px-18 {
  padding-left: 72px !important;
  padding-right: 72px !important;
}
.py-18 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}
.m-18 {
  margin: 72px !important;
}
.mr-18 {
  margin-right: 72px !important;
}
.ml-18 {
  margin-left: 72px !important;
}
.mt-18 {
  margin-top: 72px !important;
}
.mb-18 {
  margin-bottom: 72px !important;
}
.mx-18 {
  margin-left: 72px !important;
  margin-right: 72px !important;
}
.my-18 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}
.mr-18-minus {
  margin-right: -72px !important;
}
.ml-18-minus {
  margin-left: -72px !important;
}
.mt-18-minus {
  margin-top: -72px !important;
}
.mb-18-minus {
  margin-bottom: -72px !important;
}
.p-19 {
  padding: 76px !important;
}
.pr-19 {
  padding-right: 76px !important;
}
.pl-19 {
  padding-left: 76px !important;
}
.pt-19 {
  padding-top: 76px !important;
}
.pb-19 {
  padding-bottom: 76px !important;
}
.px-19 {
  padding-left: 76px !important;
  padding-right: 76px !important;
}
.py-19 {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}
.m-19 {
  margin: 76px !important;
}
.mr-19 {
  margin-right: 76px !important;
}
.ml-19 {
  margin-left: 76px !important;
}
.mt-19 {
  margin-top: 76px !important;
}
.mb-19 {
  margin-bottom: 76px !important;
}
.mx-19 {
  margin-left: 76px !important;
  margin-right: 76px !important;
}
.my-19 {
  margin-top: 76px !important;
  margin-bottom: 76px !important;
}
.mr-19-minus {
  margin-right: -76px !important;
}
.ml-19-minus {
  margin-left: -76px !important;
}
.mt-19-minus {
  margin-top: -76px !important;
}
.mb-19-minus {
  margin-bottom: -76px !important;
}
.p-20 {
  padding: 80px !important;
}
.pr-20 {
  padding-right: 80px !important;
}
.pl-20 {
  padding-left: 80px !important;
}
.pt-20 {
  padding-top: 80px !important;
}
.pb-20 {
  padding-bottom: 80px !important;
}
.px-20 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.py-20 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.m-20 {
  margin: 80px !important;
}
.mr-20 {
  margin-right: 80px !important;
}
.ml-20 {
  margin-left: 80px !important;
}
.mt-20 {
  margin-top: 80px !important;
}
.mb-20 {
  margin-bottom: 80px !important;
}
.mx-20 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}
.my-20 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}
.mr-20-minus {
  margin-right: -80px !important;
}
.ml-20-minus {
  margin-left: -80px !important;
}
.mt-20-minus {
  margin-top: -80px !important;
}
.mb-20-minus {
  margin-bottom: -80px !important;
}
@container (min-width: 0) {
  .mx-auto-fs {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-fs {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-fs {
    margin-left: auto !important;
  }
  .mr-auto-fs {
    margin-right: auto !important;
  }
  .mt-auto-fs {
    margin-top: auto !important;
  }
  .mb-auto-fs {
    margin-bottom: auto !important;
  }
  .p-0-fs {
    padding: 0 !important;
  }
  .pl-0-fs {
    padding-left: 0 !important;
  }
  .pr-0-fs {
    padding-right: 0 !important;
  }
  .pt-0-fs {
    padding-top: 0 !important;
  }
  .pb-0-fs {
    padding-bottom: 0 !important;
  }
  .m-0-fs {
    margin: 0 !important;
  }
  .ml-0-fs {
    margin-left: 0 !important;
  }
  .mr-0-fs {
    margin-right: 0 !important;
  }
  .mt-0-fs {
    margin-top: 0 !important;
  }
  .mb-0-fs {
    margin-bottom: 0 !important;
  }
  .p-1-fs {
    padding: 4px !important;
  }
  .pr-1-fs {
    padding-right: 4px !important;
  }
  .pl-1-fs {
    padding-left: 4px !important;
  }
  .pt-1-fs {
    padding-top: 4px !important;
  }
  .pb-1-fs {
    padding-bottom: 4px !important;
  }
  .px-1-fs {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-fs {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-fs {
    margin: 4px !important;
  }
  .mr-1-fs {
    margin-right: 4px !important;
  }
  .ml-1-fs {
    margin-left: 4px !important;
  }
  .mt-1-fs {
    margin-top: 4px !important;
  }
  .mb-1-fs {
    margin-bottom: 4px !important;
  }
  .mx-1-fs {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-fs {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-fs-minus {
    margin: -4px !important;
  }
  .mr-1-fs-minus {
    margin-right: -4px !important;
  }
  .ml-1-fs-minus {
    margin-left: -4px !important;
  }
  .mt-1-fs-minus {
    margin-top: -4px !important;
  }
  .mb-1-fs-minus {
    margin-bottom: -4px !important;
  }
  .p-2-fs {
    padding: 8px !important;
  }
  .pr-2-fs {
    padding-right: 8px !important;
  }
  .pl-2-fs {
    padding-left: 8px !important;
  }
  .pt-2-fs {
    padding-top: 8px !important;
  }
  .pb-2-fs {
    padding-bottom: 8px !important;
  }
  .px-2-fs {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-fs {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-fs {
    margin: 8px !important;
  }
  .mr-2-fs {
    margin-right: 8px !important;
  }
  .ml-2-fs {
    margin-left: 8px !important;
  }
  .mt-2-fs {
    margin-top: 8px !important;
  }
  .mb-2-fs {
    margin-bottom: 8px !important;
  }
  .mx-2-fs {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-fs {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-fs-minus {
    margin: -8px !important;
  }
  .mr-2-fs-minus {
    margin-right: -8px !important;
  }
  .ml-2-fs-minus {
    margin-left: -8px !important;
  }
  .mt-2-fs-minus {
    margin-top: -8px !important;
  }
  .mb-2-fs-minus {
    margin-bottom: -8px !important;
  }
  .p-3-fs {
    padding: 12px !important;
  }
  .pr-3-fs {
    padding-right: 12px !important;
  }
  .pl-3-fs {
    padding-left: 12px !important;
  }
  .pt-3-fs {
    padding-top: 12px !important;
  }
  .pb-3-fs {
    padding-bottom: 12px !important;
  }
  .px-3-fs {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-fs {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-fs {
    margin: 12px !important;
  }
  .mr-3-fs {
    margin-right: 12px !important;
  }
  .ml-3-fs {
    margin-left: 12px !important;
  }
  .mt-3-fs {
    margin-top: 12px !important;
  }
  .mb-3-fs {
    margin-bottom: 12px !important;
  }
  .mx-3-fs {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-fs {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-fs-minus {
    margin: -12px !important;
  }
  .mr-3-fs-minus {
    margin-right: -12px !important;
  }
  .ml-3-fs-minus {
    margin-left: -12px !important;
  }
  .mt-3-fs-minus {
    margin-top: -12px !important;
  }
  .mb-3-fs-minus {
    margin-bottom: -12px !important;
  }
  .p-4-fs {
    padding: 16px !important;
  }
  .pr-4-fs {
    padding-right: 16px !important;
  }
  .pl-4-fs {
    padding-left: 16px !important;
  }
  .pt-4-fs {
    padding-top: 16px !important;
  }
  .pb-4-fs {
    padding-bottom: 16px !important;
  }
  .px-4-fs {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-fs {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-fs {
    margin: 16px !important;
  }
  .mr-4-fs {
    margin-right: 16px !important;
  }
  .ml-4-fs {
    margin-left: 16px !important;
  }
  .mt-4-fs {
    margin-top: 16px !important;
  }
  .mb-4-fs {
    margin-bottom: 16px !important;
  }
  .mx-4-fs {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-fs {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-fs-minus {
    margin: -16px !important;
  }
  .mr-4-fs-minus {
    margin-right: -16px !important;
  }
  .ml-4-fs-minus {
    margin-left: -16px !important;
  }
  .mt-4-fs-minus {
    margin-top: -16px !important;
  }
  .mb-4-fs-minus {
    margin-bottom: -16px !important;
  }
  .p-5-fs {
    padding: 20px !important;
  }
  .pr-5-fs {
    padding-right: 20px !important;
  }
  .pl-5-fs {
    padding-left: 20px !important;
  }
  .pt-5-fs {
    padding-top: 20px !important;
  }
  .pb-5-fs {
    padding-bottom: 20px !important;
  }
  .px-5-fs {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-fs {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-fs {
    margin: 20px !important;
  }
  .mr-5-fs {
    margin-right: 20px !important;
  }
  .ml-5-fs {
    margin-left: 20px !important;
  }
  .mt-5-fs {
    margin-top: 20px !important;
  }
  .mb-5-fs {
    margin-bottom: 20px !important;
  }
  .mx-5-fs {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-fs {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-fs-minus {
    margin: -20px !important;
  }
  .mr-5-fs-minus {
    margin-right: -20px !important;
  }
  .ml-5-fs-minus {
    margin-left: -20px !important;
  }
  .mt-5-fs-minus {
    margin-top: -20px !important;
  }
  .mb-5-fs-minus {
    margin-bottom: -20px !important;
  }
  .p-6-fs {
    padding: 24px !important;
  }
  .pr-6-fs {
    padding-right: 24px !important;
  }
  .pl-6-fs {
    padding-left: 24px !important;
  }
  .pt-6-fs {
    padding-top: 24px !important;
  }
  .pb-6-fs {
    padding-bottom: 24px !important;
  }
  .px-6-fs {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-fs {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-fs {
    margin: 24px !important;
  }
  .mr-6-fs {
    margin-right: 24px !important;
  }
  .ml-6-fs {
    margin-left: 24px !important;
  }
  .mt-6-fs {
    margin-top: 24px !important;
  }
  .mb-6-fs {
    margin-bottom: 24px !important;
  }
  .mx-6-fs {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-fs {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-fs-minus {
    margin: -24px !important;
  }
  .mr-6-fs-minus {
    margin-right: -24px !important;
  }
  .ml-6-fs-minus {
    margin-left: -24px !important;
  }
  .mt-6-fs-minus {
    margin-top: -24px !important;
  }
  .mb-6-fs-minus {
    margin-bottom: -24px !important;
  }
  .p-7-fs {
    padding: 28px !important;
  }
  .pr-7-fs {
    padding-right: 28px !important;
  }
  .pl-7-fs {
    padding-left: 28px !important;
  }
  .pt-7-fs {
    padding-top: 28px !important;
  }
  .pb-7-fs {
    padding-bottom: 28px !important;
  }
  .px-7-fs {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-fs {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-fs {
    margin: 28px !important;
  }
  .mr-7-fs {
    margin-right: 28px !important;
  }
  .ml-7-fs {
    margin-left: 28px !important;
  }
  .mt-7-fs {
    margin-top: 28px !important;
  }
  .mb-7-fs {
    margin-bottom: 28px !important;
  }
  .mx-7-fs {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-fs {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-fs-minus {
    margin: -28px !important;
  }
  .mr-7-fs-minus {
    margin-right: -28px !important;
  }
  .ml-7-fs-minus {
    margin-left: -28px !important;
  }
  .mt-7-fs-minus {
    margin-top: -28px !important;
  }
  .mb-7-fs-minus {
    margin-bottom: -28px !important;
  }
  .p-8-fs {
    padding: 32px !important;
  }
  .pr-8-fs {
    padding-right: 32px !important;
  }
  .pl-8-fs {
    padding-left: 32px !important;
  }
  .pt-8-fs {
    padding-top: 32px !important;
  }
  .pb-8-fs {
    padding-bottom: 32px !important;
  }
  .px-8-fs {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-fs {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-fs {
    margin: 32px !important;
  }
  .mr-8-fs {
    margin-right: 32px !important;
  }
  .ml-8-fs {
    margin-left: 32px !important;
  }
  .mt-8-fs {
    margin-top: 32px !important;
  }
  .mb-8-fs {
    margin-bottom: 32px !important;
  }
  .mx-8-fs {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-fs {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-fs-minus {
    margin: -32px !important;
  }
  .mr-8-fs-minus {
    margin-right: -32px !important;
  }
  .ml-8-fs-minus {
    margin-left: -32px !important;
  }
  .mt-8-fs-minus {
    margin-top: -32px !important;
  }
  .mb-8-fs-minus {
    margin-bottom: -32px !important;
  }
  .p-9-fs {
    padding: 36px !important;
  }
  .pr-9-fs {
    padding-right: 36px !important;
  }
  .pl-9-fs {
    padding-left: 36px !important;
  }
  .pt-9-fs {
    padding-top: 36px !important;
  }
  .pb-9-fs {
    padding-bottom: 36px !important;
  }
  .px-9-fs {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-fs {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-fs {
    margin: 36px !important;
  }
  .mr-9-fs {
    margin-right: 36px !important;
  }
  .ml-9-fs {
    margin-left: 36px !important;
  }
  .mt-9-fs {
    margin-top: 36px !important;
  }
  .mb-9-fs {
    margin-bottom: 36px !important;
  }
  .mx-9-fs {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-fs {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-fs-minus {
    margin: -36px !important;
  }
  .mr-9-fs-minus {
    margin-right: -36px !important;
  }
  .ml-9-fs-minus {
    margin-left: -36px !important;
  }
  .mt-9-fs-minus {
    margin-top: -36px !important;
  }
  .mb-9-fs-minus {
    margin-bottom: -36px !important;
  }
  .p-10-fs {
    padding: 40px !important;
  }
  .pr-10-fs {
    padding-right: 40px !important;
  }
  .pl-10-fs {
    padding-left: 40px !important;
  }
  .pt-10-fs {
    padding-top: 40px !important;
  }
  .pb-10-fs {
    padding-bottom: 40px !important;
  }
  .px-10-fs {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-fs {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-fs {
    margin: 40px !important;
  }
  .mr-10-fs {
    margin-right: 40px !important;
  }
  .ml-10-fs {
    margin-left: 40px !important;
  }
  .mt-10-fs {
    margin-top: 40px !important;
  }
  .mb-10-fs {
    margin-bottom: 40px !important;
  }
  .mx-10-fs {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-fs {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-fs-minus {
    margin: -40px !important;
  }
  .mr-10-fs-minus {
    margin-right: -40px !important;
  }
  .ml-10-fs-minus {
    margin-left: -40px !important;
  }
  .mt-10-fs-minus {
    margin-top: -40px !important;
  }
  .mb-10-fs-minus {
    margin-bottom: -40px !important;
  }
  .p-11-fs {
    padding: 44px !important;
  }
  .pr-11-fs {
    padding-right: 44px !important;
  }
  .pl-11-fs {
    padding-left: 44px !important;
  }
  .pt-11-fs {
    padding-top: 44px !important;
  }
  .pb-11-fs {
    padding-bottom: 44px !important;
  }
  .px-11-fs {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-fs {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-fs {
    margin: 44px !important;
  }
  .mr-11-fs {
    margin-right: 44px !important;
  }
  .ml-11-fs {
    margin-left: 44px !important;
  }
  .mt-11-fs {
    margin-top: 44px !important;
  }
  .mb-11-fs {
    margin-bottom: 44px !important;
  }
  .mx-11-fs {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-fs {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-fs-minus {
    margin: -44px !important;
  }
  .mr-11-fs-minus {
    margin-right: -44px !important;
  }
  .ml-11-fs-minus {
    margin-left: -44px !important;
  }
  .mt-11-fs-minus {
    margin-top: -44px !important;
  }
  .mb-11-fs-minus {
    margin-bottom: -44px !important;
  }
  .p-12-fs {
    padding: 48px !important;
  }
  .pr-12-fs {
    padding-right: 48px !important;
  }
  .pl-12-fs {
    padding-left: 48px !important;
  }
  .pt-12-fs {
    padding-top: 48px !important;
  }
  .pb-12-fs {
    padding-bottom: 48px !important;
  }
  .px-12-fs {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-fs {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-fs {
    margin: 48px !important;
  }
  .mr-12-fs {
    margin-right: 48px !important;
  }
  .ml-12-fs {
    margin-left: 48px !important;
  }
  .mt-12-fs {
    margin-top: 48px !important;
  }
  .mb-12-fs {
    margin-bottom: 48px !important;
  }
  .mx-12-fs {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-fs {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-fs-minus {
    margin: -48px !important;
  }
  .mr-12-fs-minus {
    margin-right: -48px !important;
  }
  .ml-12-fs-minus {
    margin-left: -48px !important;
  }
  .mt-12-fs-minus {
    margin-top: -48px !important;
  }
  .mb-12-fs-minus {
    margin-bottom: -48px !important;
  }
  .p-13-fs {
    padding: 52px !important;
  }
  .pr-13-fs {
    padding-right: 52px !important;
  }
  .pl-13-fs {
    padding-left: 52px !important;
  }
  .pt-13-fs {
    padding-top: 52px !important;
  }
  .pb-13-fs {
    padding-bottom: 52px !important;
  }
  .px-13-fs {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-fs {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-fs {
    margin: 52px !important;
  }
  .mr-13-fs {
    margin-right: 52px !important;
  }
  .ml-13-fs {
    margin-left: 52px !important;
  }
  .mt-13-fs {
    margin-top: 52px !important;
  }
  .mb-13-fs {
    margin-bottom: 52px !important;
  }
  .mx-13-fs {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-fs {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-fs-minus {
    margin: -52px !important;
  }
  .mr-13-fs-minus {
    margin-right: -52px !important;
  }
  .ml-13-fs-minus {
    margin-left: -52px !important;
  }
  .mt-13-fs-minus {
    margin-top: -52px !important;
  }
  .mb-13-fs-minus {
    margin-bottom: -52px !important;
  }
  .p-14-fs {
    padding: 56px !important;
  }
  .pr-14-fs {
    padding-right: 56px !important;
  }
  .pl-14-fs {
    padding-left: 56px !important;
  }
  .pt-14-fs {
    padding-top: 56px !important;
  }
  .pb-14-fs {
    padding-bottom: 56px !important;
  }
  .px-14-fs {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-fs {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-fs {
    margin: 56px !important;
  }
  .mr-14-fs {
    margin-right: 56px !important;
  }
  .ml-14-fs {
    margin-left: 56px !important;
  }
  .mt-14-fs {
    margin-top: 56px !important;
  }
  .mb-14-fs {
    margin-bottom: 56px !important;
  }
  .mx-14-fs {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-fs {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-fs-minus {
    margin: -56px !important;
  }
  .mr-14-fs-minus {
    margin-right: -56px !important;
  }
  .ml-14-fs-minus {
    margin-left: -56px !important;
  }
  .mt-14-fs-minus {
    margin-top: -56px !important;
  }
  .mb-14-fs-minus {
    margin-bottom: -56px !important;
  }
  .p-15-fs {
    padding: 60px !important;
  }
  .pr-15-fs {
    padding-right: 60px !important;
  }
  .pl-15-fs {
    padding-left: 60px !important;
  }
  .pt-15-fs {
    padding-top: 60px !important;
  }
  .pb-15-fs {
    padding-bottom: 60px !important;
  }
  .px-15-fs {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-fs {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-fs {
    margin: 60px !important;
  }
  .mr-15-fs {
    margin-right: 60px !important;
  }
  .ml-15-fs {
    margin-left: 60px !important;
  }
  .mt-15-fs {
    margin-top: 60px !important;
  }
  .mb-15-fs {
    margin-bottom: 60px !important;
  }
  .mx-15-fs {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-fs {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-fs-minus {
    margin: -60px !important;
  }
  .mr-15-fs-minus {
    margin-right: -60px !important;
  }
  .ml-15-fs-minus {
    margin-left: -60px !important;
  }
  .mt-15-fs-minus {
    margin-top: -60px !important;
  }
  .mb-15-fs-minus {
    margin-bottom: -60px !important;
  }
  .p-16-fs {
    padding: 64px !important;
  }
  .pr-16-fs {
    padding-right: 64px !important;
  }
  .pl-16-fs {
    padding-left: 64px !important;
  }
  .pt-16-fs {
    padding-top: 64px !important;
  }
  .pb-16-fs {
    padding-bottom: 64px !important;
  }
  .px-16-fs {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-fs {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-fs {
    margin: 64px !important;
  }
  .mr-16-fs {
    margin-right: 64px !important;
  }
  .ml-16-fs {
    margin-left: 64px !important;
  }
  .mt-16-fs {
    margin-top: 64px !important;
  }
  .mb-16-fs {
    margin-bottom: 64px !important;
  }
  .mx-16-fs {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-fs {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-fs-minus {
    margin: -64px !important;
  }
  .mr-16-fs-minus {
    margin-right: -64px !important;
  }
  .ml-16-fs-minus {
    margin-left: -64px !important;
  }
  .mt-16-fs-minus {
    margin-top: -64px !important;
  }
  .mb-16-fs-minus {
    margin-bottom: -64px !important;
  }
  .p-17-fs {
    padding: 68px !important;
  }
  .pr-17-fs {
    padding-right: 68px !important;
  }
  .pl-17-fs {
    padding-left: 68px !important;
  }
  .pt-17-fs {
    padding-top: 68px !important;
  }
  .pb-17-fs {
    padding-bottom: 68px !important;
  }
  .px-17-fs {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-fs {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-fs {
    margin: 68px !important;
  }
  .mr-17-fs {
    margin-right: 68px !important;
  }
  .ml-17-fs {
    margin-left: 68px !important;
  }
  .mt-17-fs {
    margin-top: 68px !important;
  }
  .mb-17-fs {
    margin-bottom: 68px !important;
  }
  .mx-17-fs {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-fs {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-fs-minus {
    margin: -68px !important;
  }
  .mr-17-fs-minus {
    margin-right: -68px !important;
  }
  .ml-17-fs-minus {
    margin-left: -68px !important;
  }
  .mt-17-fs-minus {
    margin-top: -68px !important;
  }
  .mb-17-fs-minus {
    margin-bottom: -68px !important;
  }
  .p-18-fs {
    padding: 72px !important;
  }
  .pr-18-fs {
    padding-right: 72px !important;
  }
  .pl-18-fs {
    padding-left: 72px !important;
  }
  .pt-18-fs {
    padding-top: 72px !important;
  }
  .pb-18-fs {
    padding-bottom: 72px !important;
  }
  .px-18-fs {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-fs {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-fs {
    margin: 72px !important;
  }
  .mr-18-fs {
    margin-right: 72px !important;
  }
  .ml-18-fs {
    margin-left: 72px !important;
  }
  .mt-18-fs {
    margin-top: 72px !important;
  }
  .mb-18-fs {
    margin-bottom: 72px !important;
  }
  .mx-18-fs {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-fs {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-fs-minus {
    margin: -72px !important;
  }
  .mr-18-fs-minus {
    margin-right: -72px !important;
  }
  .ml-18-fs-minus {
    margin-left: -72px !important;
  }
  .mt-18-fs-minus {
    margin-top: -72px !important;
  }
  .mb-18-fs-minus {
    margin-bottom: -72px !important;
  }
  .p-19-fs {
    padding: 76px !important;
  }
  .pr-19-fs {
    padding-right: 76px !important;
  }
  .pl-19-fs {
    padding-left: 76px !important;
  }
  .pt-19-fs {
    padding-top: 76px !important;
  }
  .pb-19-fs {
    padding-bottom: 76px !important;
  }
  .px-19-fs {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-fs {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-fs {
    margin: 76px !important;
  }
  .mr-19-fs {
    margin-right: 76px !important;
  }
  .ml-19-fs {
    margin-left: 76px !important;
  }
  .mt-19-fs {
    margin-top: 76px !important;
  }
  .mb-19-fs {
    margin-bottom: 76px !important;
  }
  .mx-19-fs {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-fs {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-fs-minus {
    margin: -76px !important;
  }
  .mr-19-fs-minus {
    margin-right: -76px !important;
  }
  .ml-19-fs-minus {
    margin-left: -76px !important;
  }
  .mt-19-fs-minus {
    margin-top: -76px !important;
  }
  .mb-19-fs-minus {
    margin-bottom: -76px !important;
  }
  .p-20-fs {
    padding: 80px !important;
  }
  .pr-20-fs {
    padding-right: 80px !important;
  }
  .pl-20-fs {
    padding-left: 80px !important;
  }
  .pt-20-fs {
    padding-top: 80px !important;
  }
  .pb-20-fs {
    padding-bottom: 80px !important;
  }
  .px-20-fs {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-fs {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-fs {
    margin: 80px !important;
  }
  .mr-20-fs {
    margin-right: 80px !important;
  }
  .ml-20-fs {
    margin-left: 80px !important;
  }
  .mt-20-fs {
    margin-top: 80px !important;
  }
  .mb-20-fs {
    margin-bottom: 80px !important;
  }
  .mx-20-fs {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-fs {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-fs-minus {
    margin: -80px !important;
  }
  .mr-20-fs-minus {
    margin-right: -80px !important;
  }
  .ml-20-fs-minus {
    margin-left: -80px !important;
  }
  .mt-20-fs-minus {
    margin-top: -80px !important;
  }
  .mb-20-fs-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 360px) {
  .mx-auto-xs {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-xs {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-xs {
    margin-left: auto !important;
  }
  .mr-auto-xs {
    margin-right: auto !important;
  }
  .mt-auto-xs {
    margin-top: auto !important;
  }
  .mb-auto-xs {
    margin-bottom: auto !important;
  }
  .p-0-xs {
    padding: 0 !important;
  }
  .pl-0-xs {
    padding-left: 0 !important;
  }
  .pr-0-xs {
    padding-right: 0 !important;
  }
  .pt-0-xs {
    padding-top: 0 !important;
  }
  .pb-0-xs {
    padding-bottom: 0 !important;
  }
  .m-0-xs {
    margin: 0 !important;
  }
  .ml-0-xs {
    margin-left: 0 !important;
  }
  .mr-0-xs {
    margin-right: 0 !important;
  }
  .mt-0-xs {
    margin-top: 0 !important;
  }
  .mb-0-xs {
    margin-bottom: 0 !important;
  }
  .p-1-xs {
    padding: 4px !important;
  }
  .pr-1-xs {
    padding-right: 4px !important;
  }
  .pl-1-xs {
    padding-left: 4px !important;
  }
  .pt-1-xs {
    padding-top: 4px !important;
  }
  .pb-1-xs {
    padding-bottom: 4px !important;
  }
  .px-1-xs {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-xs {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-xs {
    margin: 4px !important;
  }
  .mr-1-xs {
    margin-right: 4px !important;
  }
  .ml-1-xs {
    margin-left: 4px !important;
  }
  .mt-1-xs {
    margin-top: 4px !important;
  }
  .mb-1-xs {
    margin-bottom: 4px !important;
  }
  .mx-1-xs {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-xs {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-xs-minus {
    margin: -4px !important;
  }
  .mr-1-xs-minus {
    margin-right: -4px !important;
  }
  .ml-1-xs-minus {
    margin-left: -4px !important;
  }
  .mt-1-xs-minus {
    margin-top: -4px !important;
  }
  .mb-1-xs-minus {
    margin-bottom: -4px !important;
  }
  .p-2-xs {
    padding: 8px !important;
  }
  .pr-2-xs {
    padding-right: 8px !important;
  }
  .pl-2-xs {
    padding-left: 8px !important;
  }
  .pt-2-xs {
    padding-top: 8px !important;
  }
  .pb-2-xs {
    padding-bottom: 8px !important;
  }
  .px-2-xs {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-xs {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-xs {
    margin: 8px !important;
  }
  .mr-2-xs {
    margin-right: 8px !important;
  }
  .ml-2-xs {
    margin-left: 8px !important;
  }
  .mt-2-xs {
    margin-top: 8px !important;
  }
  .mb-2-xs {
    margin-bottom: 8px !important;
  }
  .mx-2-xs {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-xs {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-xs-minus {
    margin: -8px !important;
  }
  .mr-2-xs-minus {
    margin-right: -8px !important;
  }
  .ml-2-xs-minus {
    margin-left: -8px !important;
  }
  .mt-2-xs-minus {
    margin-top: -8px !important;
  }
  .mb-2-xs-minus {
    margin-bottom: -8px !important;
  }
  .p-3-xs {
    padding: 12px !important;
  }
  .pr-3-xs {
    padding-right: 12px !important;
  }
  .pl-3-xs {
    padding-left: 12px !important;
  }
  .pt-3-xs {
    padding-top: 12px !important;
  }
  .pb-3-xs {
    padding-bottom: 12px !important;
  }
  .px-3-xs {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-xs {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-xs {
    margin: 12px !important;
  }
  .mr-3-xs {
    margin-right: 12px !important;
  }
  .ml-3-xs {
    margin-left: 12px !important;
  }
  .mt-3-xs {
    margin-top: 12px !important;
  }
  .mb-3-xs {
    margin-bottom: 12px !important;
  }
  .mx-3-xs {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-xs {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-xs-minus {
    margin: -12px !important;
  }
  .mr-3-xs-minus {
    margin-right: -12px !important;
  }
  .ml-3-xs-minus {
    margin-left: -12px !important;
  }
  .mt-3-xs-minus {
    margin-top: -12px !important;
  }
  .mb-3-xs-minus {
    margin-bottom: -12px !important;
  }
  .p-4-xs {
    padding: 16px !important;
  }
  .pr-4-xs {
    padding-right: 16px !important;
  }
  .pl-4-xs {
    padding-left: 16px !important;
  }
  .pt-4-xs {
    padding-top: 16px !important;
  }
  .pb-4-xs {
    padding-bottom: 16px !important;
  }
  .px-4-xs {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-xs {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-xs {
    margin: 16px !important;
  }
  .mr-4-xs {
    margin-right: 16px !important;
  }
  .ml-4-xs {
    margin-left: 16px !important;
  }
  .mt-4-xs {
    margin-top: 16px !important;
  }
  .mb-4-xs {
    margin-bottom: 16px !important;
  }
  .mx-4-xs {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-xs {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-xs-minus {
    margin: -16px !important;
  }
  .mr-4-xs-minus {
    margin-right: -16px !important;
  }
  .ml-4-xs-minus {
    margin-left: -16px !important;
  }
  .mt-4-xs-minus {
    margin-top: -16px !important;
  }
  .mb-4-xs-minus {
    margin-bottom: -16px !important;
  }
  .p-5-xs {
    padding: 20px !important;
  }
  .pr-5-xs {
    padding-right: 20px !important;
  }
  .pl-5-xs {
    padding-left: 20px !important;
  }
  .pt-5-xs {
    padding-top: 20px !important;
  }
  .pb-5-xs {
    padding-bottom: 20px !important;
  }
  .px-5-xs {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-xs {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-xs {
    margin: 20px !important;
  }
  .mr-5-xs {
    margin-right: 20px !important;
  }
  .ml-5-xs {
    margin-left: 20px !important;
  }
  .mt-5-xs {
    margin-top: 20px !important;
  }
  .mb-5-xs {
    margin-bottom: 20px !important;
  }
  .mx-5-xs {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-xs {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-xs-minus {
    margin: -20px !important;
  }
  .mr-5-xs-minus {
    margin-right: -20px !important;
  }
  .ml-5-xs-minus {
    margin-left: -20px !important;
  }
  .mt-5-xs-minus {
    margin-top: -20px !important;
  }
  .mb-5-xs-minus {
    margin-bottom: -20px !important;
  }
  .p-6-xs {
    padding: 24px !important;
  }
  .pr-6-xs {
    padding-right: 24px !important;
  }
  .pl-6-xs {
    padding-left: 24px !important;
  }
  .pt-6-xs {
    padding-top: 24px !important;
  }
  .pb-6-xs {
    padding-bottom: 24px !important;
  }
  .px-6-xs {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-xs {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-xs {
    margin: 24px !important;
  }
  .mr-6-xs {
    margin-right: 24px !important;
  }
  .ml-6-xs {
    margin-left: 24px !important;
  }
  .mt-6-xs {
    margin-top: 24px !important;
  }
  .mb-6-xs {
    margin-bottom: 24px !important;
  }
  .mx-6-xs {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-xs {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-xs-minus {
    margin: -24px !important;
  }
  .mr-6-xs-minus {
    margin-right: -24px !important;
  }
  .ml-6-xs-minus {
    margin-left: -24px !important;
  }
  .mt-6-xs-minus {
    margin-top: -24px !important;
  }
  .mb-6-xs-minus {
    margin-bottom: -24px !important;
  }
  .p-7-xs {
    padding: 28px !important;
  }
  .pr-7-xs {
    padding-right: 28px !important;
  }
  .pl-7-xs {
    padding-left: 28px !important;
  }
  .pt-7-xs {
    padding-top: 28px !important;
  }
  .pb-7-xs {
    padding-bottom: 28px !important;
  }
  .px-7-xs {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-xs {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-xs {
    margin: 28px !important;
  }
  .mr-7-xs {
    margin-right: 28px !important;
  }
  .ml-7-xs {
    margin-left: 28px !important;
  }
  .mt-7-xs {
    margin-top: 28px !important;
  }
  .mb-7-xs {
    margin-bottom: 28px !important;
  }
  .mx-7-xs {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-xs {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-xs-minus {
    margin: -28px !important;
  }
  .mr-7-xs-minus {
    margin-right: -28px !important;
  }
  .ml-7-xs-minus {
    margin-left: -28px !important;
  }
  .mt-7-xs-minus {
    margin-top: -28px !important;
  }
  .mb-7-xs-minus {
    margin-bottom: -28px !important;
  }
  .p-8-xs {
    padding: 32px !important;
  }
  .pr-8-xs {
    padding-right: 32px !important;
  }
  .pl-8-xs {
    padding-left: 32px !important;
  }
  .pt-8-xs {
    padding-top: 32px !important;
  }
  .pb-8-xs {
    padding-bottom: 32px !important;
  }
  .px-8-xs {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-xs {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-xs {
    margin: 32px !important;
  }
  .mr-8-xs {
    margin-right: 32px !important;
  }
  .ml-8-xs {
    margin-left: 32px !important;
  }
  .mt-8-xs {
    margin-top: 32px !important;
  }
  .mb-8-xs {
    margin-bottom: 32px !important;
  }
  .mx-8-xs {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-xs {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-xs-minus {
    margin: -32px !important;
  }
  .mr-8-xs-minus {
    margin-right: -32px !important;
  }
  .ml-8-xs-minus {
    margin-left: -32px !important;
  }
  .mt-8-xs-minus {
    margin-top: -32px !important;
  }
  .mb-8-xs-minus {
    margin-bottom: -32px !important;
  }
  .p-9-xs {
    padding: 36px !important;
  }
  .pr-9-xs {
    padding-right: 36px !important;
  }
  .pl-9-xs {
    padding-left: 36px !important;
  }
  .pt-9-xs {
    padding-top: 36px !important;
  }
  .pb-9-xs {
    padding-bottom: 36px !important;
  }
  .px-9-xs {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-xs {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-xs {
    margin: 36px !important;
  }
  .mr-9-xs {
    margin-right: 36px !important;
  }
  .ml-9-xs {
    margin-left: 36px !important;
  }
  .mt-9-xs {
    margin-top: 36px !important;
  }
  .mb-9-xs {
    margin-bottom: 36px !important;
  }
  .mx-9-xs {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-xs {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-xs-minus {
    margin: -36px !important;
  }
  .mr-9-xs-minus {
    margin-right: -36px !important;
  }
  .ml-9-xs-minus {
    margin-left: -36px !important;
  }
  .mt-9-xs-minus {
    margin-top: -36px !important;
  }
  .mb-9-xs-minus {
    margin-bottom: -36px !important;
  }
  .p-10-xs {
    padding: 40px !important;
  }
  .pr-10-xs {
    padding-right: 40px !important;
  }
  .pl-10-xs {
    padding-left: 40px !important;
  }
  .pt-10-xs {
    padding-top: 40px !important;
  }
  .pb-10-xs {
    padding-bottom: 40px !important;
  }
  .px-10-xs {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-xs {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-xs {
    margin: 40px !important;
  }
  .mr-10-xs {
    margin-right: 40px !important;
  }
  .ml-10-xs {
    margin-left: 40px !important;
  }
  .mt-10-xs {
    margin-top: 40px !important;
  }
  .mb-10-xs {
    margin-bottom: 40px !important;
  }
  .mx-10-xs {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-xs {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-xs-minus {
    margin: -40px !important;
  }
  .mr-10-xs-minus {
    margin-right: -40px !important;
  }
  .ml-10-xs-minus {
    margin-left: -40px !important;
  }
  .mt-10-xs-minus {
    margin-top: -40px !important;
  }
  .mb-10-xs-minus {
    margin-bottom: -40px !important;
  }
  .p-11-xs {
    padding: 44px !important;
  }
  .pr-11-xs {
    padding-right: 44px !important;
  }
  .pl-11-xs {
    padding-left: 44px !important;
  }
  .pt-11-xs {
    padding-top: 44px !important;
  }
  .pb-11-xs {
    padding-bottom: 44px !important;
  }
  .px-11-xs {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-xs {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-xs {
    margin: 44px !important;
  }
  .mr-11-xs {
    margin-right: 44px !important;
  }
  .ml-11-xs {
    margin-left: 44px !important;
  }
  .mt-11-xs {
    margin-top: 44px !important;
  }
  .mb-11-xs {
    margin-bottom: 44px !important;
  }
  .mx-11-xs {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-xs {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-xs-minus {
    margin: -44px !important;
  }
  .mr-11-xs-minus {
    margin-right: -44px !important;
  }
  .ml-11-xs-minus {
    margin-left: -44px !important;
  }
  .mt-11-xs-minus {
    margin-top: -44px !important;
  }
  .mb-11-xs-minus {
    margin-bottom: -44px !important;
  }
  .p-12-xs {
    padding: 48px !important;
  }
  .pr-12-xs {
    padding-right: 48px !important;
  }
  .pl-12-xs {
    padding-left: 48px !important;
  }
  .pt-12-xs {
    padding-top: 48px !important;
  }
  .pb-12-xs {
    padding-bottom: 48px !important;
  }
  .px-12-xs {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-xs {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-xs {
    margin: 48px !important;
  }
  .mr-12-xs {
    margin-right: 48px !important;
  }
  .ml-12-xs {
    margin-left: 48px !important;
  }
  .mt-12-xs {
    margin-top: 48px !important;
  }
  .mb-12-xs {
    margin-bottom: 48px !important;
  }
  .mx-12-xs {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-xs {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-xs-minus {
    margin: -48px !important;
  }
  .mr-12-xs-minus {
    margin-right: -48px !important;
  }
  .ml-12-xs-minus {
    margin-left: -48px !important;
  }
  .mt-12-xs-minus {
    margin-top: -48px !important;
  }
  .mb-12-xs-minus {
    margin-bottom: -48px !important;
  }
  .p-13-xs {
    padding: 52px !important;
  }
  .pr-13-xs {
    padding-right: 52px !important;
  }
  .pl-13-xs {
    padding-left: 52px !important;
  }
  .pt-13-xs {
    padding-top: 52px !important;
  }
  .pb-13-xs {
    padding-bottom: 52px !important;
  }
  .px-13-xs {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-xs {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-xs {
    margin: 52px !important;
  }
  .mr-13-xs {
    margin-right: 52px !important;
  }
  .ml-13-xs {
    margin-left: 52px !important;
  }
  .mt-13-xs {
    margin-top: 52px !important;
  }
  .mb-13-xs {
    margin-bottom: 52px !important;
  }
  .mx-13-xs {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-xs {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-xs-minus {
    margin: -52px !important;
  }
  .mr-13-xs-minus {
    margin-right: -52px !important;
  }
  .ml-13-xs-minus {
    margin-left: -52px !important;
  }
  .mt-13-xs-minus {
    margin-top: -52px !important;
  }
  .mb-13-xs-minus {
    margin-bottom: -52px !important;
  }
  .p-14-xs {
    padding: 56px !important;
  }
  .pr-14-xs {
    padding-right: 56px !important;
  }
  .pl-14-xs {
    padding-left: 56px !important;
  }
  .pt-14-xs {
    padding-top: 56px !important;
  }
  .pb-14-xs {
    padding-bottom: 56px !important;
  }
  .px-14-xs {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-xs {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-xs {
    margin: 56px !important;
  }
  .mr-14-xs {
    margin-right: 56px !important;
  }
  .ml-14-xs {
    margin-left: 56px !important;
  }
  .mt-14-xs {
    margin-top: 56px !important;
  }
  .mb-14-xs {
    margin-bottom: 56px !important;
  }
  .mx-14-xs {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-xs {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-xs-minus {
    margin: -56px !important;
  }
  .mr-14-xs-minus {
    margin-right: -56px !important;
  }
  .ml-14-xs-minus {
    margin-left: -56px !important;
  }
  .mt-14-xs-minus {
    margin-top: -56px !important;
  }
  .mb-14-xs-minus {
    margin-bottom: -56px !important;
  }
  .p-15-xs {
    padding: 60px !important;
  }
  .pr-15-xs {
    padding-right: 60px !important;
  }
  .pl-15-xs {
    padding-left: 60px !important;
  }
  .pt-15-xs {
    padding-top: 60px !important;
  }
  .pb-15-xs {
    padding-bottom: 60px !important;
  }
  .px-15-xs {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-xs {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-xs {
    margin: 60px !important;
  }
  .mr-15-xs {
    margin-right: 60px !important;
  }
  .ml-15-xs {
    margin-left: 60px !important;
  }
  .mt-15-xs {
    margin-top: 60px !important;
  }
  .mb-15-xs {
    margin-bottom: 60px !important;
  }
  .mx-15-xs {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-xs {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-xs-minus {
    margin: -60px !important;
  }
  .mr-15-xs-minus {
    margin-right: -60px !important;
  }
  .ml-15-xs-minus {
    margin-left: -60px !important;
  }
  .mt-15-xs-minus {
    margin-top: -60px !important;
  }
  .mb-15-xs-minus {
    margin-bottom: -60px !important;
  }
  .p-16-xs {
    padding: 64px !important;
  }
  .pr-16-xs {
    padding-right: 64px !important;
  }
  .pl-16-xs {
    padding-left: 64px !important;
  }
  .pt-16-xs {
    padding-top: 64px !important;
  }
  .pb-16-xs {
    padding-bottom: 64px !important;
  }
  .px-16-xs {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-xs {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-xs {
    margin: 64px !important;
  }
  .mr-16-xs {
    margin-right: 64px !important;
  }
  .ml-16-xs {
    margin-left: 64px !important;
  }
  .mt-16-xs {
    margin-top: 64px !important;
  }
  .mb-16-xs {
    margin-bottom: 64px !important;
  }
  .mx-16-xs {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-xs {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-xs-minus {
    margin: -64px !important;
  }
  .mr-16-xs-minus {
    margin-right: -64px !important;
  }
  .ml-16-xs-minus {
    margin-left: -64px !important;
  }
  .mt-16-xs-minus {
    margin-top: -64px !important;
  }
  .mb-16-xs-minus {
    margin-bottom: -64px !important;
  }
  .p-17-xs {
    padding: 68px !important;
  }
  .pr-17-xs {
    padding-right: 68px !important;
  }
  .pl-17-xs {
    padding-left: 68px !important;
  }
  .pt-17-xs {
    padding-top: 68px !important;
  }
  .pb-17-xs {
    padding-bottom: 68px !important;
  }
  .px-17-xs {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-xs {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-xs {
    margin: 68px !important;
  }
  .mr-17-xs {
    margin-right: 68px !important;
  }
  .ml-17-xs {
    margin-left: 68px !important;
  }
  .mt-17-xs {
    margin-top: 68px !important;
  }
  .mb-17-xs {
    margin-bottom: 68px !important;
  }
  .mx-17-xs {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-xs {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-xs-minus {
    margin: -68px !important;
  }
  .mr-17-xs-minus {
    margin-right: -68px !important;
  }
  .ml-17-xs-minus {
    margin-left: -68px !important;
  }
  .mt-17-xs-minus {
    margin-top: -68px !important;
  }
  .mb-17-xs-minus {
    margin-bottom: -68px !important;
  }
  .p-18-xs {
    padding: 72px !important;
  }
  .pr-18-xs {
    padding-right: 72px !important;
  }
  .pl-18-xs {
    padding-left: 72px !important;
  }
  .pt-18-xs {
    padding-top: 72px !important;
  }
  .pb-18-xs {
    padding-bottom: 72px !important;
  }
  .px-18-xs {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-xs {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-xs {
    margin: 72px !important;
  }
  .mr-18-xs {
    margin-right: 72px !important;
  }
  .ml-18-xs {
    margin-left: 72px !important;
  }
  .mt-18-xs {
    margin-top: 72px !important;
  }
  .mb-18-xs {
    margin-bottom: 72px !important;
  }
  .mx-18-xs {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-xs {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-xs-minus {
    margin: -72px !important;
  }
  .mr-18-xs-minus {
    margin-right: -72px !important;
  }
  .ml-18-xs-minus {
    margin-left: -72px !important;
  }
  .mt-18-xs-minus {
    margin-top: -72px !important;
  }
  .mb-18-xs-minus {
    margin-bottom: -72px !important;
  }
  .p-19-xs {
    padding: 76px !important;
  }
  .pr-19-xs {
    padding-right: 76px !important;
  }
  .pl-19-xs {
    padding-left: 76px !important;
  }
  .pt-19-xs {
    padding-top: 76px !important;
  }
  .pb-19-xs {
    padding-bottom: 76px !important;
  }
  .px-19-xs {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-xs {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-xs {
    margin: 76px !important;
  }
  .mr-19-xs {
    margin-right: 76px !important;
  }
  .ml-19-xs {
    margin-left: 76px !important;
  }
  .mt-19-xs {
    margin-top: 76px !important;
  }
  .mb-19-xs {
    margin-bottom: 76px !important;
  }
  .mx-19-xs {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-xs {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-xs-minus {
    margin: -76px !important;
  }
  .mr-19-xs-minus {
    margin-right: -76px !important;
  }
  .ml-19-xs-minus {
    margin-left: -76px !important;
  }
  .mt-19-xs-minus {
    margin-top: -76px !important;
  }
  .mb-19-xs-minus {
    margin-bottom: -76px !important;
  }
  .p-20-xs {
    padding: 80px !important;
  }
  .pr-20-xs {
    padding-right: 80px !important;
  }
  .pl-20-xs {
    padding-left: 80px !important;
  }
  .pt-20-xs {
    padding-top: 80px !important;
  }
  .pb-20-xs {
    padding-bottom: 80px !important;
  }
  .px-20-xs {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-xs {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-xs {
    margin: 80px !important;
  }
  .mr-20-xs {
    margin-right: 80px !important;
  }
  .ml-20-xs {
    margin-left: 80px !important;
  }
  .mt-20-xs {
    margin-top: 80px !important;
  }
  .mb-20-xs {
    margin-bottom: 80px !important;
  }
  .mx-20-xs {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-xs {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-xs-minus {
    margin: -80px !important;
  }
  .mr-20-xs-minus {
    margin-right: -80px !important;
  }
  .ml-20-xs-minus {
    margin-left: -80px !important;
  }
  .mt-20-xs-minus {
    margin-top: -80px !important;
  }
  .mb-20-xs-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 576px) {
  .mx-auto-sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-sm {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-sm {
    margin-left: auto !important;
  }
  .mr-auto-sm {
    margin-right: auto !important;
  }
  .mt-auto-sm {
    margin-top: auto !important;
  }
  .mb-auto-sm {
    margin-bottom: auto !important;
  }
  .p-0-sm {
    padding: 0 !important;
  }
  .pl-0-sm {
    padding-left: 0 !important;
  }
  .pr-0-sm {
    padding-right: 0 !important;
  }
  .pt-0-sm {
    padding-top: 0 !important;
  }
  .pb-0-sm {
    padding-bottom: 0 !important;
  }
  .m-0-sm {
    margin: 0 !important;
  }
  .ml-0-sm {
    margin-left: 0 !important;
  }
  .mr-0-sm {
    margin-right: 0 !important;
  }
  .mt-0-sm {
    margin-top: 0 !important;
  }
  .mb-0-sm {
    margin-bottom: 0 !important;
  }
  .p-1-sm {
    padding: 4px !important;
  }
  .pr-1-sm {
    padding-right: 4px !important;
  }
  .pl-1-sm {
    padding-left: 4px !important;
  }
  .pt-1-sm {
    padding-top: 4px !important;
  }
  .pb-1-sm {
    padding-bottom: 4px !important;
  }
  .px-1-sm {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-sm {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-sm {
    margin: 4px !important;
  }
  .mr-1-sm {
    margin-right: 4px !important;
  }
  .ml-1-sm {
    margin-left: 4px !important;
  }
  .mt-1-sm {
    margin-top: 4px !important;
  }
  .mb-1-sm {
    margin-bottom: 4px !important;
  }
  .mx-1-sm {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-sm {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-sm-minus {
    margin: -4px !important;
  }
  .mr-1-sm-minus {
    margin-right: -4px !important;
  }
  .ml-1-sm-minus {
    margin-left: -4px !important;
  }
  .mt-1-sm-minus {
    margin-top: -4px !important;
  }
  .mb-1-sm-minus {
    margin-bottom: -4px !important;
  }
  .p-2-sm {
    padding: 8px !important;
  }
  .pr-2-sm {
    padding-right: 8px !important;
  }
  .pl-2-sm {
    padding-left: 8px !important;
  }
  .pt-2-sm {
    padding-top: 8px !important;
  }
  .pb-2-sm {
    padding-bottom: 8px !important;
  }
  .px-2-sm {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-sm {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-sm {
    margin: 8px !important;
  }
  .mr-2-sm {
    margin-right: 8px !important;
  }
  .ml-2-sm {
    margin-left: 8px !important;
  }
  .mt-2-sm {
    margin-top: 8px !important;
  }
  .mb-2-sm {
    margin-bottom: 8px !important;
  }
  .mx-2-sm {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-sm {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-sm-minus {
    margin: -8px !important;
  }
  .mr-2-sm-minus {
    margin-right: -8px !important;
  }
  .ml-2-sm-minus {
    margin-left: -8px !important;
  }
  .mt-2-sm-minus {
    margin-top: -8px !important;
  }
  .mb-2-sm-minus {
    margin-bottom: -8px !important;
  }
  .p-3-sm {
    padding: 12px !important;
  }
  .pr-3-sm {
    padding-right: 12px !important;
  }
  .pl-3-sm {
    padding-left: 12px !important;
  }
  .pt-3-sm {
    padding-top: 12px !important;
  }
  .pb-3-sm {
    padding-bottom: 12px !important;
  }
  .px-3-sm {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-sm {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-sm {
    margin: 12px !important;
  }
  .mr-3-sm {
    margin-right: 12px !important;
  }
  .ml-3-sm {
    margin-left: 12px !important;
  }
  .mt-3-sm {
    margin-top: 12px !important;
  }
  .mb-3-sm {
    margin-bottom: 12px !important;
  }
  .mx-3-sm {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-sm {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-sm-minus {
    margin: -12px !important;
  }
  .mr-3-sm-minus {
    margin-right: -12px !important;
  }
  .ml-3-sm-minus {
    margin-left: -12px !important;
  }
  .mt-3-sm-minus {
    margin-top: -12px !important;
  }
  .mb-3-sm-minus {
    margin-bottom: -12px !important;
  }
  .p-4-sm {
    padding: 16px !important;
  }
  .pr-4-sm {
    padding-right: 16px !important;
  }
  .pl-4-sm {
    padding-left: 16px !important;
  }
  .pt-4-sm {
    padding-top: 16px !important;
  }
  .pb-4-sm {
    padding-bottom: 16px !important;
  }
  .px-4-sm {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-sm {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-sm {
    margin: 16px !important;
  }
  .mr-4-sm {
    margin-right: 16px !important;
  }
  .ml-4-sm {
    margin-left: 16px !important;
  }
  .mt-4-sm {
    margin-top: 16px !important;
  }
  .mb-4-sm {
    margin-bottom: 16px !important;
  }
  .mx-4-sm {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-sm {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-sm-minus {
    margin: -16px !important;
  }
  .mr-4-sm-minus {
    margin-right: -16px !important;
  }
  .ml-4-sm-minus {
    margin-left: -16px !important;
  }
  .mt-4-sm-minus {
    margin-top: -16px !important;
  }
  .mb-4-sm-minus {
    margin-bottom: -16px !important;
  }
  .p-5-sm {
    padding: 20px !important;
  }
  .pr-5-sm {
    padding-right: 20px !important;
  }
  .pl-5-sm {
    padding-left: 20px !important;
  }
  .pt-5-sm {
    padding-top: 20px !important;
  }
  .pb-5-sm {
    padding-bottom: 20px !important;
  }
  .px-5-sm {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-sm {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-sm {
    margin: 20px !important;
  }
  .mr-5-sm {
    margin-right: 20px !important;
  }
  .ml-5-sm {
    margin-left: 20px !important;
  }
  .mt-5-sm {
    margin-top: 20px !important;
  }
  .mb-5-sm {
    margin-bottom: 20px !important;
  }
  .mx-5-sm {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-sm {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-sm-minus {
    margin: -20px !important;
  }
  .mr-5-sm-minus {
    margin-right: -20px !important;
  }
  .ml-5-sm-minus {
    margin-left: -20px !important;
  }
  .mt-5-sm-minus {
    margin-top: -20px !important;
  }
  .mb-5-sm-minus {
    margin-bottom: -20px !important;
  }
  .p-6-sm {
    padding: 24px !important;
  }
  .pr-6-sm {
    padding-right: 24px !important;
  }
  .pl-6-sm {
    padding-left: 24px !important;
  }
  .pt-6-sm {
    padding-top: 24px !important;
  }
  .pb-6-sm {
    padding-bottom: 24px !important;
  }
  .px-6-sm {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-sm {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-sm {
    margin: 24px !important;
  }
  .mr-6-sm {
    margin-right: 24px !important;
  }
  .ml-6-sm {
    margin-left: 24px !important;
  }
  .mt-6-sm {
    margin-top: 24px !important;
  }
  .mb-6-sm {
    margin-bottom: 24px !important;
  }
  .mx-6-sm {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-sm {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-sm-minus {
    margin: -24px !important;
  }
  .mr-6-sm-minus {
    margin-right: -24px !important;
  }
  .ml-6-sm-minus {
    margin-left: -24px !important;
  }
  .mt-6-sm-minus {
    margin-top: -24px !important;
  }
  .mb-6-sm-minus {
    margin-bottom: -24px !important;
  }
  .p-7-sm {
    padding: 28px !important;
  }
  .pr-7-sm {
    padding-right: 28px !important;
  }
  .pl-7-sm {
    padding-left: 28px !important;
  }
  .pt-7-sm {
    padding-top: 28px !important;
  }
  .pb-7-sm {
    padding-bottom: 28px !important;
  }
  .px-7-sm {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-sm {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-sm {
    margin: 28px !important;
  }
  .mr-7-sm {
    margin-right: 28px !important;
  }
  .ml-7-sm {
    margin-left: 28px !important;
  }
  .mt-7-sm {
    margin-top: 28px !important;
  }
  .mb-7-sm {
    margin-bottom: 28px !important;
  }
  .mx-7-sm {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-sm {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-sm-minus {
    margin: -28px !important;
  }
  .mr-7-sm-minus {
    margin-right: -28px !important;
  }
  .ml-7-sm-minus {
    margin-left: -28px !important;
  }
  .mt-7-sm-minus {
    margin-top: -28px !important;
  }
  .mb-7-sm-minus {
    margin-bottom: -28px !important;
  }
  .p-8-sm {
    padding: 32px !important;
  }
  .pr-8-sm {
    padding-right: 32px !important;
  }
  .pl-8-sm {
    padding-left: 32px !important;
  }
  .pt-8-sm {
    padding-top: 32px !important;
  }
  .pb-8-sm {
    padding-bottom: 32px !important;
  }
  .px-8-sm {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-sm {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-sm {
    margin: 32px !important;
  }
  .mr-8-sm {
    margin-right: 32px !important;
  }
  .ml-8-sm {
    margin-left: 32px !important;
  }
  .mt-8-sm {
    margin-top: 32px !important;
  }
  .mb-8-sm {
    margin-bottom: 32px !important;
  }
  .mx-8-sm {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-sm {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-sm-minus {
    margin: -32px !important;
  }
  .mr-8-sm-minus {
    margin-right: -32px !important;
  }
  .ml-8-sm-minus {
    margin-left: -32px !important;
  }
  .mt-8-sm-minus {
    margin-top: -32px !important;
  }
  .mb-8-sm-minus {
    margin-bottom: -32px !important;
  }
  .p-9-sm {
    padding: 36px !important;
  }
  .pr-9-sm {
    padding-right: 36px !important;
  }
  .pl-9-sm {
    padding-left: 36px !important;
  }
  .pt-9-sm {
    padding-top: 36px !important;
  }
  .pb-9-sm {
    padding-bottom: 36px !important;
  }
  .px-9-sm {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-sm {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-sm {
    margin: 36px !important;
  }
  .mr-9-sm {
    margin-right: 36px !important;
  }
  .ml-9-sm {
    margin-left: 36px !important;
  }
  .mt-9-sm {
    margin-top: 36px !important;
  }
  .mb-9-sm {
    margin-bottom: 36px !important;
  }
  .mx-9-sm {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-sm {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-sm-minus {
    margin: -36px !important;
  }
  .mr-9-sm-minus {
    margin-right: -36px !important;
  }
  .ml-9-sm-minus {
    margin-left: -36px !important;
  }
  .mt-9-sm-minus {
    margin-top: -36px !important;
  }
  .mb-9-sm-minus {
    margin-bottom: -36px !important;
  }
  .p-10-sm {
    padding: 40px !important;
  }
  .pr-10-sm {
    padding-right: 40px !important;
  }
  .pl-10-sm {
    padding-left: 40px !important;
  }
  .pt-10-sm {
    padding-top: 40px !important;
  }
  .pb-10-sm {
    padding-bottom: 40px !important;
  }
  .px-10-sm {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-sm {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-sm {
    margin: 40px !important;
  }
  .mr-10-sm {
    margin-right: 40px !important;
  }
  .ml-10-sm {
    margin-left: 40px !important;
  }
  .mt-10-sm {
    margin-top: 40px !important;
  }
  .mb-10-sm {
    margin-bottom: 40px !important;
  }
  .mx-10-sm {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-sm {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-sm-minus {
    margin: -40px !important;
  }
  .mr-10-sm-minus {
    margin-right: -40px !important;
  }
  .ml-10-sm-minus {
    margin-left: -40px !important;
  }
  .mt-10-sm-minus {
    margin-top: -40px !important;
  }
  .mb-10-sm-minus {
    margin-bottom: -40px !important;
  }
  .p-11-sm {
    padding: 44px !important;
  }
  .pr-11-sm {
    padding-right: 44px !important;
  }
  .pl-11-sm {
    padding-left: 44px !important;
  }
  .pt-11-sm {
    padding-top: 44px !important;
  }
  .pb-11-sm {
    padding-bottom: 44px !important;
  }
  .px-11-sm {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-sm {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-sm {
    margin: 44px !important;
  }
  .mr-11-sm {
    margin-right: 44px !important;
  }
  .ml-11-sm {
    margin-left: 44px !important;
  }
  .mt-11-sm {
    margin-top: 44px !important;
  }
  .mb-11-sm {
    margin-bottom: 44px !important;
  }
  .mx-11-sm {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-sm {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-sm-minus {
    margin: -44px !important;
  }
  .mr-11-sm-minus {
    margin-right: -44px !important;
  }
  .ml-11-sm-minus {
    margin-left: -44px !important;
  }
  .mt-11-sm-minus {
    margin-top: -44px !important;
  }
  .mb-11-sm-minus {
    margin-bottom: -44px !important;
  }
  .p-12-sm {
    padding: 48px !important;
  }
  .pr-12-sm {
    padding-right: 48px !important;
  }
  .pl-12-sm {
    padding-left: 48px !important;
  }
  .pt-12-sm {
    padding-top: 48px !important;
  }
  .pb-12-sm {
    padding-bottom: 48px !important;
  }
  .px-12-sm {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-sm {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-sm {
    margin: 48px !important;
  }
  .mr-12-sm {
    margin-right: 48px !important;
  }
  .ml-12-sm {
    margin-left: 48px !important;
  }
  .mt-12-sm {
    margin-top: 48px !important;
  }
  .mb-12-sm {
    margin-bottom: 48px !important;
  }
  .mx-12-sm {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-sm {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-sm-minus {
    margin: -48px !important;
  }
  .mr-12-sm-minus {
    margin-right: -48px !important;
  }
  .ml-12-sm-minus {
    margin-left: -48px !important;
  }
  .mt-12-sm-minus {
    margin-top: -48px !important;
  }
  .mb-12-sm-minus {
    margin-bottom: -48px !important;
  }
  .p-13-sm {
    padding: 52px !important;
  }
  .pr-13-sm {
    padding-right: 52px !important;
  }
  .pl-13-sm {
    padding-left: 52px !important;
  }
  .pt-13-sm {
    padding-top: 52px !important;
  }
  .pb-13-sm {
    padding-bottom: 52px !important;
  }
  .px-13-sm {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-sm {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-sm {
    margin: 52px !important;
  }
  .mr-13-sm {
    margin-right: 52px !important;
  }
  .ml-13-sm {
    margin-left: 52px !important;
  }
  .mt-13-sm {
    margin-top: 52px !important;
  }
  .mb-13-sm {
    margin-bottom: 52px !important;
  }
  .mx-13-sm {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-sm {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-sm-minus {
    margin: -52px !important;
  }
  .mr-13-sm-minus {
    margin-right: -52px !important;
  }
  .ml-13-sm-minus {
    margin-left: -52px !important;
  }
  .mt-13-sm-minus {
    margin-top: -52px !important;
  }
  .mb-13-sm-minus {
    margin-bottom: -52px !important;
  }
  .p-14-sm {
    padding: 56px !important;
  }
  .pr-14-sm {
    padding-right: 56px !important;
  }
  .pl-14-sm {
    padding-left: 56px !important;
  }
  .pt-14-sm {
    padding-top: 56px !important;
  }
  .pb-14-sm {
    padding-bottom: 56px !important;
  }
  .px-14-sm {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-sm {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-sm {
    margin: 56px !important;
  }
  .mr-14-sm {
    margin-right: 56px !important;
  }
  .ml-14-sm {
    margin-left: 56px !important;
  }
  .mt-14-sm {
    margin-top: 56px !important;
  }
  .mb-14-sm {
    margin-bottom: 56px !important;
  }
  .mx-14-sm {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-sm {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-sm-minus {
    margin: -56px !important;
  }
  .mr-14-sm-minus {
    margin-right: -56px !important;
  }
  .ml-14-sm-minus {
    margin-left: -56px !important;
  }
  .mt-14-sm-minus {
    margin-top: -56px !important;
  }
  .mb-14-sm-minus {
    margin-bottom: -56px !important;
  }
  .p-15-sm {
    padding: 60px !important;
  }
  .pr-15-sm {
    padding-right: 60px !important;
  }
  .pl-15-sm {
    padding-left: 60px !important;
  }
  .pt-15-sm {
    padding-top: 60px !important;
  }
  .pb-15-sm {
    padding-bottom: 60px !important;
  }
  .px-15-sm {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-sm {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-sm {
    margin: 60px !important;
  }
  .mr-15-sm {
    margin-right: 60px !important;
  }
  .ml-15-sm {
    margin-left: 60px !important;
  }
  .mt-15-sm {
    margin-top: 60px !important;
  }
  .mb-15-sm {
    margin-bottom: 60px !important;
  }
  .mx-15-sm {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-sm {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-sm-minus {
    margin: -60px !important;
  }
  .mr-15-sm-minus {
    margin-right: -60px !important;
  }
  .ml-15-sm-minus {
    margin-left: -60px !important;
  }
  .mt-15-sm-minus {
    margin-top: -60px !important;
  }
  .mb-15-sm-minus {
    margin-bottom: -60px !important;
  }
  .p-16-sm {
    padding: 64px !important;
  }
  .pr-16-sm {
    padding-right: 64px !important;
  }
  .pl-16-sm {
    padding-left: 64px !important;
  }
  .pt-16-sm {
    padding-top: 64px !important;
  }
  .pb-16-sm {
    padding-bottom: 64px !important;
  }
  .px-16-sm {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-sm {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-sm {
    margin: 64px !important;
  }
  .mr-16-sm {
    margin-right: 64px !important;
  }
  .ml-16-sm {
    margin-left: 64px !important;
  }
  .mt-16-sm {
    margin-top: 64px !important;
  }
  .mb-16-sm {
    margin-bottom: 64px !important;
  }
  .mx-16-sm {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-sm {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-sm-minus {
    margin: -64px !important;
  }
  .mr-16-sm-minus {
    margin-right: -64px !important;
  }
  .ml-16-sm-minus {
    margin-left: -64px !important;
  }
  .mt-16-sm-minus {
    margin-top: -64px !important;
  }
  .mb-16-sm-minus {
    margin-bottom: -64px !important;
  }
  .p-17-sm {
    padding: 68px !important;
  }
  .pr-17-sm {
    padding-right: 68px !important;
  }
  .pl-17-sm {
    padding-left: 68px !important;
  }
  .pt-17-sm {
    padding-top: 68px !important;
  }
  .pb-17-sm {
    padding-bottom: 68px !important;
  }
  .px-17-sm {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-sm {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-sm {
    margin: 68px !important;
  }
  .mr-17-sm {
    margin-right: 68px !important;
  }
  .ml-17-sm {
    margin-left: 68px !important;
  }
  .mt-17-sm {
    margin-top: 68px !important;
  }
  .mb-17-sm {
    margin-bottom: 68px !important;
  }
  .mx-17-sm {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-sm {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-sm-minus {
    margin: -68px !important;
  }
  .mr-17-sm-minus {
    margin-right: -68px !important;
  }
  .ml-17-sm-minus {
    margin-left: -68px !important;
  }
  .mt-17-sm-minus {
    margin-top: -68px !important;
  }
  .mb-17-sm-minus {
    margin-bottom: -68px !important;
  }
  .p-18-sm {
    padding: 72px !important;
  }
  .pr-18-sm {
    padding-right: 72px !important;
  }
  .pl-18-sm {
    padding-left: 72px !important;
  }
  .pt-18-sm {
    padding-top: 72px !important;
  }
  .pb-18-sm {
    padding-bottom: 72px !important;
  }
  .px-18-sm {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-sm {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-sm {
    margin: 72px !important;
  }
  .mr-18-sm {
    margin-right: 72px !important;
  }
  .ml-18-sm {
    margin-left: 72px !important;
  }
  .mt-18-sm {
    margin-top: 72px !important;
  }
  .mb-18-sm {
    margin-bottom: 72px !important;
  }
  .mx-18-sm {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-sm {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-sm-minus {
    margin: -72px !important;
  }
  .mr-18-sm-minus {
    margin-right: -72px !important;
  }
  .ml-18-sm-minus {
    margin-left: -72px !important;
  }
  .mt-18-sm-minus {
    margin-top: -72px !important;
  }
  .mb-18-sm-minus {
    margin-bottom: -72px !important;
  }
  .p-19-sm {
    padding: 76px !important;
  }
  .pr-19-sm {
    padding-right: 76px !important;
  }
  .pl-19-sm {
    padding-left: 76px !important;
  }
  .pt-19-sm {
    padding-top: 76px !important;
  }
  .pb-19-sm {
    padding-bottom: 76px !important;
  }
  .px-19-sm {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-sm {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-sm {
    margin: 76px !important;
  }
  .mr-19-sm {
    margin-right: 76px !important;
  }
  .ml-19-sm {
    margin-left: 76px !important;
  }
  .mt-19-sm {
    margin-top: 76px !important;
  }
  .mb-19-sm {
    margin-bottom: 76px !important;
  }
  .mx-19-sm {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-sm {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-sm-minus {
    margin: -76px !important;
  }
  .mr-19-sm-minus {
    margin-right: -76px !important;
  }
  .ml-19-sm-minus {
    margin-left: -76px !important;
  }
  .mt-19-sm-minus {
    margin-top: -76px !important;
  }
  .mb-19-sm-minus {
    margin-bottom: -76px !important;
  }
  .p-20-sm {
    padding: 80px !important;
  }
  .pr-20-sm {
    padding-right: 80px !important;
  }
  .pl-20-sm {
    padding-left: 80px !important;
  }
  .pt-20-sm {
    padding-top: 80px !important;
  }
  .pb-20-sm {
    padding-bottom: 80px !important;
  }
  .px-20-sm {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-sm {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-sm {
    margin: 80px !important;
  }
  .mr-20-sm {
    margin-right: 80px !important;
  }
  .ml-20-sm {
    margin-left: 80px !important;
  }
  .mt-20-sm {
    margin-top: 80px !important;
  }
  .mb-20-sm {
    margin-bottom: 80px !important;
  }
  .mx-20-sm {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-sm {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-sm-minus {
    margin: -80px !important;
  }
  .mr-20-sm-minus {
    margin-right: -80px !important;
  }
  .ml-20-sm-minus {
    margin-left: -80px !important;
  }
  .mt-20-sm-minus {
    margin-top: -80px !important;
  }
  .mb-20-sm-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 640px) {
  .mx-auto-ld {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-ld {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-ld {
    margin-left: auto !important;
  }
  .mr-auto-ld {
    margin-right: auto !important;
  }
  .mt-auto-ld {
    margin-top: auto !important;
  }
  .mb-auto-ld {
    margin-bottom: auto !important;
  }
  .p-0-ld {
    padding: 0 !important;
  }
  .pl-0-ld {
    padding-left: 0 !important;
  }
  .pr-0-ld {
    padding-right: 0 !important;
  }
  .pt-0-ld {
    padding-top: 0 !important;
  }
  .pb-0-ld {
    padding-bottom: 0 !important;
  }
  .m-0-ld {
    margin: 0 !important;
  }
  .ml-0-ld {
    margin-left: 0 !important;
  }
  .mr-0-ld {
    margin-right: 0 !important;
  }
  .mt-0-ld {
    margin-top: 0 !important;
  }
  .mb-0-ld {
    margin-bottom: 0 !important;
  }
  .p-1-ld {
    padding: 4px !important;
  }
  .pr-1-ld {
    padding-right: 4px !important;
  }
  .pl-1-ld {
    padding-left: 4px !important;
  }
  .pt-1-ld {
    padding-top: 4px !important;
  }
  .pb-1-ld {
    padding-bottom: 4px !important;
  }
  .px-1-ld {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-ld {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-ld {
    margin: 4px !important;
  }
  .mr-1-ld {
    margin-right: 4px !important;
  }
  .ml-1-ld {
    margin-left: 4px !important;
  }
  .mt-1-ld {
    margin-top: 4px !important;
  }
  .mb-1-ld {
    margin-bottom: 4px !important;
  }
  .mx-1-ld {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-ld {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-ld-minus {
    margin: -4px !important;
  }
  .mr-1-ld-minus {
    margin-right: -4px !important;
  }
  .ml-1-ld-minus {
    margin-left: -4px !important;
  }
  .mt-1-ld-minus {
    margin-top: -4px !important;
  }
  .mb-1-ld-minus {
    margin-bottom: -4px !important;
  }
  .p-2-ld {
    padding: 8px !important;
  }
  .pr-2-ld {
    padding-right: 8px !important;
  }
  .pl-2-ld {
    padding-left: 8px !important;
  }
  .pt-2-ld {
    padding-top: 8px !important;
  }
  .pb-2-ld {
    padding-bottom: 8px !important;
  }
  .px-2-ld {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-ld {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-ld {
    margin: 8px !important;
  }
  .mr-2-ld {
    margin-right: 8px !important;
  }
  .ml-2-ld {
    margin-left: 8px !important;
  }
  .mt-2-ld {
    margin-top: 8px !important;
  }
  .mb-2-ld {
    margin-bottom: 8px !important;
  }
  .mx-2-ld {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-ld {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-ld-minus {
    margin: -8px !important;
  }
  .mr-2-ld-minus {
    margin-right: -8px !important;
  }
  .ml-2-ld-minus {
    margin-left: -8px !important;
  }
  .mt-2-ld-minus {
    margin-top: -8px !important;
  }
  .mb-2-ld-minus {
    margin-bottom: -8px !important;
  }
  .p-3-ld {
    padding: 12px !important;
  }
  .pr-3-ld {
    padding-right: 12px !important;
  }
  .pl-3-ld {
    padding-left: 12px !important;
  }
  .pt-3-ld {
    padding-top: 12px !important;
  }
  .pb-3-ld {
    padding-bottom: 12px !important;
  }
  .px-3-ld {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-ld {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-ld {
    margin: 12px !important;
  }
  .mr-3-ld {
    margin-right: 12px !important;
  }
  .ml-3-ld {
    margin-left: 12px !important;
  }
  .mt-3-ld {
    margin-top: 12px !important;
  }
  .mb-3-ld {
    margin-bottom: 12px !important;
  }
  .mx-3-ld {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-ld {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-ld-minus {
    margin: -12px !important;
  }
  .mr-3-ld-minus {
    margin-right: -12px !important;
  }
  .ml-3-ld-minus {
    margin-left: -12px !important;
  }
  .mt-3-ld-minus {
    margin-top: -12px !important;
  }
  .mb-3-ld-minus {
    margin-bottom: -12px !important;
  }
  .p-4-ld {
    padding: 16px !important;
  }
  .pr-4-ld {
    padding-right: 16px !important;
  }
  .pl-4-ld {
    padding-left: 16px !important;
  }
  .pt-4-ld {
    padding-top: 16px !important;
  }
  .pb-4-ld {
    padding-bottom: 16px !important;
  }
  .px-4-ld {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-ld {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-ld {
    margin: 16px !important;
  }
  .mr-4-ld {
    margin-right: 16px !important;
  }
  .ml-4-ld {
    margin-left: 16px !important;
  }
  .mt-4-ld {
    margin-top: 16px !important;
  }
  .mb-4-ld {
    margin-bottom: 16px !important;
  }
  .mx-4-ld {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-ld {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-ld-minus {
    margin: -16px !important;
  }
  .mr-4-ld-minus {
    margin-right: -16px !important;
  }
  .ml-4-ld-minus {
    margin-left: -16px !important;
  }
  .mt-4-ld-minus {
    margin-top: -16px !important;
  }
  .mb-4-ld-minus {
    margin-bottom: -16px !important;
  }
  .p-5-ld {
    padding: 20px !important;
  }
  .pr-5-ld {
    padding-right: 20px !important;
  }
  .pl-5-ld {
    padding-left: 20px !important;
  }
  .pt-5-ld {
    padding-top: 20px !important;
  }
  .pb-5-ld {
    padding-bottom: 20px !important;
  }
  .px-5-ld {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-ld {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-ld {
    margin: 20px !important;
  }
  .mr-5-ld {
    margin-right: 20px !important;
  }
  .ml-5-ld {
    margin-left: 20px !important;
  }
  .mt-5-ld {
    margin-top: 20px !important;
  }
  .mb-5-ld {
    margin-bottom: 20px !important;
  }
  .mx-5-ld {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-ld {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-ld-minus {
    margin: -20px !important;
  }
  .mr-5-ld-minus {
    margin-right: -20px !important;
  }
  .ml-5-ld-minus {
    margin-left: -20px !important;
  }
  .mt-5-ld-minus {
    margin-top: -20px !important;
  }
  .mb-5-ld-minus {
    margin-bottom: -20px !important;
  }
  .p-6-ld {
    padding: 24px !important;
  }
  .pr-6-ld {
    padding-right: 24px !important;
  }
  .pl-6-ld {
    padding-left: 24px !important;
  }
  .pt-6-ld {
    padding-top: 24px !important;
  }
  .pb-6-ld {
    padding-bottom: 24px !important;
  }
  .px-6-ld {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-ld {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-ld {
    margin: 24px !important;
  }
  .mr-6-ld {
    margin-right: 24px !important;
  }
  .ml-6-ld {
    margin-left: 24px !important;
  }
  .mt-6-ld {
    margin-top: 24px !important;
  }
  .mb-6-ld {
    margin-bottom: 24px !important;
  }
  .mx-6-ld {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-ld {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-ld-minus {
    margin: -24px !important;
  }
  .mr-6-ld-minus {
    margin-right: -24px !important;
  }
  .ml-6-ld-minus {
    margin-left: -24px !important;
  }
  .mt-6-ld-minus {
    margin-top: -24px !important;
  }
  .mb-6-ld-minus {
    margin-bottom: -24px !important;
  }
  .p-7-ld {
    padding: 28px !important;
  }
  .pr-7-ld {
    padding-right: 28px !important;
  }
  .pl-7-ld {
    padding-left: 28px !important;
  }
  .pt-7-ld {
    padding-top: 28px !important;
  }
  .pb-7-ld {
    padding-bottom: 28px !important;
  }
  .px-7-ld {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-ld {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-ld {
    margin: 28px !important;
  }
  .mr-7-ld {
    margin-right: 28px !important;
  }
  .ml-7-ld {
    margin-left: 28px !important;
  }
  .mt-7-ld {
    margin-top: 28px !important;
  }
  .mb-7-ld {
    margin-bottom: 28px !important;
  }
  .mx-7-ld {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-ld {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-ld-minus {
    margin: -28px !important;
  }
  .mr-7-ld-minus {
    margin-right: -28px !important;
  }
  .ml-7-ld-minus {
    margin-left: -28px !important;
  }
  .mt-7-ld-minus {
    margin-top: -28px !important;
  }
  .mb-7-ld-minus {
    margin-bottom: -28px !important;
  }
  .p-8-ld {
    padding: 32px !important;
  }
  .pr-8-ld {
    padding-right: 32px !important;
  }
  .pl-8-ld {
    padding-left: 32px !important;
  }
  .pt-8-ld {
    padding-top: 32px !important;
  }
  .pb-8-ld {
    padding-bottom: 32px !important;
  }
  .px-8-ld {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-ld {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-ld {
    margin: 32px !important;
  }
  .mr-8-ld {
    margin-right: 32px !important;
  }
  .ml-8-ld {
    margin-left: 32px !important;
  }
  .mt-8-ld {
    margin-top: 32px !important;
  }
  .mb-8-ld {
    margin-bottom: 32px !important;
  }
  .mx-8-ld {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-ld {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-ld-minus {
    margin: -32px !important;
  }
  .mr-8-ld-minus {
    margin-right: -32px !important;
  }
  .ml-8-ld-minus {
    margin-left: -32px !important;
  }
  .mt-8-ld-minus {
    margin-top: -32px !important;
  }
  .mb-8-ld-minus {
    margin-bottom: -32px !important;
  }
  .p-9-ld {
    padding: 36px !important;
  }
  .pr-9-ld {
    padding-right: 36px !important;
  }
  .pl-9-ld {
    padding-left: 36px !important;
  }
  .pt-9-ld {
    padding-top: 36px !important;
  }
  .pb-9-ld {
    padding-bottom: 36px !important;
  }
  .px-9-ld {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-ld {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-ld {
    margin: 36px !important;
  }
  .mr-9-ld {
    margin-right: 36px !important;
  }
  .ml-9-ld {
    margin-left: 36px !important;
  }
  .mt-9-ld {
    margin-top: 36px !important;
  }
  .mb-9-ld {
    margin-bottom: 36px !important;
  }
  .mx-9-ld {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-ld {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-ld-minus {
    margin: -36px !important;
  }
  .mr-9-ld-minus {
    margin-right: -36px !important;
  }
  .ml-9-ld-minus {
    margin-left: -36px !important;
  }
  .mt-9-ld-minus {
    margin-top: -36px !important;
  }
  .mb-9-ld-minus {
    margin-bottom: -36px !important;
  }
  .p-10-ld {
    padding: 40px !important;
  }
  .pr-10-ld {
    padding-right: 40px !important;
  }
  .pl-10-ld {
    padding-left: 40px !important;
  }
  .pt-10-ld {
    padding-top: 40px !important;
  }
  .pb-10-ld {
    padding-bottom: 40px !important;
  }
  .px-10-ld {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-ld {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-ld {
    margin: 40px !important;
  }
  .mr-10-ld {
    margin-right: 40px !important;
  }
  .ml-10-ld {
    margin-left: 40px !important;
  }
  .mt-10-ld {
    margin-top: 40px !important;
  }
  .mb-10-ld {
    margin-bottom: 40px !important;
  }
  .mx-10-ld {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-ld {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-ld-minus {
    margin: -40px !important;
  }
  .mr-10-ld-minus {
    margin-right: -40px !important;
  }
  .ml-10-ld-minus {
    margin-left: -40px !important;
  }
  .mt-10-ld-minus {
    margin-top: -40px !important;
  }
  .mb-10-ld-minus {
    margin-bottom: -40px !important;
  }
  .p-11-ld {
    padding: 44px !important;
  }
  .pr-11-ld {
    padding-right: 44px !important;
  }
  .pl-11-ld {
    padding-left: 44px !important;
  }
  .pt-11-ld {
    padding-top: 44px !important;
  }
  .pb-11-ld {
    padding-bottom: 44px !important;
  }
  .px-11-ld {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-ld {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-ld {
    margin: 44px !important;
  }
  .mr-11-ld {
    margin-right: 44px !important;
  }
  .ml-11-ld {
    margin-left: 44px !important;
  }
  .mt-11-ld {
    margin-top: 44px !important;
  }
  .mb-11-ld {
    margin-bottom: 44px !important;
  }
  .mx-11-ld {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-ld {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-ld-minus {
    margin: -44px !important;
  }
  .mr-11-ld-minus {
    margin-right: -44px !important;
  }
  .ml-11-ld-minus {
    margin-left: -44px !important;
  }
  .mt-11-ld-minus {
    margin-top: -44px !important;
  }
  .mb-11-ld-minus {
    margin-bottom: -44px !important;
  }
  .p-12-ld {
    padding: 48px !important;
  }
  .pr-12-ld {
    padding-right: 48px !important;
  }
  .pl-12-ld {
    padding-left: 48px !important;
  }
  .pt-12-ld {
    padding-top: 48px !important;
  }
  .pb-12-ld {
    padding-bottom: 48px !important;
  }
  .px-12-ld {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-ld {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-ld {
    margin: 48px !important;
  }
  .mr-12-ld {
    margin-right: 48px !important;
  }
  .ml-12-ld {
    margin-left: 48px !important;
  }
  .mt-12-ld {
    margin-top: 48px !important;
  }
  .mb-12-ld {
    margin-bottom: 48px !important;
  }
  .mx-12-ld {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-ld {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-ld-minus {
    margin: -48px !important;
  }
  .mr-12-ld-minus {
    margin-right: -48px !important;
  }
  .ml-12-ld-minus {
    margin-left: -48px !important;
  }
  .mt-12-ld-minus {
    margin-top: -48px !important;
  }
  .mb-12-ld-minus {
    margin-bottom: -48px !important;
  }
  .p-13-ld {
    padding: 52px !important;
  }
  .pr-13-ld {
    padding-right: 52px !important;
  }
  .pl-13-ld {
    padding-left: 52px !important;
  }
  .pt-13-ld {
    padding-top: 52px !important;
  }
  .pb-13-ld {
    padding-bottom: 52px !important;
  }
  .px-13-ld {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-ld {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-ld {
    margin: 52px !important;
  }
  .mr-13-ld {
    margin-right: 52px !important;
  }
  .ml-13-ld {
    margin-left: 52px !important;
  }
  .mt-13-ld {
    margin-top: 52px !important;
  }
  .mb-13-ld {
    margin-bottom: 52px !important;
  }
  .mx-13-ld {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-ld {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-ld-minus {
    margin: -52px !important;
  }
  .mr-13-ld-minus {
    margin-right: -52px !important;
  }
  .ml-13-ld-minus {
    margin-left: -52px !important;
  }
  .mt-13-ld-minus {
    margin-top: -52px !important;
  }
  .mb-13-ld-minus {
    margin-bottom: -52px !important;
  }
  .p-14-ld {
    padding: 56px !important;
  }
  .pr-14-ld {
    padding-right: 56px !important;
  }
  .pl-14-ld {
    padding-left: 56px !important;
  }
  .pt-14-ld {
    padding-top: 56px !important;
  }
  .pb-14-ld {
    padding-bottom: 56px !important;
  }
  .px-14-ld {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-ld {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-ld {
    margin: 56px !important;
  }
  .mr-14-ld {
    margin-right: 56px !important;
  }
  .ml-14-ld {
    margin-left: 56px !important;
  }
  .mt-14-ld {
    margin-top: 56px !important;
  }
  .mb-14-ld {
    margin-bottom: 56px !important;
  }
  .mx-14-ld {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-ld {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-ld-minus {
    margin: -56px !important;
  }
  .mr-14-ld-minus {
    margin-right: -56px !important;
  }
  .ml-14-ld-minus {
    margin-left: -56px !important;
  }
  .mt-14-ld-minus {
    margin-top: -56px !important;
  }
  .mb-14-ld-minus {
    margin-bottom: -56px !important;
  }
  .p-15-ld {
    padding: 60px !important;
  }
  .pr-15-ld {
    padding-right: 60px !important;
  }
  .pl-15-ld {
    padding-left: 60px !important;
  }
  .pt-15-ld {
    padding-top: 60px !important;
  }
  .pb-15-ld {
    padding-bottom: 60px !important;
  }
  .px-15-ld {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-ld {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-ld {
    margin: 60px !important;
  }
  .mr-15-ld {
    margin-right: 60px !important;
  }
  .ml-15-ld {
    margin-left: 60px !important;
  }
  .mt-15-ld {
    margin-top: 60px !important;
  }
  .mb-15-ld {
    margin-bottom: 60px !important;
  }
  .mx-15-ld {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-ld {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-ld-minus {
    margin: -60px !important;
  }
  .mr-15-ld-minus {
    margin-right: -60px !important;
  }
  .ml-15-ld-minus {
    margin-left: -60px !important;
  }
  .mt-15-ld-minus {
    margin-top: -60px !important;
  }
  .mb-15-ld-minus {
    margin-bottom: -60px !important;
  }
  .p-16-ld {
    padding: 64px !important;
  }
  .pr-16-ld {
    padding-right: 64px !important;
  }
  .pl-16-ld {
    padding-left: 64px !important;
  }
  .pt-16-ld {
    padding-top: 64px !important;
  }
  .pb-16-ld {
    padding-bottom: 64px !important;
  }
  .px-16-ld {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-ld {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-ld {
    margin: 64px !important;
  }
  .mr-16-ld {
    margin-right: 64px !important;
  }
  .ml-16-ld {
    margin-left: 64px !important;
  }
  .mt-16-ld {
    margin-top: 64px !important;
  }
  .mb-16-ld {
    margin-bottom: 64px !important;
  }
  .mx-16-ld {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-ld {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-ld-minus {
    margin: -64px !important;
  }
  .mr-16-ld-minus {
    margin-right: -64px !important;
  }
  .ml-16-ld-minus {
    margin-left: -64px !important;
  }
  .mt-16-ld-minus {
    margin-top: -64px !important;
  }
  .mb-16-ld-minus {
    margin-bottom: -64px !important;
  }
  .p-17-ld {
    padding: 68px !important;
  }
  .pr-17-ld {
    padding-right: 68px !important;
  }
  .pl-17-ld {
    padding-left: 68px !important;
  }
  .pt-17-ld {
    padding-top: 68px !important;
  }
  .pb-17-ld {
    padding-bottom: 68px !important;
  }
  .px-17-ld {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-ld {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-ld {
    margin: 68px !important;
  }
  .mr-17-ld {
    margin-right: 68px !important;
  }
  .ml-17-ld {
    margin-left: 68px !important;
  }
  .mt-17-ld {
    margin-top: 68px !important;
  }
  .mb-17-ld {
    margin-bottom: 68px !important;
  }
  .mx-17-ld {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-ld {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-ld-minus {
    margin: -68px !important;
  }
  .mr-17-ld-minus {
    margin-right: -68px !important;
  }
  .ml-17-ld-minus {
    margin-left: -68px !important;
  }
  .mt-17-ld-minus {
    margin-top: -68px !important;
  }
  .mb-17-ld-minus {
    margin-bottom: -68px !important;
  }
  .p-18-ld {
    padding: 72px !important;
  }
  .pr-18-ld {
    padding-right: 72px !important;
  }
  .pl-18-ld {
    padding-left: 72px !important;
  }
  .pt-18-ld {
    padding-top: 72px !important;
  }
  .pb-18-ld {
    padding-bottom: 72px !important;
  }
  .px-18-ld {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-ld {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-ld {
    margin: 72px !important;
  }
  .mr-18-ld {
    margin-right: 72px !important;
  }
  .ml-18-ld {
    margin-left: 72px !important;
  }
  .mt-18-ld {
    margin-top: 72px !important;
  }
  .mb-18-ld {
    margin-bottom: 72px !important;
  }
  .mx-18-ld {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-ld {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-ld-minus {
    margin: -72px !important;
  }
  .mr-18-ld-minus {
    margin-right: -72px !important;
  }
  .ml-18-ld-minus {
    margin-left: -72px !important;
  }
  .mt-18-ld-minus {
    margin-top: -72px !important;
  }
  .mb-18-ld-minus {
    margin-bottom: -72px !important;
  }
  .p-19-ld {
    padding: 76px !important;
  }
  .pr-19-ld {
    padding-right: 76px !important;
  }
  .pl-19-ld {
    padding-left: 76px !important;
  }
  .pt-19-ld {
    padding-top: 76px !important;
  }
  .pb-19-ld {
    padding-bottom: 76px !important;
  }
  .px-19-ld {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-ld {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-ld {
    margin: 76px !important;
  }
  .mr-19-ld {
    margin-right: 76px !important;
  }
  .ml-19-ld {
    margin-left: 76px !important;
  }
  .mt-19-ld {
    margin-top: 76px !important;
  }
  .mb-19-ld {
    margin-bottom: 76px !important;
  }
  .mx-19-ld {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-ld {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-ld-minus {
    margin: -76px !important;
  }
  .mr-19-ld-minus {
    margin-right: -76px !important;
  }
  .ml-19-ld-minus {
    margin-left: -76px !important;
  }
  .mt-19-ld-minus {
    margin-top: -76px !important;
  }
  .mb-19-ld-minus {
    margin-bottom: -76px !important;
  }
  .p-20-ld {
    padding: 80px !important;
  }
  .pr-20-ld {
    padding-right: 80px !important;
  }
  .pl-20-ld {
    padding-left: 80px !important;
  }
  .pt-20-ld {
    padding-top: 80px !important;
  }
  .pb-20-ld {
    padding-bottom: 80px !important;
  }
  .px-20-ld {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-ld {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-ld {
    margin: 80px !important;
  }
  .mr-20-ld {
    margin-right: 80px !important;
  }
  .ml-20-ld {
    margin-left: 80px !important;
  }
  .mt-20-ld {
    margin-top: 80px !important;
  }
  .mb-20-ld {
    margin-bottom: 80px !important;
  }
  .mx-20-ld {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-ld {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-ld-minus {
    margin: -80px !important;
  }
  .mr-20-ld-minus {
    margin-right: -80px !important;
  }
  .ml-20-ld-minus {
    margin-left: -80px !important;
  }
  .mt-20-ld-minus {
    margin-top: -80px !important;
  }
  .mb-20-ld-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 768px) {
  .mx-auto-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-md {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-md {
    margin-left: auto !important;
  }
  .mr-auto-md {
    margin-right: auto !important;
  }
  .mt-auto-md {
    margin-top: auto !important;
  }
  .mb-auto-md {
    margin-bottom: auto !important;
  }
  .p-0-md {
    padding: 0 !important;
  }
  .pl-0-md {
    padding-left: 0 !important;
  }
  .pr-0-md {
    padding-right: 0 !important;
  }
  .pt-0-md {
    padding-top: 0 !important;
  }
  .pb-0-md {
    padding-bottom: 0 !important;
  }
  .m-0-md {
    margin: 0 !important;
  }
  .ml-0-md {
    margin-left: 0 !important;
  }
  .mr-0-md {
    margin-right: 0 !important;
  }
  .mt-0-md {
    margin-top: 0 !important;
  }
  .mb-0-md {
    margin-bottom: 0 !important;
  }
  .p-1-md {
    padding: 4px !important;
  }
  .pr-1-md {
    padding-right: 4px !important;
  }
  .pl-1-md {
    padding-left: 4px !important;
  }
  .pt-1-md {
    padding-top: 4px !important;
  }
  .pb-1-md {
    padding-bottom: 4px !important;
  }
  .px-1-md {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-md {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-md {
    margin: 4px !important;
  }
  .mr-1-md {
    margin-right: 4px !important;
  }
  .ml-1-md {
    margin-left: 4px !important;
  }
  .mt-1-md {
    margin-top: 4px !important;
  }
  .mb-1-md {
    margin-bottom: 4px !important;
  }
  .mx-1-md {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-md {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-md-minus {
    margin: -4px !important;
  }
  .mr-1-md-minus {
    margin-right: -4px !important;
  }
  .ml-1-md-minus {
    margin-left: -4px !important;
  }
  .mt-1-md-minus {
    margin-top: -4px !important;
  }
  .mb-1-md-minus {
    margin-bottom: -4px !important;
  }
  .p-2-md {
    padding: 8px !important;
  }
  .pr-2-md {
    padding-right: 8px !important;
  }
  .pl-2-md {
    padding-left: 8px !important;
  }
  .pt-2-md {
    padding-top: 8px !important;
  }
  .pb-2-md {
    padding-bottom: 8px !important;
  }
  .px-2-md {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-md {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-md {
    margin: 8px !important;
  }
  .mr-2-md {
    margin-right: 8px !important;
  }
  .ml-2-md {
    margin-left: 8px !important;
  }
  .mt-2-md {
    margin-top: 8px !important;
  }
  .mb-2-md {
    margin-bottom: 8px !important;
  }
  .mx-2-md {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-md {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-md-minus {
    margin: -8px !important;
  }
  .mr-2-md-minus {
    margin-right: -8px !important;
  }
  .ml-2-md-minus {
    margin-left: -8px !important;
  }
  .mt-2-md-minus {
    margin-top: -8px !important;
  }
  .mb-2-md-minus {
    margin-bottom: -8px !important;
  }
  .p-3-md {
    padding: 12px !important;
  }
  .pr-3-md {
    padding-right: 12px !important;
  }
  .pl-3-md {
    padding-left: 12px !important;
  }
  .pt-3-md {
    padding-top: 12px !important;
  }
  .pb-3-md {
    padding-bottom: 12px !important;
  }
  .px-3-md {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-md {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-md {
    margin: 12px !important;
  }
  .mr-3-md {
    margin-right: 12px !important;
  }
  .ml-3-md {
    margin-left: 12px !important;
  }
  .mt-3-md {
    margin-top: 12px !important;
  }
  .mb-3-md {
    margin-bottom: 12px !important;
  }
  .mx-3-md {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-md {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-md-minus {
    margin: -12px !important;
  }
  .mr-3-md-minus {
    margin-right: -12px !important;
  }
  .ml-3-md-minus {
    margin-left: -12px !important;
  }
  .mt-3-md-minus {
    margin-top: -12px !important;
  }
  .mb-3-md-minus {
    margin-bottom: -12px !important;
  }
  .p-4-md {
    padding: 16px !important;
  }
  .pr-4-md {
    padding-right: 16px !important;
  }
  .pl-4-md {
    padding-left: 16px !important;
  }
  .pt-4-md {
    padding-top: 16px !important;
  }
  .pb-4-md {
    padding-bottom: 16px !important;
  }
  .px-4-md {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-md {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-md {
    margin: 16px !important;
  }
  .mr-4-md {
    margin-right: 16px !important;
  }
  .ml-4-md {
    margin-left: 16px !important;
  }
  .mt-4-md {
    margin-top: 16px !important;
  }
  .mb-4-md {
    margin-bottom: 16px !important;
  }
  .mx-4-md {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-md {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-md-minus {
    margin: -16px !important;
  }
  .mr-4-md-minus {
    margin-right: -16px !important;
  }
  .ml-4-md-minus {
    margin-left: -16px !important;
  }
  .mt-4-md-minus {
    margin-top: -16px !important;
  }
  .mb-4-md-minus {
    margin-bottom: -16px !important;
  }
  .p-5-md {
    padding: 20px !important;
  }
  .pr-5-md {
    padding-right: 20px !important;
  }
  .pl-5-md {
    padding-left: 20px !important;
  }
  .pt-5-md {
    padding-top: 20px !important;
  }
  .pb-5-md {
    padding-bottom: 20px !important;
  }
  .px-5-md {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-md {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-md {
    margin: 20px !important;
  }
  .mr-5-md {
    margin-right: 20px !important;
  }
  .ml-5-md {
    margin-left: 20px !important;
  }
  .mt-5-md {
    margin-top: 20px !important;
  }
  .mb-5-md {
    margin-bottom: 20px !important;
  }
  .mx-5-md {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-md {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-md-minus {
    margin: -20px !important;
  }
  .mr-5-md-minus {
    margin-right: -20px !important;
  }
  .ml-5-md-minus {
    margin-left: -20px !important;
  }
  .mt-5-md-minus {
    margin-top: -20px !important;
  }
  .mb-5-md-minus {
    margin-bottom: -20px !important;
  }
  .p-6-md {
    padding: 24px !important;
  }
  .pr-6-md {
    padding-right: 24px !important;
  }
  .pl-6-md {
    padding-left: 24px !important;
  }
  .pt-6-md {
    padding-top: 24px !important;
  }
  .pb-6-md {
    padding-bottom: 24px !important;
  }
  .px-6-md {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-md {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-md {
    margin: 24px !important;
  }
  .mr-6-md {
    margin-right: 24px !important;
  }
  .ml-6-md {
    margin-left: 24px !important;
  }
  .mt-6-md {
    margin-top: 24px !important;
  }
  .mb-6-md {
    margin-bottom: 24px !important;
  }
  .mx-6-md {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-md {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-md-minus {
    margin: -24px !important;
  }
  .mr-6-md-minus {
    margin-right: -24px !important;
  }
  .ml-6-md-minus {
    margin-left: -24px !important;
  }
  .mt-6-md-minus {
    margin-top: -24px !important;
  }
  .mb-6-md-minus {
    margin-bottom: -24px !important;
  }
  .p-7-md {
    padding: 28px !important;
  }
  .pr-7-md {
    padding-right: 28px !important;
  }
  .pl-7-md {
    padding-left: 28px !important;
  }
  .pt-7-md {
    padding-top: 28px !important;
  }
  .pb-7-md {
    padding-bottom: 28px !important;
  }
  .px-7-md {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-md {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-md {
    margin: 28px !important;
  }
  .mr-7-md {
    margin-right: 28px !important;
  }
  .ml-7-md {
    margin-left: 28px !important;
  }
  .mt-7-md {
    margin-top: 28px !important;
  }
  .mb-7-md {
    margin-bottom: 28px !important;
  }
  .mx-7-md {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-md {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-md-minus {
    margin: -28px !important;
  }
  .mr-7-md-minus {
    margin-right: -28px !important;
  }
  .ml-7-md-minus {
    margin-left: -28px !important;
  }
  .mt-7-md-minus {
    margin-top: -28px !important;
  }
  .mb-7-md-minus {
    margin-bottom: -28px !important;
  }
  .p-8-md {
    padding: 32px !important;
  }
  .pr-8-md {
    padding-right: 32px !important;
  }
  .pl-8-md {
    padding-left: 32px !important;
  }
  .pt-8-md {
    padding-top: 32px !important;
  }
  .pb-8-md {
    padding-bottom: 32px !important;
  }
  .px-8-md {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-md {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-md {
    margin: 32px !important;
  }
  .mr-8-md {
    margin-right: 32px !important;
  }
  .ml-8-md {
    margin-left: 32px !important;
  }
  .mt-8-md {
    margin-top: 32px !important;
  }
  .mb-8-md {
    margin-bottom: 32px !important;
  }
  .mx-8-md {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-md {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-md-minus {
    margin: -32px !important;
  }
  .mr-8-md-minus {
    margin-right: -32px !important;
  }
  .ml-8-md-minus {
    margin-left: -32px !important;
  }
  .mt-8-md-minus {
    margin-top: -32px !important;
  }
  .mb-8-md-minus {
    margin-bottom: -32px !important;
  }
  .p-9-md {
    padding: 36px !important;
  }
  .pr-9-md {
    padding-right: 36px !important;
  }
  .pl-9-md {
    padding-left: 36px !important;
  }
  .pt-9-md {
    padding-top: 36px !important;
  }
  .pb-9-md {
    padding-bottom: 36px !important;
  }
  .px-9-md {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-md {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-md {
    margin: 36px !important;
  }
  .mr-9-md {
    margin-right: 36px !important;
  }
  .ml-9-md {
    margin-left: 36px !important;
  }
  .mt-9-md {
    margin-top: 36px !important;
  }
  .mb-9-md {
    margin-bottom: 36px !important;
  }
  .mx-9-md {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-md {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-md-minus {
    margin: -36px !important;
  }
  .mr-9-md-minus {
    margin-right: -36px !important;
  }
  .ml-9-md-minus {
    margin-left: -36px !important;
  }
  .mt-9-md-minus {
    margin-top: -36px !important;
  }
  .mb-9-md-minus {
    margin-bottom: -36px !important;
  }
  .p-10-md {
    padding: 40px !important;
  }
  .pr-10-md {
    padding-right: 40px !important;
  }
  .pl-10-md {
    padding-left: 40px !important;
  }
  .pt-10-md {
    padding-top: 40px !important;
  }
  .pb-10-md {
    padding-bottom: 40px !important;
  }
  .px-10-md {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-md {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-md {
    margin: 40px !important;
  }
  .mr-10-md {
    margin-right: 40px !important;
  }
  .ml-10-md {
    margin-left: 40px !important;
  }
  .mt-10-md {
    margin-top: 40px !important;
  }
  .mb-10-md {
    margin-bottom: 40px !important;
  }
  .mx-10-md {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-md {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-md-minus {
    margin: -40px !important;
  }
  .mr-10-md-minus {
    margin-right: -40px !important;
  }
  .ml-10-md-minus {
    margin-left: -40px !important;
  }
  .mt-10-md-minus {
    margin-top: -40px !important;
  }
  .mb-10-md-minus {
    margin-bottom: -40px !important;
  }
  .p-11-md {
    padding: 44px !important;
  }
  .pr-11-md {
    padding-right: 44px !important;
  }
  .pl-11-md {
    padding-left: 44px !important;
  }
  .pt-11-md {
    padding-top: 44px !important;
  }
  .pb-11-md {
    padding-bottom: 44px !important;
  }
  .px-11-md {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-md {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-md {
    margin: 44px !important;
  }
  .mr-11-md {
    margin-right: 44px !important;
  }
  .ml-11-md {
    margin-left: 44px !important;
  }
  .mt-11-md {
    margin-top: 44px !important;
  }
  .mb-11-md {
    margin-bottom: 44px !important;
  }
  .mx-11-md {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-md {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-md-minus {
    margin: -44px !important;
  }
  .mr-11-md-minus {
    margin-right: -44px !important;
  }
  .ml-11-md-minus {
    margin-left: -44px !important;
  }
  .mt-11-md-minus {
    margin-top: -44px !important;
  }
  .mb-11-md-minus {
    margin-bottom: -44px !important;
  }
  .p-12-md {
    padding: 48px !important;
  }
  .pr-12-md {
    padding-right: 48px !important;
  }
  .pl-12-md {
    padding-left: 48px !important;
  }
  .pt-12-md {
    padding-top: 48px !important;
  }
  .pb-12-md {
    padding-bottom: 48px !important;
  }
  .px-12-md {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-md {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-md {
    margin: 48px !important;
  }
  .mr-12-md {
    margin-right: 48px !important;
  }
  .ml-12-md {
    margin-left: 48px !important;
  }
  .mt-12-md {
    margin-top: 48px !important;
  }
  .mb-12-md {
    margin-bottom: 48px !important;
  }
  .mx-12-md {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-md {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-md-minus {
    margin: -48px !important;
  }
  .mr-12-md-minus {
    margin-right: -48px !important;
  }
  .ml-12-md-minus {
    margin-left: -48px !important;
  }
  .mt-12-md-minus {
    margin-top: -48px !important;
  }
  .mb-12-md-minus {
    margin-bottom: -48px !important;
  }
  .p-13-md {
    padding: 52px !important;
  }
  .pr-13-md {
    padding-right: 52px !important;
  }
  .pl-13-md {
    padding-left: 52px !important;
  }
  .pt-13-md {
    padding-top: 52px !important;
  }
  .pb-13-md {
    padding-bottom: 52px !important;
  }
  .px-13-md {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-md {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-md {
    margin: 52px !important;
  }
  .mr-13-md {
    margin-right: 52px !important;
  }
  .ml-13-md {
    margin-left: 52px !important;
  }
  .mt-13-md {
    margin-top: 52px !important;
  }
  .mb-13-md {
    margin-bottom: 52px !important;
  }
  .mx-13-md {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-md {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-md-minus {
    margin: -52px !important;
  }
  .mr-13-md-minus {
    margin-right: -52px !important;
  }
  .ml-13-md-minus {
    margin-left: -52px !important;
  }
  .mt-13-md-minus {
    margin-top: -52px !important;
  }
  .mb-13-md-minus {
    margin-bottom: -52px !important;
  }
  .p-14-md {
    padding: 56px !important;
  }
  .pr-14-md {
    padding-right: 56px !important;
  }
  .pl-14-md {
    padding-left: 56px !important;
  }
  .pt-14-md {
    padding-top: 56px !important;
  }
  .pb-14-md {
    padding-bottom: 56px !important;
  }
  .px-14-md {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-md {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-md {
    margin: 56px !important;
  }
  .mr-14-md {
    margin-right: 56px !important;
  }
  .ml-14-md {
    margin-left: 56px !important;
  }
  .mt-14-md {
    margin-top: 56px !important;
  }
  .mb-14-md {
    margin-bottom: 56px !important;
  }
  .mx-14-md {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-md {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-md-minus {
    margin: -56px !important;
  }
  .mr-14-md-minus {
    margin-right: -56px !important;
  }
  .ml-14-md-minus {
    margin-left: -56px !important;
  }
  .mt-14-md-minus {
    margin-top: -56px !important;
  }
  .mb-14-md-minus {
    margin-bottom: -56px !important;
  }
  .p-15-md {
    padding: 60px !important;
  }
  .pr-15-md {
    padding-right: 60px !important;
  }
  .pl-15-md {
    padding-left: 60px !important;
  }
  .pt-15-md {
    padding-top: 60px !important;
  }
  .pb-15-md {
    padding-bottom: 60px !important;
  }
  .px-15-md {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-md {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-md {
    margin: 60px !important;
  }
  .mr-15-md {
    margin-right: 60px !important;
  }
  .ml-15-md {
    margin-left: 60px !important;
  }
  .mt-15-md {
    margin-top: 60px !important;
  }
  .mb-15-md {
    margin-bottom: 60px !important;
  }
  .mx-15-md {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-md {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-md-minus {
    margin: -60px !important;
  }
  .mr-15-md-minus {
    margin-right: -60px !important;
  }
  .ml-15-md-minus {
    margin-left: -60px !important;
  }
  .mt-15-md-minus {
    margin-top: -60px !important;
  }
  .mb-15-md-minus {
    margin-bottom: -60px !important;
  }
  .p-16-md {
    padding: 64px !important;
  }
  .pr-16-md {
    padding-right: 64px !important;
  }
  .pl-16-md {
    padding-left: 64px !important;
  }
  .pt-16-md {
    padding-top: 64px !important;
  }
  .pb-16-md {
    padding-bottom: 64px !important;
  }
  .px-16-md {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-md {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-md {
    margin: 64px !important;
  }
  .mr-16-md {
    margin-right: 64px !important;
  }
  .ml-16-md {
    margin-left: 64px !important;
  }
  .mt-16-md {
    margin-top: 64px !important;
  }
  .mb-16-md {
    margin-bottom: 64px !important;
  }
  .mx-16-md {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-md {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-md-minus {
    margin: -64px !important;
  }
  .mr-16-md-minus {
    margin-right: -64px !important;
  }
  .ml-16-md-minus {
    margin-left: -64px !important;
  }
  .mt-16-md-minus {
    margin-top: -64px !important;
  }
  .mb-16-md-minus {
    margin-bottom: -64px !important;
  }
  .p-17-md {
    padding: 68px !important;
  }
  .pr-17-md {
    padding-right: 68px !important;
  }
  .pl-17-md {
    padding-left: 68px !important;
  }
  .pt-17-md {
    padding-top: 68px !important;
  }
  .pb-17-md {
    padding-bottom: 68px !important;
  }
  .px-17-md {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-md {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-md {
    margin: 68px !important;
  }
  .mr-17-md {
    margin-right: 68px !important;
  }
  .ml-17-md {
    margin-left: 68px !important;
  }
  .mt-17-md {
    margin-top: 68px !important;
  }
  .mb-17-md {
    margin-bottom: 68px !important;
  }
  .mx-17-md {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-md {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-md-minus {
    margin: -68px !important;
  }
  .mr-17-md-minus {
    margin-right: -68px !important;
  }
  .ml-17-md-minus {
    margin-left: -68px !important;
  }
  .mt-17-md-minus {
    margin-top: -68px !important;
  }
  .mb-17-md-minus {
    margin-bottom: -68px !important;
  }
  .p-18-md {
    padding: 72px !important;
  }
  .pr-18-md {
    padding-right: 72px !important;
  }
  .pl-18-md {
    padding-left: 72px !important;
  }
  .pt-18-md {
    padding-top: 72px !important;
  }
  .pb-18-md {
    padding-bottom: 72px !important;
  }
  .px-18-md {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-md {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-md {
    margin: 72px !important;
  }
  .mr-18-md {
    margin-right: 72px !important;
  }
  .ml-18-md {
    margin-left: 72px !important;
  }
  .mt-18-md {
    margin-top: 72px !important;
  }
  .mb-18-md {
    margin-bottom: 72px !important;
  }
  .mx-18-md {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-md {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-md-minus {
    margin: -72px !important;
  }
  .mr-18-md-minus {
    margin-right: -72px !important;
  }
  .ml-18-md-minus {
    margin-left: -72px !important;
  }
  .mt-18-md-minus {
    margin-top: -72px !important;
  }
  .mb-18-md-minus {
    margin-bottom: -72px !important;
  }
  .p-19-md {
    padding: 76px !important;
  }
  .pr-19-md {
    padding-right: 76px !important;
  }
  .pl-19-md {
    padding-left: 76px !important;
  }
  .pt-19-md {
    padding-top: 76px !important;
  }
  .pb-19-md {
    padding-bottom: 76px !important;
  }
  .px-19-md {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-md {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-md {
    margin: 76px !important;
  }
  .mr-19-md {
    margin-right: 76px !important;
  }
  .ml-19-md {
    margin-left: 76px !important;
  }
  .mt-19-md {
    margin-top: 76px !important;
  }
  .mb-19-md {
    margin-bottom: 76px !important;
  }
  .mx-19-md {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-md {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-md-minus {
    margin: -76px !important;
  }
  .mr-19-md-minus {
    margin-right: -76px !important;
  }
  .ml-19-md-minus {
    margin-left: -76px !important;
  }
  .mt-19-md-minus {
    margin-top: -76px !important;
  }
  .mb-19-md-minus {
    margin-bottom: -76px !important;
  }
  .p-20-md {
    padding: 80px !important;
  }
  .pr-20-md {
    padding-right: 80px !important;
  }
  .pl-20-md {
    padding-left: 80px !important;
  }
  .pt-20-md {
    padding-top: 80px !important;
  }
  .pb-20-md {
    padding-bottom: 80px !important;
  }
  .px-20-md {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-md {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-md {
    margin: 80px !important;
  }
  .mr-20-md {
    margin-right: 80px !important;
  }
  .ml-20-md {
    margin-left: 80px !important;
  }
  .mt-20-md {
    margin-top: 80px !important;
  }
  .mb-20-md {
    margin-bottom: 80px !important;
  }
  .mx-20-md {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-md {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-md-minus {
    margin: -80px !important;
  }
  .mr-20-md-minus {
    margin-right: -80px !important;
  }
  .ml-20-md-minus {
    margin-left: -80px !important;
  }
  .mt-20-md-minus {
    margin-top: -80px !important;
  }
  .mb-20-md-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 992px) {
  .mx-auto-lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-lg {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-lg {
    margin-left: auto !important;
  }
  .mr-auto-lg {
    margin-right: auto !important;
  }
  .mt-auto-lg {
    margin-top: auto !important;
  }
  .mb-auto-lg {
    margin-bottom: auto !important;
  }
  .p-0-lg {
    padding: 0 !important;
  }
  .pl-0-lg {
    padding-left: 0 !important;
  }
  .pr-0-lg {
    padding-right: 0 !important;
  }
  .pt-0-lg {
    padding-top: 0 !important;
  }
  .pb-0-lg {
    padding-bottom: 0 !important;
  }
  .m-0-lg {
    margin: 0 !important;
  }
  .ml-0-lg {
    margin-left: 0 !important;
  }
  .mr-0-lg {
    margin-right: 0 !important;
  }
  .mt-0-lg {
    margin-top: 0 !important;
  }
  .mb-0-lg {
    margin-bottom: 0 !important;
  }
  .p-1-lg {
    padding: 4px !important;
  }
  .pr-1-lg {
    padding-right: 4px !important;
  }
  .pl-1-lg {
    padding-left: 4px !important;
  }
  .pt-1-lg {
    padding-top: 4px !important;
  }
  .pb-1-lg {
    padding-bottom: 4px !important;
  }
  .px-1-lg {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-lg {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-lg {
    margin: 4px !important;
  }
  .mr-1-lg {
    margin-right: 4px !important;
  }
  .ml-1-lg {
    margin-left: 4px !important;
  }
  .mt-1-lg {
    margin-top: 4px !important;
  }
  .mb-1-lg {
    margin-bottom: 4px !important;
  }
  .mx-1-lg {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-lg {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-lg-minus {
    margin: -4px !important;
  }
  .mr-1-lg-minus {
    margin-right: -4px !important;
  }
  .ml-1-lg-minus {
    margin-left: -4px !important;
  }
  .mt-1-lg-minus {
    margin-top: -4px !important;
  }
  .mb-1-lg-minus {
    margin-bottom: -4px !important;
  }
  .p-2-lg {
    padding: 8px !important;
  }
  .pr-2-lg {
    padding-right: 8px !important;
  }
  .pl-2-lg {
    padding-left: 8px !important;
  }
  .pt-2-lg {
    padding-top: 8px !important;
  }
  .pb-2-lg {
    padding-bottom: 8px !important;
  }
  .px-2-lg {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-lg {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-lg {
    margin: 8px !important;
  }
  .mr-2-lg {
    margin-right: 8px !important;
  }
  .ml-2-lg {
    margin-left: 8px !important;
  }
  .mt-2-lg {
    margin-top: 8px !important;
  }
  .mb-2-lg {
    margin-bottom: 8px !important;
  }
  .mx-2-lg {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-lg {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-lg-minus {
    margin: -8px !important;
  }
  .mr-2-lg-minus {
    margin-right: -8px !important;
  }
  .ml-2-lg-minus {
    margin-left: -8px !important;
  }
  .mt-2-lg-minus {
    margin-top: -8px !important;
  }
  .mb-2-lg-minus {
    margin-bottom: -8px !important;
  }
  .p-3-lg {
    padding: 12px !important;
  }
  .pr-3-lg {
    padding-right: 12px !important;
  }
  .pl-3-lg {
    padding-left: 12px !important;
  }
  .pt-3-lg {
    padding-top: 12px !important;
  }
  .pb-3-lg {
    padding-bottom: 12px !important;
  }
  .px-3-lg {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-lg {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-lg {
    margin: 12px !important;
  }
  .mr-3-lg {
    margin-right: 12px !important;
  }
  .ml-3-lg {
    margin-left: 12px !important;
  }
  .mt-3-lg {
    margin-top: 12px !important;
  }
  .mb-3-lg {
    margin-bottom: 12px !important;
  }
  .mx-3-lg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-lg {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-lg-minus {
    margin: -12px !important;
  }
  .mr-3-lg-minus {
    margin-right: -12px !important;
  }
  .ml-3-lg-minus {
    margin-left: -12px !important;
  }
  .mt-3-lg-minus {
    margin-top: -12px !important;
  }
  .mb-3-lg-minus {
    margin-bottom: -12px !important;
  }
  .p-4-lg {
    padding: 16px !important;
  }
  .pr-4-lg {
    padding-right: 16px !important;
  }
  .pl-4-lg {
    padding-left: 16px !important;
  }
  .pt-4-lg {
    padding-top: 16px !important;
  }
  .pb-4-lg {
    padding-bottom: 16px !important;
  }
  .px-4-lg {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-lg {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-lg {
    margin: 16px !important;
  }
  .mr-4-lg {
    margin-right: 16px !important;
  }
  .ml-4-lg {
    margin-left: 16px !important;
  }
  .mt-4-lg {
    margin-top: 16px !important;
  }
  .mb-4-lg {
    margin-bottom: 16px !important;
  }
  .mx-4-lg {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-lg {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-lg-minus {
    margin: -16px !important;
  }
  .mr-4-lg-minus {
    margin-right: -16px !important;
  }
  .ml-4-lg-minus {
    margin-left: -16px !important;
  }
  .mt-4-lg-minus {
    margin-top: -16px !important;
  }
  .mb-4-lg-minus {
    margin-bottom: -16px !important;
  }
  .p-5-lg {
    padding: 20px !important;
  }
  .pr-5-lg {
    padding-right: 20px !important;
  }
  .pl-5-lg {
    padding-left: 20px !important;
  }
  .pt-5-lg {
    padding-top: 20px !important;
  }
  .pb-5-lg {
    padding-bottom: 20px !important;
  }
  .px-5-lg {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-lg {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-lg {
    margin: 20px !important;
  }
  .mr-5-lg {
    margin-right: 20px !important;
  }
  .ml-5-lg {
    margin-left: 20px !important;
  }
  .mt-5-lg {
    margin-top: 20px !important;
  }
  .mb-5-lg {
    margin-bottom: 20px !important;
  }
  .mx-5-lg {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-lg {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-lg-minus {
    margin: -20px !important;
  }
  .mr-5-lg-minus {
    margin-right: -20px !important;
  }
  .ml-5-lg-minus {
    margin-left: -20px !important;
  }
  .mt-5-lg-minus {
    margin-top: -20px !important;
  }
  .mb-5-lg-minus {
    margin-bottom: -20px !important;
  }
  .p-6-lg {
    padding: 24px !important;
  }
  .pr-6-lg {
    padding-right: 24px !important;
  }
  .pl-6-lg {
    padding-left: 24px !important;
  }
  .pt-6-lg {
    padding-top: 24px !important;
  }
  .pb-6-lg {
    padding-bottom: 24px !important;
  }
  .px-6-lg {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-lg {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-lg {
    margin: 24px !important;
  }
  .mr-6-lg {
    margin-right: 24px !important;
  }
  .ml-6-lg {
    margin-left: 24px !important;
  }
  .mt-6-lg {
    margin-top: 24px !important;
  }
  .mb-6-lg {
    margin-bottom: 24px !important;
  }
  .mx-6-lg {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-lg {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-lg-minus {
    margin: -24px !important;
  }
  .mr-6-lg-minus {
    margin-right: -24px !important;
  }
  .ml-6-lg-minus {
    margin-left: -24px !important;
  }
  .mt-6-lg-minus {
    margin-top: -24px !important;
  }
  .mb-6-lg-minus {
    margin-bottom: -24px !important;
  }
  .p-7-lg {
    padding: 28px !important;
  }
  .pr-7-lg {
    padding-right: 28px !important;
  }
  .pl-7-lg {
    padding-left: 28px !important;
  }
  .pt-7-lg {
    padding-top: 28px !important;
  }
  .pb-7-lg {
    padding-bottom: 28px !important;
  }
  .px-7-lg {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-lg {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-lg {
    margin: 28px !important;
  }
  .mr-7-lg {
    margin-right: 28px !important;
  }
  .ml-7-lg {
    margin-left: 28px !important;
  }
  .mt-7-lg {
    margin-top: 28px !important;
  }
  .mb-7-lg {
    margin-bottom: 28px !important;
  }
  .mx-7-lg {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-lg {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-lg-minus {
    margin: -28px !important;
  }
  .mr-7-lg-minus {
    margin-right: -28px !important;
  }
  .ml-7-lg-minus {
    margin-left: -28px !important;
  }
  .mt-7-lg-minus {
    margin-top: -28px !important;
  }
  .mb-7-lg-minus {
    margin-bottom: -28px !important;
  }
  .p-8-lg {
    padding: 32px !important;
  }
  .pr-8-lg {
    padding-right: 32px !important;
  }
  .pl-8-lg {
    padding-left: 32px !important;
  }
  .pt-8-lg {
    padding-top: 32px !important;
  }
  .pb-8-lg {
    padding-bottom: 32px !important;
  }
  .px-8-lg {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-lg {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-lg {
    margin: 32px !important;
  }
  .mr-8-lg {
    margin-right: 32px !important;
  }
  .ml-8-lg {
    margin-left: 32px !important;
  }
  .mt-8-lg {
    margin-top: 32px !important;
  }
  .mb-8-lg {
    margin-bottom: 32px !important;
  }
  .mx-8-lg {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-lg {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-lg-minus {
    margin: -32px !important;
  }
  .mr-8-lg-minus {
    margin-right: -32px !important;
  }
  .ml-8-lg-minus {
    margin-left: -32px !important;
  }
  .mt-8-lg-minus {
    margin-top: -32px !important;
  }
  .mb-8-lg-minus {
    margin-bottom: -32px !important;
  }
  .p-9-lg {
    padding: 36px !important;
  }
  .pr-9-lg {
    padding-right: 36px !important;
  }
  .pl-9-lg {
    padding-left: 36px !important;
  }
  .pt-9-lg {
    padding-top: 36px !important;
  }
  .pb-9-lg {
    padding-bottom: 36px !important;
  }
  .px-9-lg {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-lg {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-lg {
    margin: 36px !important;
  }
  .mr-9-lg {
    margin-right: 36px !important;
  }
  .ml-9-lg {
    margin-left: 36px !important;
  }
  .mt-9-lg {
    margin-top: 36px !important;
  }
  .mb-9-lg {
    margin-bottom: 36px !important;
  }
  .mx-9-lg {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-lg {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-lg-minus {
    margin: -36px !important;
  }
  .mr-9-lg-minus {
    margin-right: -36px !important;
  }
  .ml-9-lg-minus {
    margin-left: -36px !important;
  }
  .mt-9-lg-minus {
    margin-top: -36px !important;
  }
  .mb-9-lg-minus {
    margin-bottom: -36px !important;
  }
  .p-10-lg {
    padding: 40px !important;
  }
  .pr-10-lg {
    padding-right: 40px !important;
  }
  .pl-10-lg {
    padding-left: 40px !important;
  }
  .pt-10-lg {
    padding-top: 40px !important;
  }
  .pb-10-lg {
    padding-bottom: 40px !important;
  }
  .px-10-lg {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-lg {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-lg {
    margin: 40px !important;
  }
  .mr-10-lg {
    margin-right: 40px !important;
  }
  .ml-10-lg {
    margin-left: 40px !important;
  }
  .mt-10-lg {
    margin-top: 40px !important;
  }
  .mb-10-lg {
    margin-bottom: 40px !important;
  }
  .mx-10-lg {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-lg {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-lg-minus {
    margin: -40px !important;
  }
  .mr-10-lg-minus {
    margin-right: -40px !important;
  }
  .ml-10-lg-minus {
    margin-left: -40px !important;
  }
  .mt-10-lg-minus {
    margin-top: -40px !important;
  }
  .mb-10-lg-minus {
    margin-bottom: -40px !important;
  }
  .p-11-lg {
    padding: 44px !important;
  }
  .pr-11-lg {
    padding-right: 44px !important;
  }
  .pl-11-lg {
    padding-left: 44px !important;
  }
  .pt-11-lg {
    padding-top: 44px !important;
  }
  .pb-11-lg {
    padding-bottom: 44px !important;
  }
  .px-11-lg {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-lg {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-lg {
    margin: 44px !important;
  }
  .mr-11-lg {
    margin-right: 44px !important;
  }
  .ml-11-lg {
    margin-left: 44px !important;
  }
  .mt-11-lg {
    margin-top: 44px !important;
  }
  .mb-11-lg {
    margin-bottom: 44px !important;
  }
  .mx-11-lg {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-lg {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-lg-minus {
    margin: -44px !important;
  }
  .mr-11-lg-minus {
    margin-right: -44px !important;
  }
  .ml-11-lg-minus {
    margin-left: -44px !important;
  }
  .mt-11-lg-minus {
    margin-top: -44px !important;
  }
  .mb-11-lg-minus {
    margin-bottom: -44px !important;
  }
  .p-12-lg {
    padding: 48px !important;
  }
  .pr-12-lg {
    padding-right: 48px !important;
  }
  .pl-12-lg {
    padding-left: 48px !important;
  }
  .pt-12-lg {
    padding-top: 48px !important;
  }
  .pb-12-lg {
    padding-bottom: 48px !important;
  }
  .px-12-lg {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-lg {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-lg {
    margin: 48px !important;
  }
  .mr-12-lg {
    margin-right: 48px !important;
  }
  .ml-12-lg {
    margin-left: 48px !important;
  }
  .mt-12-lg {
    margin-top: 48px !important;
  }
  .mb-12-lg {
    margin-bottom: 48px !important;
  }
  .mx-12-lg {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-lg {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-lg-minus {
    margin: -48px !important;
  }
  .mr-12-lg-minus {
    margin-right: -48px !important;
  }
  .ml-12-lg-minus {
    margin-left: -48px !important;
  }
  .mt-12-lg-minus {
    margin-top: -48px !important;
  }
  .mb-12-lg-minus {
    margin-bottom: -48px !important;
  }
  .p-13-lg {
    padding: 52px !important;
  }
  .pr-13-lg {
    padding-right: 52px !important;
  }
  .pl-13-lg {
    padding-left: 52px !important;
  }
  .pt-13-lg {
    padding-top: 52px !important;
  }
  .pb-13-lg {
    padding-bottom: 52px !important;
  }
  .px-13-lg {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-lg {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-lg {
    margin: 52px !important;
  }
  .mr-13-lg {
    margin-right: 52px !important;
  }
  .ml-13-lg {
    margin-left: 52px !important;
  }
  .mt-13-lg {
    margin-top: 52px !important;
  }
  .mb-13-lg {
    margin-bottom: 52px !important;
  }
  .mx-13-lg {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-lg {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-lg-minus {
    margin: -52px !important;
  }
  .mr-13-lg-minus {
    margin-right: -52px !important;
  }
  .ml-13-lg-minus {
    margin-left: -52px !important;
  }
  .mt-13-lg-minus {
    margin-top: -52px !important;
  }
  .mb-13-lg-minus {
    margin-bottom: -52px !important;
  }
  .p-14-lg {
    padding: 56px !important;
  }
  .pr-14-lg {
    padding-right: 56px !important;
  }
  .pl-14-lg {
    padding-left: 56px !important;
  }
  .pt-14-lg {
    padding-top: 56px !important;
  }
  .pb-14-lg {
    padding-bottom: 56px !important;
  }
  .px-14-lg {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-lg {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-lg {
    margin: 56px !important;
  }
  .mr-14-lg {
    margin-right: 56px !important;
  }
  .ml-14-lg {
    margin-left: 56px !important;
  }
  .mt-14-lg {
    margin-top: 56px !important;
  }
  .mb-14-lg {
    margin-bottom: 56px !important;
  }
  .mx-14-lg {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-lg {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-lg-minus {
    margin: -56px !important;
  }
  .mr-14-lg-minus {
    margin-right: -56px !important;
  }
  .ml-14-lg-minus {
    margin-left: -56px !important;
  }
  .mt-14-lg-minus {
    margin-top: -56px !important;
  }
  .mb-14-lg-minus {
    margin-bottom: -56px !important;
  }
  .p-15-lg {
    padding: 60px !important;
  }
  .pr-15-lg {
    padding-right: 60px !important;
  }
  .pl-15-lg {
    padding-left: 60px !important;
  }
  .pt-15-lg {
    padding-top: 60px !important;
  }
  .pb-15-lg {
    padding-bottom: 60px !important;
  }
  .px-15-lg {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-lg {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-lg {
    margin: 60px !important;
  }
  .mr-15-lg {
    margin-right: 60px !important;
  }
  .ml-15-lg {
    margin-left: 60px !important;
  }
  .mt-15-lg {
    margin-top: 60px !important;
  }
  .mb-15-lg {
    margin-bottom: 60px !important;
  }
  .mx-15-lg {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-lg {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-lg-minus {
    margin: -60px !important;
  }
  .mr-15-lg-minus {
    margin-right: -60px !important;
  }
  .ml-15-lg-minus {
    margin-left: -60px !important;
  }
  .mt-15-lg-minus {
    margin-top: -60px !important;
  }
  .mb-15-lg-minus {
    margin-bottom: -60px !important;
  }
  .p-16-lg {
    padding: 64px !important;
  }
  .pr-16-lg {
    padding-right: 64px !important;
  }
  .pl-16-lg {
    padding-left: 64px !important;
  }
  .pt-16-lg {
    padding-top: 64px !important;
  }
  .pb-16-lg {
    padding-bottom: 64px !important;
  }
  .px-16-lg {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-lg {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-lg {
    margin: 64px !important;
  }
  .mr-16-lg {
    margin-right: 64px !important;
  }
  .ml-16-lg {
    margin-left: 64px !important;
  }
  .mt-16-lg {
    margin-top: 64px !important;
  }
  .mb-16-lg {
    margin-bottom: 64px !important;
  }
  .mx-16-lg {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-lg {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-lg-minus {
    margin: -64px !important;
  }
  .mr-16-lg-minus {
    margin-right: -64px !important;
  }
  .ml-16-lg-minus {
    margin-left: -64px !important;
  }
  .mt-16-lg-minus {
    margin-top: -64px !important;
  }
  .mb-16-lg-minus {
    margin-bottom: -64px !important;
  }
  .p-17-lg {
    padding: 68px !important;
  }
  .pr-17-lg {
    padding-right: 68px !important;
  }
  .pl-17-lg {
    padding-left: 68px !important;
  }
  .pt-17-lg {
    padding-top: 68px !important;
  }
  .pb-17-lg {
    padding-bottom: 68px !important;
  }
  .px-17-lg {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-lg {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-lg {
    margin: 68px !important;
  }
  .mr-17-lg {
    margin-right: 68px !important;
  }
  .ml-17-lg {
    margin-left: 68px !important;
  }
  .mt-17-lg {
    margin-top: 68px !important;
  }
  .mb-17-lg {
    margin-bottom: 68px !important;
  }
  .mx-17-lg {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-lg {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-lg-minus {
    margin: -68px !important;
  }
  .mr-17-lg-minus {
    margin-right: -68px !important;
  }
  .ml-17-lg-minus {
    margin-left: -68px !important;
  }
  .mt-17-lg-minus {
    margin-top: -68px !important;
  }
  .mb-17-lg-minus {
    margin-bottom: -68px !important;
  }
  .p-18-lg {
    padding: 72px !important;
  }
  .pr-18-lg {
    padding-right: 72px !important;
  }
  .pl-18-lg {
    padding-left: 72px !important;
  }
  .pt-18-lg {
    padding-top: 72px !important;
  }
  .pb-18-lg {
    padding-bottom: 72px !important;
  }
  .px-18-lg {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-lg {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-lg {
    margin: 72px !important;
  }
  .mr-18-lg {
    margin-right: 72px !important;
  }
  .ml-18-lg {
    margin-left: 72px !important;
  }
  .mt-18-lg {
    margin-top: 72px !important;
  }
  .mb-18-lg {
    margin-bottom: 72px !important;
  }
  .mx-18-lg {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-lg {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-lg-minus {
    margin: -72px !important;
  }
  .mr-18-lg-minus {
    margin-right: -72px !important;
  }
  .ml-18-lg-minus {
    margin-left: -72px !important;
  }
  .mt-18-lg-minus {
    margin-top: -72px !important;
  }
  .mb-18-lg-minus {
    margin-bottom: -72px !important;
  }
  .p-19-lg {
    padding: 76px !important;
  }
  .pr-19-lg {
    padding-right: 76px !important;
  }
  .pl-19-lg {
    padding-left: 76px !important;
  }
  .pt-19-lg {
    padding-top: 76px !important;
  }
  .pb-19-lg {
    padding-bottom: 76px !important;
  }
  .px-19-lg {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-lg {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-lg {
    margin: 76px !important;
  }
  .mr-19-lg {
    margin-right: 76px !important;
  }
  .ml-19-lg {
    margin-left: 76px !important;
  }
  .mt-19-lg {
    margin-top: 76px !important;
  }
  .mb-19-lg {
    margin-bottom: 76px !important;
  }
  .mx-19-lg {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-lg {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-lg-minus {
    margin: -76px !important;
  }
  .mr-19-lg-minus {
    margin-right: -76px !important;
  }
  .ml-19-lg-minus {
    margin-left: -76px !important;
  }
  .mt-19-lg-minus {
    margin-top: -76px !important;
  }
  .mb-19-lg-minus {
    margin-bottom: -76px !important;
  }
  .p-20-lg {
    padding: 80px !important;
  }
  .pr-20-lg {
    padding-right: 80px !important;
  }
  .pl-20-lg {
    padding-left: 80px !important;
  }
  .pt-20-lg {
    padding-top: 80px !important;
  }
  .pb-20-lg {
    padding-bottom: 80px !important;
  }
  .px-20-lg {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-lg {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-lg {
    margin: 80px !important;
  }
  .mr-20-lg {
    margin-right: 80px !important;
  }
  .ml-20-lg {
    margin-left: 80px !important;
  }
  .mt-20-lg {
    margin-top: 80px !important;
  }
  .mb-20-lg {
    margin-bottom: 80px !important;
  }
  .mx-20-lg {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-lg {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-lg-minus {
    margin: -80px !important;
  }
  .mr-20-lg-minus {
    margin-right: -80px !important;
  }
  .ml-20-lg-minus {
    margin-left: -80px !important;
  }
  .mt-20-lg-minus {
    margin-top: -80px !important;
  }
  .mb-20-lg-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 1200px) {
  .mx-auto-xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-xl {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-xl {
    margin-left: auto !important;
  }
  .mr-auto-xl {
    margin-right: auto !important;
  }
  .mt-auto-xl {
    margin-top: auto !important;
  }
  .mb-auto-xl {
    margin-bottom: auto !important;
  }
  .p-0-xl {
    padding: 0 !important;
  }
  .pl-0-xl {
    padding-left: 0 !important;
  }
  .pr-0-xl {
    padding-right: 0 !important;
  }
  .pt-0-xl {
    padding-top: 0 !important;
  }
  .pb-0-xl {
    padding-bottom: 0 !important;
  }
  .m-0-xl {
    margin: 0 !important;
  }
  .ml-0-xl {
    margin-left: 0 !important;
  }
  .mr-0-xl {
    margin-right: 0 !important;
  }
  .mt-0-xl {
    margin-top: 0 !important;
  }
  .mb-0-xl {
    margin-bottom: 0 !important;
  }
  .p-1-xl {
    padding: 4px !important;
  }
  .pr-1-xl {
    padding-right: 4px !important;
  }
  .pl-1-xl {
    padding-left: 4px !important;
  }
  .pt-1-xl {
    padding-top: 4px !important;
  }
  .pb-1-xl {
    padding-bottom: 4px !important;
  }
  .px-1-xl {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-xl {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-xl {
    margin: 4px !important;
  }
  .mr-1-xl {
    margin-right: 4px !important;
  }
  .ml-1-xl {
    margin-left: 4px !important;
  }
  .mt-1-xl {
    margin-top: 4px !important;
  }
  .mb-1-xl {
    margin-bottom: 4px !important;
  }
  .mx-1-xl {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-xl {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-xl-minus {
    margin: -4px !important;
  }
  .mr-1-xl-minus {
    margin-right: -4px !important;
  }
  .ml-1-xl-minus {
    margin-left: -4px !important;
  }
  .mt-1-xl-minus {
    margin-top: -4px !important;
  }
  .mb-1-xl-minus {
    margin-bottom: -4px !important;
  }
  .p-2-xl {
    padding: 8px !important;
  }
  .pr-2-xl {
    padding-right: 8px !important;
  }
  .pl-2-xl {
    padding-left: 8px !important;
  }
  .pt-2-xl {
    padding-top: 8px !important;
  }
  .pb-2-xl {
    padding-bottom: 8px !important;
  }
  .px-2-xl {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-xl {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-xl {
    margin: 8px !important;
  }
  .mr-2-xl {
    margin-right: 8px !important;
  }
  .ml-2-xl {
    margin-left: 8px !important;
  }
  .mt-2-xl {
    margin-top: 8px !important;
  }
  .mb-2-xl {
    margin-bottom: 8px !important;
  }
  .mx-2-xl {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-xl {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-xl-minus {
    margin: -8px !important;
  }
  .mr-2-xl-minus {
    margin-right: -8px !important;
  }
  .ml-2-xl-minus {
    margin-left: -8px !important;
  }
  .mt-2-xl-minus {
    margin-top: -8px !important;
  }
  .mb-2-xl-minus {
    margin-bottom: -8px !important;
  }
  .p-3-xl {
    padding: 12px !important;
  }
  .pr-3-xl {
    padding-right: 12px !important;
  }
  .pl-3-xl {
    padding-left: 12px !important;
  }
  .pt-3-xl {
    padding-top: 12px !important;
  }
  .pb-3-xl {
    padding-bottom: 12px !important;
  }
  .px-3-xl {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-xl {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-xl {
    margin: 12px !important;
  }
  .mr-3-xl {
    margin-right: 12px !important;
  }
  .ml-3-xl {
    margin-left: 12px !important;
  }
  .mt-3-xl {
    margin-top: 12px !important;
  }
  .mb-3-xl {
    margin-bottom: 12px !important;
  }
  .mx-3-xl {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-xl {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-xl-minus {
    margin: -12px !important;
  }
  .mr-3-xl-minus {
    margin-right: -12px !important;
  }
  .ml-3-xl-minus {
    margin-left: -12px !important;
  }
  .mt-3-xl-minus {
    margin-top: -12px !important;
  }
  .mb-3-xl-minus {
    margin-bottom: -12px !important;
  }
  .p-4-xl {
    padding: 16px !important;
  }
  .pr-4-xl {
    padding-right: 16px !important;
  }
  .pl-4-xl {
    padding-left: 16px !important;
  }
  .pt-4-xl {
    padding-top: 16px !important;
  }
  .pb-4-xl {
    padding-bottom: 16px !important;
  }
  .px-4-xl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-xl {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-xl {
    margin: 16px !important;
  }
  .mr-4-xl {
    margin-right: 16px !important;
  }
  .ml-4-xl {
    margin-left: 16px !important;
  }
  .mt-4-xl {
    margin-top: 16px !important;
  }
  .mb-4-xl {
    margin-bottom: 16px !important;
  }
  .mx-4-xl {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-xl {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-xl-minus {
    margin: -16px !important;
  }
  .mr-4-xl-minus {
    margin-right: -16px !important;
  }
  .ml-4-xl-minus {
    margin-left: -16px !important;
  }
  .mt-4-xl-minus {
    margin-top: -16px !important;
  }
  .mb-4-xl-minus {
    margin-bottom: -16px !important;
  }
  .p-5-xl {
    padding: 20px !important;
  }
  .pr-5-xl {
    padding-right: 20px !important;
  }
  .pl-5-xl {
    padding-left: 20px !important;
  }
  .pt-5-xl {
    padding-top: 20px !important;
  }
  .pb-5-xl {
    padding-bottom: 20px !important;
  }
  .px-5-xl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-xl {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-xl {
    margin: 20px !important;
  }
  .mr-5-xl {
    margin-right: 20px !important;
  }
  .ml-5-xl {
    margin-left: 20px !important;
  }
  .mt-5-xl {
    margin-top: 20px !important;
  }
  .mb-5-xl {
    margin-bottom: 20px !important;
  }
  .mx-5-xl {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-xl {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-xl-minus {
    margin: -20px !important;
  }
  .mr-5-xl-minus {
    margin-right: -20px !important;
  }
  .ml-5-xl-minus {
    margin-left: -20px !important;
  }
  .mt-5-xl-minus {
    margin-top: -20px !important;
  }
  .mb-5-xl-minus {
    margin-bottom: -20px !important;
  }
  .p-6-xl {
    padding: 24px !important;
  }
  .pr-6-xl {
    padding-right: 24px !important;
  }
  .pl-6-xl {
    padding-left: 24px !important;
  }
  .pt-6-xl {
    padding-top: 24px !important;
  }
  .pb-6-xl {
    padding-bottom: 24px !important;
  }
  .px-6-xl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-xl {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-xl {
    margin: 24px !important;
  }
  .mr-6-xl {
    margin-right: 24px !important;
  }
  .ml-6-xl {
    margin-left: 24px !important;
  }
  .mt-6-xl {
    margin-top: 24px !important;
  }
  .mb-6-xl {
    margin-bottom: 24px !important;
  }
  .mx-6-xl {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-xl {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-xl-minus {
    margin: -24px !important;
  }
  .mr-6-xl-minus {
    margin-right: -24px !important;
  }
  .ml-6-xl-minus {
    margin-left: -24px !important;
  }
  .mt-6-xl-minus {
    margin-top: -24px !important;
  }
  .mb-6-xl-minus {
    margin-bottom: -24px !important;
  }
  .p-7-xl {
    padding: 28px !important;
  }
  .pr-7-xl {
    padding-right: 28px !important;
  }
  .pl-7-xl {
    padding-left: 28px !important;
  }
  .pt-7-xl {
    padding-top: 28px !important;
  }
  .pb-7-xl {
    padding-bottom: 28px !important;
  }
  .px-7-xl {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-xl {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-xl {
    margin: 28px !important;
  }
  .mr-7-xl {
    margin-right: 28px !important;
  }
  .ml-7-xl {
    margin-left: 28px !important;
  }
  .mt-7-xl {
    margin-top: 28px !important;
  }
  .mb-7-xl {
    margin-bottom: 28px !important;
  }
  .mx-7-xl {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-xl {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-xl-minus {
    margin: -28px !important;
  }
  .mr-7-xl-minus {
    margin-right: -28px !important;
  }
  .ml-7-xl-minus {
    margin-left: -28px !important;
  }
  .mt-7-xl-minus {
    margin-top: -28px !important;
  }
  .mb-7-xl-minus {
    margin-bottom: -28px !important;
  }
  .p-8-xl {
    padding: 32px !important;
  }
  .pr-8-xl {
    padding-right: 32px !important;
  }
  .pl-8-xl {
    padding-left: 32px !important;
  }
  .pt-8-xl {
    padding-top: 32px !important;
  }
  .pb-8-xl {
    padding-bottom: 32px !important;
  }
  .px-8-xl {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-xl {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-xl {
    margin: 32px !important;
  }
  .mr-8-xl {
    margin-right: 32px !important;
  }
  .ml-8-xl {
    margin-left: 32px !important;
  }
  .mt-8-xl {
    margin-top: 32px !important;
  }
  .mb-8-xl {
    margin-bottom: 32px !important;
  }
  .mx-8-xl {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-xl {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-xl-minus {
    margin: -32px !important;
  }
  .mr-8-xl-minus {
    margin-right: -32px !important;
  }
  .ml-8-xl-minus {
    margin-left: -32px !important;
  }
  .mt-8-xl-minus {
    margin-top: -32px !important;
  }
  .mb-8-xl-minus {
    margin-bottom: -32px !important;
  }
  .p-9-xl {
    padding: 36px !important;
  }
  .pr-9-xl {
    padding-right: 36px !important;
  }
  .pl-9-xl {
    padding-left: 36px !important;
  }
  .pt-9-xl {
    padding-top: 36px !important;
  }
  .pb-9-xl {
    padding-bottom: 36px !important;
  }
  .px-9-xl {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-xl {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-xl {
    margin: 36px !important;
  }
  .mr-9-xl {
    margin-right: 36px !important;
  }
  .ml-9-xl {
    margin-left: 36px !important;
  }
  .mt-9-xl {
    margin-top: 36px !important;
  }
  .mb-9-xl {
    margin-bottom: 36px !important;
  }
  .mx-9-xl {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-xl {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-xl-minus {
    margin: -36px !important;
  }
  .mr-9-xl-minus {
    margin-right: -36px !important;
  }
  .ml-9-xl-minus {
    margin-left: -36px !important;
  }
  .mt-9-xl-minus {
    margin-top: -36px !important;
  }
  .mb-9-xl-minus {
    margin-bottom: -36px !important;
  }
  .p-10-xl {
    padding: 40px !important;
  }
  .pr-10-xl {
    padding-right: 40px !important;
  }
  .pl-10-xl {
    padding-left: 40px !important;
  }
  .pt-10-xl {
    padding-top: 40px !important;
  }
  .pb-10-xl {
    padding-bottom: 40px !important;
  }
  .px-10-xl {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-xl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-xl {
    margin: 40px !important;
  }
  .mr-10-xl {
    margin-right: 40px !important;
  }
  .ml-10-xl {
    margin-left: 40px !important;
  }
  .mt-10-xl {
    margin-top: 40px !important;
  }
  .mb-10-xl {
    margin-bottom: 40px !important;
  }
  .mx-10-xl {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-xl {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-xl-minus {
    margin: -40px !important;
  }
  .mr-10-xl-minus {
    margin-right: -40px !important;
  }
  .ml-10-xl-minus {
    margin-left: -40px !important;
  }
  .mt-10-xl-minus {
    margin-top: -40px !important;
  }
  .mb-10-xl-minus {
    margin-bottom: -40px !important;
  }
  .p-11-xl {
    padding: 44px !important;
  }
  .pr-11-xl {
    padding-right: 44px !important;
  }
  .pl-11-xl {
    padding-left: 44px !important;
  }
  .pt-11-xl {
    padding-top: 44px !important;
  }
  .pb-11-xl {
    padding-bottom: 44px !important;
  }
  .px-11-xl {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-xl {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-xl {
    margin: 44px !important;
  }
  .mr-11-xl {
    margin-right: 44px !important;
  }
  .ml-11-xl {
    margin-left: 44px !important;
  }
  .mt-11-xl {
    margin-top: 44px !important;
  }
  .mb-11-xl {
    margin-bottom: 44px !important;
  }
  .mx-11-xl {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-xl {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-xl-minus {
    margin: -44px !important;
  }
  .mr-11-xl-minus {
    margin-right: -44px !important;
  }
  .ml-11-xl-minus {
    margin-left: -44px !important;
  }
  .mt-11-xl-minus {
    margin-top: -44px !important;
  }
  .mb-11-xl-minus {
    margin-bottom: -44px !important;
  }
  .p-12-xl {
    padding: 48px !important;
  }
  .pr-12-xl {
    padding-right: 48px !important;
  }
  .pl-12-xl {
    padding-left: 48px !important;
  }
  .pt-12-xl {
    padding-top: 48px !important;
  }
  .pb-12-xl {
    padding-bottom: 48px !important;
  }
  .px-12-xl {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-xl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-xl {
    margin: 48px !important;
  }
  .mr-12-xl {
    margin-right: 48px !important;
  }
  .ml-12-xl {
    margin-left: 48px !important;
  }
  .mt-12-xl {
    margin-top: 48px !important;
  }
  .mb-12-xl {
    margin-bottom: 48px !important;
  }
  .mx-12-xl {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-xl {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-xl-minus {
    margin: -48px !important;
  }
  .mr-12-xl-minus {
    margin-right: -48px !important;
  }
  .ml-12-xl-minus {
    margin-left: -48px !important;
  }
  .mt-12-xl-minus {
    margin-top: -48px !important;
  }
  .mb-12-xl-minus {
    margin-bottom: -48px !important;
  }
  .p-13-xl {
    padding: 52px !important;
  }
  .pr-13-xl {
    padding-right: 52px !important;
  }
  .pl-13-xl {
    padding-left: 52px !important;
  }
  .pt-13-xl {
    padding-top: 52px !important;
  }
  .pb-13-xl {
    padding-bottom: 52px !important;
  }
  .px-13-xl {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-xl {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-xl {
    margin: 52px !important;
  }
  .mr-13-xl {
    margin-right: 52px !important;
  }
  .ml-13-xl {
    margin-left: 52px !important;
  }
  .mt-13-xl {
    margin-top: 52px !important;
  }
  .mb-13-xl {
    margin-bottom: 52px !important;
  }
  .mx-13-xl {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-xl {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-xl-minus {
    margin: -52px !important;
  }
  .mr-13-xl-minus {
    margin-right: -52px !important;
  }
  .ml-13-xl-minus {
    margin-left: -52px !important;
  }
  .mt-13-xl-minus {
    margin-top: -52px !important;
  }
  .mb-13-xl-minus {
    margin-bottom: -52px !important;
  }
  .p-14-xl {
    padding: 56px !important;
  }
  .pr-14-xl {
    padding-right: 56px !important;
  }
  .pl-14-xl {
    padding-left: 56px !important;
  }
  .pt-14-xl {
    padding-top: 56px !important;
  }
  .pb-14-xl {
    padding-bottom: 56px !important;
  }
  .px-14-xl {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-xl {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-xl {
    margin: 56px !important;
  }
  .mr-14-xl {
    margin-right: 56px !important;
  }
  .ml-14-xl {
    margin-left: 56px !important;
  }
  .mt-14-xl {
    margin-top: 56px !important;
  }
  .mb-14-xl {
    margin-bottom: 56px !important;
  }
  .mx-14-xl {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-xl {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-xl-minus {
    margin: -56px !important;
  }
  .mr-14-xl-minus {
    margin-right: -56px !important;
  }
  .ml-14-xl-minus {
    margin-left: -56px !important;
  }
  .mt-14-xl-minus {
    margin-top: -56px !important;
  }
  .mb-14-xl-minus {
    margin-bottom: -56px !important;
  }
  .p-15-xl {
    padding: 60px !important;
  }
  .pr-15-xl {
    padding-right: 60px !important;
  }
  .pl-15-xl {
    padding-left: 60px !important;
  }
  .pt-15-xl {
    padding-top: 60px !important;
  }
  .pb-15-xl {
    padding-bottom: 60px !important;
  }
  .px-15-xl {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-xl {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-xl {
    margin: 60px !important;
  }
  .mr-15-xl {
    margin-right: 60px !important;
  }
  .ml-15-xl {
    margin-left: 60px !important;
  }
  .mt-15-xl {
    margin-top: 60px !important;
  }
  .mb-15-xl {
    margin-bottom: 60px !important;
  }
  .mx-15-xl {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-xl {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-xl-minus {
    margin: -60px !important;
  }
  .mr-15-xl-minus {
    margin-right: -60px !important;
  }
  .ml-15-xl-minus {
    margin-left: -60px !important;
  }
  .mt-15-xl-minus {
    margin-top: -60px !important;
  }
  .mb-15-xl-minus {
    margin-bottom: -60px !important;
  }
  .p-16-xl {
    padding: 64px !important;
  }
  .pr-16-xl {
    padding-right: 64px !important;
  }
  .pl-16-xl {
    padding-left: 64px !important;
  }
  .pt-16-xl {
    padding-top: 64px !important;
  }
  .pb-16-xl {
    padding-bottom: 64px !important;
  }
  .px-16-xl {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-xl {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-xl {
    margin: 64px !important;
  }
  .mr-16-xl {
    margin-right: 64px !important;
  }
  .ml-16-xl {
    margin-left: 64px !important;
  }
  .mt-16-xl {
    margin-top: 64px !important;
  }
  .mb-16-xl {
    margin-bottom: 64px !important;
  }
  .mx-16-xl {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-xl {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-xl-minus {
    margin: -64px !important;
  }
  .mr-16-xl-minus {
    margin-right: -64px !important;
  }
  .ml-16-xl-minus {
    margin-left: -64px !important;
  }
  .mt-16-xl-minus {
    margin-top: -64px !important;
  }
  .mb-16-xl-minus {
    margin-bottom: -64px !important;
  }
  .p-17-xl {
    padding: 68px !important;
  }
  .pr-17-xl {
    padding-right: 68px !important;
  }
  .pl-17-xl {
    padding-left: 68px !important;
  }
  .pt-17-xl {
    padding-top: 68px !important;
  }
  .pb-17-xl {
    padding-bottom: 68px !important;
  }
  .px-17-xl {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-xl {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-xl {
    margin: 68px !important;
  }
  .mr-17-xl {
    margin-right: 68px !important;
  }
  .ml-17-xl {
    margin-left: 68px !important;
  }
  .mt-17-xl {
    margin-top: 68px !important;
  }
  .mb-17-xl {
    margin-bottom: 68px !important;
  }
  .mx-17-xl {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-xl {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-xl-minus {
    margin: -68px !important;
  }
  .mr-17-xl-minus {
    margin-right: -68px !important;
  }
  .ml-17-xl-minus {
    margin-left: -68px !important;
  }
  .mt-17-xl-minus {
    margin-top: -68px !important;
  }
  .mb-17-xl-minus {
    margin-bottom: -68px !important;
  }
  .p-18-xl {
    padding: 72px !important;
  }
  .pr-18-xl {
    padding-right: 72px !important;
  }
  .pl-18-xl {
    padding-left: 72px !important;
  }
  .pt-18-xl {
    padding-top: 72px !important;
  }
  .pb-18-xl {
    padding-bottom: 72px !important;
  }
  .px-18-xl {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-xl {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-xl {
    margin: 72px !important;
  }
  .mr-18-xl {
    margin-right: 72px !important;
  }
  .ml-18-xl {
    margin-left: 72px !important;
  }
  .mt-18-xl {
    margin-top: 72px !important;
  }
  .mb-18-xl {
    margin-bottom: 72px !important;
  }
  .mx-18-xl {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-xl {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-xl-minus {
    margin: -72px !important;
  }
  .mr-18-xl-minus {
    margin-right: -72px !important;
  }
  .ml-18-xl-minus {
    margin-left: -72px !important;
  }
  .mt-18-xl-minus {
    margin-top: -72px !important;
  }
  .mb-18-xl-minus {
    margin-bottom: -72px !important;
  }
  .p-19-xl {
    padding: 76px !important;
  }
  .pr-19-xl {
    padding-right: 76px !important;
  }
  .pl-19-xl {
    padding-left: 76px !important;
  }
  .pt-19-xl {
    padding-top: 76px !important;
  }
  .pb-19-xl {
    padding-bottom: 76px !important;
  }
  .px-19-xl {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-xl {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-xl {
    margin: 76px !important;
  }
  .mr-19-xl {
    margin-right: 76px !important;
  }
  .ml-19-xl {
    margin-left: 76px !important;
  }
  .mt-19-xl {
    margin-top: 76px !important;
  }
  .mb-19-xl {
    margin-bottom: 76px !important;
  }
  .mx-19-xl {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-xl {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-xl-minus {
    margin: -76px !important;
  }
  .mr-19-xl-minus {
    margin-right: -76px !important;
  }
  .ml-19-xl-minus {
    margin-left: -76px !important;
  }
  .mt-19-xl-minus {
    margin-top: -76px !important;
  }
  .mb-19-xl-minus {
    margin-bottom: -76px !important;
  }
  .p-20-xl {
    padding: 80px !important;
  }
  .pr-20-xl {
    padding-right: 80px !important;
  }
  .pl-20-xl {
    padding-left: 80px !important;
  }
  .pt-20-xl {
    padding-top: 80px !important;
  }
  .pb-20-xl {
    padding-bottom: 80px !important;
  }
  .px-20-xl {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-xl {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-xl {
    margin: 80px !important;
  }
  .mr-20-xl {
    margin-right: 80px !important;
  }
  .ml-20-xl {
    margin-left: 80px !important;
  }
  .mt-20-xl {
    margin-top: 80px !important;
  }
  .mb-20-xl {
    margin-bottom: 80px !important;
  }
  .mx-20-xl {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-xl {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-xl-minus {
    margin: -80px !important;
  }
  .mr-20-xl-minus {
    margin-right: -80px !important;
  }
  .ml-20-xl-minus {
    margin-left: -80px !important;
  }
  .mt-20-xl-minus {
    margin-top: -80px !important;
  }
  .mb-20-xl-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 1400px) {
  .mx-auto-xxl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-xxl {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-xxl {
    margin-left: auto !important;
  }
  .mr-auto-xxl {
    margin-right: auto !important;
  }
  .mt-auto-xxl {
    margin-top: auto !important;
  }
  .mb-auto-xxl {
    margin-bottom: auto !important;
  }
  .p-0-xxl {
    padding: 0 !important;
  }
  .pl-0-xxl {
    padding-left: 0 !important;
  }
  .pr-0-xxl {
    padding-right: 0 !important;
  }
  .pt-0-xxl {
    padding-top: 0 !important;
  }
  .pb-0-xxl {
    padding-bottom: 0 !important;
  }
  .m-0-xxl {
    margin: 0 !important;
  }
  .ml-0-xxl {
    margin-left: 0 !important;
  }
  .mr-0-xxl {
    margin-right: 0 !important;
  }
  .mt-0-xxl {
    margin-top: 0 !important;
  }
  .mb-0-xxl {
    margin-bottom: 0 !important;
  }
  .p-1-xxl {
    padding: 4px !important;
  }
  .pr-1-xxl {
    padding-right: 4px !important;
  }
  .pl-1-xxl {
    padding-left: 4px !important;
  }
  .pt-1-xxl {
    padding-top: 4px !important;
  }
  .pb-1-xxl {
    padding-bottom: 4px !important;
  }
  .px-1-xxl {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-xxl {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-xxl {
    margin: 4px !important;
  }
  .mr-1-xxl {
    margin-right: 4px !important;
  }
  .ml-1-xxl {
    margin-left: 4px !important;
  }
  .mt-1-xxl {
    margin-top: 4px !important;
  }
  .mb-1-xxl {
    margin-bottom: 4px !important;
  }
  .mx-1-xxl {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-xxl {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-xxl-minus {
    margin: -4px !important;
  }
  .mr-1-xxl-minus {
    margin-right: -4px !important;
  }
  .ml-1-xxl-minus {
    margin-left: -4px !important;
  }
  .mt-1-xxl-minus {
    margin-top: -4px !important;
  }
  .mb-1-xxl-minus {
    margin-bottom: -4px !important;
  }
  .p-2-xxl {
    padding: 8px !important;
  }
  .pr-2-xxl {
    padding-right: 8px !important;
  }
  .pl-2-xxl {
    padding-left: 8px !important;
  }
  .pt-2-xxl {
    padding-top: 8px !important;
  }
  .pb-2-xxl {
    padding-bottom: 8px !important;
  }
  .px-2-xxl {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-xxl {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-xxl {
    margin: 8px !important;
  }
  .mr-2-xxl {
    margin-right: 8px !important;
  }
  .ml-2-xxl {
    margin-left: 8px !important;
  }
  .mt-2-xxl {
    margin-top: 8px !important;
  }
  .mb-2-xxl {
    margin-bottom: 8px !important;
  }
  .mx-2-xxl {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-xxl {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-xxl-minus {
    margin: -8px !important;
  }
  .mr-2-xxl-minus {
    margin-right: -8px !important;
  }
  .ml-2-xxl-minus {
    margin-left: -8px !important;
  }
  .mt-2-xxl-minus {
    margin-top: -8px !important;
  }
  .mb-2-xxl-minus {
    margin-bottom: -8px !important;
  }
  .p-3-xxl {
    padding: 12px !important;
  }
  .pr-3-xxl {
    padding-right: 12px !important;
  }
  .pl-3-xxl {
    padding-left: 12px !important;
  }
  .pt-3-xxl {
    padding-top: 12px !important;
  }
  .pb-3-xxl {
    padding-bottom: 12px !important;
  }
  .px-3-xxl {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-xxl {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-xxl {
    margin: 12px !important;
  }
  .mr-3-xxl {
    margin-right: 12px !important;
  }
  .ml-3-xxl {
    margin-left: 12px !important;
  }
  .mt-3-xxl {
    margin-top: 12px !important;
  }
  .mb-3-xxl {
    margin-bottom: 12px !important;
  }
  .mx-3-xxl {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-xxl {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-xxl-minus {
    margin: -12px !important;
  }
  .mr-3-xxl-minus {
    margin-right: -12px !important;
  }
  .ml-3-xxl-minus {
    margin-left: -12px !important;
  }
  .mt-3-xxl-minus {
    margin-top: -12px !important;
  }
  .mb-3-xxl-minus {
    margin-bottom: -12px !important;
  }
  .p-4-xxl {
    padding: 16px !important;
  }
  .pr-4-xxl {
    padding-right: 16px !important;
  }
  .pl-4-xxl {
    padding-left: 16px !important;
  }
  .pt-4-xxl {
    padding-top: 16px !important;
  }
  .pb-4-xxl {
    padding-bottom: 16px !important;
  }
  .px-4-xxl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-xxl {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-xxl {
    margin: 16px !important;
  }
  .mr-4-xxl {
    margin-right: 16px !important;
  }
  .ml-4-xxl {
    margin-left: 16px !important;
  }
  .mt-4-xxl {
    margin-top: 16px !important;
  }
  .mb-4-xxl {
    margin-bottom: 16px !important;
  }
  .mx-4-xxl {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-xxl {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-xxl-minus {
    margin: -16px !important;
  }
  .mr-4-xxl-minus {
    margin-right: -16px !important;
  }
  .ml-4-xxl-minus {
    margin-left: -16px !important;
  }
  .mt-4-xxl-minus {
    margin-top: -16px !important;
  }
  .mb-4-xxl-minus {
    margin-bottom: -16px !important;
  }
  .p-5-xxl {
    padding: 20px !important;
  }
  .pr-5-xxl {
    padding-right: 20px !important;
  }
  .pl-5-xxl {
    padding-left: 20px !important;
  }
  .pt-5-xxl {
    padding-top: 20px !important;
  }
  .pb-5-xxl {
    padding-bottom: 20px !important;
  }
  .px-5-xxl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-xxl {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-xxl {
    margin: 20px !important;
  }
  .mr-5-xxl {
    margin-right: 20px !important;
  }
  .ml-5-xxl {
    margin-left: 20px !important;
  }
  .mt-5-xxl {
    margin-top: 20px !important;
  }
  .mb-5-xxl {
    margin-bottom: 20px !important;
  }
  .mx-5-xxl {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-xxl {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-xxl-minus {
    margin: -20px !important;
  }
  .mr-5-xxl-minus {
    margin-right: -20px !important;
  }
  .ml-5-xxl-minus {
    margin-left: -20px !important;
  }
  .mt-5-xxl-minus {
    margin-top: -20px !important;
  }
  .mb-5-xxl-minus {
    margin-bottom: -20px !important;
  }
  .p-6-xxl {
    padding: 24px !important;
  }
  .pr-6-xxl {
    padding-right: 24px !important;
  }
  .pl-6-xxl {
    padding-left: 24px !important;
  }
  .pt-6-xxl {
    padding-top: 24px !important;
  }
  .pb-6-xxl {
    padding-bottom: 24px !important;
  }
  .px-6-xxl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-xxl {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-xxl {
    margin: 24px !important;
  }
  .mr-6-xxl {
    margin-right: 24px !important;
  }
  .ml-6-xxl {
    margin-left: 24px !important;
  }
  .mt-6-xxl {
    margin-top: 24px !important;
  }
  .mb-6-xxl {
    margin-bottom: 24px !important;
  }
  .mx-6-xxl {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-xxl {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-xxl-minus {
    margin: -24px !important;
  }
  .mr-6-xxl-minus {
    margin-right: -24px !important;
  }
  .ml-6-xxl-minus {
    margin-left: -24px !important;
  }
  .mt-6-xxl-minus {
    margin-top: -24px !important;
  }
  .mb-6-xxl-minus {
    margin-bottom: -24px !important;
  }
  .p-7-xxl {
    padding: 28px !important;
  }
  .pr-7-xxl {
    padding-right: 28px !important;
  }
  .pl-7-xxl {
    padding-left: 28px !important;
  }
  .pt-7-xxl {
    padding-top: 28px !important;
  }
  .pb-7-xxl {
    padding-bottom: 28px !important;
  }
  .px-7-xxl {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-xxl {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-xxl {
    margin: 28px !important;
  }
  .mr-7-xxl {
    margin-right: 28px !important;
  }
  .ml-7-xxl {
    margin-left: 28px !important;
  }
  .mt-7-xxl {
    margin-top: 28px !important;
  }
  .mb-7-xxl {
    margin-bottom: 28px !important;
  }
  .mx-7-xxl {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-xxl {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-xxl-minus {
    margin: -28px !important;
  }
  .mr-7-xxl-minus {
    margin-right: -28px !important;
  }
  .ml-7-xxl-minus {
    margin-left: -28px !important;
  }
  .mt-7-xxl-minus {
    margin-top: -28px !important;
  }
  .mb-7-xxl-minus {
    margin-bottom: -28px !important;
  }
  .p-8-xxl {
    padding: 32px !important;
  }
  .pr-8-xxl {
    padding-right: 32px !important;
  }
  .pl-8-xxl {
    padding-left: 32px !important;
  }
  .pt-8-xxl {
    padding-top: 32px !important;
  }
  .pb-8-xxl {
    padding-bottom: 32px !important;
  }
  .px-8-xxl {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-xxl {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-xxl {
    margin: 32px !important;
  }
  .mr-8-xxl {
    margin-right: 32px !important;
  }
  .ml-8-xxl {
    margin-left: 32px !important;
  }
  .mt-8-xxl {
    margin-top: 32px !important;
  }
  .mb-8-xxl {
    margin-bottom: 32px !important;
  }
  .mx-8-xxl {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-xxl {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-xxl-minus {
    margin: -32px !important;
  }
  .mr-8-xxl-minus {
    margin-right: -32px !important;
  }
  .ml-8-xxl-minus {
    margin-left: -32px !important;
  }
  .mt-8-xxl-minus {
    margin-top: -32px !important;
  }
  .mb-8-xxl-minus {
    margin-bottom: -32px !important;
  }
  .p-9-xxl {
    padding: 36px !important;
  }
  .pr-9-xxl {
    padding-right: 36px !important;
  }
  .pl-9-xxl {
    padding-left: 36px !important;
  }
  .pt-9-xxl {
    padding-top: 36px !important;
  }
  .pb-9-xxl {
    padding-bottom: 36px !important;
  }
  .px-9-xxl {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-xxl {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-xxl {
    margin: 36px !important;
  }
  .mr-9-xxl {
    margin-right: 36px !important;
  }
  .ml-9-xxl {
    margin-left: 36px !important;
  }
  .mt-9-xxl {
    margin-top: 36px !important;
  }
  .mb-9-xxl {
    margin-bottom: 36px !important;
  }
  .mx-9-xxl {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-xxl {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-xxl-minus {
    margin: -36px !important;
  }
  .mr-9-xxl-minus {
    margin-right: -36px !important;
  }
  .ml-9-xxl-minus {
    margin-left: -36px !important;
  }
  .mt-9-xxl-minus {
    margin-top: -36px !important;
  }
  .mb-9-xxl-minus {
    margin-bottom: -36px !important;
  }
  .p-10-xxl {
    padding: 40px !important;
  }
  .pr-10-xxl {
    padding-right: 40px !important;
  }
  .pl-10-xxl {
    padding-left: 40px !important;
  }
  .pt-10-xxl {
    padding-top: 40px !important;
  }
  .pb-10-xxl {
    padding-bottom: 40px !important;
  }
  .px-10-xxl {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-xxl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-xxl {
    margin: 40px !important;
  }
  .mr-10-xxl {
    margin-right: 40px !important;
  }
  .ml-10-xxl {
    margin-left: 40px !important;
  }
  .mt-10-xxl {
    margin-top: 40px !important;
  }
  .mb-10-xxl {
    margin-bottom: 40px !important;
  }
  .mx-10-xxl {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-xxl {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-xxl-minus {
    margin: -40px !important;
  }
  .mr-10-xxl-minus {
    margin-right: -40px !important;
  }
  .ml-10-xxl-minus {
    margin-left: -40px !important;
  }
  .mt-10-xxl-minus {
    margin-top: -40px !important;
  }
  .mb-10-xxl-minus {
    margin-bottom: -40px !important;
  }
  .p-11-xxl {
    padding: 44px !important;
  }
  .pr-11-xxl {
    padding-right: 44px !important;
  }
  .pl-11-xxl {
    padding-left: 44px !important;
  }
  .pt-11-xxl {
    padding-top: 44px !important;
  }
  .pb-11-xxl {
    padding-bottom: 44px !important;
  }
  .px-11-xxl {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-xxl {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-xxl {
    margin: 44px !important;
  }
  .mr-11-xxl {
    margin-right: 44px !important;
  }
  .ml-11-xxl {
    margin-left: 44px !important;
  }
  .mt-11-xxl {
    margin-top: 44px !important;
  }
  .mb-11-xxl {
    margin-bottom: 44px !important;
  }
  .mx-11-xxl {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-xxl {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-xxl-minus {
    margin: -44px !important;
  }
  .mr-11-xxl-minus {
    margin-right: -44px !important;
  }
  .ml-11-xxl-minus {
    margin-left: -44px !important;
  }
  .mt-11-xxl-minus {
    margin-top: -44px !important;
  }
  .mb-11-xxl-minus {
    margin-bottom: -44px !important;
  }
  .p-12-xxl {
    padding: 48px !important;
  }
  .pr-12-xxl {
    padding-right: 48px !important;
  }
  .pl-12-xxl {
    padding-left: 48px !important;
  }
  .pt-12-xxl {
    padding-top: 48px !important;
  }
  .pb-12-xxl {
    padding-bottom: 48px !important;
  }
  .px-12-xxl {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-xxl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-xxl {
    margin: 48px !important;
  }
  .mr-12-xxl {
    margin-right: 48px !important;
  }
  .ml-12-xxl {
    margin-left: 48px !important;
  }
  .mt-12-xxl {
    margin-top: 48px !important;
  }
  .mb-12-xxl {
    margin-bottom: 48px !important;
  }
  .mx-12-xxl {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-xxl {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-xxl-minus {
    margin: -48px !important;
  }
  .mr-12-xxl-minus {
    margin-right: -48px !important;
  }
  .ml-12-xxl-minus {
    margin-left: -48px !important;
  }
  .mt-12-xxl-minus {
    margin-top: -48px !important;
  }
  .mb-12-xxl-minus {
    margin-bottom: -48px !important;
  }
  .p-13-xxl {
    padding: 52px !important;
  }
  .pr-13-xxl {
    padding-right: 52px !important;
  }
  .pl-13-xxl {
    padding-left: 52px !important;
  }
  .pt-13-xxl {
    padding-top: 52px !important;
  }
  .pb-13-xxl {
    padding-bottom: 52px !important;
  }
  .px-13-xxl {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-xxl {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-xxl {
    margin: 52px !important;
  }
  .mr-13-xxl {
    margin-right: 52px !important;
  }
  .ml-13-xxl {
    margin-left: 52px !important;
  }
  .mt-13-xxl {
    margin-top: 52px !important;
  }
  .mb-13-xxl {
    margin-bottom: 52px !important;
  }
  .mx-13-xxl {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-xxl {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-xxl-minus {
    margin: -52px !important;
  }
  .mr-13-xxl-minus {
    margin-right: -52px !important;
  }
  .ml-13-xxl-minus {
    margin-left: -52px !important;
  }
  .mt-13-xxl-minus {
    margin-top: -52px !important;
  }
  .mb-13-xxl-minus {
    margin-bottom: -52px !important;
  }
  .p-14-xxl {
    padding: 56px !important;
  }
  .pr-14-xxl {
    padding-right: 56px !important;
  }
  .pl-14-xxl {
    padding-left: 56px !important;
  }
  .pt-14-xxl {
    padding-top: 56px !important;
  }
  .pb-14-xxl {
    padding-bottom: 56px !important;
  }
  .px-14-xxl {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-xxl {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-xxl {
    margin: 56px !important;
  }
  .mr-14-xxl {
    margin-right: 56px !important;
  }
  .ml-14-xxl {
    margin-left: 56px !important;
  }
  .mt-14-xxl {
    margin-top: 56px !important;
  }
  .mb-14-xxl {
    margin-bottom: 56px !important;
  }
  .mx-14-xxl {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-xxl {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-xxl-minus {
    margin: -56px !important;
  }
  .mr-14-xxl-minus {
    margin-right: -56px !important;
  }
  .ml-14-xxl-minus {
    margin-left: -56px !important;
  }
  .mt-14-xxl-minus {
    margin-top: -56px !important;
  }
  .mb-14-xxl-minus {
    margin-bottom: -56px !important;
  }
  .p-15-xxl {
    padding: 60px !important;
  }
  .pr-15-xxl {
    padding-right: 60px !important;
  }
  .pl-15-xxl {
    padding-left: 60px !important;
  }
  .pt-15-xxl {
    padding-top: 60px !important;
  }
  .pb-15-xxl {
    padding-bottom: 60px !important;
  }
  .px-15-xxl {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-xxl {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-xxl {
    margin: 60px !important;
  }
  .mr-15-xxl {
    margin-right: 60px !important;
  }
  .ml-15-xxl {
    margin-left: 60px !important;
  }
  .mt-15-xxl {
    margin-top: 60px !important;
  }
  .mb-15-xxl {
    margin-bottom: 60px !important;
  }
  .mx-15-xxl {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-xxl {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-xxl-minus {
    margin: -60px !important;
  }
  .mr-15-xxl-minus {
    margin-right: -60px !important;
  }
  .ml-15-xxl-minus {
    margin-left: -60px !important;
  }
  .mt-15-xxl-minus {
    margin-top: -60px !important;
  }
  .mb-15-xxl-minus {
    margin-bottom: -60px !important;
  }
  .p-16-xxl {
    padding: 64px !important;
  }
  .pr-16-xxl {
    padding-right: 64px !important;
  }
  .pl-16-xxl {
    padding-left: 64px !important;
  }
  .pt-16-xxl {
    padding-top: 64px !important;
  }
  .pb-16-xxl {
    padding-bottom: 64px !important;
  }
  .px-16-xxl {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-xxl {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-xxl {
    margin: 64px !important;
  }
  .mr-16-xxl {
    margin-right: 64px !important;
  }
  .ml-16-xxl {
    margin-left: 64px !important;
  }
  .mt-16-xxl {
    margin-top: 64px !important;
  }
  .mb-16-xxl {
    margin-bottom: 64px !important;
  }
  .mx-16-xxl {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-xxl {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-xxl-minus {
    margin: -64px !important;
  }
  .mr-16-xxl-minus {
    margin-right: -64px !important;
  }
  .ml-16-xxl-minus {
    margin-left: -64px !important;
  }
  .mt-16-xxl-minus {
    margin-top: -64px !important;
  }
  .mb-16-xxl-minus {
    margin-bottom: -64px !important;
  }
  .p-17-xxl {
    padding: 68px !important;
  }
  .pr-17-xxl {
    padding-right: 68px !important;
  }
  .pl-17-xxl {
    padding-left: 68px !important;
  }
  .pt-17-xxl {
    padding-top: 68px !important;
  }
  .pb-17-xxl {
    padding-bottom: 68px !important;
  }
  .px-17-xxl {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-xxl {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-xxl {
    margin: 68px !important;
  }
  .mr-17-xxl {
    margin-right: 68px !important;
  }
  .ml-17-xxl {
    margin-left: 68px !important;
  }
  .mt-17-xxl {
    margin-top: 68px !important;
  }
  .mb-17-xxl {
    margin-bottom: 68px !important;
  }
  .mx-17-xxl {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-xxl {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-xxl-minus {
    margin: -68px !important;
  }
  .mr-17-xxl-minus {
    margin-right: -68px !important;
  }
  .ml-17-xxl-minus {
    margin-left: -68px !important;
  }
  .mt-17-xxl-minus {
    margin-top: -68px !important;
  }
  .mb-17-xxl-minus {
    margin-bottom: -68px !important;
  }
  .p-18-xxl {
    padding: 72px !important;
  }
  .pr-18-xxl {
    padding-right: 72px !important;
  }
  .pl-18-xxl {
    padding-left: 72px !important;
  }
  .pt-18-xxl {
    padding-top: 72px !important;
  }
  .pb-18-xxl {
    padding-bottom: 72px !important;
  }
  .px-18-xxl {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-xxl {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-xxl {
    margin: 72px !important;
  }
  .mr-18-xxl {
    margin-right: 72px !important;
  }
  .ml-18-xxl {
    margin-left: 72px !important;
  }
  .mt-18-xxl {
    margin-top: 72px !important;
  }
  .mb-18-xxl {
    margin-bottom: 72px !important;
  }
  .mx-18-xxl {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-xxl {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-xxl-minus {
    margin: -72px !important;
  }
  .mr-18-xxl-minus {
    margin-right: -72px !important;
  }
  .ml-18-xxl-minus {
    margin-left: -72px !important;
  }
  .mt-18-xxl-minus {
    margin-top: -72px !important;
  }
  .mb-18-xxl-minus {
    margin-bottom: -72px !important;
  }
  .p-19-xxl {
    padding: 76px !important;
  }
  .pr-19-xxl {
    padding-right: 76px !important;
  }
  .pl-19-xxl {
    padding-left: 76px !important;
  }
  .pt-19-xxl {
    padding-top: 76px !important;
  }
  .pb-19-xxl {
    padding-bottom: 76px !important;
  }
  .px-19-xxl {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-xxl {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-xxl {
    margin: 76px !important;
  }
  .mr-19-xxl {
    margin-right: 76px !important;
  }
  .ml-19-xxl {
    margin-left: 76px !important;
  }
  .mt-19-xxl {
    margin-top: 76px !important;
  }
  .mb-19-xxl {
    margin-bottom: 76px !important;
  }
  .mx-19-xxl {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-xxl {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-xxl-minus {
    margin: -76px !important;
  }
  .mr-19-xxl-minus {
    margin-right: -76px !important;
  }
  .ml-19-xxl-minus {
    margin-left: -76px !important;
  }
  .mt-19-xxl-minus {
    margin-top: -76px !important;
  }
  .mb-19-xxl-minus {
    margin-bottom: -76px !important;
  }
  .p-20-xxl {
    padding: 80px !important;
  }
  .pr-20-xxl {
    padding-right: 80px !important;
  }
  .pl-20-xxl {
    padding-left: 80px !important;
  }
  .pt-20-xxl {
    padding-top: 80px !important;
  }
  .pb-20-xxl {
    padding-bottom: 80px !important;
  }
  .px-20-xxl {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-xxl {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-xxl {
    margin: 80px !important;
  }
  .mr-20-xxl {
    margin-right: 80px !important;
  }
  .ml-20-xxl {
    margin-left: 80px !important;
  }
  .mt-20-xxl {
    margin-top: 80px !important;
  }
  .mb-20-xxl {
    margin-bottom: 80px !important;
  }
  .mx-20-xxl {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-xxl {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-xxl-minus {
    margin: -80px !important;
  }
  .mr-20-xxl-minus {
    margin-right: -80px !important;
  }
  .ml-20-xxl-minus {
    margin-left: -80px !important;
  }
  .mt-20-xxl-minus {
    margin-top: -80px !important;
  }
  .mb-20-xxl-minus {
    margin-bottom: -80px !important;
  }
}
@container (min-width: 2000px) {
  .mx-auto-xxxl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-xxxl {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .ml-auto-xxxl {
    margin-left: auto !important;
  }
  .mr-auto-xxxl {
    margin-right: auto !important;
  }
  .mt-auto-xxxl {
    margin-top: auto !important;
  }
  .mb-auto-xxxl {
    margin-bottom: auto !important;
  }
  .p-0-xxxl {
    padding: 0 !important;
  }
  .pl-0-xxxl {
    padding-left: 0 !important;
  }
  .pr-0-xxxl {
    padding-right: 0 !important;
  }
  .pt-0-xxxl {
    padding-top: 0 !important;
  }
  .pb-0-xxxl {
    padding-bottom: 0 !important;
  }
  .m-0-xxxl {
    margin: 0 !important;
  }
  .ml-0-xxxl {
    margin-left: 0 !important;
  }
  .mr-0-xxxl {
    margin-right: 0 !important;
  }
  .mt-0-xxxl {
    margin-top: 0 !important;
  }
  .mb-0-xxxl {
    margin-bottom: 0 !important;
  }
  .p-1-xxxl {
    padding: 4px !important;
  }
  .pr-1-xxxl {
    padding-right: 4px !important;
  }
  .pl-1-xxxl {
    padding-left: 4px !important;
  }
  .pt-1-xxxl {
    padding-top: 4px !important;
  }
  .pb-1-xxxl {
    padding-bottom: 4px !important;
  }
  .px-1-xxxl {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-1-xxxl {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-1-xxxl {
    margin: 4px !important;
  }
  .mr-1-xxxl {
    margin-right: 4px !important;
  }
  .ml-1-xxxl {
    margin-left: 4px !important;
  }
  .mt-1-xxxl {
    margin-top: 4px !important;
  }
  .mb-1-xxxl {
    margin-bottom: 4px !important;
  }
  .mx-1-xxxl {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-1-xxxl {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .m-1-xxxl-minus {
    margin: -4px !important;
  }
  .mr-1-xxxl-minus {
    margin-right: -4px !important;
  }
  .ml-1-xxxl-minus {
    margin-left: -4px !important;
  }
  .mt-1-xxxl-minus {
    margin-top: -4px !important;
  }
  .mb-1-xxxl-minus {
    margin-bottom: -4px !important;
  }
  .p-2-xxxl {
    padding: 8px !important;
  }
  .pr-2-xxxl {
    padding-right: 8px !important;
  }
  .pl-2-xxxl {
    padding-left: 8px !important;
  }
  .pt-2-xxxl {
    padding-top: 8px !important;
  }
  .pb-2-xxxl {
    padding-bottom: 8px !important;
  }
  .px-2-xxxl {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-2-xxxl {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-2-xxxl {
    margin: 8px !important;
  }
  .mr-2-xxxl {
    margin-right: 8px !important;
  }
  .ml-2-xxxl {
    margin-left: 8px !important;
  }
  .mt-2-xxxl {
    margin-top: 8px !important;
  }
  .mb-2-xxxl {
    margin-bottom: 8px !important;
  }
  .mx-2-xxxl {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-2-xxxl {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .m-2-xxxl-minus {
    margin: -8px !important;
  }
  .mr-2-xxxl-minus {
    margin-right: -8px !important;
  }
  .ml-2-xxxl-minus {
    margin-left: -8px !important;
  }
  .mt-2-xxxl-minus {
    margin-top: -8px !important;
  }
  .mb-2-xxxl-minus {
    margin-bottom: -8px !important;
  }
  .p-3-xxxl {
    padding: 12px !important;
  }
  .pr-3-xxxl {
    padding-right: 12px !important;
  }
  .pl-3-xxxl {
    padding-left: 12px !important;
  }
  .pt-3-xxxl {
    padding-top: 12px !important;
  }
  .pb-3-xxxl {
    padding-bottom: 12px !important;
  }
  .px-3-xxxl {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .py-3-xxxl {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .m-3-xxxl {
    margin: 12px !important;
  }
  .mr-3-xxxl {
    margin-right: 12px !important;
  }
  .ml-3-xxxl {
    margin-left: 12px !important;
  }
  .mt-3-xxxl {
    margin-top: 12px !important;
  }
  .mb-3-xxxl {
    margin-bottom: 12px !important;
  }
  .mx-3-xxxl {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
  .my-3-xxxl {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .m-3-xxxl-minus {
    margin: -12px !important;
  }
  .mr-3-xxxl-minus {
    margin-right: -12px !important;
  }
  .ml-3-xxxl-minus {
    margin-left: -12px !important;
  }
  .mt-3-xxxl-minus {
    margin-top: -12px !important;
  }
  .mb-3-xxxl-minus {
    margin-bottom: -12px !important;
  }
  .p-4-xxxl {
    padding: 16px !important;
  }
  .pr-4-xxxl {
    padding-right: 16px !important;
  }
  .pl-4-xxxl {
    padding-left: 16px !important;
  }
  .pt-4-xxxl {
    padding-top: 16px !important;
  }
  .pb-4-xxxl {
    padding-bottom: 16px !important;
  }
  .px-4-xxxl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-4-xxxl {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-4-xxxl {
    margin: 16px !important;
  }
  .mr-4-xxxl {
    margin-right: 16px !important;
  }
  .ml-4-xxxl {
    margin-left: 16px !important;
  }
  .mt-4-xxxl {
    margin-top: 16px !important;
  }
  .mb-4-xxxl {
    margin-bottom: 16px !important;
  }
  .mx-4-xxxl {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-4-xxxl {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .m-4-xxxl-minus {
    margin: -16px !important;
  }
  .mr-4-xxxl-minus {
    margin-right: -16px !important;
  }
  .ml-4-xxxl-minus {
    margin-left: -16px !important;
  }
  .mt-4-xxxl-minus {
    margin-top: -16px !important;
  }
  .mb-4-xxxl-minus {
    margin-bottom: -16px !important;
  }
  .p-5-xxxl {
    padding: 20px !important;
  }
  .pr-5-xxxl {
    padding-right: 20px !important;
  }
  .pl-5-xxxl {
    padding-left: 20px !important;
  }
  .pt-5-xxxl {
    padding-top: 20px !important;
  }
  .pb-5-xxxl {
    padding-bottom: 20px !important;
  }
  .px-5-xxxl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-5-xxxl {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-5-xxxl {
    margin: 20px !important;
  }
  .mr-5-xxxl {
    margin-right: 20px !important;
  }
  .ml-5-xxxl {
    margin-left: 20px !important;
  }
  .mt-5-xxxl {
    margin-top: 20px !important;
  }
  .mb-5-xxxl {
    margin-bottom: 20px !important;
  }
  .mx-5-xxxl {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-5-xxxl {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .m-5-xxxl-minus {
    margin: -20px !important;
  }
  .mr-5-xxxl-minus {
    margin-right: -20px !important;
  }
  .ml-5-xxxl-minus {
    margin-left: -20px !important;
  }
  .mt-5-xxxl-minus {
    margin-top: -20px !important;
  }
  .mb-5-xxxl-minus {
    margin-bottom: -20px !important;
  }
  .p-6-xxxl {
    padding: 24px !important;
  }
  .pr-6-xxxl {
    padding-right: 24px !important;
  }
  .pl-6-xxxl {
    padding-left: 24px !important;
  }
  .pt-6-xxxl {
    padding-top: 24px !important;
  }
  .pb-6-xxxl {
    padding-bottom: 24px !important;
  }
  .px-6-xxxl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-6-xxxl {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-6-xxxl {
    margin: 24px !important;
  }
  .mr-6-xxxl {
    margin-right: 24px !important;
  }
  .ml-6-xxxl {
    margin-left: 24px !important;
  }
  .mt-6-xxxl {
    margin-top: 24px !important;
  }
  .mb-6-xxxl {
    margin-bottom: 24px !important;
  }
  .mx-6-xxxl {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-6-xxxl {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .m-6-xxxl-minus {
    margin: -24px !important;
  }
  .mr-6-xxxl-minus {
    margin-right: -24px !important;
  }
  .ml-6-xxxl-minus {
    margin-left: -24px !important;
  }
  .mt-6-xxxl-minus {
    margin-top: -24px !important;
  }
  .mb-6-xxxl-minus {
    margin-bottom: -24px !important;
  }
  .p-7-xxxl {
    padding: 28px !important;
  }
  .pr-7-xxxl {
    padding-right: 28px !important;
  }
  .pl-7-xxxl {
    padding-left: 28px !important;
  }
  .pt-7-xxxl {
    padding-top: 28px !important;
  }
  .pb-7-xxxl {
    padding-bottom: 28px !important;
  }
  .px-7-xxxl {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
  .py-7-xxxl {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .m-7-xxxl {
    margin: 28px !important;
  }
  .mr-7-xxxl {
    margin-right: 28px !important;
  }
  .ml-7-xxxl {
    margin-left: 28px !important;
  }
  .mt-7-xxxl {
    margin-top: 28px !important;
  }
  .mb-7-xxxl {
    margin-bottom: 28px !important;
  }
  .mx-7-xxxl {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }
  .my-7-xxxl {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  .m-7-xxxl-minus {
    margin: -28px !important;
  }
  .mr-7-xxxl-minus {
    margin-right: -28px !important;
  }
  .ml-7-xxxl-minus {
    margin-left: -28px !important;
  }
  .mt-7-xxxl-minus {
    margin-top: -28px !important;
  }
  .mb-7-xxxl-minus {
    margin-bottom: -28px !important;
  }
  .p-8-xxxl {
    padding: 32px !important;
  }
  .pr-8-xxxl {
    padding-right: 32px !important;
  }
  .pl-8-xxxl {
    padding-left: 32px !important;
  }
  .pt-8-xxxl {
    padding-top: 32px !important;
  }
  .pb-8-xxxl {
    padding-bottom: 32px !important;
  }
  .px-8-xxxl {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-8-xxxl {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-8-xxxl {
    margin: 32px !important;
  }
  .mr-8-xxxl {
    margin-right: 32px !important;
  }
  .ml-8-xxxl {
    margin-left: 32px !important;
  }
  .mt-8-xxxl {
    margin-top: 32px !important;
  }
  .mb-8-xxxl {
    margin-bottom: 32px !important;
  }
  .mx-8-xxxl {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-8-xxxl {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .m-8-xxxl-minus {
    margin: -32px !important;
  }
  .mr-8-xxxl-minus {
    margin-right: -32px !important;
  }
  .ml-8-xxxl-minus {
    margin-left: -32px !important;
  }
  .mt-8-xxxl-minus {
    margin-top: -32px !important;
  }
  .mb-8-xxxl-minus {
    margin-bottom: -32px !important;
  }
  .p-9-xxxl {
    padding: 36px !important;
  }
  .pr-9-xxxl {
    padding-right: 36px !important;
  }
  .pl-9-xxxl {
    padding-left: 36px !important;
  }
  .pt-9-xxxl {
    padding-top: 36px !important;
  }
  .pb-9-xxxl {
    padding-bottom: 36px !important;
  }
  .px-9-xxxl {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
  .py-9-xxxl {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-9-xxxl {
    margin: 36px !important;
  }
  .mr-9-xxxl {
    margin-right: 36px !important;
  }
  .ml-9-xxxl {
    margin-left: 36px !important;
  }
  .mt-9-xxxl {
    margin-top: 36px !important;
  }
  .mb-9-xxxl {
    margin-bottom: 36px !important;
  }
  .mx-9-xxxl {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
  .my-9-xxxl {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .m-9-xxxl-minus {
    margin: -36px !important;
  }
  .mr-9-xxxl-minus {
    margin-right: -36px !important;
  }
  .ml-9-xxxl-minus {
    margin-left: -36px !important;
  }
  .mt-9-xxxl-minus {
    margin-top: -36px !important;
  }
  .mb-9-xxxl-minus {
    margin-bottom: -36px !important;
  }
  .p-10-xxxl {
    padding: 40px !important;
  }
  .pr-10-xxxl {
    padding-right: 40px !important;
  }
  .pl-10-xxxl {
    padding-left: 40px !important;
  }
  .pt-10-xxxl {
    padding-top: 40px !important;
  }
  .pb-10-xxxl {
    padding-bottom: 40px !important;
  }
  .px-10-xxxl {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-10-xxxl {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-10-xxxl {
    margin: 40px !important;
  }
  .mr-10-xxxl {
    margin-right: 40px !important;
  }
  .ml-10-xxxl {
    margin-left: 40px !important;
  }
  .mt-10-xxxl {
    margin-top: 40px !important;
  }
  .mb-10-xxxl {
    margin-bottom: 40px !important;
  }
  .mx-10-xxxl {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-10-xxxl {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .m-10-xxxl-minus {
    margin: -40px !important;
  }
  .mr-10-xxxl-minus {
    margin-right: -40px !important;
  }
  .ml-10-xxxl-minus {
    margin-left: -40px !important;
  }
  .mt-10-xxxl-minus {
    margin-top: -40px !important;
  }
  .mb-10-xxxl-minus {
    margin-bottom: -40px !important;
  }
  .p-11-xxxl {
    padding: 44px !important;
  }
  .pr-11-xxxl {
    padding-right: 44px !important;
  }
  .pl-11-xxxl {
    padding-left: 44px !important;
  }
  .pt-11-xxxl {
    padding-top: 44px !important;
  }
  .pb-11-xxxl {
    padding-bottom: 44px !important;
  }
  .px-11-xxxl {
    padding-left: 44px !important;
    padding-right: 44px !important;
  }
  .py-11-xxxl {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .m-11-xxxl {
    margin: 44px !important;
  }
  .mr-11-xxxl {
    margin-right: 44px !important;
  }
  .ml-11-xxxl {
    margin-left: 44px !important;
  }
  .mt-11-xxxl {
    margin-top: 44px !important;
  }
  .mb-11-xxxl {
    margin-bottom: 44px !important;
  }
  .mx-11-xxxl {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }
  .my-11-xxxl {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }
  .m-11-xxxl-minus {
    margin: -44px !important;
  }
  .mr-11-xxxl-minus {
    margin-right: -44px !important;
  }
  .ml-11-xxxl-minus {
    margin-left: -44px !important;
  }
  .mt-11-xxxl-minus {
    margin-top: -44px !important;
  }
  .mb-11-xxxl-minus {
    margin-bottom: -44px !important;
  }
  .p-12-xxxl {
    padding: 48px !important;
  }
  .pr-12-xxxl {
    padding-right: 48px !important;
  }
  .pl-12-xxxl {
    padding-left: 48px !important;
  }
  .pt-12-xxxl {
    padding-top: 48px !important;
  }
  .pb-12-xxxl {
    padding-bottom: 48px !important;
  }
  .px-12-xxxl {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-12-xxxl {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-12-xxxl {
    margin: 48px !important;
  }
  .mr-12-xxxl {
    margin-right: 48px !important;
  }
  .ml-12-xxxl {
    margin-left: 48px !important;
  }
  .mt-12-xxxl {
    margin-top: 48px !important;
  }
  .mb-12-xxxl {
    margin-bottom: 48px !important;
  }
  .mx-12-xxxl {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-12-xxxl {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .m-12-xxxl-minus {
    margin: -48px !important;
  }
  .mr-12-xxxl-minus {
    margin-right: -48px !important;
  }
  .ml-12-xxxl-minus {
    margin-left: -48px !important;
  }
  .mt-12-xxxl-minus {
    margin-top: -48px !important;
  }
  .mb-12-xxxl-minus {
    margin-bottom: -48px !important;
  }
  .p-13-xxxl {
    padding: 52px !important;
  }
  .pr-13-xxxl {
    padding-right: 52px !important;
  }
  .pl-13-xxxl {
    padding-left: 52px !important;
  }
  .pt-13-xxxl {
    padding-top: 52px !important;
  }
  .pb-13-xxxl {
    padding-bottom: 52px !important;
  }
  .px-13-xxxl {
    padding-left: 52px !important;
    padding-right: 52px !important;
  }
  .py-13-xxxl {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .m-13-xxxl {
    margin: 52px !important;
  }
  .mr-13-xxxl {
    margin-right: 52px !important;
  }
  .ml-13-xxxl {
    margin-left: 52px !important;
  }
  .mt-13-xxxl {
    margin-top: 52px !important;
  }
  .mb-13-xxxl {
    margin-bottom: 52px !important;
  }
  .mx-13-xxxl {
    margin-left: 52px !important;
    margin-right: 52px !important;
  }
  .my-13-xxxl {
    margin-top: 52px !important;
    margin-bottom: 52px !important;
  }
  .m-13-xxxl-minus {
    margin: -52px !important;
  }
  .mr-13-xxxl-minus {
    margin-right: -52px !important;
  }
  .ml-13-xxxl-minus {
    margin-left: -52px !important;
  }
  .mt-13-xxxl-minus {
    margin-top: -52px !important;
  }
  .mb-13-xxxl-minus {
    margin-bottom: -52px !important;
  }
  .p-14-xxxl {
    padding: 56px !important;
  }
  .pr-14-xxxl {
    padding-right: 56px !important;
  }
  .pl-14-xxxl {
    padding-left: 56px !important;
  }
  .pt-14-xxxl {
    padding-top: 56px !important;
  }
  .pb-14-xxxl {
    padding-bottom: 56px !important;
  }
  .px-14-xxxl {
    padding-left: 56px !important;
    padding-right: 56px !important;
  }
  .py-14-xxxl {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .m-14-xxxl {
    margin: 56px !important;
  }
  .mr-14-xxxl {
    margin-right: 56px !important;
  }
  .ml-14-xxxl {
    margin-left: 56px !important;
  }
  .mt-14-xxxl {
    margin-top: 56px !important;
  }
  .mb-14-xxxl {
    margin-bottom: 56px !important;
  }
  .mx-14-xxxl {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }
  .my-14-xxxl {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }
  .m-14-xxxl-minus {
    margin: -56px !important;
  }
  .mr-14-xxxl-minus {
    margin-right: -56px !important;
  }
  .ml-14-xxxl-minus {
    margin-left: -56px !important;
  }
  .mt-14-xxxl-minus {
    margin-top: -56px !important;
  }
  .mb-14-xxxl-minus {
    margin-bottom: -56px !important;
  }
  .p-15-xxxl {
    padding: 60px !important;
  }
  .pr-15-xxxl {
    padding-right: 60px !important;
  }
  .pl-15-xxxl {
    padding-left: 60px !important;
  }
  .pt-15-xxxl {
    padding-top: 60px !important;
  }
  .pb-15-xxxl {
    padding-bottom: 60px !important;
  }
  .px-15-xxxl {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-15-xxxl {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-15-xxxl {
    margin: 60px !important;
  }
  .mr-15-xxxl {
    margin-right: 60px !important;
  }
  .ml-15-xxxl {
    margin-left: 60px !important;
  }
  .mt-15-xxxl {
    margin-top: 60px !important;
  }
  .mb-15-xxxl {
    margin-bottom: 60px !important;
  }
  .mx-15-xxxl {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-15-xxxl {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .m-15-xxxl-minus {
    margin: -60px !important;
  }
  .mr-15-xxxl-minus {
    margin-right: -60px !important;
  }
  .ml-15-xxxl-minus {
    margin-left: -60px !important;
  }
  .mt-15-xxxl-minus {
    margin-top: -60px !important;
  }
  .mb-15-xxxl-minus {
    margin-bottom: -60px !important;
  }
  .p-16-xxxl {
    padding: 64px !important;
  }
  .pr-16-xxxl {
    padding-right: 64px !important;
  }
  .pl-16-xxxl {
    padding-left: 64px !important;
  }
  .pt-16-xxxl {
    padding-top: 64px !important;
  }
  .pb-16-xxxl {
    padding-bottom: 64px !important;
  }
  .px-16-xxxl {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-16-xxxl {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-16-xxxl {
    margin: 64px !important;
  }
  .mr-16-xxxl {
    margin-right: 64px !important;
  }
  .ml-16-xxxl {
    margin-left: 64px !important;
  }
  .mt-16-xxxl {
    margin-top: 64px !important;
  }
  .mb-16-xxxl {
    margin-bottom: 64px !important;
  }
  .mx-16-xxxl {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-16-xxxl {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .m-16-xxxl-minus {
    margin: -64px !important;
  }
  .mr-16-xxxl-minus {
    margin-right: -64px !important;
  }
  .ml-16-xxxl-minus {
    margin-left: -64px !important;
  }
  .mt-16-xxxl-minus {
    margin-top: -64px !important;
  }
  .mb-16-xxxl-minus {
    margin-bottom: -64px !important;
  }
  .p-17-xxxl {
    padding: 68px !important;
  }
  .pr-17-xxxl {
    padding-right: 68px !important;
  }
  .pl-17-xxxl {
    padding-left: 68px !important;
  }
  .pt-17-xxxl {
    padding-top: 68px !important;
  }
  .pb-17-xxxl {
    padding-bottom: 68px !important;
  }
  .px-17-xxxl {
    padding-left: 68px !important;
    padding-right: 68px !important;
  }
  .py-17-xxxl {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }
  .m-17-xxxl {
    margin: 68px !important;
  }
  .mr-17-xxxl {
    margin-right: 68px !important;
  }
  .ml-17-xxxl {
    margin-left: 68px !important;
  }
  .mt-17-xxxl {
    margin-top: 68px !important;
  }
  .mb-17-xxxl {
    margin-bottom: 68px !important;
  }
  .mx-17-xxxl {
    margin-left: 68px !important;
    margin-right: 68px !important;
  }
  .my-17-xxxl {
    margin-top: 68px !important;
    margin-bottom: 68px !important;
  }
  .m-17-xxxl-minus {
    margin: -68px !important;
  }
  .mr-17-xxxl-minus {
    margin-right: -68px !important;
  }
  .ml-17-xxxl-minus {
    margin-left: -68px !important;
  }
  .mt-17-xxxl-minus {
    margin-top: -68px !important;
  }
  .mb-17-xxxl-minus {
    margin-bottom: -68px !important;
  }
  .p-18-xxxl {
    padding: 72px !important;
  }
  .pr-18-xxxl {
    padding-right: 72px !important;
  }
  .pl-18-xxxl {
    padding-left: 72px !important;
  }
  .pt-18-xxxl {
    padding-top: 72px !important;
  }
  .pb-18-xxxl {
    padding-bottom: 72px !important;
  }
  .px-18-xxxl {
    padding-left: 72px !important;
    padding-right: 72px !important;
  }
  .py-18-xxxl {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  .m-18-xxxl {
    margin: 72px !important;
  }
  .mr-18-xxxl {
    margin-right: 72px !important;
  }
  .ml-18-xxxl {
    margin-left: 72px !important;
  }
  .mt-18-xxxl {
    margin-top: 72px !important;
  }
  .mb-18-xxxl {
    margin-bottom: 72px !important;
  }
  .mx-18-xxxl {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }
  .my-18-xxxl {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }
  .m-18-xxxl-minus {
    margin: -72px !important;
  }
  .mr-18-xxxl-minus {
    margin-right: -72px !important;
  }
  .ml-18-xxxl-minus {
    margin-left: -72px !important;
  }
  .mt-18-xxxl-minus {
    margin-top: -72px !important;
  }
  .mb-18-xxxl-minus {
    margin-bottom: -72px !important;
  }
  .p-19-xxxl {
    padding: 76px !important;
  }
  .pr-19-xxxl {
    padding-right: 76px !important;
  }
  .pl-19-xxxl {
    padding-left: 76px !important;
  }
  .pt-19-xxxl {
    padding-top: 76px !important;
  }
  .pb-19-xxxl {
    padding-bottom: 76px !important;
  }
  .px-19-xxxl {
    padding-left: 76px !important;
    padding-right: 76px !important;
  }
  .py-19-xxxl {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
  }
  .m-19-xxxl {
    margin: 76px !important;
  }
  .mr-19-xxxl {
    margin-right: 76px !important;
  }
  .ml-19-xxxl {
    margin-left: 76px !important;
  }
  .mt-19-xxxl {
    margin-top: 76px !important;
  }
  .mb-19-xxxl {
    margin-bottom: 76px !important;
  }
  .mx-19-xxxl {
    margin-left: 76px !important;
    margin-right: 76px !important;
  }
  .my-19-xxxl {
    margin-top: 76px !important;
    margin-bottom: 76px !important;
  }
  .m-19-xxxl-minus {
    margin: -76px !important;
  }
  .mr-19-xxxl-minus {
    margin-right: -76px !important;
  }
  .ml-19-xxxl-minus {
    margin-left: -76px !important;
  }
  .mt-19-xxxl-minus {
    margin-top: -76px !important;
  }
  .mb-19-xxxl-minus {
    margin-bottom: -76px !important;
  }
  .p-20-xxxl {
    padding: 80px !important;
  }
  .pr-20-xxxl {
    padding-right: 80px !important;
  }
  .pl-20-xxxl {
    padding-left: 80px !important;
  }
  .pt-20-xxxl {
    padding-top: 80px !important;
  }
  .pb-20-xxxl {
    padding-bottom: 80px !important;
  }
  .px-20-xxxl {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-20-xxxl {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-20-xxxl {
    margin: 80px !important;
  }
  .mr-20-xxxl {
    margin-right: 80px !important;
  }
  .ml-20-xxxl {
    margin-left: 80px !important;
  }
  .mt-20-xxxl {
    margin-top: 80px !important;
  }
  .mb-20-xxxl {
    margin-bottom: 80px !important;
  }
  .mx-20-xxxl {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-20-xxxl {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .m-20-xxxl-minus {
    margin: -80px !important;
  }
  .mr-20-xxxl-minus {
    margin-right: -80px !important;
  }
  .ml-20-xxxl-minus {
    margin-left: -80px !important;
  }
  .mt-20-xxxl-minus {
    margin-top: -80px !important;
  }
  .mb-20-xxxl-minus {
    margin-bottom: -80px !important;
  }
}

/* source/common-css/typography.less */
:root {
  --h1-size: 2rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --h4-size: 1rem;
  --h5-size: 0.875rem;
  --h6-size: 0.75rem;
  --base-text-weight-ultralight: 100;
  --base-text-weight-light: 300;
  --base-text-weight-medium: 500;
  --base-text-weight-normal: 400;
  --base-text-weight-semibold: 600;
  --mark-background: #a6d2ff;
  --mark-color: #191919;
  --code-background: #99a1b31a;
  --code-color: #191919;
  --kbd-background: #004D6FFF;
  --kbd-color: #ffffff;
}
.dark-side {
  --mark-background: #c0c0c0;
  --mark-color: #000000;
  --code-background: #2b2d30;
  --code-color: #b3b3aa;
  --kbd-background: #004D6FFF;
  --kbd-color: #ffffff;
}
.text-ultralight {
  font-weight: var(--base-text-weight-ultralight) !important;
}
.text-light {
  font-weight: var(--base-text-weight-light) !important;
}
.text-normal {
  font-weight: var(--base-text-weight-normal) !important;
}
.text-medium {
  font-weight: var(--base-text-weight-medium) !important;
}
.text-bold {
  font-weight: var(--base-text-weight-semibold) !important;
}
.text-weight-1 {
  font-weight: 100 !important;
}
.text-weight-2 {
  font-weight: 200 !important;
}
.text-weight-3 {
  font-weight: 300 !important;
}
.text-weight-4 {
  font-weight: 400 !important;
}
.text-weight-5 {
  font-weight: 500 !important;
}
.text-weight-6 {
  font-weight: 600 !important;
}
.text-weight-7 {
  font-weight: 700 !important;
}
.text-weight-8 {
  font-weight: 800 !important;
}
.text-weight-9 {
  font-weight: 900 !important;
}
.text-weight-10 {
  font-weight: 1000 !important;
}
.display4 {
  font-size: 112px;
  font-weight: 200;
}
.display3 {
  font-size: 56px;
  font-weight: 400;
}
.display2 {
  font-size: 48px;
  font-weight: 400;
}
.display1 {
  font-size: 36px;
  font-weight: 400;
}
h1,
.h1 {
  font-size: var(--h1-size);
  font-weight: var(--base-text-weight-semibold);
}
h2,
.h2 {
  font-size: var(--h2-size);
  font-weight: var(--base-text-weight-semibold);
}
h3,
.h3 {
  font-size: var(--h3-size);
  font-weight: var(--base-text-weight-semibold);
}
h4,
.h4 {
  font-size: var(--h4-size);
  font-weight: var(--base-text-weight-semibold);
}
h5,
.h5 {
  font-size: var(--h5-size);
  font-weight: var(--base-text-weight-semibold);
}
h6,
.h6 {
  font-size: var(--h6-size);
  font-weight: var(--base-text-weight-semibold);
}
.display1,
.display2,
.display3,
.display4 {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1;
}
.leader {
  font-weight: var(--base-text-weight-light);
  font-size: 48px;
}
.sub-leader {
  font-weight: var(--base-text-weight-normal);
  font-size: 38px;
}
.header {
  font-weight: var(--base-text-weight-medium);
  font-size: 30px;
}
.sub-header {
  font-weight: var(--base-text-weight-medium);
  font-size: 24px;
}
.alt-header {
  font-weight: var(--base-text-weight-medium);
  font-size: 20px;
}
.sub-alt-header {
  font-weight: var(--base-text-weight-medium);
  font-size: 16px;
}
.text-small {
  font-weight: 400;
  font-size: 12px;
}
.text-secondary {
  font-weight: 400;
  font-size: 14px;
}
.text-leader {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}
.text-leader2 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}
.text-muted {
  color: var(--body-color-secondary);
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: inherit;
  margin: 1rem 0;
  line-height: 1.1;
  text-wrap: balance;
}
.h1 > small,
h1 > small,
.h2 > small,
h2 > small,
.h3 > small,
h3 > small,
.h4 > small,
h4 > small,
.h5 > small,
h5 > small,
.h6 > small,
h6 > small,
.h1 > .small,
h1 > .small,
.h2 > .small,
h2 > .small,
.h3 > .small,
h3 > .small,
.h4 > .small,
h4 > .small,
.h5 > .small,
h5 > .small,
.h6 > .small,
h6 > .small {
  font-weight: 400;
  font-size: 0.7em;
  line-height: 1;
  color: var(--body-color-secondary);
}
.h1:nth-child(1),
h1:nth-child(1),
.h2:nth-child(1),
h2:nth-child(1),
.h3:nth-child(1),
h3:nth-child(1),
.h4:nth-child(1),
h4:nth-child(1),
.h5:nth-child(1),
h5:nth-child(1),
.h6:nth-child(1),
h6:nth-child(1) {
  margin-top: 0;
}
.text-upper {
  text-transform: uppercase !important;
}
.text-lower {
  text-transform: lowercase !important;
}
.text-cap {
  text-transform: capitalize !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-just {
  text-align: justify !important;
}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text-italic {
  font-style: italic !important;
}
.text-oblique {
  font-style: oblique !important;
}
.text-overline {
  text-decoration: overline !important;
}
.text-linethrough {
  text-decoration: line-through !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-underover {
  text-decoration: underline overline !important;
}
.va-top {
  vertical-align: top !important;
}
.va-bottom {
  vertical-align: bottom !important;
}
.va-baseline {
  vertical-align: baseline !important;
}
.va-middle {
  vertical-align: middle !important;
}
.va-sub {
  vertical-align: sub !important;
}
.va-super {
  vertical-align: super !important;
}
.va-text-top {
  vertical-align: text-top !important;
}
.va-text-bottom {
  vertical-align: text-bottom !important;
}
abbr {
  text-decoration: none;
  border-bottom: 1px var(--border-color) dotted;
  cursor: help;
  display: inline;
}
address {
  font-weight: normal;
  margin-bottom: 1rem;
  font-style: normal;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 13px;
}
pre {
  margin: 0;
  overflow: auto;
}
pre code {
  white-space: inherit;
}
code,
kbd {
  display: inline-flex;
  font-size: 13px;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
  overflow-wrap: break-word;
  padding: 0 6px;
}
a code,
a kbd {
  text-decoration: underline;
  cursor: pointer;
}
code {
  color: var(--code-color);
  background-color: var(--code-background);
  font-weight: 600;
}
kbd {
  background-color: var(--kbd-background);
  color: var(--kbd-color);
}
pre code {
  height: auto;
}
a {
  position: relative;
  color: var(--link-color);
  text-decoration: none;
  background-color: transparent;
  text-decoration-skip: auto;
  box-shadow: none;
}
a:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
  outline: 0;
}
.no-decor {
  text-decoration: none !important;
}
mark {
  padding: 0.1875rem;
  background-color: var(--mark-background);
  color: var(--mark-color);
}
del {
  color: var(--body-color-secondary);
  text-decoration: line-through;
}
p {
  text-wrap: pretty;
}
* + p {
  margin-top: 1rem;
}
dl,
ul,
ol {
  margin: 1rem;
}
dl dl,
ul dl,
ol dl,
dl ul,
ul ul,
ol ul,
dl ol,
ul ol,
ol ol {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 1.5rem;
}
ul,
menu,
dir {
  display: block;
  list-style-type: disc;
}
ul ul {
  list-style: circle;
}
ul ul ul {
  list-style: square;
}
dl dt,
dl dd {
  line-height: 1.25rem;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-left: 0.9375rem;
}
dl.horizontal dt {
  float: left;
  width: 10rem;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
dl.horizontal dd {
  margin-left: 11.25rem;
}
.indent:first-letter {
  margin-left: 2.5rem;
}
.indent-letter:first-letter {
  font-weight: bold;
  float: left;
  padding: 0;
  line-height: 40px;
  font-size: 48px;
  margin: 2px 8px 0 -2px;
}
blockquote {
  margin-bottom: 1rem;
  padding: 0 0 0 0.625rem;
  border-left: 0.25rem var(--border-color) solid;
}
blockquote small {
  color: var(--body-color-secondary);
}
blockquote small:before {
  content: "\2014\a0";
}
blockquote.right-side {
  border: 0;
  border-right: 4px var(--border-color) solid;
  padding-right: 0.625rem;
  text-align: right;
}
blockquote.right-side small:before {
  content: "";
}
blockquote.right-side small:after {
  content: " \a0\2014";
}
hr {
  border: 0;
  height: 2px;
  background-color: var(--border-color);
}
hr.thin {
  height: 1px;
}
hr.fat {
  height: 3px;
}
.reduce-1 {
  font-size: 0.9em !important;
}
.reduce-2 {
  font-size: 0.8em !important;
}
.reduce-3 {
  font-size: 0.7em !important;
}
.reduce-4 {
  font-size: 0.6em !important;
}
.reduce-5 {
  font-size: 0.5em !important;
}
.reduce-6 {
  font-size: 0.4em !important;
}
.reduce-7 {
  font-size: 0.3em !important;
}
.reduce-8 {
  font-size: 0.2em !important;
}
.reduce-9 {
  font-size: 0.1em !important;
}
.enlarge {
  font-size: 1em !important;
}
.enlarge-1 {
  font-size: 1.1em !important;
}
.enlarge-2 {
  font-size: 1.2em !important;
}
.enlarge-3 {
  font-size: 1.3em !important;
}
.enlarge-4 {
  font-size: 1.4em !important;
}
.enlarge-5 {
  font-size: 1.5em !important;
}
.enlarge-6 {
  font-size: 1.6em !important;
}
.enlarge-7 {
  font-size: 1.7em !important;
}
.enlarge-8 {
  font-size: 1.8em !important;
}
.enlarge-9 {
  font-size: 1.9em !important;
}
.enlarge-2x {
  font-size: 2em !important;
}
.enlarge-3x {
  font-size: 3em !important;
}
.enlarge-4x {
  font-size: 4em !important;
}
.align-size {
  font-size: 1em !important;
}
.text-underline {
  text-decoration: underline;
}
@container (min-width: 0) {
  .text-upper-fs {
    text-transform: uppercase !important;
  }
  .text-lower-fs {
    text-transform: lowercase !important;
  }
  .text-cap-fs {
    text-transform: capitalize !important;
  }
  .text-left-fs {
    text-align: left !important;
  }
  .text-right-fs {
    text-align: right !important;
  }
  .text-center-fs {
    text-align: center !important;
  }
  .text-just-fs {
    text-align: justify !important;
  }
  .va-top-fs {
    vertical-align: top !important;
  }
  .va-bottom-fs {
    vertical-align: bottom !important;
  }
  .va-baseline-fs {
    vertical-align: baseline !important;
  }
  .va-middle-fs {
    vertical-align: middle !important;
  }
  .va-sub-fs {
    vertical-align: sub !important;
  }
  .va-super-fs {
    vertical-align: super !important;
  }
  .va-text-top-fs {
    vertical-align: text-top !important;
  }
  .va-text-bottom-fs {
    vertical-align: text-bottom !important;
  }
  .reduce-1-fs {
    font-size: 0.9em !important;
  }
  .reduce-2-fs {
    font-size: 0.8em !important;
  }
  .reduce-3-fs {
    font-size: 0.7em !important;
  }
  .reduce-4-fs {
    font-size: 0.6em !important;
  }
  .reduce-5-fs {
    font-size: 0.5em !important;
  }
  .reduce-6-fs {
    font-size: 0.4em !important;
  }
  .reduce-7-fs {
    font-size: 0.3em !important;
  }
  .reduce-8-fs {
    font-size: 0.2em !important;
  }
  .reduce-9-fs {
    font-size: 0.1em !important;
  }
  .enlarge-fs {
    font-size: 1em !important;
  }
  .enlarge-1-fs {
    font-size: 1.1em !important;
  }
  .enlarge-2-fs {
    font-size: 1.2em !important;
  }
  .enlarge-3-fs {
    font-size: 1.3em !important;
  }
  .enlarge-4-fs {
    font-size: 1.4em !important;
  }
  .enlarge-5-fs {
    font-size: 1.5em !important;
  }
  .enlarge-6-fs {
    font-size: 1.6em !important;
  }
  .enlarge-7-fs {
    font-size: 1.7em !important;
  }
  .enlarge-8-fs {
    font-size: 1.8em !important;
  }
  .enlarge-9-fs {
    font-size: 1.9em !important;
  }
  .enlarge-2x-fs {
    font-size: 2em !important;
  }
  .enlarge-3x-fs {
    font-size: 3em !important;
  }
  .enlarge-4x-fs {
    font-size: 4em !important;
  }
}
@container (min-width: 360px) {
  .text-upper-xs {
    text-transform: uppercase !important;
  }
  .text-lower-xs {
    text-transform: lowercase !important;
  }
  .text-cap-xs {
    text-transform: capitalize !important;
  }
  .text-left-xs {
    text-align: left !important;
  }
  .text-right-xs {
    text-align: right !important;
  }
  .text-center-xs {
    text-align: center !important;
  }
  .text-just-xs {
    text-align: justify !important;
  }
  .va-top-xs {
    vertical-align: top !important;
  }
  .va-bottom-xs {
    vertical-align: bottom !important;
  }
  .va-baseline-xs {
    vertical-align: baseline !important;
  }
  .va-middle-xs {
    vertical-align: middle !important;
  }
  .va-sub-xs {
    vertical-align: sub !important;
  }
  .va-super-xs {
    vertical-align: super !important;
  }
  .va-text-top-xs {
    vertical-align: text-top !important;
  }
  .va-text-bottom-xs {
    vertical-align: text-bottom !important;
  }
  .reduce-1-xs {
    font-size: 0.9em !important;
  }
  .reduce-2-xs {
    font-size: 0.8em !important;
  }
  .reduce-3-xs {
    font-size: 0.7em !important;
  }
  .reduce-4-xs {
    font-size: 0.6em !important;
  }
  .reduce-5-xs {
    font-size: 0.5em !important;
  }
  .reduce-6-xs {
    font-size: 0.4em !important;
  }
  .reduce-7-xs {
    font-size: 0.3em !important;
  }
  .reduce-8-xs {
    font-size: 0.2em !important;
  }
  .reduce-9-xs {
    font-size: 0.1em !important;
  }
  .enlarge-xs {
    font-size: 1em !important;
  }
  .enlarge-1-xs {
    font-size: 1.1em !important;
  }
  .enlarge-2-xs {
    font-size: 1.2em !important;
  }
  .enlarge-3-xs {
    font-size: 1.3em !important;
  }
  .enlarge-4-xs {
    font-size: 1.4em !important;
  }
  .enlarge-5-xs {
    font-size: 1.5em !important;
  }
  .enlarge-6-xs {
    font-size: 1.6em !important;
  }
  .enlarge-7-xs {
    font-size: 1.7em !important;
  }
  .enlarge-8-xs {
    font-size: 1.8em !important;
  }
  .enlarge-9-xs {
    font-size: 1.9em !important;
  }
  .enlarge-2x-xs {
    font-size: 2em !important;
  }
  .enlarge-3x-xs {
    font-size: 3em !important;
  }
  .enlarge-4x-xs {
    font-size: 4em !important;
  }
}
@container (min-width: 576px) {
  .text-upper-sm {
    text-transform: uppercase !important;
  }
  .text-lower-sm {
    text-transform: lowercase !important;
  }
  .text-cap-sm {
    text-transform: capitalize !important;
  }
  .text-left-sm {
    text-align: left !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
  .text-center-sm {
    text-align: center !important;
  }
  .text-just-sm {
    text-align: justify !important;
  }
  .va-top-sm {
    vertical-align: top !important;
  }
  .va-bottom-sm {
    vertical-align: bottom !important;
  }
  .va-baseline-sm {
    vertical-align: baseline !important;
  }
  .va-middle-sm {
    vertical-align: middle !important;
  }
  .va-sub-sm {
    vertical-align: sub !important;
  }
  .va-super-sm {
    vertical-align: super !important;
  }
  .va-text-top-sm {
    vertical-align: text-top !important;
  }
  .va-text-bottom-sm {
    vertical-align: text-bottom !important;
  }
  .reduce-1-sm {
    font-size: 0.9em !important;
  }
  .reduce-2-sm {
    font-size: 0.8em !important;
  }
  .reduce-3-sm {
    font-size: 0.7em !important;
  }
  .reduce-4-sm {
    font-size: 0.6em !important;
  }
  .reduce-5-sm {
    font-size: 0.5em !important;
  }
  .reduce-6-sm {
    font-size: 0.4em !important;
  }
  .reduce-7-sm {
    font-size: 0.3em !important;
  }
  .reduce-8-sm {
    font-size: 0.2em !important;
  }
  .reduce-9-sm {
    font-size: 0.1em !important;
  }
  .enlarge-sm {
    font-size: 1em !important;
  }
  .enlarge-1-sm {
    font-size: 1.1em !important;
  }
  .enlarge-2-sm {
    font-size: 1.2em !important;
  }
  .enlarge-3-sm {
    font-size: 1.3em !important;
  }
  .enlarge-4-sm {
    font-size: 1.4em !important;
  }
  .enlarge-5-sm {
    font-size: 1.5em !important;
  }
  .enlarge-6-sm {
    font-size: 1.6em !important;
  }
  .enlarge-7-sm {
    font-size: 1.7em !important;
  }
  .enlarge-8-sm {
    font-size: 1.8em !important;
  }
  .enlarge-9-sm {
    font-size: 1.9em !important;
  }
  .enlarge-2x-sm {
    font-size: 2em !important;
  }
  .enlarge-3x-sm {
    font-size: 3em !important;
  }
  .enlarge-4x-sm {
    font-size: 4em !important;
  }
}
@container (min-width: 640px) {
  .text-upper-ld {
    text-transform: uppercase !important;
  }
  .text-lower-ld {
    text-transform: lowercase !important;
  }
  .text-cap-ld {
    text-transform: capitalize !important;
  }
  .text-left-ld {
    text-align: left !important;
  }
  .text-right-ld {
    text-align: right !important;
  }
  .text-center-ld {
    text-align: center !important;
  }
  .text-just-ld {
    text-align: justify !important;
  }
  .va-top-ld {
    vertical-align: top !important;
  }
  .va-bottom-ld {
    vertical-align: bottom !important;
  }
  .va-baseline-ld {
    vertical-align: baseline !important;
  }
  .va-middle-ld {
    vertical-align: middle !important;
  }
  .va-sub-ld {
    vertical-align: sub !important;
  }
  .va-super-ld {
    vertical-align: super !important;
  }
  .va-text-top-ld {
    vertical-align: text-top !important;
  }
  .va-text-bottom-ld {
    vertical-align: text-bottom !important;
  }
  .reduce-1-ld {
    font-size: 0.9em !important;
  }
  .reduce-2-ld {
    font-size: 0.8em !important;
  }
  .reduce-3-ld {
    font-size: 0.7em !important;
  }
  .reduce-4-ld {
    font-size: 0.6em !important;
  }
  .reduce-5-ld {
    font-size: 0.5em !important;
  }
  .reduce-6-ld {
    font-size: 0.4em !important;
  }
  .reduce-7-ld {
    font-size: 0.3em !important;
  }
  .reduce-8-ld {
    font-size: 0.2em !important;
  }
  .reduce-9-ld {
    font-size: 0.1em !important;
  }
  .enlarge-ld {
    font-size: 1em !important;
  }
  .enlarge-1-ld {
    font-size: 1.1em !important;
  }
  .enlarge-2-ld {
    font-size: 1.2em !important;
  }
  .enlarge-3-ld {
    font-size: 1.3em !important;
  }
  .enlarge-4-ld {
    font-size: 1.4em !important;
  }
  .enlarge-5-ld {
    font-size: 1.5em !important;
  }
  .enlarge-6-ld {
    font-size: 1.6em !important;
  }
  .enlarge-7-ld {
    font-size: 1.7em !important;
  }
  .enlarge-8-ld {
    font-size: 1.8em !important;
  }
  .enlarge-9-ld {
    font-size: 1.9em !important;
  }
  .enlarge-2x-ld {
    font-size: 2em !important;
  }
  .enlarge-3x-ld {
    font-size: 3em !important;
  }
  .enlarge-4x-ld {
    font-size: 4em !important;
  }
}
@container (min-width: 768px) {
  .text-upper-md {
    text-transform: uppercase !important;
  }
  .text-lower-md {
    text-transform: lowercase !important;
  }
  .text-cap-md {
    text-transform: capitalize !important;
  }
  .text-left-md {
    text-align: left !important;
  }
  .text-right-md {
    text-align: right !important;
  }
  .text-center-md {
    text-align: center !important;
  }
  .text-just-md {
    text-align: justify !important;
  }
  .va-top-md {
    vertical-align: top !important;
  }
  .va-bottom-md {
    vertical-align: bottom !important;
  }
  .va-baseline-md {
    vertical-align: baseline !important;
  }
  .va-middle-md {
    vertical-align: middle !important;
  }
  .va-sub-md {
    vertical-align: sub !important;
  }
  .va-super-md {
    vertical-align: super !important;
  }
  .va-text-top-md {
    vertical-align: text-top !important;
  }
  .va-text-bottom-md {
    vertical-align: text-bottom !important;
  }
  .reduce-1-md {
    font-size: 0.9em !important;
  }
  .reduce-2-md {
    font-size: 0.8em !important;
  }
  .reduce-3-md {
    font-size: 0.7em !important;
  }
  .reduce-4-md {
    font-size: 0.6em !important;
  }
  .reduce-5-md {
    font-size: 0.5em !important;
  }
  .reduce-6-md {
    font-size: 0.4em !important;
  }
  .reduce-7-md {
    font-size: 0.3em !important;
  }
  .reduce-8-md {
    font-size: 0.2em !important;
  }
  .reduce-9-md {
    font-size: 0.1em !important;
  }
  .enlarge-md {
    font-size: 1em !important;
  }
  .enlarge-1-md {
    font-size: 1.1em !important;
  }
  .enlarge-2-md {
    font-size: 1.2em !important;
  }
  .enlarge-3-md {
    font-size: 1.3em !important;
  }
  .enlarge-4-md {
    font-size: 1.4em !important;
  }
  .enlarge-5-md {
    font-size: 1.5em !important;
  }
  .enlarge-6-md {
    font-size: 1.6em !important;
  }
  .enlarge-7-md {
    font-size: 1.7em !important;
  }
  .enlarge-8-md {
    font-size: 1.8em !important;
  }
  .enlarge-9-md {
    font-size: 1.9em !important;
  }
  .enlarge-2x-md {
    font-size: 2em !important;
  }
  .enlarge-3x-md {
    font-size: 3em !important;
  }
  .enlarge-4x-md {
    font-size: 4em !important;
  }
}
@container (min-width: 992px) {
  .text-upper-lg {
    text-transform: uppercase !important;
  }
  .text-lower-lg {
    text-transform: lowercase !important;
  }
  .text-cap-lg {
    text-transform: capitalize !important;
  }
  .text-left-lg {
    text-align: left !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-just-lg {
    text-align: justify !important;
  }
  .va-top-lg {
    vertical-align: top !important;
  }
  .va-bottom-lg {
    vertical-align: bottom !important;
  }
  .va-baseline-lg {
    vertical-align: baseline !important;
  }
  .va-middle-lg {
    vertical-align: middle !important;
  }
  .va-sub-lg {
    vertical-align: sub !important;
  }
  .va-super-lg {
    vertical-align: super !important;
  }
  .va-text-top-lg {
    vertical-align: text-top !important;
  }
  .va-text-bottom-lg {
    vertical-align: text-bottom !important;
  }
  .reduce-1-lg {
    font-size: 0.9em !important;
  }
  .reduce-2-lg {
    font-size: 0.8em !important;
  }
  .reduce-3-lg {
    font-size: 0.7em !important;
  }
  .reduce-4-lg {
    font-size: 0.6em !important;
  }
  .reduce-5-lg {
    font-size: 0.5em !important;
  }
  .reduce-6-lg {
    font-size: 0.4em !important;
  }
  .reduce-7-lg {
    font-size: 0.3em !important;
  }
  .reduce-8-lg {
    font-size: 0.2em !important;
  }
  .reduce-9-lg {
    font-size: 0.1em !important;
  }
  .enlarge-lg {
    font-size: 1em !important;
  }
  .enlarge-1-lg {
    font-size: 1.1em !important;
  }
  .enlarge-2-lg {
    font-size: 1.2em !important;
  }
  .enlarge-3-lg {
    font-size: 1.3em !important;
  }
  .enlarge-4-lg {
    font-size: 1.4em !important;
  }
  .enlarge-5-lg {
    font-size: 1.5em !important;
  }
  .enlarge-6-lg {
    font-size: 1.6em !important;
  }
  .enlarge-7-lg {
    font-size: 1.7em !important;
  }
  .enlarge-8-lg {
    font-size: 1.8em !important;
  }
  .enlarge-9-lg {
    font-size: 1.9em !important;
  }
  .enlarge-2x-lg {
    font-size: 2em !important;
  }
  .enlarge-3x-lg {
    font-size: 3em !important;
  }
  .enlarge-4x-lg {
    font-size: 4em !important;
  }
}
@container (min-width: 1200px) {
  .text-upper-xl {
    text-transform: uppercase !important;
  }
  .text-lower-xl {
    text-transform: lowercase !important;
  }
  .text-cap-xl {
    text-transform: capitalize !important;
  }
  .text-left-xl {
    text-align: left !important;
  }
  .text-right-xl {
    text-align: right !important;
  }
  .text-center-xl {
    text-align: center !important;
  }
  .text-just-xl {
    text-align: justify !important;
  }
  .va-top-xl {
    vertical-align: top !important;
  }
  .va-bottom-xl {
    vertical-align: bottom !important;
  }
  .va-baseline-xl {
    vertical-align: baseline !important;
  }
  .va-middle-xl {
    vertical-align: middle !important;
  }
  .va-sub-xl {
    vertical-align: sub !important;
  }
  .va-super-xl {
    vertical-align: super !important;
  }
  .va-text-top-xl {
    vertical-align: text-top !important;
  }
  .va-text-bottom-xl {
    vertical-align: text-bottom !important;
  }
  .reduce-1-xl {
    font-size: 0.9em !important;
  }
  .reduce-2-xl {
    font-size: 0.8em !important;
  }
  .reduce-3-xl {
    font-size: 0.7em !important;
  }
  .reduce-4-xl {
    font-size: 0.6em !important;
  }
  .reduce-5-xl {
    font-size: 0.5em !important;
  }
  .reduce-6-xl {
    font-size: 0.4em !important;
  }
  .reduce-7-xl {
    font-size: 0.3em !important;
  }
  .reduce-8-xl {
    font-size: 0.2em !important;
  }
  .reduce-9-xl {
    font-size: 0.1em !important;
  }
  .enlarge-xl {
    font-size: 1em !important;
  }
  .enlarge-1-xl {
    font-size: 1.1em !important;
  }
  .enlarge-2-xl {
    font-size: 1.2em !important;
  }
  .enlarge-3-xl {
    font-size: 1.3em !important;
  }
  .enlarge-4-xl {
    font-size: 1.4em !important;
  }
  .enlarge-5-xl {
    font-size: 1.5em !important;
  }
  .enlarge-6-xl {
    font-size: 1.6em !important;
  }
  .enlarge-7-xl {
    font-size: 1.7em !important;
  }
  .enlarge-8-xl {
    font-size: 1.8em !important;
  }
  .enlarge-9-xl {
    font-size: 1.9em !important;
  }
  .enlarge-2x-xl {
    font-size: 2em !important;
  }
  .enlarge-3x-xl {
    font-size: 3em !important;
  }
  .enlarge-4x-xl {
    font-size: 4em !important;
  }
}
@container (min-width: 1400px) {
  .text-upper-xxl {
    text-transform: uppercase !important;
  }
  .text-lower-xxl {
    text-transform: lowercase !important;
  }
  .text-cap-xxl {
    text-transform: capitalize !important;
  }
  .text-left-xxl {
    text-align: left !important;
  }
  .text-right-xxl {
    text-align: right !important;
  }
  .text-center-xxl {
    text-align: center !important;
  }
  .text-just-xxl {
    text-align: justify !important;
  }
  .va-top-xxl {
    vertical-align: top !important;
  }
  .va-bottom-xxl {
    vertical-align: bottom !important;
  }
  .va-baseline-xxl {
    vertical-align: baseline !important;
  }
  .va-middle-xxl {
    vertical-align: middle !important;
  }
  .va-sub-xxl {
    vertical-align: sub !important;
  }
  .va-super-xxl {
    vertical-align: super !important;
  }
  .va-text-top-xxl {
    vertical-align: text-top !important;
  }
  .va-text-bottom-xxl {
    vertical-align: text-bottom !important;
  }
  .reduce-1-xxl {
    font-size: 0.9em !important;
  }
  .reduce-2-xxl {
    font-size: 0.8em !important;
  }
  .reduce-3-xxl {
    font-size: 0.7em !important;
  }
  .reduce-4-xxl {
    font-size: 0.6em !important;
  }
  .reduce-5-xxl {
    font-size: 0.5em !important;
  }
  .reduce-6-xxl {
    font-size: 0.4em !important;
  }
  .reduce-7-xxl {
    font-size: 0.3em !important;
  }
  .reduce-8-xxl {
    font-size: 0.2em !important;
  }
  .reduce-9-xxl {
    font-size: 0.1em !important;
  }
  .enlarge-xxl {
    font-size: 1em !important;
  }
  .enlarge-1-xxl {
    font-size: 1.1em !important;
  }
  .enlarge-2-xxl {
    font-size: 1.2em !important;
  }
  .enlarge-3-xxl {
    font-size: 1.3em !important;
  }
  .enlarge-4-xxl {
    font-size: 1.4em !important;
  }
  .enlarge-5-xxl {
    font-size: 1.5em !important;
  }
  .enlarge-6-xxl {
    font-size: 1.6em !important;
  }
  .enlarge-7-xxl {
    font-size: 1.7em !important;
  }
  .enlarge-8-xxl {
    font-size: 1.8em !important;
  }
  .enlarge-9-xxl {
    font-size: 1.9em !important;
  }
  .enlarge-2x-xxl {
    font-size: 2em !important;
  }
  .enlarge-3x-xxl {
    font-size: 3em !important;
  }
  .enlarge-4x-xxl {
    font-size: 4em !important;
  }
}
@container (min-width: 2000px) {
  .text-upper-xxxl {
    text-transform: uppercase !important;
  }
  .text-lower-xxxl {
    text-transform: lowercase !important;
  }
  .text-cap-xxxl {
    text-transform: capitalize !important;
  }
  .text-left-xxxl {
    text-align: left !important;
  }
  .text-right-xxxl {
    text-align: right !important;
  }
  .text-center-xxxl {
    text-align: center !important;
  }
  .text-just-xxxl {
    text-align: justify !important;
  }
  .va-top-xxxl {
    vertical-align: top !important;
  }
  .va-bottom-xxxl {
    vertical-align: bottom !important;
  }
  .va-baseline-xxxl {
    vertical-align: baseline !important;
  }
  .va-middle-xxxl {
    vertical-align: middle !important;
  }
  .va-sub-xxxl {
    vertical-align: sub !important;
  }
  .va-super-xxxl {
    vertical-align: super !important;
  }
  .va-text-top-xxxl {
    vertical-align: text-top !important;
  }
  .va-text-bottom-xxxl {
    vertical-align: text-bottom !important;
  }
  .reduce-1-xxxl {
    font-size: 0.9em !important;
  }
  .reduce-2-xxxl {
    font-size: 0.8em !important;
  }
  .reduce-3-xxxl {
    font-size: 0.7em !important;
  }
  .reduce-4-xxxl {
    font-size: 0.6em !important;
  }
  .reduce-5-xxxl {
    font-size: 0.5em !important;
  }
  .reduce-6-xxxl {
    font-size: 0.4em !important;
  }
  .reduce-7-xxxl {
    font-size: 0.3em !important;
  }
  .reduce-8-xxxl {
    font-size: 0.2em !important;
  }
  .reduce-9-xxxl {
    font-size: 0.1em !important;
  }
  .enlarge-xxxl {
    font-size: 1em !important;
  }
  .enlarge-1-xxxl {
    font-size: 1.1em !important;
  }
  .enlarge-2-xxxl {
    font-size: 1.2em !important;
  }
  .enlarge-3-xxxl {
    font-size: 1.3em !important;
  }
  .enlarge-4-xxxl {
    font-size: 1.4em !important;
  }
  .enlarge-5-xxxl {
    font-size: 1.5em !important;
  }
  .enlarge-6-xxxl {
    font-size: 1.6em !important;
  }
  .enlarge-7-xxxl {
    font-size: 1.7em !important;
  }
  .enlarge-8-xxxl {
    font-size: 1.8em !important;
  }
  .enlarge-9-xxxl {
    font-size: 1.9em !important;
  }
  .enlarge-2x-xxxl {
    font-size: 2em !important;
  }
  .enlarge-3x-xxxl {
    font-size: 3em !important;
  }
  .enlarge-4x-xxxl {
    font-size: 4em !important;
  }
}
.wrap-long {
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.error {
  text-decoration: underline wavy red;
}
.mono {
  font-family: monospace !important;
}

/* source/common-css/utils.less */
.transition {
  transition: all 0.3s linear;
}
.inherit-colors {
  background-color: inherit !important;
  color: inherit !important;
}
.inherit-background {
  background-color: inherit !important;
}
.inherit-color {
  color: inherit !important;
}
.clear::after,
.clear-fix::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.overflow {
  overflow: auto !important;
}
.no-overflow {
  overflow: hidden !important;
}
.scroll {
  overflow: scroll !important;
}
.scroll-x {
  overflow-x: auto !important;
}
.scroll-y {
  overflow-y: auto !important;
}
.no-scroll {
  overflow: hidden !important;
}
.no-scroll-x {
  overflow-x: hidden !important;
}
.no-scroll-y {
  overflow-y: hidden !important;
}
.wrap {
  white-space: normal !important;
}
.no-wrap {
  white-space: nowrap !important;
}
.no-user-select {
  user-select: none !important;
}
.no-appearance {
  appearance: none !important;
}
.collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.expand {
  max-height: 1000px !important;
  transition: max-height 0.3s ease !important;
  transition-duration: 0.5s !important;
  overflow: visible !important;
}
.selected {
  box-shadow: 0 0 0 4px var(--selected-color) !important;
  border-radius: 6px;
}
.selected::after {
  position: absolute;
  display: block;
  border-top: 22px solid var(--selected-color);
  border-left: 22px solid transparent;
  right: -1px;
  content: "";
  top: -1px;
  z-index: 100;
}
.selected::before {
  position: absolute;
  display: block;
  content: "";
  background-color: transparent;
  border-color: #fff !important;
  border-left: 2px solid;
  border-bottom: 2px solid;
  height: 0.325rem;
  width: 0.5rem;
  right: 0.25rem;
  top: 0.25rem;
  z-index: 102;
  transform: rotate(-45deg);
}
.disabled,
.-disabled {
  pointer-events: none !important;
}
.stop-pointer {
  pointer-events: none;
  user-select: none;
}
@container (min-width: 0) {
  .overflow-fs {
    overflow: auto !important;
  }
  .no-overflow-fs {
    overflow: hidden !important;
  }
  .scroll-fs {
    overflow: scroll !important;
  }
  .scroll-x-fs {
    overflow-x: auto !important;
  }
  .scroll-y-fs {
    overflow-y: auto !important;
  }
  .no-scroll-fs {
    overflow: hidden !important;
  }
  .no-scroll-x-fs {
    overflow-x: hidden !important;
  }
  .no-scroll-y-fs {
    overflow-y: hidden !important;
  }
  .wrap-fs {
    white-space: normal !important;
  }
  .no-wrap-fs {
    white-space: nowrap !important;
  }
  .collapse-fs {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-fs {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 360px) {
  .overflow-xs {
    overflow: auto !important;
  }
  .no-overflow-xs {
    overflow: hidden !important;
  }
  .scroll-xs {
    overflow: scroll !important;
  }
  .scroll-x-xs {
    overflow-x: auto !important;
  }
  .scroll-y-xs {
    overflow-y: auto !important;
  }
  .no-scroll-xs {
    overflow: hidden !important;
  }
  .no-scroll-x-xs {
    overflow-x: hidden !important;
  }
  .no-scroll-y-xs {
    overflow-y: hidden !important;
  }
  .wrap-xs {
    white-space: normal !important;
  }
  .no-wrap-xs {
    white-space: nowrap !important;
  }
  .collapse-xs {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-xs {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 576px) {
  .overflow-sm {
    overflow: auto !important;
  }
  .no-overflow-sm {
    overflow: hidden !important;
  }
  .scroll-sm {
    overflow: scroll !important;
  }
  .scroll-x-sm {
    overflow-x: auto !important;
  }
  .scroll-y-sm {
    overflow-y: auto !important;
  }
  .no-scroll-sm {
    overflow: hidden !important;
  }
  .no-scroll-x-sm {
    overflow-x: hidden !important;
  }
  .no-scroll-y-sm {
    overflow-y: hidden !important;
  }
  .wrap-sm {
    white-space: normal !important;
  }
  .no-wrap-sm {
    white-space: nowrap !important;
  }
  .collapse-sm {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-sm {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 640px) {
  .overflow-ld {
    overflow: auto !important;
  }
  .no-overflow-ld {
    overflow: hidden !important;
  }
  .scroll-ld {
    overflow: scroll !important;
  }
  .scroll-x-ld {
    overflow-x: auto !important;
  }
  .scroll-y-ld {
    overflow-y: auto !important;
  }
  .no-scroll-ld {
    overflow: hidden !important;
  }
  .no-scroll-x-ld {
    overflow-x: hidden !important;
  }
  .no-scroll-y-ld {
    overflow-y: hidden !important;
  }
  .wrap-ld {
    white-space: normal !important;
  }
  .no-wrap-ld {
    white-space: nowrap !important;
  }
  .collapse-ld {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-ld {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 768px) {
  .overflow-md {
    overflow: auto !important;
  }
  .no-overflow-md {
    overflow: hidden !important;
  }
  .scroll-md {
    overflow: scroll !important;
  }
  .scroll-x-md {
    overflow-x: auto !important;
  }
  .scroll-y-md {
    overflow-y: auto !important;
  }
  .no-scroll-md {
    overflow: hidden !important;
  }
  .no-scroll-x-md {
    overflow-x: hidden !important;
  }
  .no-scroll-y-md {
    overflow-y: hidden !important;
  }
  .wrap-md {
    white-space: normal !important;
  }
  .no-wrap-md {
    white-space: nowrap !important;
  }
  .collapse-md {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-md {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 992px) {
  .overflow-lg {
    overflow: auto !important;
  }
  .no-overflow-lg {
    overflow: hidden !important;
  }
  .scroll-lg {
    overflow: scroll !important;
  }
  .scroll-x-lg {
    overflow-x: auto !important;
  }
  .scroll-y-lg {
    overflow-y: auto !important;
  }
  .no-scroll-lg {
    overflow: hidden !important;
  }
  .no-scroll-x-lg {
    overflow-x: hidden !important;
  }
  .no-scroll-y-lg {
    overflow-y: hidden !important;
  }
  .wrap-lg {
    white-space: normal !important;
  }
  .no-wrap-lg {
    white-space: nowrap !important;
  }
  .collapse-lg {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-lg {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 1200px) {
  .overflow-xl {
    overflow: auto !important;
  }
  .no-overflow-xl {
    overflow: hidden !important;
  }
  .scroll-xl {
    overflow: scroll !important;
  }
  .scroll-x-xl {
    overflow-x: auto !important;
  }
  .scroll-y-xl {
    overflow-y: auto !important;
  }
  .no-scroll-xl {
    overflow: hidden !important;
  }
  .no-scroll-x-xl {
    overflow-x: hidden !important;
  }
  .no-scroll-y-xl {
    overflow-y: hidden !important;
  }
  .wrap-xl {
    white-space: normal !important;
  }
  .no-wrap-xl {
    white-space: nowrap !important;
  }
  .collapse-xl {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-xl {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 1400px) {
  .overflow-xxl {
    overflow: auto !important;
  }
  .no-overflow-xxl {
    overflow: hidden !important;
  }
  .scroll-xxl {
    overflow: scroll !important;
  }
  .scroll-x-xxl {
    overflow-x: auto !important;
  }
  .scroll-y-xxl {
    overflow-y: auto !important;
  }
  .no-scroll-xxl {
    overflow: hidden !important;
  }
  .no-scroll-x-xxl {
    overflow-x: hidden !important;
  }
  .no-scroll-y-xxl {
    overflow-y: hidden !important;
  }
  .wrap-xxl {
    white-space: normal !important;
  }
  .no-wrap-xxl {
    white-space: nowrap !important;
  }
  .collapse-xxl {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-xxl {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}
@container (min-width: 2000px) {
  .overflow-xxxl {
    overflow: auto !important;
  }
  .no-overflow-xxxl {
    overflow: hidden !important;
  }
  .scroll-xxxl {
    overflow: scroll !important;
  }
  .scroll-x-xxxl {
    overflow-x: auto !important;
  }
  .scroll-y-xxxl {
    overflow-y: auto !important;
  }
  .no-scroll-xxxl {
    overflow: hidden !important;
  }
  .no-scroll-x-xxxl {
    overflow-x: hidden !important;
  }
  .no-scroll-y-xxxl {
    overflow-y: hidden !important;
  }
  .wrap-xxxl {
    white-space: normal !important;
  }
  .no-wrap-xxxl {
    white-space: nowrap !important;
  }
  .collapse-xxxl {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .expand-xxxl {
    max-height: 1000px !important;
    transition: max-height 0.3s ease !important;
    transition-duration: 0.5s !important;
    overflow: visible !important;
  }
}

/* source/common-css/z-index.less */
:root {
  --z-index-selected: 100;
  --z-index-absolute: 500;
  --z-index-dropdown: 1000;
  --z-index-sticy: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  --z-index-top: 1080;
  --z-index-notify: 1085;
  --z-index-charms: 1090;
  --z-index-overlay: 2000;
  --z-index-fullscreen: 2147483647;
}
.z-absolute {
  z-index: 500 !important;
}
.z-dropdown {
  z-index: 1000 !important;
}
.z-sticky {
  z-index: 1020 !important;
}
.z-fixed {
  z-index: 1030 !important;
}
.z-modal-backdrop {
  z-index: 1040 !important;
}
.z-modal {
  z-index: 1050 !important;
}
.z-popover {
  z-index: 1060 !important;
}
.z-tooltip {
  z-index: 1070 !important;
}
.z-top {
  z-index: 1080 !important;
}
.z-notify {
  z-index: 1085 !important;
}
.z-charms {
  z-index: 1090 !important;
}
.z-overlay {
  z-index: 2000 !important;
}
.z-fullscreen {
  z-index: 2147483647 !important;
}
.z-1 {
  z-index: 1 !important;
}
.z-2 {
  z-index: 2 !important;
}
.z-3 {
  z-index: 3 !important;
}
.z-4 {
  z-index: 4 !important;
}
.z-5 {
  z-index: 5 !important;
}
.z-6 {
  z-index: 6 !important;
}
.z-7 {
  z-index: 7 !important;
}
.z-8 {
  z-index: 8 !important;
}
.z-9 {
  z-index: 9 !important;
}
.z-10 {
  z-index: 10 !important;
}

/* source/colors-css/vars.less */
:root {
  --color-dark: #1d1d1d;
  --color-light: #f8f8f8;
  --color-gray: #ccc;
  --color-gray-blue: #6a89a7;
  --color-gray-white: #f5f5f5;
  --color-gray-mouse: #566b75;
  --color-lime: #AEFD6C;
  --color-green: #00b500;
  --color-emerald: #50c878;
  --color-blue: #5e87ff;
  --color-teal: #1ac5c5;
  --color-cyan: #94b6ff;
  --color-cobalt: #0047ab;
  --color-indigo: #6400a8;
  --color-almost: #6a2ded;
  --color-violet: #ee82ee;
  --color-pink: #ffc0cb;
  --color-magenta: #ff00ff;
  --color-crimson: #df0e38;
  --color-red: #ff0000;
  --color-clown: #ff6d66;
  --color-orange: #ffa500;
  --color-amber: #ffca2a;
  --color-yellow: #ffe95e;
  --color-brown: #ca773c;
  --color-olive: #a1a100;
  --color-steel: #7b91a6;
  --color-mauve: #e0afff;
  --color-taupe: #977e67;
  --color-champagne: #f7e6ca;
  --color-khaki: #d5c58a;
  --color-charcoal: #989898;
  --color-bronze: #e48d3e;
  --color-windstorm: #799ed6;
  --color-nude: #f7d9bc;
  --color-terracotta: #e35336;
  --color-coral: #ff8559;
  --color-army: #5d6532;
  --color-seashell: #fff1e7;
  --color-sand: #f1e0ae;
  --color-dark-lime: #557f32;
  --color-dark-green: #003d00;
  --color-dark-emerald: #246339;
  --color-dark-blue: #132a6f;
  --color-dark-teal: #014848;
  --color-dark-cyan: #456c7e;
  --color-dark-cobalt: #001f54;
  --color-dark-indigo: #21003e;
  --color-dark-almost: #2f0687;
  --color-dark-violet: #773e77;
  --color-dark-pink: #805f65;
  --color-dark-magenta: #800080;
  --color-dark-crimson: #6e0519;
  --color-dark-red: #800000;
  --color-dark-clown: #aa2824;
  --color-dark-orange: #805100;
  --color-dark-amber: #805e00;
  --color-dark-yellow: #bca826;
  --color-dark-brown: #42240f;
  --color-dark-olive: #3d3d00;
  --color-dark-steel: #2e3841;
  --color-dark-mauve: #705680;
  --color-dark-taupe: #261e18;
  --color-dark-champagne: #7c7364;
  --color-dark-khaki: #6a6142;
  --color-dark-charcoal: #202020;
  --color-dark-bronze: #693c13;
  --color-dark-windstorm: #304462;
  --color-dark-nude: #7c6c5d;
  --color-dark-terracotta: #712516;
  --color-dark-coral: #804028;
  --color-dark-army: #2a2f14;
  --color-dark-seashell: #bfa89a;
  --color-dark-sand: #8f8975;
  --color-dark-gray: #515151;
  --color-dark-gray-blue: #36464e;
  --color-dark-gray-mouse: #2e3c42;
  --color-sat-lime: #7dba4a;
  --color-sat-green: #008f00;
  --color-sat-emerald: #3ca15d;
  --color-sat-blue: #1f43ae;
  --color-sat-teal: #008a8a;
  --color-sat-cyan: #659db6;
  --color-sat-cobalt: #003391;
  --color-sat-indigo: #430080;
  --color-sat-almost: #4e18c1;
  --color-sat-violet: #b65fb6;
  --color-sat-pink: #cc7296;
  --color-sat-magenta: #c500c5;
  --color-sat-crimson: #980824;
  --color-sat-red: #b80000;
  --color-sat-clown: #d64f48;
  --color-sat-orange: #bc7700;
  --color-sat-amber: #d19b00;
  --color-sat-yellow: #e4ce43;
  --color-sat-brown: #884b20;
  --color-sat-olive: #838300;
  --color-sat-steel: #5c7081;
  --color-sat-mauve: #a982c1;
  --color-sat-taupe: #5e4a3c;
  --color-sat-champagne: #ccbca5;
  --color-sat-khaki: #aa9c6b;
  --color-sat-charcoal: #5e5e5e;
  --color-sat-bronze: #aa621f;
  --color-sat-windstorm: #5071a3;
  --color-sat-nude: #baa28b;
  --color-sat-terracotta: #af3a23;
  --color-sat-coral: #b65c39;
  --color-sat-army: #647030;
  --color-sat-seashell: #e1cbbd;
  --color-sat-sand: #d1c5a1;
  --color-sat-gray: #9c9c9c;
  --color-sat-gray-blue: #5f7a88;
  --color-sat-gray-mouse: #3f535c;
  --color-light-lime: #f2ffe7;
  --color-light-green: #e7f6e6;
  --color-light-emerald: #d1e6cc;
  --color-light-blue: #e7eaff;
  --color-light-teal: #e1f2f3;
  --color-light-cyan: #e3edff;
  --color-light-cobalt: #d1ecff;
  --color-light-indigo: #f3dcf3;
  --color-light-almost: #eee5ff;
  --color-light-violet: #fce2fb;
  --color-light-pink: #ffeef1;
  --color-light-magenta: #ffe2ff;
  --color-light-crimson: #ffd1da;
  --color-light-red: #ffe1e1;
  --color-light-clown: #ffdede;
  --color-light-orange: #fff3de;
  --color-light-amber: #fff8e1;
  --color-light-yellow: #ffffc6;
  --color-light-brown: #ffeed9;
  --color-light-olive: #f8fde7;
  --color-light-steel: #edeeee;
  --color-light-mauve: #f7ecfe;
  --color-light-taupe: #eadccf;
  --color-light-champagne: #fff9f2;
  --color-light-khaki: #f6f1dd;
  --color-light-charcoal: #e8e8e8;
  --color-light-bronze: #ffecdc;
  --color-light-windstorm: #e6ebf5;
  --color-light-nude: #fcf0e4;
  --color-light-terracotta: #ffe5df;
  --color-light-coral: #ffd8c8;
  --color-light-army: #eceacb;
  --color-light-seashell: #fff9f8;
  --color-light-sand: #f8f3e0;
  --color-light-gray: #f4f4f4;
  --color-light-gray-blue: #bee2f4;
  --color-light-gray-mouse: #8ab4c8;
  --color-hover-default: rgba(29, 29, 29, 0.1);
  --color-success: green;
  --color-alert: #c10000;
  --color-warning: orange;
  --color-info: #468cff;
  --color-primary: #f75553;
  --color-secondary: #74290a;
  --color-tertiary: #ffbebd;
}

/* source/colors-css/background.less */
.bg-transparent {
  background-color: transparent !important;
}
.bg-default {
  background-color: var(--default-background) !important;
  color: var(--default-color) !important;
}
.bg-hover:hover {
  background-color: rgba(29, 29, 29, 0.1) !important;
}
.bg-hover2:hover {
  background-color: rgba(29, 29, 29, 0.5) !important;
}
.bg-hover-light:hover {
  background-color: rgba(255, 255, 255, 0.01) !important;
}
.bg-hover-light1:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.bg-hover-light2:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
.bg-hover-light3:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}
.bg-facebook {
  background-color: #4267b2 !important;
  color: #ffffff !important;
}
.bg-twitter {
  background-color: #1DA1F2 !important;
  color: #ffffff !important;
}
.bg-github {
  background-color: #24292e !important;
  color: #ffffff !important;
}
.bg-bootstrap {
  background-color: #563d7c !important;
  color: #ffffff !important;
}
.bg-gitlab {
  background-color: #e65328 !important;
  color: #ffffff !important;
}
.bg-amazon {
  background-color: #232f3e !important;
  color: #ffffff !important;
}
.bg-black {
  background-color: #000000 !important;
}
.bg-black-active:active {
  background-color: #000000 !important;
}
.bg-black-hover:hover {
  background-color: #000000 !important;
}
.bg-black-focus:focus {
  background-color: #000000 !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-white-active:active {
  background-color: #ffffff !important;
}
.bg-white-hover:hover {
  background-color: #ffffff !important;
}
.bg-white-focus:focus {
  background-color: #ffffff !important;
}
.bg-dark {
  background-color: #1d1d1d !important;
}
.bg-dark-active:active {
  background-color: #1d1d1d !important;
}
.bg-dark-hover:hover {
  background-color: #1d1d1d !important;
}
.bg-dark-focus:focus {
  background-color: #1d1d1d !important;
}
.bg-light {
  background-color: #f8f8f8 !important;
}
.bg-light-active:active {
  background-color: #f8f8f8 !important;
}
.bg-light-hover:hover {
  background-color: #f8f8f8 !important;
}
.bg-light-focus:focus {
  background-color: #f8f8f8 !important;
}
.bg-gray {
  background-color: #ccc !important;
}
.bg-gray-active:active {
  background-color: #ccc !important;
}
.bg-gray-hover:hover {
  background-color: #ccc !important;
}
.bg-gray-focus:focus {
  background-color: #ccc !important;
}
.bg-gray-blue {
  background-color: #6a89a7 !important;
}
.bg-gray-blue-active:active {
  background-color: #6a89a7 !important;
}
.bg-gray-blue-hover:hover {
  background-color: #6a89a7 !important;
}
.bg-gray-blue-focus:focus {
  background-color: #6a89a7 !important;
}
.bg-gray-white {
  background-color: #f5f5f5 !important;
}
.bg-gray-white-active:active {
  background-color: #f5f5f5 !important;
}
.bg-gray-white-hover:hover {
  background-color: #f5f5f5 !important;
}
.bg-gray-white-focus:focus {
  background-color: #f5f5f5 !important;
}
.bg-gray-mouse {
  background-color: #566b75 !important;
}
.bg-gray-mouse-active:active {
  background-color: #566b75 !important;
}
.bg-gray-mouse-hover:hover {
  background-color: #566b75 !important;
}
.bg-gray-mouse-focus:focus {
  background-color: #566b75 !important;
}
.bg-lime {
  background-color: #AEFD6C !important;
}
.bg-lime-active:active {
  background-color: #AEFD6C !important;
}
.bg-lime-hover:hover {
  background-color: #AEFD6C !important;
}
.bg-lime-focus:focus {
  background-color: #AEFD6C !important;
}
.bg-green {
  background-color: #00b500 !important;
}
.bg-green-active:active {
  background-color: #00b500 !important;
}
.bg-green-hover:hover {
  background-color: #00b500 !important;
}
.bg-green-focus:focus {
  background-color: #00b500 !important;
}
.bg-emerald {
  background-color: #50c878 !important;
}
.bg-emerald-active:active {
  background-color: #50c878 !important;
}
.bg-emerald-hover:hover {
  background-color: #50c878 !important;
}
.bg-emerald-focus:focus {
  background-color: #50c878 !important;
}
.bg-blue {
  background-color: #5e87ff !important;
}
.bg-blue-active:active {
  background-color: #5e87ff !important;
}
.bg-blue-hover:hover {
  background-color: #5e87ff !important;
}
.bg-blue-focus:focus {
  background-color: #5e87ff !important;
}
.bg-teal {
  background-color: #1ac5c5 !important;
}
.bg-teal-active:active {
  background-color: #1ac5c5 !important;
}
.bg-teal-hover:hover {
  background-color: #1ac5c5 !important;
}
.bg-teal-focus:focus {
  background-color: #1ac5c5 !important;
}
.bg-cyan {
  background-color: #94b6ff !important;
}
.bg-cyan-active:active {
  background-color: #94b6ff !important;
}
.bg-cyan-hover:hover {
  background-color: #94b6ff !important;
}
.bg-cyan-focus:focus {
  background-color: #94b6ff !important;
}
.bg-cobalt {
  background-color: #0047ab !important;
}
.bg-cobalt-active:active {
  background-color: #0047ab !important;
}
.bg-cobalt-hover:hover {
  background-color: #0047ab !important;
}
.bg-cobalt-focus:focus {
  background-color: #0047ab !important;
}
.bg-indigo {
  background-color: #6400a8 !important;
}
.bg-indigo-active:active {
  background-color: #6400a8 !important;
}
.bg-indigo-hover:hover {
  background-color: #6400a8 !important;
}
.bg-indigo-focus:focus {
  background-color: #6400a8 !important;
}
.bg-almost {
  background-color: #6a2ded !important;
}
.bg-almost-active:active {
  background-color: #6a2ded !important;
}
.bg-almost-hover:hover {
  background-color: #6a2ded !important;
}
.bg-almost-focus:focus {
  background-color: #6a2ded !important;
}
.bg-violet {
  background-color: #ee82ee !important;
}
.bg-violet-active:active {
  background-color: #ee82ee !important;
}
.bg-violet-hover:hover {
  background-color: #ee82ee !important;
}
.bg-violet-focus:focus {
  background-color: #ee82ee !important;
}
.bg-pink {
  background-color: #ffc0cb !important;
}
.bg-pink-active:active {
  background-color: #ffc0cb !important;
}
.bg-pink-hover:hover {
  background-color: #ffc0cb !important;
}
.bg-pink-focus:focus {
  background-color: #ffc0cb !important;
}
.bg-magenta {
  background-color: #ff00ff !important;
}
.bg-magenta-active:active {
  background-color: #ff00ff !important;
}
.bg-magenta-hover:hover {
  background-color: #ff00ff !important;
}
.bg-magenta-focus:focus {
  background-color: #ff00ff !important;
}
.bg-crimson {
  background-color: #df0e38 !important;
}
.bg-crimson-active:active {
  background-color: #df0e38 !important;
}
.bg-crimson-hover:hover {
  background-color: #df0e38 !important;
}
.bg-crimson-focus:focus {
  background-color: #df0e38 !important;
}
.bg-red {
  background-color: #ff0000 !important;
}
.bg-red-active:active {
  background-color: #ff0000 !important;
}
.bg-red-hover:hover {
  background-color: #ff0000 !important;
}
.bg-red-focus:focus {
  background-color: #ff0000 !important;
}
.bg-clown {
  background-color: #ff6d66 !important;
}
.bg-clown-active:active {
  background-color: #ff6d66 !important;
}
.bg-clown-hover:hover {
  background-color: #ff6d66 !important;
}
.bg-clown-focus:focus {
  background-color: #ff6d66 !important;
}
.bg-orange {
  background-color: #ffa500 !important;
}
.bg-orange-active:active {
  background-color: #ffa500 !important;
}
.bg-orange-hover:hover {
  background-color: #ffa500 !important;
}
.bg-orange-focus:focus {
  background-color: #ffa500 !important;
}
.bg-amber {
  background-color: #ffca2a !important;
}
.bg-amber-active:active {
  background-color: #ffca2a !important;
}
.bg-amber-hover:hover {
  background-color: #ffca2a !important;
}
.bg-amber-focus:focus {
  background-color: #ffca2a !important;
}
.bg-yellow {
  background-color: #ffe95e !important;
}
.bg-yellow-active:active {
  background-color: #ffe95e !important;
}
.bg-yellow-hover:hover {
  background-color: #ffe95e !important;
}
.bg-yellow-focus:focus {
  background-color: #ffe95e !important;
}
.bg-brown {
  background-color: #ca773c !important;
}
.bg-brown-active:active {
  background-color: #ca773c !important;
}
.bg-brown-hover:hover {
  background-color: #ca773c !important;
}
.bg-brown-focus:focus {
  background-color: #ca773c !important;
}
.bg-olive {
  background-color: #a1a100 !important;
}
.bg-olive-active:active {
  background-color: #a1a100 !important;
}
.bg-olive-hover:hover {
  background-color: #a1a100 !important;
}
.bg-olive-focus:focus {
  background-color: #a1a100 !important;
}
.bg-steel {
  background-color: #7b91a6 !important;
}
.bg-steel-active:active {
  background-color: #7b91a6 !important;
}
.bg-steel-hover:hover {
  background-color: #7b91a6 !important;
}
.bg-steel-focus:focus {
  background-color: #7b91a6 !important;
}
.bg-mauve {
  background-color: #e0afff !important;
}
.bg-mauve-active:active {
  background-color: #e0afff !important;
}
.bg-mauve-hover:hover {
  background-color: #e0afff !important;
}
.bg-mauve-focus:focus {
  background-color: #e0afff !important;
}
.bg-taupe {
  background-color: #977e67 !important;
}
.bg-taupe-active:active {
  background-color: #977e67 !important;
}
.bg-taupe-hover:hover {
  background-color: #977e67 !important;
}
.bg-taupe-focus:focus {
  background-color: #977e67 !important;
}
.bg-champagne {
  background-color: #f7e6ca !important;
}
.bg-champagne-active:active {
  background-color: #f7e6ca !important;
}
.bg-champagne-hover:hover {
  background-color: #f7e6ca !important;
}
.bg-champagne-focus:focus {
  background-color: #f7e6ca !important;
}
.bg-khaki {
  background-color: #d5c58a !important;
}
.bg-khaki-active:active {
  background-color: #d5c58a !important;
}
.bg-khaki-hover:hover {
  background-color: #d5c58a !important;
}
.bg-khaki-focus:focus {
  background-color: #d5c58a !important;
}
.bg-charcoal {
  background-color: #989898 !important;
}
.bg-charcoal-active:active {
  background-color: #989898 !important;
}
.bg-charcoal-hover:hover {
  background-color: #989898 !important;
}
.bg-charcoal-focus:focus {
  background-color: #989898 !important;
}
.bg-bronze {
  background-color: #e48d3e !important;
}
.bg-bronze-active:active {
  background-color: #e48d3e !important;
}
.bg-bronze-hover:hover {
  background-color: #e48d3e !important;
}
.bg-bronze-focus:focus {
  background-color: #e48d3e !important;
}
.bg-windstorm {
  background-color: #799ed6 !important;
}
.bg-windstorm-active:active {
  background-color: #799ed6 !important;
}
.bg-windstorm-hover:hover {
  background-color: #799ed6 !important;
}
.bg-windstorm-focus:focus {
  background-color: #799ed6 !important;
}
.bg-nude {
  background-color: #f7d9bc !important;
}
.bg-nude-active:active {
  background-color: #f7d9bc !important;
}
.bg-nude-hover:hover {
  background-color: #f7d9bc !important;
}
.bg-nude-focus:focus {
  background-color: #f7d9bc !important;
}
.bg-terracotta {
  background-color: #e35336 !important;
}
.bg-terracotta-active:active {
  background-color: #e35336 !important;
}
.bg-terracotta-hover:hover {
  background-color: #e35336 !important;
}
.bg-terracotta-focus:focus {
  background-color: #e35336 !important;
}
.bg-coral {
  background-color: #ff8559 !important;
}
.bg-coral-active:active {
  background-color: #ff8559 !important;
}
.bg-coral-hover:hover {
  background-color: #ff8559 !important;
}
.bg-coral-focus:focus {
  background-color: #ff8559 !important;
}
.bg-army {
  background-color: #5d6532 !important;
}
.bg-army-active:active {
  background-color: #5d6532 !important;
}
.bg-army-hover:hover {
  background-color: #5d6532 !important;
}
.bg-army-focus:focus {
  background-color: #5d6532 !important;
}
.bg-seashell {
  background-color: #fff1e7 !important;
}
.bg-seashell-active:active {
  background-color: #fff1e7 !important;
}
.bg-seashell-hover:hover {
  background-color: #fff1e7 !important;
}
.bg-seashell-focus:focus {
  background-color: #fff1e7 !important;
}
.bg-sand {
  background-color: #f1e0ae !important;
}
.bg-sand-active:active {
  background-color: #f1e0ae !important;
}
.bg-sand-hover:hover {
  background-color: #f1e0ae !important;
}
.bg-sand-focus:focus {
  background-color: #f1e0ae !important;
}
.bg-light-lime {
  background-color: #f2ffe7 !important;
}
.bg-light-lime-active:active {
  background-color: #f2ffe7 !important;
}
.bg-light-lime-hover:hover {
  background-color: #f2ffe7 !important;
}
.bg-light-lime-focus:focus {
  background-color: #f2ffe7 !important;
}
.bg-light-green {
  background-color: #e7f6e6 !important;
}
.bg-light-green-active:active {
  background-color: #e7f6e6 !important;
}
.bg-light-green-hover:hover {
  background-color: #e7f6e6 !important;
}
.bg-light-green-focus:focus {
  background-color: #e7f6e6 !important;
}
.bg-light-emerald {
  background-color: #d1e6cc !important;
}
.bg-light-emerald-active:active {
  background-color: #d1e6cc !important;
}
.bg-light-emerald-hover:hover {
  background-color: #d1e6cc !important;
}
.bg-light-emerald-focus:focus {
  background-color: #d1e6cc !important;
}
.bg-light-blue {
  background-color: #e7eaff !important;
}
.bg-light-blue-active:active {
  background-color: #e7eaff !important;
}
.bg-light-blue-hover:hover {
  background-color: #e7eaff !important;
}
.bg-light-blue-focus:focus {
  background-color: #e7eaff !important;
}
.bg-light-teal {
  background-color: #e1f2f3 !important;
}
.bg-light-teal-active:active {
  background-color: #e1f2f3 !important;
}
.bg-light-teal-hover:hover {
  background-color: #e1f2f3 !important;
}
.bg-light-teal-focus:focus {
  background-color: #e1f2f3 !important;
}
.bg-light-cyan {
  background-color: #e3edff !important;
}
.bg-light-cyan-active:active {
  background-color: #e3edff !important;
}
.bg-light-cyan-hover:hover {
  background-color: #e3edff !important;
}
.bg-light-cyan-focus:focus {
  background-color: #e3edff !important;
}
.bg-light-cobalt {
  background-color: #d1ecff !important;
}
.bg-light-cobalt-active:active {
  background-color: #d1ecff !important;
}
.bg-light-cobalt-hover:hover {
  background-color: #d1ecff !important;
}
.bg-light-cobalt-focus:focus {
  background-color: #d1ecff !important;
}
.bg-light-indigo {
  background-color: #f3dcf3 !important;
}
.bg-light-indigo-active:active {
  background-color: #f3dcf3 !important;
}
.bg-light-indigo-hover:hover {
  background-color: #f3dcf3 !important;
}
.bg-light-indigo-focus:focus {
  background-color: #f3dcf3 !important;
}
.bg-light-almost {
  background-color: #eee5ff !important;
}
.bg-light-almost-active:active {
  background-color: #eee5ff !important;
}
.bg-light-almost-hover:hover {
  background-color: #eee5ff !important;
}
.bg-light-almost-focus:focus {
  background-color: #eee5ff !important;
}
.bg-light-violet {
  background-color: #fce2fb !important;
}
.bg-light-violet-active:active {
  background-color: #fce2fb !important;
}
.bg-light-violet-hover:hover {
  background-color: #fce2fb !important;
}
.bg-light-violet-focus:focus {
  background-color: #fce2fb !important;
}
.bg-light-pink {
  background-color: #ffeef1 !important;
}
.bg-light-pink-active:active {
  background-color: #ffeef1 !important;
}
.bg-light-pink-hover:hover {
  background-color: #ffeef1 !important;
}
.bg-light-pink-focus:focus {
  background-color: #ffeef1 !important;
}
.bg-light-magenta {
  background-color: #ffe2ff !important;
}
.bg-light-magenta-active:active {
  background-color: #ffe2ff !important;
}
.bg-light-magenta-hover:hover {
  background-color: #ffe2ff !important;
}
.bg-light-magenta-focus:focus {
  background-color: #ffe2ff !important;
}
.bg-light-crimson {
  background-color: #ffd1da !important;
}
.bg-light-crimson-active:active {
  background-color: #ffd1da !important;
}
.bg-light-crimson-hover:hover {
  background-color: #ffd1da !important;
}
.bg-light-crimson-focus:focus {
  background-color: #ffd1da !important;
}
.bg-light-red {
  background-color: #ffe1e1 !important;
}
.bg-light-red-active:active {
  background-color: #ffe1e1 !important;
}
.bg-light-red-hover:hover {
  background-color: #ffe1e1 !important;
}
.bg-light-red-focus:focus {
  background-color: #ffe1e1 !important;
}
.bg-light-clown {
  background-color: #ffdede !important;
}
.bg-light-clown-active:active {
  background-color: #ffdede !important;
}
.bg-light-clown-hover:hover {
  background-color: #ffdede !important;
}
.bg-light-clown-focus:focus {
  background-color: #ffdede !important;
}
.bg-light-orange {
  background-color: #fff3de !important;
}
.bg-light-orange-active:active {
  background-color: #fff3de !important;
}
.bg-light-orange-hover:hover {
  background-color: #fff3de !important;
}
.bg-light-orange-focus:focus {
  background-color: #fff3de !important;
}
.bg-light-amber {
  background-color: #fff8e1 !important;
}
.bg-light-amber-active:active {
  background-color: #fff8e1 !important;
}
.bg-light-amber-hover:hover {
  background-color: #fff8e1 !important;
}
.bg-light-amber-focus:focus {
  background-color: #fff8e1 !important;
}
.bg-light-yellow {
  background-color: #ffffc6 !important;
}
.bg-light-yellow-active:active {
  background-color: #ffffc6 !important;
}
.bg-light-yellow-hover:hover {
  background-color: #ffffc6 !important;
}
.bg-light-yellow-focus:focus {
  background-color: #ffffc6 !important;
}
.bg-light-brown {
  background-color: #ffeed9 !important;
}
.bg-light-brown-active:active {
  background-color: #ffeed9 !important;
}
.bg-light-brown-hover:hover {
  background-color: #ffeed9 !important;
}
.bg-light-brown-focus:focus {
  background-color: #ffeed9 !important;
}
.bg-light-olive {
  background-color: #f8fde7 !important;
}
.bg-light-olive-active:active {
  background-color: #f8fde7 !important;
}
.bg-light-olive-hover:hover {
  background-color: #f8fde7 !important;
}
.bg-light-olive-focus:focus {
  background-color: #f8fde7 !important;
}
.bg-light-steel {
  background-color: #edeeee !important;
}
.bg-light-steel-active:active {
  background-color: #edeeee !important;
}
.bg-light-steel-hover:hover {
  background-color: #edeeee !important;
}
.bg-light-steel-focus:focus {
  background-color: #edeeee !important;
}
.bg-light-mauve {
  background-color: #f7ecfe !important;
}
.bg-light-mauve-active:active {
  background-color: #f7ecfe !important;
}
.bg-light-mauve-hover:hover {
  background-color: #f7ecfe !important;
}
.bg-light-mauve-focus:focus {
  background-color: #f7ecfe !important;
}
.bg-light-taupe {
  background-color: #eadccf !important;
}
.bg-light-taupe-active:active {
  background-color: #eadccf !important;
}
.bg-light-taupe-hover:hover {
  background-color: #eadccf !important;
}
.bg-light-taupe-focus:focus {
  background-color: #eadccf !important;
}
.bg-light-gray {
  background-color: #f4f4f4 !important;
}
.bg-light-gray-active:active {
  background-color: #f4f4f4 !important;
}
.bg-light-gray-hover:hover {
  background-color: #f4f4f4 !important;
}
.bg-light-gray-focus:focus {
  background-color: #f4f4f4 !important;
}
.bg-light-gray-blue {
  background-color: #bee2f4 !important;
}
.bg-light-gray-blue-active:active {
  background-color: #bee2f4 !important;
}
.bg-light-gray-blue-hover:hover {
  background-color: #bee2f4 !important;
}
.bg-light-gray-blue-focus:focus {
  background-color: #bee2f4 !important;
}
.bg-light-gray-mouse {
  background-color: #8ab4c8 !important;
}
.bg-light-gray-mouse-active:active {
  background-color: #8ab4c8 !important;
}
.bg-light-gray-mouse-hover:hover {
  background-color: #8ab4c8 !important;
}
.bg-light-gray-mouse-focus:focus {
  background-color: #8ab4c8 !important;
}
.bg-light-champagne {
  background-color: #fff9f2 !important;
}
.bg-light-champagne-active:active {
  background-color: #fff9f2 !important;
}
.bg-light-champagne-hover:hover {
  background-color: #fff9f2 !important;
}
.bg-light-champagne-focus:focus {
  background-color: #fff9f2 !important;
}
.bg-light-khaki {
  background-color: #f6f1dd !important;
}
.bg-light-khaki-active:active {
  background-color: #f6f1dd !important;
}
.bg-light-khaki-hover:hover {
  background-color: #f6f1dd !important;
}
.bg-light-khaki-focus:focus {
  background-color: #f6f1dd !important;
}
.bg-light-charcoal {
  background-color: #e8e8e8 !important;
}
.bg-light-charcoal-active:active {
  background-color: #e8e8e8 !important;
}
.bg-light-charcoal-hover:hover {
  background-color: #e8e8e8 !important;
}
.bg-light-charcoal-focus:focus {
  background-color: #e8e8e8 !important;
}
.bg-light-bronze {
  background-color: #ffecdc !important;
}
.bg-light-bronze-active:active {
  background-color: #ffecdc !important;
}
.bg-light-bronze-hover:hover {
  background-color: #ffecdc !important;
}
.bg-light-bronze-focus:focus {
  background-color: #ffecdc !important;
}
.bg-light-windstorm {
  background-color: #e6ebf5 !important;
}
.bg-light-windstorm-active:active {
  background-color: #e6ebf5 !important;
}
.bg-light-windstorm-hover:hover {
  background-color: #e6ebf5 !important;
}
.bg-light-windstorm-focus:focus {
  background-color: #e6ebf5 !important;
}
.bg-light-nude {
  background-color: #fcf0e4 !important;
}
.bg-light-nude-active:active {
  background-color: #fcf0e4 !important;
}
.bg-light-nude-hover:hover {
  background-color: #fcf0e4 !important;
}
.bg-light-nude-focus:focus {
  background-color: #fcf0e4 !important;
}
.bg-light-terracotta {
  background-color: #ffe5df !important;
}
.bg-light-terracotta-active:active {
  background-color: #ffe5df !important;
}
.bg-light-terracotta-hover:hover {
  background-color: #ffe5df !important;
}
.bg-light-terracotta-focus:focus {
  background-color: #ffe5df !important;
}
.bg-light-coral {
  background-color: #ffd8c8 !important;
}
.bg-light-coral-active:active {
  background-color: #ffd8c8 !important;
}
.bg-light-coral-hover:hover {
  background-color: #ffd8c8 !important;
}
.bg-light-coral-focus:focus {
  background-color: #ffd8c8 !important;
}
.bg-light-army {
  background-color: #eceacb !important;
}
.bg-light-army-active:active {
  background-color: #eceacb !important;
}
.bg-light-army-hover:hover {
  background-color: #eceacb !important;
}
.bg-light-army-focus:focus {
  background-color: #eceacb !important;
}
.bg-light-seashell {
  background-color: #fff9f8 !important;
}
.bg-light-seashell-active:active {
  background-color: #fff9f8 !important;
}
.bg-light-seashell-hover:hover {
  background-color: #fff9f8 !important;
}
.bg-light-seashell-focus:focus {
  background-color: #fff9f8 !important;
}
.bg-light-sand {
  background-color: #f8f3e0 !important;
}
.bg-light-sand-active:active {
  background-color: #f8f3e0 !important;
}
.bg-light-sand-hover:hover {
  background-color: #f8f3e0 !important;
}
.bg-light-sand-focus:focus {
  background-color: #f8f3e0 !important;
}
.bg-dark-lime {
  background-color: #557f32 !important;
}
.bg-dark-lime-active:active {
  background-color: #557f32 !important;
}
.bg-dark-lime-hover:hover {
  background-color: #557f32 !important;
}
.bg-dark-lime-focus:focus {
  background-color: #557f32 !important;
}
.bg-dark-green {
  background-color: #003d00 !important;
}
.bg-dark-green-active:active {
  background-color: #003d00 !important;
}
.bg-dark-green-hover:hover {
  background-color: #003d00 !important;
}
.bg-dark-green-focus:focus {
  background-color: #003d00 !important;
}
.bg-dark-emerald {
  background-color: #246339 !important;
}
.bg-dark-emerald-active:active {
  background-color: #246339 !important;
}
.bg-dark-emerald-hover:hover {
  background-color: #246339 !important;
}
.bg-dark-emerald-focus:focus {
  background-color: #246339 !important;
}
.bg-dark-blue {
  background-color: #132a6f !important;
}
.bg-dark-blue-active:active {
  background-color: #132a6f !important;
}
.bg-dark-blue-hover:hover {
  background-color: #132a6f !important;
}
.bg-dark-blue-focus:focus {
  background-color: #132a6f !important;
}
.bg-dark-teal {
  background-color: #014848 !important;
}
.bg-dark-teal-active:active {
  background-color: #014848 !important;
}
.bg-dark-teal-hover:hover {
  background-color: #014848 !important;
}
.bg-dark-teal-focus:focus {
  background-color: #014848 !important;
}
.bg-dark-cyan {
  background-color: #456c7e !important;
}
.bg-dark-cyan-active:active {
  background-color: #456c7e !important;
}
.bg-dark-cyan-hover:hover {
  background-color: #456c7e !important;
}
.bg-dark-cyan-focus:focus {
  background-color: #456c7e !important;
}
.bg-dark-cobalt {
  background-color: #001f54 !important;
}
.bg-dark-cobalt-active:active {
  background-color: #001f54 !important;
}
.bg-dark-cobalt-hover:hover {
  background-color: #001f54 !important;
}
.bg-dark-cobalt-focus:focus {
  background-color: #001f54 !important;
}
.bg-dark-indigo {
  background-color: #21003e !important;
}
.bg-dark-indigo-active:active {
  background-color: #21003e !important;
}
.bg-dark-indigo-hover:hover {
  background-color: #21003e !important;
}
.bg-dark-indigo-focus:focus {
  background-color: #21003e !important;
}
.bg-dark-almost {
  background-color: #2f0687 !important;
}
.bg-dark-almost-active:active {
  background-color: #2f0687 !important;
}
.bg-dark-almost-hover:hover {
  background-color: #2f0687 !important;
}
.bg-dark-almost-focus:focus {
  background-color: #2f0687 !important;
}
.bg-dark-violet {
  background-color: #773e77 !important;
}
.bg-dark-violet-active:active {
  background-color: #773e77 !important;
}
.bg-dark-violet-hover:hover {
  background-color: #773e77 !important;
}
.bg-dark-violet-focus:focus {
  background-color: #773e77 !important;
}
.bg-dark-pink {
  background-color: #805f65 !important;
}
.bg-dark-pink-active:active {
  background-color: #805f65 !important;
}
.bg-dark-pink-hover:hover {
  background-color: #805f65 !important;
}
.bg-dark-pink-focus:focus {
  background-color: #805f65 !important;
}
.bg-dark-magenta {
  background-color: #800080 !important;
}
.bg-dark-magenta-active:active {
  background-color: #800080 !important;
}
.bg-dark-magenta-hover:hover {
  background-color: #800080 !important;
}
.bg-dark-magenta-focus:focus {
  background-color: #800080 !important;
}
.bg-dark-crimson {
  background-color: #6e0519 !important;
}
.bg-dark-crimson-active:active {
  background-color: #6e0519 !important;
}
.bg-dark-crimson-hover:hover {
  background-color: #6e0519 !important;
}
.bg-dark-crimson-focus:focus {
  background-color: #6e0519 !important;
}
.bg-dark-red {
  background-color: #800000 !important;
}
.bg-dark-red-active:active {
  background-color: #800000 !important;
}
.bg-dark-red-hover:hover {
  background-color: #800000 !important;
}
.bg-dark-red-focus:focus {
  background-color: #800000 !important;
}
.bg-dark-clown {
  background-color: #aa2824 !important;
}
.bg-dark-clown-active:active {
  background-color: #aa2824 !important;
}
.bg-dark-clown-hover:hover {
  background-color: #aa2824 !important;
}
.bg-dark-clown-focus:focus {
  background-color: #aa2824 !important;
}
.bg-dark-orange {
  background-color: #805100 !important;
}
.bg-dark-orange-active:active {
  background-color: #805100 !important;
}
.bg-dark-orange-hover:hover {
  background-color: #805100 !important;
}
.bg-dark-orange-focus:focus {
  background-color: #805100 !important;
}
.bg-dark-amber {
  background-color: #805e00 !important;
}
.bg-dark-amber-active:active {
  background-color: #805e00 !important;
}
.bg-dark-amber-hover:hover {
  background-color: #805e00 !important;
}
.bg-dark-amber-focus:focus {
  background-color: #805e00 !important;
}
.bg-dark-yellow {
  background-color: #bca826 !important;
}
.bg-dark-yellow-active:active {
  background-color: #bca826 !important;
}
.bg-dark-yellow-hover:hover {
  background-color: #bca826 !important;
}
.bg-dark-yellow-focus:focus {
  background-color: #bca826 !important;
}
.bg-dark-brown {
  background-color: #42240f !important;
}
.bg-dark-brown-active:active {
  background-color: #42240f !important;
}
.bg-dark-brown-hover:hover {
  background-color: #42240f !important;
}
.bg-dark-brown-focus:focus {
  background-color: #42240f !important;
}
.bg-dark-olive {
  background-color: #3d3d00 !important;
}
.bg-dark-olive-active:active {
  background-color: #3d3d00 !important;
}
.bg-dark-olive-hover:hover {
  background-color: #3d3d00 !important;
}
.bg-dark-olive-focus:focus {
  background-color: #3d3d00 !important;
}
.bg-dark-steel {
  background-color: #2e3841 !important;
}
.bg-dark-steel-active:active {
  background-color: #2e3841 !important;
}
.bg-dark-steel-hover:hover {
  background-color: #2e3841 !important;
}
.bg-dark-steel-focus:focus {
  background-color: #2e3841 !important;
}
.bg-dark-mauve {
  background-color: #705680 !important;
}
.bg-dark-mauve-active:active {
  background-color: #705680 !important;
}
.bg-dark-mauve-hover:hover {
  background-color: #705680 !important;
}
.bg-dark-mauve-focus:focus {
  background-color: #705680 !important;
}
.bg-dark-taupe {
  background-color: #261e18 !important;
}
.bg-dark-taupe-active:active {
  background-color: #261e18 !important;
}
.bg-dark-taupe-hover:hover {
  background-color: #261e18 !important;
}
.bg-dark-taupe-focus:focus {
  background-color: #261e18 !important;
}
.bg-dark-gray {
  background-color: #515151 !important;
}
.bg-dark-gray-active:active {
  background-color: #515151 !important;
}
.bg-dark-gray-hover:hover {
  background-color: #515151 !important;
}
.bg-dark-gray-focus:focus {
  background-color: #515151 !important;
}
.bg-dark-gray-blue {
  background-color: #36464e !important;
}
.bg-dark-gray-blue-active:active {
  background-color: #36464e !important;
}
.bg-dark-gray-blue-hover:hover {
  background-color: #36464e !important;
}
.bg-dark-gray-blue-focus:focus {
  background-color: #36464e !important;
}
.bg-dark-gray-mouse {
  background-color: #2e3c42 !important;
}
.bg-dark-gray-mouse-active:active {
  background-color: #2e3c42 !important;
}
.bg-dark-gray-mouse-hover:hover {
  background-color: #2e3c42 !important;
}
.bg-dark-gray-mouse-focus:focus {
  background-color: #2e3c42 !important;
}
.bg-dark-champagne {
  background-color: #7c7364 !important;
}
.bg-dark-champagne-active:active {
  background-color: #7c7364 !important;
}
.bg-dark-champagne-hover:hover {
  background-color: #7c7364 !important;
}
.bg-dark-champagne-focus:focus {
  background-color: #7c7364 !important;
}
.bg-dark-khaki {
  background-color: #6a6142 !important;
}
.bg-dark-khaki-active:active {
  background-color: #6a6142 !important;
}
.bg-dark-khaki-hover:hover {
  background-color: #6a6142 !important;
}
.bg-dark-khaki-focus:focus {
  background-color: #6a6142 !important;
}
.bg-dark-charcoal {
  background-color: #202020 !important;
}
.bg-dark-charcoal-active:active {
  background-color: #202020 !important;
}
.bg-dark-charcoal-hover:hover {
  background-color: #202020 !important;
}
.bg-dark-charcoal-focus:focus {
  background-color: #202020 !important;
}
.bg-dark-bronze {
  background-color: #693c13 !important;
}
.bg-dark-bronze-active:active {
  background-color: #693c13 !important;
}
.bg-dark-bronze-hover:hover {
  background-color: #693c13 !important;
}
.bg-dark-bronze-focus:focus {
  background-color: #693c13 !important;
}
.bg-dark-windstorm {
  background-color: #304462 !important;
}
.bg-dark-windstorm-active:active {
  background-color: #304462 !important;
}
.bg-dark-windstorm-hover:hover {
  background-color: #304462 !important;
}
.bg-dark-windstorm-focus:focus {
  background-color: #304462 !important;
}
.bg-dark-nude {
  background-color: #7c6c5d !important;
}
.bg-dark-nude-active:active {
  background-color: #7c6c5d !important;
}
.bg-dark-nude-hover:hover {
  background-color: #7c6c5d !important;
}
.bg-dark-nude-focus:focus {
  background-color: #7c6c5d !important;
}
.bg-dark-terracotta {
  background-color: #712516 !important;
}
.bg-dark-terracotta-active:active {
  background-color: #712516 !important;
}
.bg-dark-terracotta-hover:hover {
  background-color: #712516 !important;
}
.bg-dark-terracotta-focus:focus {
  background-color: #712516 !important;
}
.bg-dark-coral {
  background-color: #804028 !important;
}
.bg-dark-coral-active:active {
  background-color: #804028 !important;
}
.bg-dark-coral-hover:hover {
  background-color: #804028 !important;
}
.bg-dark-coral-focus:focus {
  background-color: #804028 !important;
}
.bg-dark-army {
  background-color: #2a2f14 !important;
}
.bg-dark-army-active:active {
  background-color: #2a2f14 !important;
}
.bg-dark-army-hover:hover {
  background-color: #2a2f14 !important;
}
.bg-dark-army-focus:focus {
  background-color: #2a2f14 !important;
}
.bg-dark-seashell {
  background-color: #bfa89a !important;
}
.bg-dark-seashell-active:active {
  background-color: #bfa89a !important;
}
.bg-dark-seashell-hover:hover {
  background-color: #bfa89a !important;
}
.bg-dark-seashell-focus:focus {
  background-color: #bfa89a !important;
}
.bg-dark-sand {
  background-color: #8f8975 !important;
}
.bg-dark-sand-active:active {
  background-color: #8f8975 !important;
}
.bg-dark-sand-hover:hover {
  background-color: #8f8975 !important;
}
.bg-dark-sand-focus:focus {
  background-color: #8f8975 !important;
}
.bg-sat-lime {
  background-color: #7dba4a !important;
}
.bg-sat-lime-active:active {
  background-color: #7dba4a !important;
}
.bg-sat-lime-hover:hover {
  background-color: #7dba4a !important;
}
.bg-sat-lime-focus:focus {
  background-color: #7dba4a !important;
}
.bg-sat-green {
  background-color: #008f00 !important;
}
.bg-sat-green-active:active {
  background-color: #008f00 !important;
}
.bg-sat-green-hover:hover {
  background-color: #008f00 !important;
}
.bg-sat-green-focus:focus {
  background-color: #008f00 !important;
}
.bg-sat-emerald {
  background-color: #3ca15d !important;
}
.bg-sat-emerald-active:active {
  background-color: #3ca15d !important;
}
.bg-sat-emerald-hover:hover {
  background-color: #3ca15d !important;
}
.bg-sat-emerald-focus:focus {
  background-color: #3ca15d !important;
}
.bg-sat-blue {
  background-color: #1f43ae !important;
}
.bg-sat-blue-active:active {
  background-color: #1f43ae !important;
}
.bg-sat-blue-hover:hover {
  background-color: #1f43ae !important;
}
.bg-sat-blue-focus:focus {
  background-color: #1f43ae !important;
}
.bg-sat-teal {
  background-color: #008a8a !important;
}
.bg-sat-teal-active:active {
  background-color: #008a8a !important;
}
.bg-sat-teal-hover:hover {
  background-color: #008a8a !important;
}
.bg-sat-teal-focus:focus {
  background-color: #008a8a !important;
}
.bg-sat-cyan {
  background-color: #659db6 !important;
}
.bg-sat-cyan-active:active {
  background-color: #659db6 !important;
}
.bg-sat-cyan-hover:hover {
  background-color: #659db6 !important;
}
.bg-sat-cyan-focus:focus {
  background-color: #659db6 !important;
}
.bg-sat-cobalt {
  background-color: #003391 !important;
}
.bg-sat-cobalt-active:active {
  background-color: #003391 !important;
}
.bg-sat-cobalt-hover:hover {
  background-color: #003391 !important;
}
.bg-sat-cobalt-focus:focus {
  background-color: #003391 !important;
}
.bg-sat-indigo {
  background-color: #430080 !important;
}
.bg-sat-indigo-active:active {
  background-color: #430080 !important;
}
.bg-sat-indigo-hover:hover {
  background-color: #430080 !important;
}
.bg-sat-indigo-focus:focus {
  background-color: #430080 !important;
}
.bg-sat-almost {
  background-color: #4e18c1 !important;
}
.bg-sat-almost-active:active {
  background-color: #4e18c1 !important;
}
.bg-sat-almost-hover:hover {
  background-color: #4e18c1 !important;
}
.bg-sat-almost-focus:focus {
  background-color: #4e18c1 !important;
}
.bg-sat-violet {
  background-color: #b65fb6 !important;
}
.bg-sat-violet-active:active {
  background-color: #b65fb6 !important;
}
.bg-sat-violet-hover:hover {
  background-color: #b65fb6 !important;
}
.bg-sat-violet-focus:focus {
  background-color: #b65fb6 !important;
}
.bg-sat-pink {
  background-color: #cc7296 !important;
}
.bg-sat-pink-active:active {
  background-color: #cc7296 !important;
}
.bg-sat-pink-hover:hover {
  background-color: #cc7296 !important;
}
.bg-sat-pink-focus:focus {
  background-color: #cc7296 !important;
}
.bg-sat-magenta {
  background-color: #c500c5 !important;
}
.bg-sat-magenta-active:active {
  background-color: #c500c5 !important;
}
.bg-sat-magenta-hover:hover {
  background-color: #c500c5 !important;
}
.bg-sat-magenta-focus:focus {
  background-color: #c500c5 !important;
}
.bg-sat-crimson {
  background-color: #980824 !important;
}
.bg-sat-crimson-active:active {
  background-color: #980824 !important;
}
.bg-sat-crimson-hover:hover {
  background-color: #980824 !important;
}
.bg-sat-crimson-focus:focus {
  background-color: #980824 !important;
}
.bg-sat-red {
  background-color: #b80000 !important;
}
.bg-sat-red-active:active {
  background-color: #b80000 !important;
}
.bg-sat-red-hover:hover {
  background-color: #b80000 !important;
}
.bg-sat-red-focus:focus {
  background-color: #b80000 !important;
}
.bg-sat-clown {
  background-color: #d64f48 !important;
}
.bg-sat-clown-active:active {
  background-color: #d64f48 !important;
}
.bg-sat-clown-hover:hover {
  background-color: #d64f48 !important;
}
.bg-sat-clown-focus:focus {
  background-color: #d64f48 !important;
}
.bg-sat-orange {
  background-color: #bc7700 !important;
}
.bg-sat-orange-active:active {
  background-color: #bc7700 !important;
}
.bg-sat-orange-hover:hover {
  background-color: #bc7700 !important;
}
.bg-sat-orange-focus:focus {
  background-color: #bc7700 !important;
}
.bg-sat-amber {
  background-color: #d19b00 !important;
}
.bg-sat-amber-active:active {
  background-color: #d19b00 !important;
}
.bg-sat-amber-hover:hover {
  background-color: #d19b00 !important;
}
.bg-sat-amber-focus:focus {
  background-color: #d19b00 !important;
}
.bg-sat-yellow {
  background-color: #e4ce43 !important;
}
.bg-sat-yellow-active:active {
  background-color: #e4ce43 !important;
}
.bg-sat-yellow-hover:hover {
  background-color: #e4ce43 !important;
}
.bg-sat-yellow-focus:focus {
  background-color: #e4ce43 !important;
}
.bg-sat-brown {
  background-color: #884b20 !important;
}
.bg-sat-brown-active:active {
  background-color: #884b20 !important;
}
.bg-sat-brown-hover:hover {
  background-color: #884b20 !important;
}
.bg-sat-brown-focus:focus {
  background-color: #884b20 !important;
}
.bg-sat-olive {
  background-color: #838300 !important;
}
.bg-sat-olive-active:active {
  background-color: #838300 !important;
}
.bg-sat-olive-hover:hover {
  background-color: #838300 !important;
}
.bg-sat-olive-focus:focus {
  background-color: #838300 !important;
}
.bg-sat-steel {
  background-color: #5c7081 !important;
}
.bg-sat-steel-active:active {
  background-color: #5c7081 !important;
}
.bg-sat-steel-hover:hover {
  background-color: #5c7081 !important;
}
.bg-sat-steel-focus:focus {
  background-color: #5c7081 !important;
}
.bg-sat-mauve {
  background-color: #a982c1 !important;
}
.bg-sat-mauve-active:active {
  background-color: #a982c1 !important;
}
.bg-sat-mauve-hover:hover {
  background-color: #a982c1 !important;
}
.bg-sat-mauve-focus:focus {
  background-color: #a982c1 !important;
}
.bg-sat-taupe {
  background-color: #5e4a3c !important;
}
.bg-sat-taupe-active:active {
  background-color: #5e4a3c !important;
}
.bg-sat-taupe-hover:hover {
  background-color: #5e4a3c !important;
}
.bg-sat-taupe-focus:focus {
  background-color: #5e4a3c !important;
}
.bg-sat-gray {
  background-color: #9c9c9c !important;
}
.bg-sat-gray-active:active {
  background-color: #9c9c9c !important;
}
.bg-sat-gray-hover:hover {
  background-color: #9c9c9c !important;
}
.bg-sat-gray-focus:focus {
  background-color: #9c9c9c !important;
}
.bg-sat-gray-blue {
  background-color: #5f7a88 !important;
}
.bg-sat-gray-blue-active:active {
  background-color: #5f7a88 !important;
}
.bg-sat-gray-blue-hover:hover {
  background-color: #5f7a88 !important;
}
.bg-sat-gray-blue-focus:focus {
  background-color: #5f7a88 !important;
}
.bg-sat-gray-mouse {
  background-color: #3f535c !important;
}
.bg-sat-gray-mouse-active:active {
  background-color: #3f535c !important;
}
.bg-sat-gray-mouse-hover:hover {
  background-color: #3f535c !important;
}
.bg-sat-gray-mouse-focus:focus {
  background-color: #3f535c !important;
}
.bg-sat-champagne {
  background-color: #ccbca5 !important;
}
.bg-sat-champagne-active:active {
  background-color: #ccbca5 !important;
}
.bg-sat-champagne-hover:hover {
  background-color: #ccbca5 !important;
}
.bg-sat-champagne-focus:focus {
  background-color: #ccbca5 !important;
}
.bg-sat-khaki {
  background-color: #aa9c6b !important;
}
.bg-sat-khaki-active:active {
  background-color: #aa9c6b !important;
}
.bg-sat-khaki-hover:hover {
  background-color: #aa9c6b !important;
}
.bg-sat-khaki-focus:focus {
  background-color: #aa9c6b !important;
}
.bg-sat-charcoal {
  background-color: #5e5e5e !important;
}
.bg-sat-charcoal-active:active {
  background-color: #5e5e5e !important;
}
.bg-sat-charcoal-hover:hover {
  background-color: #5e5e5e !important;
}
.bg-sat-charcoal-focus:focus {
  background-color: #5e5e5e !important;
}
.bg-sat-bronze {
  background-color: #aa621f !important;
}
.bg-sat-bronze-active:active {
  background-color: #aa621f !important;
}
.bg-sat-bronze-hover:hover {
  background-color: #aa621f !important;
}
.bg-sat-bronze-focus:focus {
  background-color: #aa621f !important;
}
.bg-sat-windstorm {
  background-color: #5071a3 !important;
}
.bg-sat-windstorm-active:active {
  background-color: #5071a3 !important;
}
.bg-sat-windstorm-hover:hover {
  background-color: #5071a3 !important;
}
.bg-sat-windstorm-focus:focus {
  background-color: #5071a3 !important;
}
.bg-sat-nude {
  background-color: #baa28b !important;
}
.bg-sat-nude-active:active {
  background-color: #baa28b !important;
}
.bg-sat-nude-hover:hover {
  background-color: #baa28b !important;
}
.bg-sat-nude-focus:focus {
  background-color: #baa28b !important;
}
.bg-sat-terracotta {
  background-color: #af3a23 !important;
}
.bg-sat-terracotta-active:active {
  background-color: #af3a23 !important;
}
.bg-sat-terracotta-hover:hover {
  background-color: #af3a23 !important;
}
.bg-sat-terracotta-focus:focus {
  background-color: #af3a23 !important;
}
.bg-sat-coral {
  background-color: #b65c39 !important;
}
.bg-sat-coral-active:active {
  background-color: #b65c39 !important;
}
.bg-sat-coral-hover:hover {
  background-color: #b65c39 !important;
}
.bg-sat-coral-focus:focus {
  background-color: #b65c39 !important;
}
.bg-sat-army {
  background-color: #647030 !important;
}
.bg-sat-army-active:active {
  background-color: #647030 !important;
}
.bg-sat-army-hover:hover {
  background-color: #647030 !important;
}
.bg-sat-army-focus:focus {
  background-color: #647030 !important;
}
.bg-sat-seashell {
  background-color: #e1cbbd !important;
}
.bg-sat-seashell-active:active {
  background-color: #e1cbbd !important;
}
.bg-sat-seashell-hover:hover {
  background-color: #e1cbbd !important;
}
.bg-sat-seashell-focus:focus {
  background-color: #e1cbbd !important;
}
.bg-sat-sand {
  background-color: #d1c5a1 !important;
}
.bg-sat-sand-active:active {
  background-color: #d1c5a1 !important;
}
.bg-sat-sand-hover:hover {
  background-color: #d1c5a1 !important;
}
.bg-sat-sand-focus:focus {
  background-color: #d1c5a1 !important;
}
:root {
  --gm-value: 16px;
}
.bg-glassmorphism {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(var(--gm-value)) !important;
}

/* source/colors-css/border.less */
.bd-default {
  border-color: var(--border-color) !important;
}
.bd-transparent {
  border-color: transparent !important;
}
.bd-black {
  border-color: #000000 !important;
}
.bd-black-active:active {
  border-color: #000000 !important;
}
.bd-black-hover:hover {
  border-color: #000000 !important;
}
.bd-black-focus:focus {
  border-color: #000000 !important;
}
.bd-before-black::before {
  border-color: #000000 !important;
}
.bd-after-black::after {
  border-color: #000000 !important;
}
.bd-white {
  border-color: #ffffff !important;
}
.bd-white-active:active {
  border-color: #ffffff !important;
}
.bd-white-hover:hover {
  border-color: #ffffff !important;
}
.bd-white-focus:focus {
  border-color: #ffffff !important;
}
.bd-before-white::before {
  border-color: #ffffff !important;
}
.bd-after-white::after {
  border-color: #ffffff !important;
}
.bd-dark {
  border-color: #1d1d1d !important;
}
.bd-dark-active:active {
  border-color: #1d1d1d !important;
}
.bd-dark-hover:hover {
  border-color: #1d1d1d !important;
}
.bd-dark-focus:focus {
  border-color: #1d1d1d !important;
}
.bd-before-dark::before {
  border-color: #1d1d1d !important;
}
.bd-after-dark::after {
  border-color: #1d1d1d !important;
}
.bd-light {
  border-color: #f8f8f8 !important;
}
.bd-light-active:active {
  border-color: #f8f8f8 !important;
}
.bd-light-hover:hover {
  border-color: #f8f8f8 !important;
}
.bd-light-focus:focus {
  border-color: #f8f8f8 !important;
}
.bd-before-light::before {
  border-color: #f8f8f8 !important;
}
.bd-after-light::after {
  border-color: #f8f8f8 !important;
}
.bd-gray {
  border-color: #ccc !important;
}
.bd-gray-active:active {
  border-color: #ccc !important;
}
.bd-gray-hover:hover {
  border-color: #ccc !important;
}
.bd-gray-focus:focus {
  border-color: #ccc !important;
}
.bd-before-gray::before {
  border-color: #ccc !important;
}
.bd-after-gray::after {
  border-color: #ccc !important;
}
.bd-gray-blue {
  border-color: #6a89a7 !important;
}
.bd-gray-blue-active:active {
  border-color: #6a89a7 !important;
}
.bd-gray-blue-hover:hover {
  border-color: #6a89a7 !important;
}
.bd-gray-blue-focus:focus {
  border-color: #6a89a7 !important;
}
.bd-before-gray-blue::before {
  border-color: #6a89a7 !important;
}
.bd-after-gray-blue::after {
  border-color: #6a89a7 !important;
}
.bd-gray-white {
  border-color: #f5f5f5 !important;
}
.bd-gray-white-active:active {
  border-color: #f5f5f5 !important;
}
.bd-gray-white-hover:hover {
  border-color: #f5f5f5 !important;
}
.bd-gray-white-focus:focus {
  border-color: #f5f5f5 !important;
}
.bd-before-gray-white::before {
  border-color: #f5f5f5 !important;
}
.bd-after-gray-white::after {
  border-color: #f5f5f5 !important;
}
.bd-gray-mouse {
  border-color: #566b75 !important;
}
.bd-gray-mouse-active:active {
  border-color: #566b75 !important;
}
.bd-gray-mouse-hover:hover {
  border-color: #566b75 !important;
}
.bd-gray-mouse-focus:focus {
  border-color: #566b75 !important;
}
.bd-before-gray-mouse::before {
  border-color: #566b75 !important;
}
.bd-after-gray-mouse::after {
  border-color: #566b75 !important;
}
.bd-lime {
  border-color: #AEFD6C !important;
}
.bd-lime-active:active {
  border-color: #AEFD6C !important;
}
.bd-lime-hover:hover {
  border-color: #AEFD6C !important;
}
.bd-lime-focus:focus {
  border-color: #AEFD6C !important;
}
.bd-before-lime::before {
  border-color: #AEFD6C !important;
}
.bd-after-lime::after {
  border-color: #AEFD6C !important;
}
.bd-green {
  border-color: #00b500 !important;
}
.bd-green-active:active {
  border-color: #00b500 !important;
}
.bd-green-hover:hover {
  border-color: #00b500 !important;
}
.bd-green-focus:focus {
  border-color: #00b500 !important;
}
.bd-before-green::before {
  border-color: #00b500 !important;
}
.bd-after-green::after {
  border-color: #00b500 !important;
}
.bd-emerald {
  border-color: #50c878 !important;
}
.bd-emerald-active:active {
  border-color: #50c878 !important;
}
.bd-emerald-hover:hover {
  border-color: #50c878 !important;
}
.bd-emerald-focus:focus {
  border-color: #50c878 !important;
}
.bd-before-emerald::before {
  border-color: #50c878 !important;
}
.bd-after-emerald::after {
  border-color: #50c878 !important;
}
.bd-blue {
  border-color: #5e87ff !important;
}
.bd-blue-active:active {
  border-color: #5e87ff !important;
}
.bd-blue-hover:hover {
  border-color: #5e87ff !important;
}
.bd-blue-focus:focus {
  border-color: #5e87ff !important;
}
.bd-before-blue::before {
  border-color: #5e87ff !important;
}
.bd-after-blue::after {
  border-color: #5e87ff !important;
}
.bd-teal {
  border-color: #1ac5c5 !important;
}
.bd-teal-active:active {
  border-color: #1ac5c5 !important;
}
.bd-teal-hover:hover {
  border-color: #1ac5c5 !important;
}
.bd-teal-focus:focus {
  border-color: #1ac5c5 !important;
}
.bd-before-teal::before {
  border-color: #1ac5c5 !important;
}
.bd-after-teal::after {
  border-color: #1ac5c5 !important;
}
.bd-cyan {
  border-color: #94b6ff !important;
}
.bd-cyan-active:active {
  border-color: #94b6ff !important;
}
.bd-cyan-hover:hover {
  border-color: #94b6ff !important;
}
.bd-cyan-focus:focus {
  border-color: #94b6ff !important;
}
.bd-before-cyan::before {
  border-color: #94b6ff !important;
}
.bd-after-cyan::after {
  border-color: #94b6ff !important;
}
.bd-cobalt {
  border-color: #0047ab !important;
}
.bd-cobalt-active:active {
  border-color: #0047ab !important;
}
.bd-cobalt-hover:hover {
  border-color: #0047ab !important;
}
.bd-cobalt-focus:focus {
  border-color: #0047ab !important;
}
.bd-before-cobalt::before {
  border-color: #0047ab !important;
}
.bd-after-cobalt::after {
  border-color: #0047ab !important;
}
.bd-indigo {
  border-color: #6400a8 !important;
}
.bd-indigo-active:active {
  border-color: #6400a8 !important;
}
.bd-indigo-hover:hover {
  border-color: #6400a8 !important;
}
.bd-indigo-focus:focus {
  border-color: #6400a8 !important;
}
.bd-before-indigo::before {
  border-color: #6400a8 !important;
}
.bd-after-indigo::after {
  border-color: #6400a8 !important;
}
.bd-almost {
  border-color: #6a2ded !important;
}
.bd-almost-active:active {
  border-color: #6a2ded !important;
}
.bd-almost-hover:hover {
  border-color: #6a2ded !important;
}
.bd-almost-focus:focus {
  border-color: #6a2ded !important;
}
.bd-before-almost::before {
  border-color: #6a2ded !important;
}
.bd-after-almost::after {
  border-color: #6a2ded !important;
}
.bd-violet {
  border-color: #ee82ee !important;
}
.bd-violet-active:active {
  border-color: #ee82ee !important;
}
.bd-violet-hover:hover {
  border-color: #ee82ee !important;
}
.bd-violet-focus:focus {
  border-color: #ee82ee !important;
}
.bd-before-violet::before {
  border-color: #ee82ee !important;
}
.bd-after-violet::after {
  border-color: #ee82ee !important;
}
.bd-pink {
  border-color: #ffc0cb !important;
}
.bd-pink-active:active {
  border-color: #ffc0cb !important;
}
.bd-pink-hover:hover {
  border-color: #ffc0cb !important;
}
.bd-pink-focus:focus {
  border-color: #ffc0cb !important;
}
.bd-before-pink::before {
  border-color: #ffc0cb !important;
}
.bd-after-pink::after {
  border-color: #ffc0cb !important;
}
.bd-magenta {
  border-color: #ff00ff !important;
}
.bd-magenta-active:active {
  border-color: #ff00ff !important;
}
.bd-magenta-hover:hover {
  border-color: #ff00ff !important;
}
.bd-magenta-focus:focus {
  border-color: #ff00ff !important;
}
.bd-before-magenta::before {
  border-color: #ff00ff !important;
}
.bd-after-magenta::after {
  border-color: #ff00ff !important;
}
.bd-crimson {
  border-color: #df0e38 !important;
}
.bd-crimson-active:active {
  border-color: #df0e38 !important;
}
.bd-crimson-hover:hover {
  border-color: #df0e38 !important;
}
.bd-crimson-focus:focus {
  border-color: #df0e38 !important;
}
.bd-before-crimson::before {
  border-color: #df0e38 !important;
}
.bd-after-crimson::after {
  border-color: #df0e38 !important;
}
.bd-red {
  border-color: #ff0000 !important;
}
.bd-red-active:active {
  border-color: #ff0000 !important;
}
.bd-red-hover:hover {
  border-color: #ff0000 !important;
}
.bd-red-focus:focus {
  border-color: #ff0000 !important;
}
.bd-before-red::before {
  border-color: #ff0000 !important;
}
.bd-after-red::after {
  border-color: #ff0000 !important;
}
.bd-clown {
  border-color: #ff6d66 !important;
}
.bd-clown-active:active {
  border-color: #ff6d66 !important;
}
.bd-clown-hover:hover {
  border-color: #ff6d66 !important;
}
.bd-clown-focus:focus {
  border-color: #ff6d66 !important;
}
.bd-before-clown::before {
  border-color: #ff6d66 !important;
}
.bd-after-clown::after {
  border-color: #ff6d66 !important;
}
.bd-orange {
  border-color: #ffa500 !important;
}
.bd-orange-active:active {
  border-color: #ffa500 !important;
}
.bd-orange-hover:hover {
  border-color: #ffa500 !important;
}
.bd-orange-focus:focus {
  border-color: #ffa500 !important;
}
.bd-before-orange::before {
  border-color: #ffa500 !important;
}
.bd-after-orange::after {
  border-color: #ffa500 !important;
}
.bd-amber {
  border-color: #ffca2a !important;
}
.bd-amber-active:active {
  border-color: #ffca2a !important;
}
.bd-amber-hover:hover {
  border-color: #ffca2a !important;
}
.bd-amber-focus:focus {
  border-color: #ffca2a !important;
}
.bd-before-amber::before {
  border-color: #ffca2a !important;
}
.bd-after-amber::after {
  border-color: #ffca2a !important;
}
.bd-yellow {
  border-color: #ffe95e !important;
}
.bd-yellow-active:active {
  border-color: #ffe95e !important;
}
.bd-yellow-hover:hover {
  border-color: #ffe95e !important;
}
.bd-yellow-focus:focus {
  border-color: #ffe95e !important;
}
.bd-before-yellow::before {
  border-color: #ffe95e !important;
}
.bd-after-yellow::after {
  border-color: #ffe95e !important;
}
.bd-brown {
  border-color: #ca773c !important;
}
.bd-brown-active:active {
  border-color: #ca773c !important;
}
.bd-brown-hover:hover {
  border-color: #ca773c !important;
}
.bd-brown-focus:focus {
  border-color: #ca773c !important;
}
.bd-before-brown::before {
  border-color: #ca773c !important;
}
.bd-after-brown::after {
  border-color: #ca773c !important;
}
.bd-olive {
  border-color: #a1a100 !important;
}
.bd-olive-active:active {
  border-color: #a1a100 !important;
}
.bd-olive-hover:hover {
  border-color: #a1a100 !important;
}
.bd-olive-focus:focus {
  border-color: #a1a100 !important;
}
.bd-before-olive::before {
  border-color: #a1a100 !important;
}
.bd-after-olive::after {
  border-color: #a1a100 !important;
}
.bd-steel {
  border-color: #7b91a6 !important;
}
.bd-steel-active:active {
  border-color: #7b91a6 !important;
}
.bd-steel-hover:hover {
  border-color: #7b91a6 !important;
}
.bd-steel-focus:focus {
  border-color: #7b91a6 !important;
}
.bd-before-steel::before {
  border-color: #7b91a6 !important;
}
.bd-after-steel::after {
  border-color: #7b91a6 !important;
}
.bd-mauve {
  border-color: #e0afff !important;
}
.bd-mauve-active:active {
  border-color: #e0afff !important;
}
.bd-mauve-hover:hover {
  border-color: #e0afff !important;
}
.bd-mauve-focus:focus {
  border-color: #e0afff !important;
}
.bd-before-mauve::before {
  border-color: #e0afff !important;
}
.bd-after-mauve::after {
  border-color: #e0afff !important;
}
.bd-taupe {
  border-color: #977e67 !important;
}
.bd-taupe-active:active {
  border-color: #977e67 !important;
}
.bd-taupe-hover:hover {
  border-color: #977e67 !important;
}
.bd-taupe-focus:focus {
  border-color: #977e67 !important;
}
.bd-before-taupe::before {
  border-color: #977e67 !important;
}
.bd-after-taupe::after {
  border-color: #977e67 !important;
}
.bd-champagne {
  border-color: #f7e6ca !important;
}
.bd-champagne-active:active {
  border-color: #f7e6ca !important;
}
.bd-champagne-hover:hover {
  border-color: #f7e6ca !important;
}
.bd-champagne-focus:focus {
  border-color: #f7e6ca !important;
}
.bd-before-champagne::before {
  border-color: #f7e6ca !important;
}
.bd-after-champagne::after {
  border-color: #f7e6ca !important;
}
.bd-khaki {
  border-color: #d5c58a !important;
}
.bd-khaki-active:active {
  border-color: #d5c58a !important;
}
.bd-khaki-hover:hover {
  border-color: #d5c58a !important;
}
.bd-khaki-focus:focus {
  border-color: #d5c58a !important;
}
.bd-before-khaki::before {
  border-color: #d5c58a !important;
}
.bd-after-khaki::after {
  border-color: #d5c58a !important;
}
.bd-charcoal {
  border-color: #989898 !important;
}
.bd-charcoal-active:active {
  border-color: #989898 !important;
}
.bd-charcoal-hover:hover {
  border-color: #989898 !important;
}
.bd-charcoal-focus:focus {
  border-color: #989898 !important;
}
.bd-before-charcoal::before {
  border-color: #989898 !important;
}
.bd-after-charcoal::after {
  border-color: #989898 !important;
}
.bd-bronze {
  border-color: #e48d3e !important;
}
.bd-bronze-active:active {
  border-color: #e48d3e !important;
}
.bd-bronze-hover:hover {
  border-color: #e48d3e !important;
}
.bd-bronze-focus:focus {
  border-color: #e48d3e !important;
}
.bd-before-bronze::before {
  border-color: #e48d3e !important;
}
.bd-after-bronze::after {
  border-color: #e48d3e !important;
}
.bd-windstorm {
  border-color: #799ed6 !important;
}
.bd-windstorm-active:active {
  border-color: #799ed6 !important;
}
.bd-windstorm-hover:hover {
  border-color: #799ed6 !important;
}
.bd-windstorm-focus:focus {
  border-color: #799ed6 !important;
}
.bd-before-windstorm::before {
  border-color: #799ed6 !important;
}
.bd-after-windstorm::after {
  border-color: #799ed6 !important;
}
.bd-nude {
  border-color: #f7d9bc !important;
}
.bd-nude-active:active {
  border-color: #f7d9bc !important;
}
.bd-nude-hover:hover {
  border-color: #f7d9bc !important;
}
.bd-nude-focus:focus {
  border-color: #f7d9bc !important;
}
.bd-before-nude::before {
  border-color: #f7d9bc !important;
}
.bd-after-nude::after {
  border-color: #f7d9bc !important;
}
.bd-terracotta {
  border-color: #e35336 !important;
}
.bd-terracotta-active:active {
  border-color: #e35336 !important;
}
.bd-terracotta-hover:hover {
  border-color: #e35336 !important;
}
.bd-terracotta-focus:focus {
  border-color: #e35336 !important;
}
.bd-before-terracotta::before {
  border-color: #e35336 !important;
}
.bd-after-terracotta::after {
  border-color: #e35336 !important;
}
.bd-coral {
  border-color: #ff8559 !important;
}
.bd-coral-active:active {
  border-color: #ff8559 !important;
}
.bd-coral-hover:hover {
  border-color: #ff8559 !important;
}
.bd-coral-focus:focus {
  border-color: #ff8559 !important;
}
.bd-before-coral::before {
  border-color: #ff8559 !important;
}
.bd-after-coral::after {
  border-color: #ff8559 !important;
}
.bd-army {
  border-color: #5d6532 !important;
}
.bd-army-active:active {
  border-color: #5d6532 !important;
}
.bd-army-hover:hover {
  border-color: #5d6532 !important;
}
.bd-army-focus:focus {
  border-color: #5d6532 !important;
}
.bd-before-army::before {
  border-color: #5d6532 !important;
}
.bd-after-army::after {
  border-color: #5d6532 !important;
}
.bd-seashell {
  border-color: #fff1e7 !important;
}
.bd-seashell-active:active {
  border-color: #fff1e7 !important;
}
.bd-seashell-hover:hover {
  border-color: #fff1e7 !important;
}
.bd-seashell-focus:focus {
  border-color: #fff1e7 !important;
}
.bd-before-seashell::before {
  border-color: #fff1e7 !important;
}
.bd-after-seashell::after {
  border-color: #fff1e7 !important;
}
.bd-sand {
  border-color: #f1e0ae !important;
}
.bd-sand-active:active {
  border-color: #f1e0ae !important;
}
.bd-sand-hover:hover {
  border-color: #f1e0ae !important;
}
.bd-sand-focus:focus {
  border-color: #f1e0ae !important;
}
.bd-before-sand::before {
  border-color: #f1e0ae !important;
}
.bd-after-sand::after {
  border-color: #f1e0ae !important;
}
.bd-light-lime {
  border-color: #f2ffe7 !important;
}
.bd-light-lime-active:active {
  border-color: #f2ffe7 !important;
}
.bd-light-lime-hover:hover {
  border-color: #f2ffe7 !important;
}
.bd-light-lime-focus:focus {
  border-color: #f2ffe7 !important;
}
.bd-before-light-lime::before {
  border-color: #f2ffe7 !important;
}
.bd-after-light-lime::after {
  border-color: #f2ffe7 !important;
}
.bd-light-green {
  border-color: #e7f6e6 !important;
}
.bd-light-green-active:active {
  border-color: #e7f6e6 !important;
}
.bd-light-green-hover:hover {
  border-color: #e7f6e6 !important;
}
.bd-light-green-focus:focus {
  border-color: #e7f6e6 !important;
}
.bd-before-light-green::before {
  border-color: #e7f6e6 !important;
}
.bd-after-light-green::after {
  border-color: #e7f6e6 !important;
}
.bd-light-emerald {
  border-color: #d1e6cc !important;
}
.bd-light-emerald-active:active {
  border-color: #d1e6cc !important;
}
.bd-light-emerald-hover:hover {
  border-color: #d1e6cc !important;
}
.bd-light-emerald-focus:focus {
  border-color: #d1e6cc !important;
}
.bd-before-light-emerald::before {
  border-color: #d1e6cc !important;
}
.bd-after-light-emerald::after {
  border-color: #d1e6cc !important;
}
.bd-light-blue {
  border-color: #e7eaff !important;
}
.bd-light-blue-active:active {
  border-color: #e7eaff !important;
}
.bd-light-blue-hover:hover {
  border-color: #e7eaff !important;
}
.bd-light-blue-focus:focus {
  border-color: #e7eaff !important;
}
.bd-before-light-blue::before {
  border-color: #e7eaff !important;
}
.bd-after-light-blue::after {
  border-color: #e7eaff !important;
}
.bd-light-teal {
  border-color: #e1f2f3 !important;
}
.bd-light-teal-active:active {
  border-color: #e1f2f3 !important;
}
.bd-light-teal-hover:hover {
  border-color: #e1f2f3 !important;
}
.bd-light-teal-focus:focus {
  border-color: #e1f2f3 !important;
}
.bd-before-light-teal::before {
  border-color: #e1f2f3 !important;
}
.bd-after-light-teal::after {
  border-color: #e1f2f3 !important;
}
.bd-light-cyan {
  border-color: #e3edff !important;
}
.bd-light-cyan-active:active {
  border-color: #e3edff !important;
}
.bd-light-cyan-hover:hover {
  border-color: #e3edff !important;
}
.bd-light-cyan-focus:focus {
  border-color: #e3edff !important;
}
.bd-before-light-cyan::before {
  border-color: #e3edff !important;
}
.bd-after-light-cyan::after {
  border-color: #e3edff !important;
}
.bd-light-cobalt {
  border-color: #d1ecff !important;
}
.bd-light-cobalt-active:active {
  border-color: #d1ecff !important;
}
.bd-light-cobalt-hover:hover {
  border-color: #d1ecff !important;
}
.bd-light-cobalt-focus:focus {
  border-color: #d1ecff !important;
}
.bd-before-light-cobalt::before {
  border-color: #d1ecff !important;
}
.bd-after-light-cobalt::after {
  border-color: #d1ecff !important;
}
.bd-light-indigo {
  border-color: #f3dcf3 !important;
}
.bd-light-indigo-active:active {
  border-color: #f3dcf3 !important;
}
.bd-light-indigo-hover:hover {
  border-color: #f3dcf3 !important;
}
.bd-light-indigo-focus:focus {
  border-color: #f3dcf3 !important;
}
.bd-before-light-indigo::before {
  border-color: #f3dcf3 !important;
}
.bd-after-light-indigo::after {
  border-color: #f3dcf3 !important;
}
.bd-light-almost {
  border-color: #eee5ff !important;
}
.bd-light-almost-active:active {
  border-color: #eee5ff !important;
}
.bd-light-almost-hover:hover {
  border-color: #eee5ff !important;
}
.bd-light-almost-focus:focus {
  border-color: #eee5ff !important;
}
.bd-before-light-almost::before {
  border-color: #eee5ff !important;
}
.bd-after-light-almost::after {
  border-color: #eee5ff !important;
}
.bd-light-violet {
  border-color: #fce2fb !important;
}
.bd-light-violet-active:active {
  border-color: #fce2fb !important;
}
.bd-light-violet-hover:hover {
  border-color: #fce2fb !important;
}
.bd-light-violet-focus:focus {
  border-color: #fce2fb !important;
}
.bd-before-light-violet::before {
  border-color: #fce2fb !important;
}
.bd-after-light-violet::after {
  border-color: #fce2fb !important;
}
.bd-light-pink {
  border-color: #ffeef1 !important;
}
.bd-light-pink-active:active {
  border-color: #ffeef1 !important;
}
.bd-light-pink-hover:hover {
  border-color: #ffeef1 !important;
}
.bd-light-pink-focus:focus {
  border-color: #ffeef1 !important;
}
.bd-before-light-pink::before {
  border-color: #ffeef1 !important;
}
.bd-after-light-pink::after {
  border-color: #ffeef1 !important;
}
.bd-light-magenta {
  border-color: #ffe2ff !important;
}
.bd-light-magenta-active:active {
  border-color: #ffe2ff !important;
}
.bd-light-magenta-hover:hover {
  border-color: #ffe2ff !important;
}
.bd-light-magenta-focus:focus {
  border-color: #ffe2ff !important;
}
.bd-before-light-magenta::before {
  border-color: #ffe2ff !important;
}
.bd-after-light-magenta::after {
  border-color: #ffe2ff !important;
}
.bd-light-crimson {
  border-color: #ffd1da !important;
}
.bd-light-crimson-active:active {
  border-color: #ffd1da !important;
}
.bd-light-crimson-hover:hover {
  border-color: #ffd1da !important;
}
.bd-light-crimson-focus:focus {
  border-color: #ffd1da !important;
}
.bd-before-light-crimson::before {
  border-color: #ffd1da !important;
}
.bd-after-light-crimson::after {
  border-color: #ffd1da !important;
}
.bd-light-red {
  border-color: #ffe1e1 !important;
}
.bd-light-red-active:active {
  border-color: #ffe1e1 !important;
}
.bd-light-red-hover:hover {
  border-color: #ffe1e1 !important;
}
.bd-light-red-focus:focus {
  border-color: #ffe1e1 !important;
}
.bd-before-light-red::before {
  border-color: #ffe1e1 !important;
}
.bd-after-light-red::after {
  border-color: #ffe1e1 !important;
}
.bd-light-clown {
  border-color: #ffdede !important;
}
.bd-light-clown-active:active {
  border-color: #ffdede !important;
}
.bd-light-clown-hover:hover {
  border-color: #ffdede !important;
}
.bd-light-clown-focus:focus {
  border-color: #ffdede !important;
}
.bd-before-light-clown::before {
  border-color: #ffdede !important;
}
.bd-after-light-clown::after {
  border-color: #ffdede !important;
}
.bd-light-orange {
  border-color: #fff3de !important;
}
.bd-light-orange-active:active {
  border-color: #fff3de !important;
}
.bd-light-orange-hover:hover {
  border-color: #fff3de !important;
}
.bd-light-orange-focus:focus {
  border-color: #fff3de !important;
}
.bd-before-light-orange::before {
  border-color: #fff3de !important;
}
.bd-after-light-orange::after {
  border-color: #fff3de !important;
}
.bd-light-amber {
  border-color: #fff8e1 !important;
}
.bd-light-amber-active:active {
  border-color: #fff8e1 !important;
}
.bd-light-amber-hover:hover {
  border-color: #fff8e1 !important;
}
.bd-light-amber-focus:focus {
  border-color: #fff8e1 !important;
}
.bd-before-light-amber::before {
  border-color: #fff8e1 !important;
}
.bd-after-light-amber::after {
  border-color: #fff8e1 !important;
}
.bd-light-yellow {
  border-color: #ffffc6 !important;
}
.bd-light-yellow-active:active {
  border-color: #ffffc6 !important;
}
.bd-light-yellow-hover:hover {
  border-color: #ffffc6 !important;
}
.bd-light-yellow-focus:focus {
  border-color: #ffffc6 !important;
}
.bd-before-light-yellow::before {
  border-color: #ffffc6 !important;
}
.bd-after-light-yellow::after {
  border-color: #ffffc6 !important;
}
.bd-light-brown {
  border-color: #ffeed9 !important;
}
.bd-light-brown-active:active {
  border-color: #ffeed9 !important;
}
.bd-light-brown-hover:hover {
  border-color: #ffeed9 !important;
}
.bd-light-brown-focus:focus {
  border-color: #ffeed9 !important;
}
.bd-before-light-brown::before {
  border-color: #ffeed9 !important;
}
.bd-after-light-brown::after {
  border-color: #ffeed9 !important;
}
.bd-light-olive {
  border-color: #f8fde7 !important;
}
.bd-light-olive-active:active {
  border-color: #f8fde7 !important;
}
.bd-light-olive-hover:hover {
  border-color: #f8fde7 !important;
}
.bd-light-olive-focus:focus {
  border-color: #f8fde7 !important;
}
.bd-before-light-olive::before {
  border-color: #f8fde7 !important;
}
.bd-after-light-olive::after {
  border-color: #f8fde7 !important;
}
.bd-light-steel {
  border-color: #edeeee !important;
}
.bd-light-steel-active:active {
  border-color: #edeeee !important;
}
.bd-light-steel-hover:hover {
  border-color: #edeeee !important;
}
.bd-light-steel-focus:focus {
  border-color: #edeeee !important;
}
.bd-before-light-steel::before {
  border-color: #edeeee !important;
}
.bd-after-light-steel::after {
  border-color: #edeeee !important;
}
.bd-light-mauve {
  border-color: #f7ecfe !important;
}
.bd-light-mauve-active:active {
  border-color: #f7ecfe !important;
}
.bd-light-mauve-hover:hover {
  border-color: #f7ecfe !important;
}
.bd-light-mauve-focus:focus {
  border-color: #f7ecfe !important;
}
.bd-before-light-mauve::before {
  border-color: #f7ecfe !important;
}
.bd-after-light-mauve::after {
  border-color: #f7ecfe !important;
}
.bd-light-taupe {
  border-color: #eadccf !important;
}
.bd-light-taupe-active:active {
  border-color: #eadccf !important;
}
.bd-light-taupe-hover:hover {
  border-color: #eadccf !important;
}
.bd-light-taupe-focus:focus {
  border-color: #eadccf !important;
}
.bd-before-light-taupe::before {
  border-color: #eadccf !important;
}
.bd-after-light-taupe::after {
  border-color: #eadccf !important;
}
.bd-light-gray {
  border-color: #f4f4f4 !important;
}
.bd-light-gray-active:active {
  border-color: #f4f4f4 !important;
}
.bd-light-gray-hover:hover {
  border-color: #f4f4f4 !important;
}
.bd-light-gray-focus:focus {
  border-color: #f4f4f4 !important;
}
.bd-before-light-gray::before {
  border-color: #f4f4f4 !important;
}
.bd-after-light-gray::after {
  border-color: #f4f4f4 !important;
}
.bd-light-gray-blue {
  border-color: #bee2f4 !important;
}
.bd-light-gray-blue-active:active {
  border-color: #bee2f4 !important;
}
.bd-light-gray-blue-hover:hover {
  border-color: #bee2f4 !important;
}
.bd-light-gray-blue-focus:focus {
  border-color: #bee2f4 !important;
}
.bd-before-light-gray-blue::before {
  border-color: #bee2f4 !important;
}
.bd-after-light-gray-blue::after {
  border-color: #bee2f4 !important;
}
.bd-light-gray-mouse {
  border-color: #8ab4c8 !important;
}
.bd-light-gray-mouse-active:active {
  border-color: #8ab4c8 !important;
}
.bd-light-gray-mouse-hover:hover {
  border-color: #8ab4c8 !important;
}
.bd-light-gray-mouse-focus:focus {
  border-color: #8ab4c8 !important;
}
.bd-before-light-gray-mouse::before {
  border-color: #8ab4c8 !important;
}
.bd-after-light-gray-mouse::after {
  border-color: #8ab4c8 !important;
}
.bd-light-champagne {
  border-color: #fff9f2 !important;
}
.bd-light-champagne-active:active {
  border-color: #fff9f2 !important;
}
.bd-light-champagne-hover:hover {
  border-color: #fff9f2 !important;
}
.bd-light-champagne-focus:focus {
  border-color: #fff9f2 !important;
}
.bd-before-light-champagne::before {
  border-color: #fff9f2 !important;
}
.bd-after-light-champagne::after {
  border-color: #fff9f2 !important;
}
.bd-light-khaki {
  border-color: #f6f1dd !important;
}
.bd-light-khaki-active:active {
  border-color: #f6f1dd !important;
}
.bd-light-khaki-hover:hover {
  border-color: #f6f1dd !important;
}
.bd-light-khaki-focus:focus {
  border-color: #f6f1dd !important;
}
.bd-before-light-khaki::before {
  border-color: #f6f1dd !important;
}
.bd-after-light-khaki::after {
  border-color: #f6f1dd !important;
}
.bd-light-charcoal {
  border-color: #e8e8e8 !important;
}
.bd-light-charcoal-active:active {
  border-color: #e8e8e8 !important;
}
.bd-light-charcoal-hover:hover {
  border-color: #e8e8e8 !important;
}
.bd-light-charcoal-focus:focus {
  border-color: #e8e8e8 !important;
}
.bd-before-light-charcoal::before {
  border-color: #e8e8e8 !important;
}
.bd-after-light-charcoal::after {
  border-color: #e8e8e8 !important;
}
.bd-light-bronze {
  border-color: #ffecdc !important;
}
.bd-light-bronze-active:active {
  border-color: #ffecdc !important;
}
.bd-light-bronze-hover:hover {
  border-color: #ffecdc !important;
}
.bd-light-bronze-focus:focus {
  border-color: #ffecdc !important;
}
.bd-before-light-bronze::before {
  border-color: #ffecdc !important;
}
.bd-after-light-bronze::after {
  border-color: #ffecdc !important;
}
.bd-light-windstorm {
  border-color: #e6ebf5 !important;
}
.bd-light-windstorm-active:active {
  border-color: #e6ebf5 !important;
}
.bd-light-windstorm-hover:hover {
  border-color: #e6ebf5 !important;
}
.bd-light-windstorm-focus:focus {
  border-color: #e6ebf5 !important;
}
.bd-before-light-windstorm::before {
  border-color: #e6ebf5 !important;
}
.bd-after-light-windstorm::after {
  border-color: #e6ebf5 !important;
}
.bd-light-nude {
  border-color: #fcf0e4 !important;
}
.bd-light-nude-active:active {
  border-color: #fcf0e4 !important;
}
.bd-light-nude-hover:hover {
  border-color: #fcf0e4 !important;
}
.bd-light-nude-focus:focus {
  border-color: #fcf0e4 !important;
}
.bd-before-light-nude::before {
  border-color: #fcf0e4 !important;
}
.bd-after-light-nude::after {
  border-color: #fcf0e4 !important;
}
.bd-light-terracotta {
  border-color: #ffe5df !important;
}
.bd-light-terracotta-active:active {
  border-color: #ffe5df !important;
}
.bd-light-terracotta-hover:hover {
  border-color: #ffe5df !important;
}
.bd-light-terracotta-focus:focus {
  border-color: #ffe5df !important;
}
.bd-before-light-terracotta::before {
  border-color: #ffe5df !important;
}
.bd-after-light-terracotta::after {
  border-color: #ffe5df !important;
}
.bd-light-coral {
  border-color: #ffd8c8 !important;
}
.bd-light-coral-active:active {
  border-color: #ffd8c8 !important;
}
.bd-light-coral-hover:hover {
  border-color: #ffd8c8 !important;
}
.bd-light-coral-focus:focus {
  border-color: #ffd8c8 !important;
}
.bd-before-light-coral::before {
  border-color: #ffd8c8 !important;
}
.bd-after-light-coral::after {
  border-color: #ffd8c8 !important;
}
.bd-light-army {
  border-color: #eceacb !important;
}
.bd-light-army-active:active {
  border-color: #eceacb !important;
}
.bd-light-army-hover:hover {
  border-color: #eceacb !important;
}
.bd-light-army-focus:focus {
  border-color: #eceacb !important;
}
.bd-before-light-army::before {
  border-color: #eceacb !important;
}
.bd-after-light-army::after {
  border-color: #eceacb !important;
}
.bd-light-seashell {
  border-color: #fff9f8 !important;
}
.bd-light-seashell-active:active {
  border-color: #fff9f8 !important;
}
.bd-light-seashell-hover:hover {
  border-color: #fff9f8 !important;
}
.bd-light-seashell-focus:focus {
  border-color: #fff9f8 !important;
}
.bd-before-light-seashell::before {
  border-color: #fff9f8 !important;
}
.bd-after-light-seashell::after {
  border-color: #fff9f8 !important;
}
.bd-light-sand {
  border-color: #f8f3e0 !important;
}
.bd-light-sand-active:active {
  border-color: #f8f3e0 !important;
}
.bd-light-sand-hover:hover {
  border-color: #f8f3e0 !important;
}
.bd-light-sand-focus:focus {
  border-color: #f8f3e0 !important;
}
.bd-before-light-sand::before {
  border-color: #f8f3e0 !important;
}
.bd-after-light-sand::after {
  border-color: #f8f3e0 !important;
}
.bd-dark-lime {
  border-color: #557f32 !important;
}
.bd-dark-lime-active:active {
  border-color: #557f32 !important;
}
.bd-dark-lime-hover:hover {
  border-color: #557f32 !important;
}
.bd-dark-lime-focus:focus {
  border-color: #557f32 !important;
}
.bd-before-dark-lime::before {
  border-color: #557f32 !important;
}
.bd-after-dark-lime::after {
  border-color: #557f32 !important;
}
.bd-dark-green {
  border-color: #003d00 !important;
}
.bd-dark-green-active:active {
  border-color: #003d00 !important;
}
.bd-dark-green-hover:hover {
  border-color: #003d00 !important;
}
.bd-dark-green-focus:focus {
  border-color: #003d00 !important;
}
.bd-before-dark-green::before {
  border-color: #003d00 !important;
}
.bd-after-dark-green::after {
  border-color: #003d00 !important;
}
.bd-dark-emerald {
  border-color: #246339 !important;
}
.bd-dark-emerald-active:active {
  border-color: #246339 !important;
}
.bd-dark-emerald-hover:hover {
  border-color: #246339 !important;
}
.bd-dark-emerald-focus:focus {
  border-color: #246339 !important;
}
.bd-before-dark-emerald::before {
  border-color: #246339 !important;
}
.bd-after-dark-emerald::after {
  border-color: #246339 !important;
}
.bd-dark-blue {
  border-color: #132a6f !important;
}
.bd-dark-blue-active:active {
  border-color: #132a6f !important;
}
.bd-dark-blue-hover:hover {
  border-color: #132a6f !important;
}
.bd-dark-blue-focus:focus {
  border-color: #132a6f !important;
}
.bd-before-dark-blue::before {
  border-color: #132a6f !important;
}
.bd-after-dark-blue::after {
  border-color: #132a6f !important;
}
.bd-dark-teal {
  border-color: #014848 !important;
}
.bd-dark-teal-active:active {
  border-color: #014848 !important;
}
.bd-dark-teal-hover:hover {
  border-color: #014848 !important;
}
.bd-dark-teal-focus:focus {
  border-color: #014848 !important;
}
.bd-before-dark-teal::before {
  border-color: #014848 !important;
}
.bd-after-dark-teal::after {
  border-color: #014848 !important;
}
.bd-dark-cyan {
  border-color: #456c7e !important;
}
.bd-dark-cyan-active:active {
  border-color: #456c7e !important;
}
.bd-dark-cyan-hover:hover {
  border-color: #456c7e !important;
}
.bd-dark-cyan-focus:focus {
  border-color: #456c7e !important;
}
.bd-before-dark-cyan::before {
  border-color: #456c7e !important;
}
.bd-after-dark-cyan::after {
  border-color: #456c7e !important;
}
.bd-dark-cobalt {
  border-color: #001f54 !important;
}
.bd-dark-cobalt-active:active {
  border-color: #001f54 !important;
}
.bd-dark-cobalt-hover:hover {
  border-color: #001f54 !important;
}
.bd-dark-cobalt-focus:focus {
  border-color: #001f54 !important;
}
.bd-before-dark-cobalt::before {
  border-color: #001f54 !important;
}
.bd-after-dark-cobalt::after {
  border-color: #001f54 !important;
}
.bd-dark-indigo {
  border-color: #21003e !important;
}
.bd-dark-indigo-active:active {
  border-color: #21003e !important;
}
.bd-dark-indigo-hover:hover {
  border-color: #21003e !important;
}
.bd-dark-indigo-focus:focus {
  border-color: #21003e !important;
}
.bd-before-dark-indigo::before {
  border-color: #21003e !important;
}
.bd-after-dark-indigo::after {
  border-color: #21003e !important;
}
.bd-dark-almost {
  border-color: #2f0687 !important;
}
.bd-dark-almost-active:active {
  border-color: #2f0687 !important;
}
.bd-dark-almost-hover:hover {
  border-color: #2f0687 !important;
}
.bd-dark-almost-focus:focus {
  border-color: #2f0687 !important;
}
.bd-before-dark-almost::before {
  border-color: #2f0687 !important;
}
.bd-after-dark-almost::after {
  border-color: #2f0687 !important;
}
.bd-dark-violet {
  border-color: #773e77 !important;
}
.bd-dark-violet-active:active {
  border-color: #773e77 !important;
}
.bd-dark-violet-hover:hover {
  border-color: #773e77 !important;
}
.bd-dark-violet-focus:focus {
  border-color: #773e77 !important;
}
.bd-before-dark-violet::before {
  border-color: #773e77 !important;
}
.bd-after-dark-violet::after {
  border-color: #773e77 !important;
}
.bd-dark-pink {
  border-color: #805f65 !important;
}
.bd-dark-pink-active:active {
  border-color: #805f65 !important;
}
.bd-dark-pink-hover:hover {
  border-color: #805f65 !important;
}
.bd-dark-pink-focus:focus {
  border-color: #805f65 !important;
}
.bd-before-dark-pink::before {
  border-color: #805f65 !important;
}
.bd-after-dark-pink::after {
  border-color: #805f65 !important;
}
.bd-dark-magenta {
  border-color: #800080 !important;
}
.bd-dark-magenta-active:active {
  border-color: #800080 !important;
}
.bd-dark-magenta-hover:hover {
  border-color: #800080 !important;
}
.bd-dark-magenta-focus:focus {
  border-color: #800080 !important;
}
.bd-before-dark-magenta::before {
  border-color: #800080 !important;
}
.bd-after-dark-magenta::after {
  border-color: #800080 !important;
}
.bd-dark-crimson {
  border-color: #6e0519 !important;
}
.bd-dark-crimson-active:active {
  border-color: #6e0519 !important;
}
.bd-dark-crimson-hover:hover {
  border-color: #6e0519 !important;
}
.bd-dark-crimson-focus:focus {
  border-color: #6e0519 !important;
}
.bd-before-dark-crimson::before {
  border-color: #6e0519 !important;
}
.bd-after-dark-crimson::after {
  border-color: #6e0519 !important;
}
.bd-dark-red {
  border-color: #800000 !important;
}
.bd-dark-red-active:active {
  border-color: #800000 !important;
}
.bd-dark-red-hover:hover {
  border-color: #800000 !important;
}
.bd-dark-red-focus:focus {
  border-color: #800000 !important;
}
.bd-before-dark-red::before {
  border-color: #800000 !important;
}
.bd-after-dark-red::after {
  border-color: #800000 !important;
}
.bd-dark-clown {
  border-color: #aa2824 !important;
}
.bd-dark-clown-active:active {
  border-color: #aa2824 !important;
}
.bd-dark-clown-hover:hover {
  border-color: #aa2824 !important;
}
.bd-dark-clown-focus:focus {
  border-color: #aa2824 !important;
}
.bd-before-dark-clown::before {
  border-color: #aa2824 !important;
}
.bd-after-dark-clown::after {
  border-color: #aa2824 !important;
}
.bd-dark-orange {
  border-color: #805100 !important;
}
.bd-dark-orange-active:active {
  border-color: #805100 !important;
}
.bd-dark-orange-hover:hover {
  border-color: #805100 !important;
}
.bd-dark-orange-focus:focus {
  border-color: #805100 !important;
}
.bd-before-dark-orange::before {
  border-color: #805100 !important;
}
.bd-after-dark-orange::after {
  border-color: #805100 !important;
}
.bd-dark-amber {
  border-color: #805e00 !important;
}
.bd-dark-amber-active:active {
  border-color: #805e00 !important;
}
.bd-dark-amber-hover:hover {
  border-color: #805e00 !important;
}
.bd-dark-amber-focus:focus {
  border-color: #805e00 !important;
}
.bd-before-dark-amber::before {
  border-color: #805e00 !important;
}
.bd-after-dark-amber::after {
  border-color: #805e00 !important;
}
.bd-dark-yellow {
  border-color: #bca826 !important;
}
.bd-dark-yellow-active:active {
  border-color: #bca826 !important;
}
.bd-dark-yellow-hover:hover {
  border-color: #bca826 !important;
}
.bd-dark-yellow-focus:focus {
  border-color: #bca826 !important;
}
.bd-before-dark-yellow::before {
  border-color: #bca826 !important;
}
.bd-after-dark-yellow::after {
  border-color: #bca826 !important;
}
.bd-dark-brown {
  border-color: #42240f !important;
}
.bd-dark-brown-active:active {
  border-color: #42240f !important;
}
.bd-dark-brown-hover:hover {
  border-color: #42240f !important;
}
.bd-dark-brown-focus:focus {
  border-color: #42240f !important;
}
.bd-before-dark-brown::before {
  border-color: #42240f !important;
}
.bd-after-dark-brown::after {
  border-color: #42240f !important;
}
.bd-dark-olive {
  border-color: #3d3d00 !important;
}
.bd-dark-olive-active:active {
  border-color: #3d3d00 !important;
}
.bd-dark-olive-hover:hover {
  border-color: #3d3d00 !important;
}
.bd-dark-olive-focus:focus {
  border-color: #3d3d00 !important;
}
.bd-before-dark-olive::before {
  border-color: #3d3d00 !important;
}
.bd-after-dark-olive::after {
  border-color: #3d3d00 !important;
}
.bd-dark-steel {
  border-color: #2e3841 !important;
}
.bd-dark-steel-active:active {
  border-color: #2e3841 !important;
}
.bd-dark-steel-hover:hover {
  border-color: #2e3841 !important;
}
.bd-dark-steel-focus:focus {
  border-color: #2e3841 !important;
}
.bd-before-dark-steel::before {
  border-color: #2e3841 !important;
}
.bd-after-dark-steel::after {
  border-color: #2e3841 !important;
}
.bd-dark-mauve {
  border-color: #705680 !important;
}
.bd-dark-mauve-active:active {
  border-color: #705680 !important;
}
.bd-dark-mauve-hover:hover {
  border-color: #705680 !important;
}
.bd-dark-mauve-focus:focus {
  border-color: #705680 !important;
}
.bd-before-dark-mauve::before {
  border-color: #705680 !important;
}
.bd-after-dark-mauve::after {
  border-color: #705680 !important;
}
.bd-dark-taupe {
  border-color: #261e18 !important;
}
.bd-dark-taupe-active:active {
  border-color: #261e18 !important;
}
.bd-dark-taupe-hover:hover {
  border-color: #261e18 !important;
}
.bd-dark-taupe-focus:focus {
  border-color: #261e18 !important;
}
.bd-before-dark-taupe::before {
  border-color: #261e18 !important;
}
.bd-after-dark-taupe::after {
  border-color: #261e18 !important;
}
.bd-dark-gray {
  border-color: #515151 !important;
}
.bd-dark-gray-active:active {
  border-color: #515151 !important;
}
.bd-dark-gray-hover:hover {
  border-color: #515151 !important;
}
.bd-dark-gray-focus:focus {
  border-color: #515151 !important;
}
.bd-before-dark-gray::before {
  border-color: #515151 !important;
}
.bd-after-dark-gray::after {
  border-color: #515151 !important;
}
.bd-dark-gray-blue {
  border-color: #36464e !important;
}
.bd-dark-gray-blue-active:active {
  border-color: #36464e !important;
}
.bd-dark-gray-blue-hover:hover {
  border-color: #36464e !important;
}
.bd-dark-gray-blue-focus:focus {
  border-color: #36464e !important;
}
.bd-before-dark-gray-blue::before {
  border-color: #36464e !important;
}
.bd-after-dark-gray-blue::after {
  border-color: #36464e !important;
}
.bd-dark-gray-mouse {
  border-color: #2e3c42 !important;
}
.bd-dark-gray-mouse-active:active {
  border-color: #2e3c42 !important;
}
.bd-dark-gray-mouse-hover:hover {
  border-color: #2e3c42 !important;
}
.bd-dark-gray-mouse-focus:focus {
  border-color: #2e3c42 !important;
}
.bd-before-dark-gray-mouse::before {
  border-color: #2e3c42 !important;
}
.bd-after-dark-gray-mouse::after {
  border-color: #2e3c42 !important;
}
.bd-dark-champagne {
  border-color: #7c7364 !important;
}
.bd-dark-champagne-active:active {
  border-color: #7c7364 !important;
}
.bd-dark-champagne-hover:hover {
  border-color: #7c7364 !important;
}
.bd-dark-champagne-focus:focus {
  border-color: #7c7364 !important;
}
.bd-before-dark-champagne::before {
  border-color: #7c7364 !important;
}
.bd-after-dark-champagne::after {
  border-color: #7c7364 !important;
}
.bd-dark-khaki {
  border-color: #6a6142 !important;
}
.bd-dark-khaki-active:active {
  border-color: #6a6142 !important;
}
.bd-dark-khaki-hover:hover {
  border-color: #6a6142 !important;
}
.bd-dark-khaki-focus:focus {
  border-color: #6a6142 !important;
}
.bd-before-dark-khaki::before {
  border-color: #6a6142 !important;
}
.bd-after-dark-khaki::after {
  border-color: #6a6142 !important;
}
.bd-dark-charcoal {
  border-color: #202020 !important;
}
.bd-dark-charcoal-active:active {
  border-color: #202020 !important;
}
.bd-dark-charcoal-hover:hover {
  border-color: #202020 !important;
}
.bd-dark-charcoal-focus:focus {
  border-color: #202020 !important;
}
.bd-before-dark-charcoal::before {
  border-color: #202020 !important;
}
.bd-after-dark-charcoal::after {
  border-color: #202020 !important;
}
.bd-dark-bronze {
  border-color: #693c13 !important;
}
.bd-dark-bronze-active:active {
  border-color: #693c13 !important;
}
.bd-dark-bronze-hover:hover {
  border-color: #693c13 !important;
}
.bd-dark-bronze-focus:focus {
  border-color: #693c13 !important;
}
.bd-before-dark-bronze::before {
  border-color: #693c13 !important;
}
.bd-after-dark-bronze::after {
  border-color: #693c13 !important;
}
.bd-dark-windstorm {
  border-color: #304462 !important;
}
.bd-dark-windstorm-active:active {
  border-color: #304462 !important;
}
.bd-dark-windstorm-hover:hover {
  border-color: #304462 !important;
}
.bd-dark-windstorm-focus:focus {
  border-color: #304462 !important;
}
.bd-before-dark-windstorm::before {
  border-color: #304462 !important;
}
.bd-after-dark-windstorm::after {
  border-color: #304462 !important;
}
.bd-dark-nude {
  border-color: #7c6c5d !important;
}
.bd-dark-nude-active:active {
  border-color: #7c6c5d !important;
}
.bd-dark-nude-hover:hover {
  border-color: #7c6c5d !important;
}
.bd-dark-nude-focus:focus {
  border-color: #7c6c5d !important;
}
.bd-before-dark-nude::before {
  border-color: #7c6c5d !important;
}
.bd-after-dark-nude::after {
  border-color: #7c6c5d !important;
}
.bd-dark-terracotta {
  border-color: #712516 !important;
}
.bd-dark-terracotta-active:active {
  border-color: #712516 !important;
}
.bd-dark-terracotta-hover:hover {
  border-color: #712516 !important;
}
.bd-dark-terracotta-focus:focus {
  border-color: #712516 !important;
}
.bd-before-dark-terracotta::before {
  border-color: #712516 !important;
}
.bd-after-dark-terracotta::after {
  border-color: #712516 !important;
}
.bd-dark-coral {
  border-color: #804028 !important;
}
.bd-dark-coral-active:active {
  border-color: #804028 !important;
}
.bd-dark-coral-hover:hover {
  border-color: #804028 !important;
}
.bd-dark-coral-focus:focus {
  border-color: #804028 !important;
}
.bd-before-dark-coral::before {
  border-color: #804028 !important;
}
.bd-after-dark-coral::after {
  border-color: #804028 !important;
}
.bd-dark-army {
  border-color: #2a2f14 !important;
}
.bd-dark-army-active:active {
  border-color: #2a2f14 !important;
}
.bd-dark-army-hover:hover {
  border-color: #2a2f14 !important;
}
.bd-dark-army-focus:focus {
  border-color: #2a2f14 !important;
}
.bd-before-dark-army::before {
  border-color: #2a2f14 !important;
}
.bd-after-dark-army::after {
  border-color: #2a2f14 !important;
}
.bd-dark-seashell {
  border-color: #bfa89a !important;
}
.bd-dark-seashell-active:active {
  border-color: #bfa89a !important;
}
.bd-dark-seashell-hover:hover {
  border-color: #bfa89a !important;
}
.bd-dark-seashell-focus:focus {
  border-color: #bfa89a !important;
}
.bd-before-dark-seashell::before {
  border-color: #bfa89a !important;
}
.bd-after-dark-seashell::after {
  border-color: #bfa89a !important;
}
.bd-dark-sand {
  border-color: #8f8975 !important;
}
.bd-dark-sand-active:active {
  border-color: #8f8975 !important;
}
.bd-dark-sand-hover:hover {
  border-color: #8f8975 !important;
}
.bd-dark-sand-focus:focus {
  border-color: #8f8975 !important;
}
.bd-before-dark-sand::before {
  border-color: #8f8975 !important;
}
.bd-after-dark-sand::after {
  border-color: #8f8975 !important;
}
.bd-sat-lime {
  border-color: #7dba4a !important;
}
.bd-sat-lime-active:active {
  border-color: #7dba4a !important;
}
.bd-sat-lime-hover:hover {
  border-color: #7dba4a !important;
}
.bd-sat-lime-focus:focus {
  border-color: #7dba4a !important;
}
.bd-before-sat-lime::before {
  border-color: #7dba4a !important;
}
.bd-after-sat-lime::after {
  border-color: #7dba4a !important;
}
.bd-sat-green {
  border-color: #008f00 !important;
}
.bd-sat-green-active:active {
  border-color: #008f00 !important;
}
.bd-sat-green-hover:hover {
  border-color: #008f00 !important;
}
.bd-sat-green-focus:focus {
  border-color: #008f00 !important;
}
.bd-before-sat-green::before {
  border-color: #008f00 !important;
}
.bd-after-sat-green::after {
  border-color: #008f00 !important;
}
.bd-sat-emerald {
  border-color: #3ca15d !important;
}
.bd-sat-emerald-active:active {
  border-color: #3ca15d !important;
}
.bd-sat-emerald-hover:hover {
  border-color: #3ca15d !important;
}
.bd-sat-emerald-focus:focus {
  border-color: #3ca15d !important;
}
.bd-before-sat-emerald::before {
  border-color: #3ca15d !important;
}
.bd-after-sat-emerald::after {
  border-color: #3ca15d !important;
}
.bd-sat-blue {
  border-color: #1f43ae !important;
}
.bd-sat-blue-active:active {
  border-color: #1f43ae !important;
}
.bd-sat-blue-hover:hover {
  border-color: #1f43ae !important;
}
.bd-sat-blue-focus:focus {
  border-color: #1f43ae !important;
}
.bd-before-sat-blue::before {
  border-color: #1f43ae !important;
}
.bd-after-sat-blue::after {
  border-color: #1f43ae !important;
}
.bd-sat-teal {
  border-color: #008a8a !important;
}
.bd-sat-teal-active:active {
  border-color: #008a8a !important;
}
.bd-sat-teal-hover:hover {
  border-color: #008a8a !important;
}
.bd-sat-teal-focus:focus {
  border-color: #008a8a !important;
}
.bd-before-sat-teal::before {
  border-color: #008a8a !important;
}
.bd-after-sat-teal::after {
  border-color: #008a8a !important;
}
.bd-sat-cyan {
  border-color: #659db6 !important;
}
.bd-sat-cyan-active:active {
  border-color: #659db6 !important;
}
.bd-sat-cyan-hover:hover {
  border-color: #659db6 !important;
}
.bd-sat-cyan-focus:focus {
  border-color: #659db6 !important;
}
.bd-before-sat-cyan::before {
  border-color: #659db6 !important;
}
.bd-after-sat-cyan::after {
  border-color: #659db6 !important;
}
.bd-sat-cobalt {
  border-color: #003391 !important;
}
.bd-sat-cobalt-active:active {
  border-color: #003391 !important;
}
.bd-sat-cobalt-hover:hover {
  border-color: #003391 !important;
}
.bd-sat-cobalt-focus:focus {
  border-color: #003391 !important;
}
.bd-before-sat-cobalt::before {
  border-color: #003391 !important;
}
.bd-after-sat-cobalt::after {
  border-color: #003391 !important;
}
.bd-sat-indigo {
  border-color: #430080 !important;
}
.bd-sat-indigo-active:active {
  border-color: #430080 !important;
}
.bd-sat-indigo-hover:hover {
  border-color: #430080 !important;
}
.bd-sat-indigo-focus:focus {
  border-color: #430080 !important;
}
.bd-before-sat-indigo::before {
  border-color: #430080 !important;
}
.bd-after-sat-indigo::after {
  border-color: #430080 !important;
}
.bd-sat-almost {
  border-color: #4e18c1 !important;
}
.bd-sat-almost-active:active {
  border-color: #4e18c1 !important;
}
.bd-sat-almost-hover:hover {
  border-color: #4e18c1 !important;
}
.bd-sat-almost-focus:focus {
  border-color: #4e18c1 !important;
}
.bd-before-sat-almost::before {
  border-color: #4e18c1 !important;
}
.bd-after-sat-almost::after {
  border-color: #4e18c1 !important;
}
.bd-sat-violet {
  border-color: #b65fb6 !important;
}
.bd-sat-violet-active:active {
  border-color: #b65fb6 !important;
}
.bd-sat-violet-hover:hover {
  border-color: #b65fb6 !important;
}
.bd-sat-violet-focus:focus {
  border-color: #b65fb6 !important;
}
.bd-before-sat-violet::before {
  border-color: #b65fb6 !important;
}
.bd-after-sat-violet::after {
  border-color: #b65fb6 !important;
}
.bd-sat-pink {
  border-color: #cc7296 !important;
}
.bd-sat-pink-active:active {
  border-color: #cc7296 !important;
}
.bd-sat-pink-hover:hover {
  border-color: #cc7296 !important;
}
.bd-sat-pink-focus:focus {
  border-color: #cc7296 !important;
}
.bd-before-sat-pink::before {
  border-color: #cc7296 !important;
}
.bd-after-sat-pink::after {
  border-color: #cc7296 !important;
}
.bd-sat-magenta {
  border-color: #c500c5 !important;
}
.bd-sat-magenta-active:active {
  border-color: #c500c5 !important;
}
.bd-sat-magenta-hover:hover {
  border-color: #c500c5 !important;
}
.bd-sat-magenta-focus:focus {
  border-color: #c500c5 !important;
}
.bd-before-sat-magenta::before {
  border-color: #c500c5 !important;
}
.bd-after-sat-magenta::after {
  border-color: #c500c5 !important;
}
.bd-sat-crimson {
  border-color: #980824 !important;
}
.bd-sat-crimson-active:active {
  border-color: #980824 !important;
}
.bd-sat-crimson-hover:hover {
  border-color: #980824 !important;
}
.bd-sat-crimson-focus:focus {
  border-color: #980824 !important;
}
.bd-before-sat-crimson::before {
  border-color: #980824 !important;
}
.bd-after-sat-crimson::after {
  border-color: #980824 !important;
}
.bd-sat-red {
  border-color: #b80000 !important;
}
.bd-sat-red-active:active {
  border-color: #b80000 !important;
}
.bd-sat-red-hover:hover {
  border-color: #b80000 !important;
}
.bd-sat-red-focus:focus {
  border-color: #b80000 !important;
}
.bd-before-sat-red::before {
  border-color: #b80000 !important;
}
.bd-after-sat-red::after {
  border-color: #b80000 !important;
}
.bd-sat-clown {
  border-color: #d64f48 !important;
}
.bd-sat-clown-active:active {
  border-color: #d64f48 !important;
}
.bd-sat-clown-hover:hover {
  border-color: #d64f48 !important;
}
.bd-sat-clown-focus:focus {
  border-color: #d64f48 !important;
}
.bd-before-sat-clown::before {
  border-color: #d64f48 !important;
}
.bd-after-sat-clown::after {
  border-color: #d64f48 !important;
}
.bd-sat-orange {
  border-color: #bc7700 !important;
}
.bd-sat-orange-active:active {
  border-color: #bc7700 !important;
}
.bd-sat-orange-hover:hover {
  border-color: #bc7700 !important;
}
.bd-sat-orange-focus:focus {
  border-color: #bc7700 !important;
}
.bd-before-sat-orange::before {
  border-color: #bc7700 !important;
}
.bd-after-sat-orange::after {
  border-color: #bc7700 !important;
}
.bd-sat-amber {
  border-color: #d19b00 !important;
}
.bd-sat-amber-active:active {
  border-color: #d19b00 !important;
}
.bd-sat-amber-hover:hover {
  border-color: #d19b00 !important;
}
.bd-sat-amber-focus:focus {
  border-color: #d19b00 !important;
}
.bd-before-sat-amber::before {
  border-color: #d19b00 !important;
}
.bd-after-sat-amber::after {
  border-color: #d19b00 !important;
}
.bd-sat-yellow {
  border-color: #e4ce43 !important;
}
.bd-sat-yellow-active:active {
  border-color: #e4ce43 !important;
}
.bd-sat-yellow-hover:hover {
  border-color: #e4ce43 !important;
}
.bd-sat-yellow-focus:focus {
  border-color: #e4ce43 !important;
}
.bd-before-sat-yellow::before {
  border-color: #e4ce43 !important;
}
.bd-after-sat-yellow::after {
  border-color: #e4ce43 !important;
}
.bd-sat-brown {
  border-color: #884b20 !important;
}
.bd-sat-brown-active:active {
  border-color: #884b20 !important;
}
.bd-sat-brown-hover:hover {
  border-color: #884b20 !important;
}
.bd-sat-brown-focus:focus {
  border-color: #884b20 !important;
}
.bd-before-sat-brown::before {
  border-color: #884b20 !important;
}
.bd-after-sat-brown::after {
  border-color: #884b20 !important;
}
.bd-sat-olive {
  border-color: #838300 !important;
}
.bd-sat-olive-active:active {
  border-color: #838300 !important;
}
.bd-sat-olive-hover:hover {
  border-color: #838300 !important;
}
.bd-sat-olive-focus:focus {
  border-color: #838300 !important;
}
.bd-before-sat-olive::before {
  border-color: #838300 !important;
}
.bd-after-sat-olive::after {
  border-color: #838300 !important;
}
.bd-sat-steel {
  border-color: #5c7081 !important;
}
.bd-sat-steel-active:active {
  border-color: #5c7081 !important;
}
.bd-sat-steel-hover:hover {
  border-color: #5c7081 !important;
}
.bd-sat-steel-focus:focus {
  border-color: #5c7081 !important;
}
.bd-before-sat-steel::before {
  border-color: #5c7081 !important;
}
.bd-after-sat-steel::after {
  border-color: #5c7081 !important;
}
.bd-sat-mauve {
  border-color: #a982c1 !important;
}
.bd-sat-mauve-active:active {
  border-color: #a982c1 !important;
}
.bd-sat-mauve-hover:hover {
  border-color: #a982c1 !important;
}
.bd-sat-mauve-focus:focus {
  border-color: #a982c1 !important;
}
.bd-before-sat-mauve::before {
  border-color: #a982c1 !important;
}
.bd-after-sat-mauve::after {
  border-color: #a982c1 !important;
}
.bd-sat-taupe {
  border-color: #5e4a3c !important;
}
.bd-sat-taupe-active:active {
  border-color: #5e4a3c !important;
}
.bd-sat-taupe-hover:hover {
  border-color: #5e4a3c !important;
}
.bd-sat-taupe-focus:focus {
  border-color: #5e4a3c !important;
}
.bd-before-sat-taupe::before {
  border-color: #5e4a3c !important;
}
.bd-after-sat-taupe::after {
  border-color: #5e4a3c !important;
}
.bd-sat-gray {
  border-color: #9c9c9c !important;
}
.bd-sat-gray-active:active {
  border-color: #9c9c9c !important;
}
.bd-sat-gray-hover:hover {
  border-color: #9c9c9c !important;
}
.bd-sat-gray-focus:focus {
  border-color: #9c9c9c !important;
}
.bd-before-sat-gray::before {
  border-color: #9c9c9c !important;
}
.bd-after-sat-gray::after {
  border-color: #9c9c9c !important;
}
.bd-sat-gray-blue {
  border-color: #5f7a88 !important;
}
.bd-sat-gray-blue-active:active {
  border-color: #5f7a88 !important;
}
.bd-sat-gray-blue-hover:hover {
  border-color: #5f7a88 !important;
}
.bd-sat-gray-blue-focus:focus {
  border-color: #5f7a88 !important;
}
.bd-before-sat-gray-blue::before {
  border-color: #5f7a88 !important;
}
.bd-after-sat-gray-blue::after {
  border-color: #5f7a88 !important;
}
.bd-sat-gray-mouse {
  border-color: #3f535c !important;
}
.bd-sat-gray-mouse-active:active {
  border-color: #3f535c !important;
}
.bd-sat-gray-mouse-hover:hover {
  border-color: #3f535c !important;
}
.bd-sat-gray-mouse-focus:focus {
  border-color: #3f535c !important;
}
.bd-before-sat-gray-mouse::before {
  border-color: #3f535c !important;
}
.bd-after-sat-gray-mouse::after {
  border-color: #3f535c !important;
}
.bd-sat-champagne {
  border-color: #ccbca5 !important;
}
.bd-sat-champagne-active:active {
  border-color: #ccbca5 !important;
}
.bd-sat-champagne-hover:hover {
  border-color: #ccbca5 !important;
}
.bd-sat-champagne-focus:focus {
  border-color: #ccbca5 !important;
}
.bd-before-sat-champagne::before {
  border-color: #ccbca5 !important;
}
.bd-after-sat-champagne::after {
  border-color: #ccbca5 !important;
}
.bd-sat-khaki {
  border-color: #aa9c6b !important;
}
.bd-sat-khaki-active:active {
  border-color: #aa9c6b !important;
}
.bd-sat-khaki-hover:hover {
  border-color: #aa9c6b !important;
}
.bd-sat-khaki-focus:focus {
  border-color: #aa9c6b !important;
}
.bd-before-sat-khaki::before {
  border-color: #aa9c6b !important;
}
.bd-after-sat-khaki::after {
  border-color: #aa9c6b !important;
}
.bd-sat-charcoal {
  border-color: #5e5e5e !important;
}
.bd-sat-charcoal-active:active {
  border-color: #5e5e5e !important;
}
.bd-sat-charcoal-hover:hover {
  border-color: #5e5e5e !important;
}
.bd-sat-charcoal-focus:focus {
  border-color: #5e5e5e !important;
}
.bd-before-sat-charcoal::before {
  border-color: #5e5e5e !important;
}
.bd-after-sat-charcoal::after {
  border-color: #5e5e5e !important;
}
.bd-sat-bronze {
  border-color: #aa621f !important;
}
.bd-sat-bronze-active:active {
  border-color: #aa621f !important;
}
.bd-sat-bronze-hover:hover {
  border-color: #aa621f !important;
}
.bd-sat-bronze-focus:focus {
  border-color: #aa621f !important;
}
.bd-before-sat-bronze::before {
  border-color: #aa621f !important;
}
.bd-after-sat-bronze::after {
  border-color: #aa621f !important;
}
.bd-sat-windstorm {
  border-color: #5071a3 !important;
}
.bd-sat-windstorm-active:active {
  border-color: #5071a3 !important;
}
.bd-sat-windstorm-hover:hover {
  border-color: #5071a3 !important;
}
.bd-sat-windstorm-focus:focus {
  border-color: #5071a3 !important;
}
.bd-before-sat-windstorm::before {
  border-color: #5071a3 !important;
}
.bd-after-sat-windstorm::after {
  border-color: #5071a3 !important;
}
.bd-sat-nude {
  border-color: #baa28b !important;
}
.bd-sat-nude-active:active {
  border-color: #baa28b !important;
}
.bd-sat-nude-hover:hover {
  border-color: #baa28b !important;
}
.bd-sat-nude-focus:focus {
  border-color: #baa28b !important;
}
.bd-before-sat-nude::before {
  border-color: #baa28b !important;
}
.bd-after-sat-nude::after {
  border-color: #baa28b !important;
}
.bd-sat-terracotta {
  border-color: #af3a23 !important;
}
.bd-sat-terracotta-active:active {
  border-color: #af3a23 !important;
}
.bd-sat-terracotta-hover:hover {
  border-color: #af3a23 !important;
}
.bd-sat-terracotta-focus:focus {
  border-color: #af3a23 !important;
}
.bd-before-sat-terracotta::before {
  border-color: #af3a23 !important;
}
.bd-after-sat-terracotta::after {
  border-color: #af3a23 !important;
}
.bd-sat-coral {
  border-color: #b65c39 !important;
}
.bd-sat-coral-active:active {
  border-color: #b65c39 !important;
}
.bd-sat-coral-hover:hover {
  border-color: #b65c39 !important;
}
.bd-sat-coral-focus:focus {
  border-color: #b65c39 !important;
}
.bd-before-sat-coral::before {
  border-color: #b65c39 !important;
}
.bd-after-sat-coral::after {
  border-color: #b65c39 !important;
}
.bd-sat-army {
  border-color: #647030 !important;
}
.bd-sat-army-active:active {
  border-color: #647030 !important;
}
.bd-sat-army-hover:hover {
  border-color: #647030 !important;
}
.bd-sat-army-focus:focus {
  border-color: #647030 !important;
}
.bd-before-sat-army::before {
  border-color: #647030 !important;
}
.bd-after-sat-army::after {
  border-color: #647030 !important;
}
.bd-sat-seashell {
  border-color: #e1cbbd !important;
}
.bd-sat-seashell-active:active {
  border-color: #e1cbbd !important;
}
.bd-sat-seashell-hover:hover {
  border-color: #e1cbbd !important;
}
.bd-sat-seashell-focus:focus {
  border-color: #e1cbbd !important;
}
.bd-before-sat-seashell::before {
  border-color: #e1cbbd !important;
}
.bd-after-sat-seashell::after {
  border-color: #e1cbbd !important;
}
.bd-sat-sand {
  border-color: #d1c5a1 !important;
}
.bd-sat-sand-active:active {
  border-color: #d1c5a1 !important;
}
.bd-sat-sand-hover:hover {
  border-color: #d1c5a1 !important;
}
.bd-sat-sand-focus:focus {
  border-color: #d1c5a1 !important;
}
.bd-before-sat-sand::before {
  border-color: #d1c5a1 !important;
}
.bd-after-sat-sand::after {
  border-color: #d1c5a1 !important;
}

/* source/colors-css/svg.less */
.fc-black {
  fill: #000000 !important;
}
.fc-black-active:active {
  fill: #000000 !important;
}
.fc-black-hover:hover {
  fill: #000000 !important;
}
.fc-black-focus:focus {
  fill: #000000 !important;
}
.sc-black {
  stroke: #000000 !important;
}
.sc-black-active:active {
  stroke: #000000 !important;
}
.sc-black-hover:hover {
  stroke: #000000 !important;
}
.sc-black-focus:focus {
  stroke: #000000 !important;
}
.fc-white {
  fill: #ffffff !important;
}
.fc-white-active:active {
  fill: #ffffff !important;
}
.fc-white-hover:hover {
  fill: #ffffff !important;
}
.fc-white-focus:focus {
  fill: #ffffff !important;
}
.sc-white {
  stroke: #ffffff !important;
}
.sc-white-active:active {
  stroke: #ffffff !important;
}
.sc-white-hover:hover {
  stroke: #ffffff !important;
}
.sc-white-focus:focus {
  stroke: #ffffff !important;
}
.fc-dark {
  fill: #1d1d1d !important;
}
.fc-dark-active:active {
  fill: #1d1d1d !important;
}
.fc-dark-hover:hover {
  fill: #1d1d1d !important;
}
.fc-dark-focus:focus {
  fill: #1d1d1d !important;
}
.sc-dark {
  stroke: #1d1d1d !important;
}
.sc-dark-active:active {
  stroke: #1d1d1d !important;
}
.sc-dark-hover:hover {
  stroke: #1d1d1d !important;
}
.sc-dark-focus:focus {
  stroke: #1d1d1d !important;
}
.fc-light {
  fill: #f8f8f8 !important;
}
.fc-light-active:active {
  fill: #f8f8f8 !important;
}
.fc-light-hover:hover {
  fill: #f8f8f8 !important;
}
.fc-light-focus:focus {
  fill: #f8f8f8 !important;
}
.sc-light {
  stroke: #f8f8f8 !important;
}
.sc-light-active:active {
  stroke: #f8f8f8 !important;
}
.sc-light-hover:hover {
  stroke: #f8f8f8 !important;
}
.sc-light-focus:focus {
  stroke: #f8f8f8 !important;
}
.fc-gray {
  fill: #ccc !important;
}
.fc-gray-active:active {
  fill: #ccc !important;
}
.fc-gray-hover:hover {
  fill: #ccc !important;
}
.fc-gray-focus:focus {
  fill: #ccc !important;
}
.sc-gray {
  stroke: #ccc !important;
}
.sc-gray-active:active {
  stroke: #ccc !important;
}
.sc-gray-hover:hover {
  stroke: #ccc !important;
}
.sc-gray-focus:focus {
  stroke: #ccc !important;
}
.fc-gray-blue {
  fill: #6a89a7 !important;
}
.fc-gray-blue-active:active {
  fill: #6a89a7 !important;
}
.fc-gray-blue-hover:hover {
  fill: #6a89a7 !important;
}
.fc-gray-blue-focus:focus {
  fill: #6a89a7 !important;
}
.sc-gray-blue {
  stroke: #6a89a7 !important;
}
.sc-gray-blue-active:active {
  stroke: #6a89a7 !important;
}
.sc-gray-blue-hover:hover {
  stroke: #6a89a7 !important;
}
.sc-gray-blue-focus:focus {
  stroke: #6a89a7 !important;
}
.fc-gray-white {
  fill: #f5f5f5 !important;
}
.fc-gray-white-active:active {
  fill: #f5f5f5 !important;
}
.fc-gray-white-hover:hover {
  fill: #f5f5f5 !important;
}
.fc-gray-white-focus:focus {
  fill: #f5f5f5 !important;
}
.sc-gray-white {
  stroke: #f5f5f5 !important;
}
.sc-gray-white-active:active {
  stroke: #f5f5f5 !important;
}
.sc-gray-white-hover:hover {
  stroke: #f5f5f5 !important;
}
.sc-gray-white-focus:focus {
  stroke: #f5f5f5 !important;
}
.fc-gray-mouse {
  fill: #566b75 !important;
}
.fc-gray-mouse-active:active {
  fill: #566b75 !important;
}
.fc-gray-mouse-hover:hover {
  fill: #566b75 !important;
}
.fc-gray-mouse-focus:focus {
  fill: #566b75 !important;
}
.sc-gray-mouse {
  stroke: #566b75 !important;
}
.sc-gray-mouse-active:active {
  stroke: #566b75 !important;
}
.sc-gray-mouse-hover:hover {
  stroke: #566b75 !important;
}
.sc-gray-mouse-focus:focus {
  stroke: #566b75 !important;
}
.fc-lime {
  fill: #AEFD6C !important;
}
.fc-lime-active:active {
  fill: #AEFD6C !important;
}
.fc-lime-hover:hover {
  fill: #AEFD6C !important;
}
.fc-lime-focus:focus {
  fill: #AEFD6C !important;
}
.sc-lime {
  stroke: #AEFD6C !important;
}
.sc-lime-active:active {
  stroke: #AEFD6C !important;
}
.sc-lime-hover:hover {
  stroke: #AEFD6C !important;
}
.sc-lime-focus:focus {
  stroke: #AEFD6C !important;
}
.fc-green {
  fill: #00b500 !important;
}
.fc-green-active:active {
  fill: #00b500 !important;
}
.fc-green-hover:hover {
  fill: #00b500 !important;
}
.fc-green-focus:focus {
  fill: #00b500 !important;
}
.sc-green {
  stroke: #00b500 !important;
}
.sc-green-active:active {
  stroke: #00b500 !important;
}
.sc-green-hover:hover {
  stroke: #00b500 !important;
}
.sc-green-focus:focus {
  stroke: #00b500 !important;
}
.fc-emerald {
  fill: #50c878 !important;
}
.fc-emerald-active:active {
  fill: #50c878 !important;
}
.fc-emerald-hover:hover {
  fill: #50c878 !important;
}
.fc-emerald-focus:focus {
  fill: #50c878 !important;
}
.sc-emerald {
  stroke: #50c878 !important;
}
.sc-emerald-active:active {
  stroke: #50c878 !important;
}
.sc-emerald-hover:hover {
  stroke: #50c878 !important;
}
.sc-emerald-focus:focus {
  stroke: #50c878 !important;
}
.fc-blue {
  fill: #5e87ff !important;
}
.fc-blue-active:active {
  fill: #5e87ff !important;
}
.fc-blue-hover:hover {
  fill: #5e87ff !important;
}
.fc-blue-focus:focus {
  fill: #5e87ff !important;
}
.sc-blue {
  stroke: #5e87ff !important;
}
.sc-blue-active:active {
  stroke: #5e87ff !important;
}
.sc-blue-hover:hover {
  stroke: #5e87ff !important;
}
.sc-blue-focus:focus {
  stroke: #5e87ff !important;
}
.fc-teal {
  fill: #1ac5c5 !important;
}
.fc-teal-active:active {
  fill: #1ac5c5 !important;
}
.fc-teal-hover:hover {
  fill: #1ac5c5 !important;
}
.fc-teal-focus:focus {
  fill: #1ac5c5 !important;
}
.sc-teal {
  stroke: #1ac5c5 !important;
}
.sc-teal-active:active {
  stroke: #1ac5c5 !important;
}
.sc-teal-hover:hover {
  stroke: #1ac5c5 !important;
}
.sc-teal-focus:focus {
  stroke: #1ac5c5 !important;
}
.fc-cyan {
  fill: #94b6ff !important;
}
.fc-cyan-active:active {
  fill: #94b6ff !important;
}
.fc-cyan-hover:hover {
  fill: #94b6ff !important;
}
.fc-cyan-focus:focus {
  fill: #94b6ff !important;
}
.sc-cyan {
  stroke: #94b6ff !important;
}
.sc-cyan-active:active {
  stroke: #94b6ff !important;
}
.sc-cyan-hover:hover {
  stroke: #94b6ff !important;
}
.sc-cyan-focus:focus {
  stroke: #94b6ff !important;
}
.fc-cobalt {
  fill: #0047ab !important;
}
.fc-cobalt-active:active {
  fill: #0047ab !important;
}
.fc-cobalt-hover:hover {
  fill: #0047ab !important;
}
.fc-cobalt-focus:focus {
  fill: #0047ab !important;
}
.sc-cobalt {
  stroke: #0047ab !important;
}
.sc-cobalt-active:active {
  stroke: #0047ab !important;
}
.sc-cobalt-hover:hover {
  stroke: #0047ab !important;
}
.sc-cobalt-focus:focus {
  stroke: #0047ab !important;
}
.fc-indigo {
  fill: #6400a8 !important;
}
.fc-indigo-active:active {
  fill: #6400a8 !important;
}
.fc-indigo-hover:hover {
  fill: #6400a8 !important;
}
.fc-indigo-focus:focus {
  fill: #6400a8 !important;
}
.sc-indigo {
  stroke: #6400a8 !important;
}
.sc-indigo-active:active {
  stroke: #6400a8 !important;
}
.sc-indigo-hover:hover {
  stroke: #6400a8 !important;
}
.sc-indigo-focus:focus {
  stroke: #6400a8 !important;
}
.fc-almost {
  fill: #6a2ded !important;
}
.fc-almost-active:active {
  fill: #6a2ded !important;
}
.fc-almost-hover:hover {
  fill: #6a2ded !important;
}
.fc-almost-focus:focus {
  fill: #6a2ded !important;
}
.sc-almost {
  stroke: #6a2ded !important;
}
.sc-almost-active:active {
  stroke: #6a2ded !important;
}
.sc-almost-hover:hover {
  stroke: #6a2ded !important;
}
.sc-almost-focus:focus {
  stroke: #6a2ded !important;
}
.fc-violet {
  fill: #ee82ee !important;
}
.fc-violet-active:active {
  fill: #ee82ee !important;
}
.fc-violet-hover:hover {
  fill: #ee82ee !important;
}
.fc-violet-focus:focus {
  fill: #ee82ee !important;
}
.sc-violet {
  stroke: #ee82ee !important;
}
.sc-violet-active:active {
  stroke: #ee82ee !important;
}
.sc-violet-hover:hover {
  stroke: #ee82ee !important;
}
.sc-violet-focus:focus {
  stroke: #ee82ee !important;
}
.fc-pink {
  fill: #ffc0cb !important;
}
.fc-pink-active:active {
  fill: #ffc0cb !important;
}
.fc-pink-hover:hover {
  fill: #ffc0cb !important;
}
.fc-pink-focus:focus {
  fill: #ffc0cb !important;
}
.sc-pink {
  stroke: #ffc0cb !important;
}
.sc-pink-active:active {
  stroke: #ffc0cb !important;
}
.sc-pink-hover:hover {
  stroke: #ffc0cb !important;
}
.sc-pink-focus:focus {
  stroke: #ffc0cb !important;
}
.fc-magenta {
  fill: #ff00ff !important;
}
.fc-magenta-active:active {
  fill: #ff00ff !important;
}
.fc-magenta-hover:hover {
  fill: #ff00ff !important;
}
.fc-magenta-focus:focus {
  fill: #ff00ff !important;
}
.sc-magenta {
  stroke: #ff00ff !important;
}
.sc-magenta-active:active {
  stroke: #ff00ff !important;
}
.sc-magenta-hover:hover {
  stroke: #ff00ff !important;
}
.sc-magenta-focus:focus {
  stroke: #ff00ff !important;
}
.fc-crimson {
  fill: #df0e38 !important;
}
.fc-crimson-active:active {
  fill: #df0e38 !important;
}
.fc-crimson-hover:hover {
  fill: #df0e38 !important;
}
.fc-crimson-focus:focus {
  fill: #df0e38 !important;
}
.sc-crimson {
  stroke: #df0e38 !important;
}
.sc-crimson-active:active {
  stroke: #df0e38 !important;
}
.sc-crimson-hover:hover {
  stroke: #df0e38 !important;
}
.sc-crimson-focus:focus {
  stroke: #df0e38 !important;
}
.fc-red {
  fill: #ff0000 !important;
}
.fc-red-active:active {
  fill: #ff0000 !important;
}
.fc-red-hover:hover {
  fill: #ff0000 !important;
}
.fc-red-focus:focus {
  fill: #ff0000 !important;
}
.sc-red {
  stroke: #ff0000 !important;
}
.sc-red-active:active {
  stroke: #ff0000 !important;
}
.sc-red-hover:hover {
  stroke: #ff0000 !important;
}
.sc-red-focus:focus {
  stroke: #ff0000 !important;
}
.fc-clown {
  fill: #ff6d66 !important;
}
.fc-clown-active:active {
  fill: #ff6d66 !important;
}
.fc-clown-hover:hover {
  fill: #ff6d66 !important;
}
.fc-clown-focus:focus {
  fill: #ff6d66 !important;
}
.sc-clown {
  stroke: #ff6d66 !important;
}
.sc-clown-active:active {
  stroke: #ff6d66 !important;
}
.sc-clown-hover:hover {
  stroke: #ff6d66 !important;
}
.sc-clown-focus:focus {
  stroke: #ff6d66 !important;
}
.fc-orange {
  fill: #ffa500 !important;
}
.fc-orange-active:active {
  fill: #ffa500 !important;
}
.fc-orange-hover:hover {
  fill: #ffa500 !important;
}
.fc-orange-focus:focus {
  fill: #ffa500 !important;
}
.sc-orange {
  stroke: #ffa500 !important;
}
.sc-orange-active:active {
  stroke: #ffa500 !important;
}
.sc-orange-hover:hover {
  stroke: #ffa500 !important;
}
.sc-orange-focus:focus {
  stroke: #ffa500 !important;
}
.fc-amber {
  fill: #ffca2a !important;
}
.fc-amber-active:active {
  fill: #ffca2a !important;
}
.fc-amber-hover:hover {
  fill: #ffca2a !important;
}
.fc-amber-focus:focus {
  fill: #ffca2a !important;
}
.sc-amber {
  stroke: #ffca2a !important;
}
.sc-amber-active:active {
  stroke: #ffca2a !important;
}
.sc-amber-hover:hover {
  stroke: #ffca2a !important;
}
.sc-amber-focus:focus {
  stroke: #ffca2a !important;
}
.fc-yellow {
  fill: #ffe95e !important;
}
.fc-yellow-active:active {
  fill: #ffe95e !important;
}
.fc-yellow-hover:hover {
  fill: #ffe95e !important;
}
.fc-yellow-focus:focus {
  fill: #ffe95e !important;
}
.sc-yellow {
  stroke: #ffe95e !important;
}
.sc-yellow-active:active {
  stroke: #ffe95e !important;
}
.sc-yellow-hover:hover {
  stroke: #ffe95e !important;
}
.sc-yellow-focus:focus {
  stroke: #ffe95e !important;
}
.fc-brown {
  fill: #ca773c !important;
}
.fc-brown-active:active {
  fill: #ca773c !important;
}
.fc-brown-hover:hover {
  fill: #ca773c !important;
}
.fc-brown-focus:focus {
  fill: #ca773c !important;
}
.sc-brown {
  stroke: #ca773c !important;
}
.sc-brown-active:active {
  stroke: #ca773c !important;
}
.sc-brown-hover:hover {
  stroke: #ca773c !important;
}
.sc-brown-focus:focus {
  stroke: #ca773c !important;
}
.fc-olive {
  fill: #a1a100 !important;
}
.fc-olive-active:active {
  fill: #a1a100 !important;
}
.fc-olive-hover:hover {
  fill: #a1a100 !important;
}
.fc-olive-focus:focus {
  fill: #a1a100 !important;
}
.sc-olive {
  stroke: #a1a100 !important;
}
.sc-olive-active:active {
  stroke: #a1a100 !important;
}
.sc-olive-hover:hover {
  stroke: #a1a100 !important;
}
.sc-olive-focus:focus {
  stroke: #a1a100 !important;
}
.fc-steel {
  fill: #7b91a6 !important;
}
.fc-steel-active:active {
  fill: #7b91a6 !important;
}
.fc-steel-hover:hover {
  fill: #7b91a6 !important;
}
.fc-steel-focus:focus {
  fill: #7b91a6 !important;
}
.sc-steel {
  stroke: #7b91a6 !important;
}
.sc-steel-active:active {
  stroke: #7b91a6 !important;
}
.sc-steel-hover:hover {
  stroke: #7b91a6 !important;
}
.sc-steel-focus:focus {
  stroke: #7b91a6 !important;
}
.fc-mauve {
  fill: #e0afff !important;
}
.fc-mauve-active:active {
  fill: #e0afff !important;
}
.fc-mauve-hover:hover {
  fill: #e0afff !important;
}
.fc-mauve-focus:focus {
  fill: #e0afff !important;
}
.sc-mauve {
  stroke: #e0afff !important;
}
.sc-mauve-active:active {
  stroke: #e0afff !important;
}
.sc-mauve-hover:hover {
  stroke: #e0afff !important;
}
.sc-mauve-focus:focus {
  stroke: #e0afff !important;
}
.fc-taupe {
  fill: #977e67 !important;
}
.fc-taupe-active:active {
  fill: #977e67 !important;
}
.fc-taupe-hover:hover {
  fill: #977e67 !important;
}
.fc-taupe-focus:focus {
  fill: #977e67 !important;
}
.sc-taupe {
  stroke: #977e67 !important;
}
.sc-taupe-active:active {
  stroke: #977e67 !important;
}
.sc-taupe-hover:hover {
  stroke: #977e67 !important;
}
.sc-taupe-focus:focus {
  stroke: #977e67 !important;
}
.fc-champagne {
  fill: #f7e6ca !important;
}
.fc-champagne-active:active {
  fill: #f7e6ca !important;
}
.fc-champagne-hover:hover {
  fill: #f7e6ca !important;
}
.fc-champagne-focus:focus {
  fill: #f7e6ca !important;
}
.sc-champagne {
  stroke: #f7e6ca !important;
}
.sc-champagne-active:active {
  stroke: #f7e6ca !important;
}
.sc-champagne-hover:hover {
  stroke: #f7e6ca !important;
}
.sc-champagne-focus:focus {
  stroke: #f7e6ca !important;
}
.fc-khaki {
  fill: #d5c58a !important;
}
.fc-khaki-active:active {
  fill: #d5c58a !important;
}
.fc-khaki-hover:hover {
  fill: #d5c58a !important;
}
.fc-khaki-focus:focus {
  fill: #d5c58a !important;
}
.sc-khaki {
  stroke: #d5c58a !important;
}
.sc-khaki-active:active {
  stroke: #d5c58a !important;
}
.sc-khaki-hover:hover {
  stroke: #d5c58a !important;
}
.sc-khaki-focus:focus {
  stroke: #d5c58a !important;
}
.fc-charcoal {
  fill: #989898 !important;
}
.fc-charcoal-active:active {
  fill: #989898 !important;
}
.fc-charcoal-hover:hover {
  fill: #989898 !important;
}
.fc-charcoal-focus:focus {
  fill: #989898 !important;
}
.sc-charcoal {
  stroke: #989898 !important;
}
.sc-charcoal-active:active {
  stroke: #989898 !important;
}
.sc-charcoal-hover:hover {
  stroke: #989898 !important;
}
.sc-charcoal-focus:focus {
  stroke: #989898 !important;
}
.fc-bronze {
  fill: #e48d3e !important;
}
.fc-bronze-active:active {
  fill: #e48d3e !important;
}
.fc-bronze-hover:hover {
  fill: #e48d3e !important;
}
.fc-bronze-focus:focus {
  fill: #e48d3e !important;
}
.sc-bronze {
  stroke: #e48d3e !important;
}
.sc-bronze-active:active {
  stroke: #e48d3e !important;
}
.sc-bronze-hover:hover {
  stroke: #e48d3e !important;
}
.sc-bronze-focus:focus {
  stroke: #e48d3e !important;
}
.fc-windstorm {
  fill: #799ed6 !important;
}
.fc-windstorm-active:active {
  fill: #799ed6 !important;
}
.fc-windstorm-hover:hover {
  fill: #799ed6 !important;
}
.fc-windstorm-focus:focus {
  fill: #799ed6 !important;
}
.sc-windstorm {
  stroke: #799ed6 !important;
}
.sc-windstorm-active:active {
  stroke: #799ed6 !important;
}
.sc-windstorm-hover:hover {
  stroke: #799ed6 !important;
}
.sc-windstorm-focus:focus {
  stroke: #799ed6 !important;
}
.fc-nude {
  fill: #f7d9bc !important;
}
.fc-nude-active:active {
  fill: #f7d9bc !important;
}
.fc-nude-hover:hover {
  fill: #f7d9bc !important;
}
.fc-nude-focus:focus {
  fill: #f7d9bc !important;
}
.sc-nude {
  stroke: #f7d9bc !important;
}
.sc-nude-active:active {
  stroke: #f7d9bc !important;
}
.sc-nude-hover:hover {
  stroke: #f7d9bc !important;
}
.sc-nude-focus:focus {
  stroke: #f7d9bc !important;
}
.fc-terracotta {
  fill: #e35336 !important;
}
.fc-terracotta-active:active {
  fill: #e35336 !important;
}
.fc-terracotta-hover:hover {
  fill: #e35336 !important;
}
.fc-terracotta-focus:focus {
  fill: #e35336 !important;
}
.sc-terracotta {
  stroke: #e35336 !important;
}
.sc-terracotta-active:active {
  stroke: #e35336 !important;
}
.sc-terracotta-hover:hover {
  stroke: #e35336 !important;
}
.sc-terracotta-focus:focus {
  stroke: #e35336 !important;
}
.fc-coral {
  fill: #ff8559 !important;
}
.fc-coral-active:active {
  fill: #ff8559 !important;
}
.fc-coral-hover:hover {
  fill: #ff8559 !important;
}
.fc-coral-focus:focus {
  fill: #ff8559 !important;
}
.sc-coral {
  stroke: #ff8559 !important;
}
.sc-coral-active:active {
  stroke: #ff8559 !important;
}
.sc-coral-hover:hover {
  stroke: #ff8559 !important;
}
.sc-coral-focus:focus {
  stroke: #ff8559 !important;
}
.fc-army {
  fill: #5d6532 !important;
}
.fc-army-active:active {
  fill: #5d6532 !important;
}
.fc-army-hover:hover {
  fill: #5d6532 !important;
}
.fc-army-focus:focus {
  fill: #5d6532 !important;
}
.sc-army {
  stroke: #5d6532 !important;
}
.sc-army-active:active {
  stroke: #5d6532 !important;
}
.sc-army-hover:hover {
  stroke: #5d6532 !important;
}
.sc-army-focus:focus {
  stroke: #5d6532 !important;
}
.fc-seashell {
  fill: #fff1e7 !important;
}
.fc-seashell-active:active {
  fill: #fff1e7 !important;
}
.fc-seashell-hover:hover {
  fill: #fff1e7 !important;
}
.fc-seashell-focus:focus {
  fill: #fff1e7 !important;
}
.sc-seashell {
  stroke: #fff1e7 !important;
}
.sc-seashell-active:active {
  stroke: #fff1e7 !important;
}
.sc-seashell-hover:hover {
  stroke: #fff1e7 !important;
}
.sc-seashell-focus:focus {
  stroke: #fff1e7 !important;
}
.fc-sand {
  fill: #f1e0ae !important;
}
.fc-sand-active:active {
  fill: #f1e0ae !important;
}
.fc-sand-hover:hover {
  fill: #f1e0ae !important;
}
.fc-sand-focus:focus {
  fill: #f1e0ae !important;
}
.sc-sand {
  stroke: #f1e0ae !important;
}
.sc-sand-active:active {
  stroke: #f1e0ae !important;
}
.sc-sand-hover:hover {
  stroke: #f1e0ae !important;
}
.sc-sand-focus:focus {
  stroke: #f1e0ae !important;
}
.fc-light-lime {
  fill: #f2ffe7 !important;
}
.fc-light-lime-active:active {
  fill: #f2ffe7 !important;
}
.fc-light-lime-hover:hover {
  fill: #f2ffe7 !important;
}
.fc-light-lime-focus:focus {
  fill: #f2ffe7 !important;
}
.sc-light-lime {
  stroke: #f2ffe7 !important;
}
.sc-light-lime-active:active {
  stroke: #f2ffe7 !important;
}
.sc-light-lime-hover:hover {
  stroke: #f2ffe7 !important;
}
.sc-light-lime-focus:focus {
  stroke: #f2ffe7 !important;
}
.fc-light-green {
  fill: #e7f6e6 !important;
}
.fc-light-green-active:active {
  fill: #e7f6e6 !important;
}
.fc-light-green-hover:hover {
  fill: #e7f6e6 !important;
}
.fc-light-green-focus:focus {
  fill: #e7f6e6 !important;
}
.sc-light-green {
  stroke: #e7f6e6 !important;
}
.sc-light-green-active:active {
  stroke: #e7f6e6 !important;
}
.sc-light-green-hover:hover {
  stroke: #e7f6e6 !important;
}
.sc-light-green-focus:focus {
  stroke: #e7f6e6 !important;
}
.fc-light-emerald {
  fill: #d1e6cc !important;
}
.fc-light-emerald-active:active {
  fill: #d1e6cc !important;
}
.fc-light-emerald-hover:hover {
  fill: #d1e6cc !important;
}
.fc-light-emerald-focus:focus {
  fill: #d1e6cc !important;
}
.sc-light-emerald {
  stroke: #d1e6cc !important;
}
.sc-light-emerald-active:active {
  stroke: #d1e6cc !important;
}
.sc-light-emerald-hover:hover {
  stroke: #d1e6cc !important;
}
.sc-light-emerald-focus:focus {
  stroke: #d1e6cc !important;
}
.fc-light-blue {
  fill: #e7eaff !important;
}
.fc-light-blue-active:active {
  fill: #e7eaff !important;
}
.fc-light-blue-hover:hover {
  fill: #e7eaff !important;
}
.fc-light-blue-focus:focus {
  fill: #e7eaff !important;
}
.sc-light-blue {
  stroke: #e7eaff !important;
}
.sc-light-blue-active:active {
  stroke: #e7eaff !important;
}
.sc-light-blue-hover:hover {
  stroke: #e7eaff !important;
}
.sc-light-blue-focus:focus {
  stroke: #e7eaff !important;
}
.fc-light-teal {
  fill: #e1f2f3 !important;
}
.fc-light-teal-active:active {
  fill: #e1f2f3 !important;
}
.fc-light-teal-hover:hover {
  fill: #e1f2f3 !important;
}
.fc-light-teal-focus:focus {
  fill: #e1f2f3 !important;
}
.sc-light-teal {
  stroke: #e1f2f3 !important;
}
.sc-light-teal-active:active {
  stroke: #e1f2f3 !important;
}
.sc-light-teal-hover:hover {
  stroke: #e1f2f3 !important;
}
.sc-light-teal-focus:focus {
  stroke: #e1f2f3 !important;
}
.fc-light-cyan {
  fill: #e3edff !important;
}
.fc-light-cyan-active:active {
  fill: #e3edff !important;
}
.fc-light-cyan-hover:hover {
  fill: #e3edff !important;
}
.fc-light-cyan-focus:focus {
  fill: #e3edff !important;
}
.sc-light-cyan {
  stroke: #e3edff !important;
}
.sc-light-cyan-active:active {
  stroke: #e3edff !important;
}
.sc-light-cyan-hover:hover {
  stroke: #e3edff !important;
}
.sc-light-cyan-focus:focus {
  stroke: #e3edff !important;
}
.fc-light-cobalt {
  fill: #d1ecff !important;
}
.fc-light-cobalt-active:active {
  fill: #d1ecff !important;
}
.fc-light-cobalt-hover:hover {
  fill: #d1ecff !important;
}
.fc-light-cobalt-focus:focus {
  fill: #d1ecff !important;
}
.sc-light-cobalt {
  stroke: #d1ecff !important;
}
.sc-light-cobalt-active:active {
  stroke: #d1ecff !important;
}
.sc-light-cobalt-hover:hover {
  stroke: #d1ecff !important;
}
.sc-light-cobalt-focus:focus {
  stroke: #d1ecff !important;
}
.fc-light-indigo {
  fill: #f3dcf3 !important;
}
.fc-light-indigo-active:active {
  fill: #f3dcf3 !important;
}
.fc-light-indigo-hover:hover {
  fill: #f3dcf3 !important;
}
.fc-light-indigo-focus:focus {
  fill: #f3dcf3 !important;
}
.sc-light-indigo {
  stroke: #f3dcf3 !important;
}
.sc-light-indigo-active:active {
  stroke: #f3dcf3 !important;
}
.sc-light-indigo-hover:hover {
  stroke: #f3dcf3 !important;
}
.sc-light-indigo-focus:focus {
  stroke: #f3dcf3 !important;
}
.fc-light-almost {
  fill: #eee5ff !important;
}
.fc-light-almost-active:active {
  fill: #eee5ff !important;
}
.fc-light-almost-hover:hover {
  fill: #eee5ff !important;
}
.fc-light-almost-focus:focus {
  fill: #eee5ff !important;
}
.sc-light-almost {
  stroke: #eee5ff !important;
}
.sc-light-almost-active:active {
  stroke: #eee5ff !important;
}
.sc-light-almost-hover:hover {
  stroke: #eee5ff !important;
}
.sc-light-almost-focus:focus {
  stroke: #eee5ff !important;
}
.fc-light-violet {
  fill: #fce2fb !important;
}
.fc-light-violet-active:active {
  fill: #fce2fb !important;
}
.fc-light-violet-hover:hover {
  fill: #fce2fb !important;
}
.fc-light-violet-focus:focus {
  fill: #fce2fb !important;
}
.sc-light-violet {
  stroke: #fce2fb !important;
}
.sc-light-violet-active:active {
  stroke: #fce2fb !important;
}
.sc-light-violet-hover:hover {
  stroke: #fce2fb !important;
}
.sc-light-violet-focus:focus {
  stroke: #fce2fb !important;
}
.fc-light-pink {
  fill: #ffeef1 !important;
}
.fc-light-pink-active:active {
  fill: #ffeef1 !important;
}
.fc-light-pink-hover:hover {
  fill: #ffeef1 !important;
}
.fc-light-pink-focus:focus {
  fill: #ffeef1 !important;
}
.sc-light-pink {
  stroke: #ffeef1 !important;
}
.sc-light-pink-active:active {
  stroke: #ffeef1 !important;
}
.sc-light-pink-hover:hover {
  stroke: #ffeef1 !important;
}
.sc-light-pink-focus:focus {
  stroke: #ffeef1 !important;
}
.fc-light-magenta {
  fill: #ffe2ff !important;
}
.fc-light-magenta-active:active {
  fill: #ffe2ff !important;
}
.fc-light-magenta-hover:hover {
  fill: #ffe2ff !important;
}
.fc-light-magenta-focus:focus {
  fill: #ffe2ff !important;
}
.sc-light-magenta {
  stroke: #ffe2ff !important;
}
.sc-light-magenta-active:active {
  stroke: #ffe2ff !important;
}
.sc-light-magenta-hover:hover {
  stroke: #ffe2ff !important;
}
.sc-light-magenta-focus:focus {
  stroke: #ffe2ff !important;
}
.fc-light-crimson {
  fill: #ffd1da !important;
}
.fc-light-crimson-active:active {
  fill: #ffd1da !important;
}
.fc-light-crimson-hover:hover {
  fill: #ffd1da !important;
}
.fc-light-crimson-focus:focus {
  fill: #ffd1da !important;
}
.sc-light-crimson {
  stroke: #ffd1da !important;
}
.sc-light-crimson-active:active {
  stroke: #ffd1da !important;
}
.sc-light-crimson-hover:hover {
  stroke: #ffd1da !important;
}
.sc-light-crimson-focus:focus {
  stroke: #ffd1da !important;
}
.fc-light-red {
  fill: #ffe1e1 !important;
}
.fc-light-red-active:active {
  fill: #ffe1e1 !important;
}
.fc-light-red-hover:hover {
  fill: #ffe1e1 !important;
}
.fc-light-red-focus:focus {
  fill: #ffe1e1 !important;
}
.sc-light-red {
  stroke: #ffe1e1 !important;
}
.sc-light-red-active:active {
  stroke: #ffe1e1 !important;
}
.sc-light-red-hover:hover {
  stroke: #ffe1e1 !important;
}
.sc-light-red-focus:focus {
  stroke: #ffe1e1 !important;
}
.fc-light-clown {
  fill: #ffdede !important;
}
.fc-light-clown-active:active {
  fill: #ffdede !important;
}
.fc-light-clown-hover:hover {
  fill: #ffdede !important;
}
.fc-light-clown-focus:focus {
  fill: #ffdede !important;
}
.sc-light-clown {
  stroke: #ffdede !important;
}
.sc-light-clown-active:active {
  stroke: #ffdede !important;
}
.sc-light-clown-hover:hover {
  stroke: #ffdede !important;
}
.sc-light-clown-focus:focus {
  stroke: #ffdede !important;
}
.fc-light-orange {
  fill: #fff3de !important;
}
.fc-light-orange-active:active {
  fill: #fff3de !important;
}
.fc-light-orange-hover:hover {
  fill: #fff3de !important;
}
.fc-light-orange-focus:focus {
  fill: #fff3de !important;
}
.sc-light-orange {
  stroke: #fff3de !important;
}
.sc-light-orange-active:active {
  stroke: #fff3de !important;
}
.sc-light-orange-hover:hover {
  stroke: #fff3de !important;
}
.sc-light-orange-focus:focus {
  stroke: #fff3de !important;
}
.fc-light-amber {
  fill: #fff8e1 !important;
}
.fc-light-amber-active:active {
  fill: #fff8e1 !important;
}
.fc-light-amber-hover:hover {
  fill: #fff8e1 !important;
}
.fc-light-amber-focus:focus {
  fill: #fff8e1 !important;
}
.sc-light-amber {
  stroke: #fff8e1 !important;
}
.sc-light-amber-active:active {
  stroke: #fff8e1 !important;
}
.sc-light-amber-hover:hover {
  stroke: #fff8e1 !important;
}
.sc-light-amber-focus:focus {
  stroke: #fff8e1 !important;
}
.fc-light-yellow {
  fill: #ffffc6 !important;
}
.fc-light-yellow-active:active {
  fill: #ffffc6 !important;
}
.fc-light-yellow-hover:hover {
  fill: #ffffc6 !important;
}
.fc-light-yellow-focus:focus {
  fill: #ffffc6 !important;
}
.sc-light-yellow {
  stroke: #ffffc6 !important;
}
.sc-light-yellow-active:active {
  stroke: #ffffc6 !important;
}
.sc-light-yellow-hover:hover {
  stroke: #ffffc6 !important;
}
.sc-light-yellow-focus:focus {
  stroke: #ffffc6 !important;
}
.fc-light-brown {
  fill: #ffeed9 !important;
}
.fc-light-brown-active:active {
  fill: #ffeed9 !important;
}
.fc-light-brown-hover:hover {
  fill: #ffeed9 !important;
}
.fc-light-brown-focus:focus {
  fill: #ffeed9 !important;
}
.sc-light-brown {
  stroke: #ffeed9 !important;
}
.sc-light-brown-active:active {
  stroke: #ffeed9 !important;
}
.sc-light-brown-hover:hover {
  stroke: #ffeed9 !important;
}
.sc-light-brown-focus:focus {
  stroke: #ffeed9 !important;
}
.fc-light-olive {
  fill: #f8fde7 !important;
}
.fc-light-olive-active:active {
  fill: #f8fde7 !important;
}
.fc-light-olive-hover:hover {
  fill: #f8fde7 !important;
}
.fc-light-olive-focus:focus {
  fill: #f8fde7 !important;
}
.sc-light-olive {
  stroke: #f8fde7 !important;
}
.sc-light-olive-active:active {
  stroke: #f8fde7 !important;
}
.sc-light-olive-hover:hover {
  stroke: #f8fde7 !important;
}
.sc-light-olive-focus:focus {
  stroke: #f8fde7 !important;
}
.fc-light-steel {
  fill: #edeeee !important;
}
.fc-light-steel-active:active {
  fill: #edeeee !important;
}
.fc-light-steel-hover:hover {
  fill: #edeeee !important;
}
.fc-light-steel-focus:focus {
  fill: #edeeee !important;
}
.sc-light-steel {
  stroke: #edeeee !important;
}
.sc-light-steel-active:active {
  stroke: #edeeee !important;
}
.sc-light-steel-hover:hover {
  stroke: #edeeee !important;
}
.sc-light-steel-focus:focus {
  stroke: #edeeee !important;
}
.fc-light-mauve {
  fill: #f7ecfe !important;
}
.fc-light-mauve-active:active {
  fill: #f7ecfe !important;
}
.fc-light-mauve-hover:hover {
  fill: #f7ecfe !important;
}
.fc-light-mauve-focus:focus {
  fill: #f7ecfe !important;
}
.sc-light-mauve {
  stroke: #f7ecfe !important;
}
.sc-light-mauve-active:active {
  stroke: #f7ecfe !important;
}
.sc-light-mauve-hover:hover {
  stroke: #f7ecfe !important;
}
.sc-light-mauve-focus:focus {
  stroke: #f7ecfe !important;
}
.fc-light-taupe {
  fill: #eadccf !important;
}
.fc-light-taupe-active:active {
  fill: #eadccf !important;
}
.fc-light-taupe-hover:hover {
  fill: #eadccf !important;
}
.fc-light-taupe-focus:focus {
  fill: #eadccf !important;
}
.sc-light-taupe {
  stroke: #eadccf !important;
}
.sc-light-taupe-active:active {
  stroke: #eadccf !important;
}
.sc-light-taupe-hover:hover {
  stroke: #eadccf !important;
}
.sc-light-taupe-focus:focus {
  stroke: #eadccf !important;
}
.fc-light-gray {
  fill: #f4f4f4 !important;
}
.fc-light-gray-active:active {
  fill: #f4f4f4 !important;
}
.fc-light-gray-hover:hover {
  fill: #f4f4f4 !important;
}
.fc-light-gray-focus:focus {
  fill: #f4f4f4 !important;
}
.sc-light-gray {
  stroke: #f4f4f4 !important;
}
.sc-light-gray-active:active {
  stroke: #f4f4f4 !important;
}
.sc-light-gray-hover:hover {
  stroke: #f4f4f4 !important;
}
.sc-light-gray-focus:focus {
  stroke: #f4f4f4 !important;
}
.fc-light-gray-blue {
  fill: #bee2f4 !important;
}
.fc-light-gray-blue-active:active {
  fill: #bee2f4 !important;
}
.fc-light-gray-blue-hover:hover {
  fill: #bee2f4 !important;
}
.fc-light-gray-blue-focus:focus {
  fill: #bee2f4 !important;
}
.sc-light-gray-blue {
  stroke: #bee2f4 !important;
}
.sc-light-gray-blue-active:active {
  stroke: #bee2f4 !important;
}
.sc-light-gray-blue-hover:hover {
  stroke: #bee2f4 !important;
}
.sc-light-gray-blue-focus:focus {
  stroke: #bee2f4 !important;
}
.fc-light-gray-mouse {
  fill: #8ab4c8 !important;
}
.fc-light-gray-mouse-active:active {
  fill: #8ab4c8 !important;
}
.fc-light-gray-mouse-hover:hover {
  fill: #8ab4c8 !important;
}
.fc-light-gray-mouse-focus:focus {
  fill: #8ab4c8 !important;
}
.sc-light-gray-mouse {
  stroke: #8ab4c8 !important;
}
.sc-light-gray-mouse-active:active {
  stroke: #8ab4c8 !important;
}
.sc-light-gray-mouse-hover:hover {
  stroke: #8ab4c8 !important;
}
.sc-light-gray-mouse-focus:focus {
  stroke: #8ab4c8 !important;
}
.fc-light-champagne {
  fill: #fff9f2 !important;
}
.fc-light-champagne-active:active {
  fill: #fff9f2 !important;
}
.fc-light-champagne-hover:hover {
  fill: #fff9f2 !important;
}
.fc-light-champagne-focus:focus {
  fill: #fff9f2 !important;
}
.sc-light-champagne {
  stroke: #fff9f2 !important;
}
.sc-light-champagne-active:active {
  stroke: #fff9f2 !important;
}
.sc-light-champagne-hover:hover {
  stroke: #fff9f2 !important;
}
.sc-light-champagne-focus:focus {
  stroke: #fff9f2 !important;
}
.fc-light-khaki {
  fill: #f6f1dd !important;
}
.fc-light-khaki-active:active {
  fill: #f6f1dd !important;
}
.fc-light-khaki-hover:hover {
  fill: #f6f1dd !important;
}
.fc-light-khaki-focus:focus {
  fill: #f6f1dd !important;
}
.sc-light-khaki {
  stroke: #f6f1dd !important;
}
.sc-light-khaki-active:active {
  stroke: #f6f1dd !important;
}
.sc-light-khaki-hover:hover {
  stroke: #f6f1dd !important;
}
.sc-light-khaki-focus:focus {
  stroke: #f6f1dd !important;
}
.fc-light-charcoal {
  fill: #e8e8e8 !important;
}
.fc-light-charcoal-active:active {
  fill: #e8e8e8 !important;
}
.fc-light-charcoal-hover:hover {
  fill: #e8e8e8 !important;
}
.fc-light-charcoal-focus:focus {
  fill: #e8e8e8 !important;
}
.sc-light-charcoal {
  stroke: #e8e8e8 !important;
}
.sc-light-charcoal-active:active {
  stroke: #e8e8e8 !important;
}
.sc-light-charcoal-hover:hover {
  stroke: #e8e8e8 !important;
}
.sc-light-charcoal-focus:focus {
  stroke: #e8e8e8 !important;
}
.fc-light-bronze {
  fill: #ffecdc !important;
}
.fc-light-bronze-active:active {
  fill: #ffecdc !important;
}
.fc-light-bronze-hover:hover {
  fill: #ffecdc !important;
}
.fc-light-bronze-focus:focus {
  fill: #ffecdc !important;
}
.sc-light-bronze {
  stroke: #ffecdc !important;
}
.sc-light-bronze-active:active {
  stroke: #ffecdc !important;
}
.sc-light-bronze-hover:hover {
  stroke: #ffecdc !important;
}
.sc-light-bronze-focus:focus {
  stroke: #ffecdc !important;
}
.fc-light-windstorm {
  fill: #e6ebf5 !important;
}
.fc-light-windstorm-active:active {
  fill: #e6ebf5 !important;
}
.fc-light-windstorm-hover:hover {
  fill: #e6ebf5 !important;
}
.fc-light-windstorm-focus:focus {
  fill: #e6ebf5 !important;
}
.sc-light-windstorm {
  stroke: #e6ebf5 !important;
}
.sc-light-windstorm-active:active {
  stroke: #e6ebf5 !important;
}
.sc-light-windstorm-hover:hover {
  stroke: #e6ebf5 !important;
}
.sc-light-windstorm-focus:focus {
  stroke: #e6ebf5 !important;
}
.fc-light-nude {
  fill: #fcf0e4 !important;
}
.fc-light-nude-active:active {
  fill: #fcf0e4 !important;
}
.fc-light-nude-hover:hover {
  fill: #fcf0e4 !important;
}
.fc-light-nude-focus:focus {
  fill: #fcf0e4 !important;
}
.sc-light-nude {
  stroke: #fcf0e4 !important;
}
.sc-light-nude-active:active {
  stroke: #fcf0e4 !important;
}
.sc-light-nude-hover:hover {
  stroke: #fcf0e4 !important;
}
.sc-light-nude-focus:focus {
  stroke: #fcf0e4 !important;
}
.fc-light-terracotta {
  fill: #ffe5df !important;
}
.fc-light-terracotta-active:active {
  fill: #ffe5df !important;
}
.fc-light-terracotta-hover:hover {
  fill: #ffe5df !important;
}
.fc-light-terracotta-focus:focus {
  fill: #ffe5df !important;
}
.sc-light-terracotta {
  stroke: #ffe5df !important;
}
.sc-light-terracotta-active:active {
  stroke: #ffe5df !important;
}
.sc-light-terracotta-hover:hover {
  stroke: #ffe5df !important;
}
.sc-light-terracotta-focus:focus {
  stroke: #ffe5df !important;
}
.fc-light-coral {
  fill: #ffd8c8 !important;
}
.fc-light-coral-active:active {
  fill: #ffd8c8 !important;
}
.fc-light-coral-hover:hover {
  fill: #ffd8c8 !important;
}
.fc-light-coral-focus:focus {
  fill: #ffd8c8 !important;
}
.sc-light-coral {
  stroke: #ffd8c8 !important;
}
.sc-light-coral-active:active {
  stroke: #ffd8c8 !important;
}
.sc-light-coral-hover:hover {
  stroke: #ffd8c8 !important;
}
.sc-light-coral-focus:focus {
  stroke: #ffd8c8 !important;
}
.fc-light-army {
  fill: #eceacb !important;
}
.fc-light-army-active:active {
  fill: #eceacb !important;
}
.fc-light-army-hover:hover {
  fill: #eceacb !important;
}
.fc-light-army-focus:focus {
  fill: #eceacb !important;
}
.sc-light-army {
  stroke: #eceacb !important;
}
.sc-light-army-active:active {
  stroke: #eceacb !important;
}
.sc-light-army-hover:hover {
  stroke: #eceacb !important;
}
.sc-light-army-focus:focus {
  stroke: #eceacb !important;
}
.fc-light-seashell {
  fill: #fff9f8 !important;
}
.fc-light-seashell-active:active {
  fill: #fff9f8 !important;
}
.fc-light-seashell-hover:hover {
  fill: #fff9f8 !important;
}
.fc-light-seashell-focus:focus {
  fill: #fff9f8 !important;
}
.sc-light-seashell {
  stroke: #fff9f8 !important;
}
.sc-light-seashell-active:active {
  stroke: #fff9f8 !important;
}
.sc-light-seashell-hover:hover {
  stroke: #fff9f8 !important;
}
.sc-light-seashell-focus:focus {
  stroke: #fff9f8 !important;
}
.fc-light-sand {
  fill: #f8f3e0 !important;
}
.fc-light-sand-active:active {
  fill: #f8f3e0 !important;
}
.fc-light-sand-hover:hover {
  fill: #f8f3e0 !important;
}
.fc-light-sand-focus:focus {
  fill: #f8f3e0 !important;
}
.sc-light-sand {
  stroke: #f8f3e0 !important;
}
.sc-light-sand-active:active {
  stroke: #f8f3e0 !important;
}
.sc-light-sand-hover:hover {
  stroke: #f8f3e0 !important;
}
.sc-light-sand-focus:focus {
  stroke: #f8f3e0 !important;
}
.fc-dark-lime {
  fill: #557f32 !important;
}
.fc-dark-lime-active:active {
  fill: #557f32 !important;
}
.fc-dark-lime-hover:hover {
  fill: #557f32 !important;
}
.fc-dark-lime-focus:focus {
  fill: #557f32 !important;
}
.sc-dark-lime {
  stroke: #557f32 !important;
}
.sc-dark-lime-active:active {
  stroke: #557f32 !important;
}
.sc-dark-lime-hover:hover {
  stroke: #557f32 !important;
}
.sc-dark-lime-focus:focus {
  stroke: #557f32 !important;
}
.fc-dark-green {
  fill: #003d00 !important;
}
.fc-dark-green-active:active {
  fill: #003d00 !important;
}
.fc-dark-green-hover:hover {
  fill: #003d00 !important;
}
.fc-dark-green-focus:focus {
  fill: #003d00 !important;
}
.sc-dark-green {
  stroke: #003d00 !important;
}
.sc-dark-green-active:active {
  stroke: #003d00 !important;
}
.sc-dark-green-hover:hover {
  stroke: #003d00 !important;
}
.sc-dark-green-focus:focus {
  stroke: #003d00 !important;
}
.fc-dark-emerald {
  fill: #246339 !important;
}
.fc-dark-emerald-active:active {
  fill: #246339 !important;
}
.fc-dark-emerald-hover:hover {
  fill: #246339 !important;
}
.fc-dark-emerald-focus:focus {
  fill: #246339 !important;
}
.sc-dark-emerald {
  stroke: #246339 !important;
}
.sc-dark-emerald-active:active {
  stroke: #246339 !important;
}
.sc-dark-emerald-hover:hover {
  stroke: #246339 !important;
}
.sc-dark-emerald-focus:focus {
  stroke: #246339 !important;
}
.fc-dark-blue {
  fill: #132a6f !important;
}
.fc-dark-blue-active:active {
  fill: #132a6f !important;
}
.fc-dark-blue-hover:hover {
  fill: #132a6f !important;
}
.fc-dark-blue-focus:focus {
  fill: #132a6f !important;
}
.sc-dark-blue {
  stroke: #132a6f !important;
}
.sc-dark-blue-active:active {
  stroke: #132a6f !important;
}
.sc-dark-blue-hover:hover {
  stroke: #132a6f !important;
}
.sc-dark-blue-focus:focus {
  stroke: #132a6f !important;
}
.fc-dark-teal {
  fill: #014848 !important;
}
.fc-dark-teal-active:active {
  fill: #014848 !important;
}
.fc-dark-teal-hover:hover {
  fill: #014848 !important;
}
.fc-dark-teal-focus:focus {
  fill: #014848 !important;
}
.sc-dark-teal {
  stroke: #014848 !important;
}
.sc-dark-teal-active:active {
  stroke: #014848 !important;
}
.sc-dark-teal-hover:hover {
  stroke: #014848 !important;
}
.sc-dark-teal-focus:focus {
  stroke: #014848 !important;
}
.fc-dark-cyan {
  fill: #456c7e !important;
}
.fc-dark-cyan-active:active {
  fill: #456c7e !important;
}
.fc-dark-cyan-hover:hover {
  fill: #456c7e !important;
}
.fc-dark-cyan-focus:focus {
  fill: #456c7e !important;
}
.sc-dark-cyan {
  stroke: #456c7e !important;
}
.sc-dark-cyan-active:active {
  stroke: #456c7e !important;
}
.sc-dark-cyan-hover:hover {
  stroke: #456c7e !important;
}
.sc-dark-cyan-focus:focus {
  stroke: #456c7e !important;
}
.fc-dark-cobalt {
  fill: #001f54 !important;
}
.fc-dark-cobalt-active:active {
  fill: #001f54 !important;
}
.fc-dark-cobalt-hover:hover {
  fill: #001f54 !important;
}
.fc-dark-cobalt-focus:focus {
  fill: #001f54 !important;
}
.sc-dark-cobalt {
  stroke: #001f54 !important;
}
.sc-dark-cobalt-active:active {
  stroke: #001f54 !important;
}
.sc-dark-cobalt-hover:hover {
  stroke: #001f54 !important;
}
.sc-dark-cobalt-focus:focus {
  stroke: #001f54 !important;
}
.fc-dark-indigo {
  fill: #21003e !important;
}
.fc-dark-indigo-active:active {
  fill: #21003e !important;
}
.fc-dark-indigo-hover:hover {
  fill: #21003e !important;
}
.fc-dark-indigo-focus:focus {
  fill: #21003e !important;
}
.sc-dark-indigo {
  stroke: #21003e !important;
}
.sc-dark-indigo-active:active {
  stroke: #21003e !important;
}
.sc-dark-indigo-hover:hover {
  stroke: #21003e !important;
}
.sc-dark-indigo-focus:focus {
  stroke: #21003e !important;
}
.fc-dark-almost {
  fill: #2f0687 !important;
}
.fc-dark-almost-active:active {
  fill: #2f0687 !important;
}
.fc-dark-almost-hover:hover {
  fill: #2f0687 !important;
}
.fc-dark-almost-focus:focus {
  fill: #2f0687 !important;
}
.sc-dark-almost {
  stroke: #2f0687 !important;
}
.sc-dark-almost-active:active {
  stroke: #2f0687 !important;
}
.sc-dark-almost-hover:hover {
  stroke: #2f0687 !important;
}
.sc-dark-almost-focus:focus {
  stroke: #2f0687 !important;
}
.fc-dark-violet {
  fill: #773e77 !important;
}
.fc-dark-violet-active:active {
  fill: #773e77 !important;
}
.fc-dark-violet-hover:hover {
  fill: #773e77 !important;
}
.fc-dark-violet-focus:focus {
  fill: #773e77 !important;
}
.sc-dark-violet {
  stroke: #773e77 !important;
}
.sc-dark-violet-active:active {
  stroke: #773e77 !important;
}
.sc-dark-violet-hover:hover {
  stroke: #773e77 !important;
}
.sc-dark-violet-focus:focus {
  stroke: #773e77 !important;
}
.fc-dark-pink {
  fill: #805f65 !important;
}
.fc-dark-pink-active:active {
  fill: #805f65 !important;
}
.fc-dark-pink-hover:hover {
  fill: #805f65 !important;
}
.fc-dark-pink-focus:focus {
  fill: #805f65 !important;
}
.sc-dark-pink {
  stroke: #805f65 !important;
}
.sc-dark-pink-active:active {
  stroke: #805f65 !important;
}
.sc-dark-pink-hover:hover {
  stroke: #805f65 !important;
}
.sc-dark-pink-focus:focus {
  stroke: #805f65 !important;
}
.fc-dark-magenta {
  fill: #800080 !important;
}
.fc-dark-magenta-active:active {
  fill: #800080 !important;
}
.fc-dark-magenta-hover:hover {
  fill: #800080 !important;
}
.fc-dark-magenta-focus:focus {
  fill: #800080 !important;
}
.sc-dark-magenta {
  stroke: #800080 !important;
}
.sc-dark-magenta-active:active {
  stroke: #800080 !important;
}
.sc-dark-magenta-hover:hover {
  stroke: #800080 !important;
}
.sc-dark-magenta-focus:focus {
  stroke: #800080 !important;
}
.fc-dark-crimson {
  fill: #6e0519 !important;
}
.fc-dark-crimson-active:active {
  fill: #6e0519 !important;
}
.fc-dark-crimson-hover:hover {
  fill: #6e0519 !important;
}
.fc-dark-crimson-focus:focus {
  fill: #6e0519 !important;
}
.sc-dark-crimson {
  stroke: #6e0519 !important;
}
.sc-dark-crimson-active:active {
  stroke: #6e0519 !important;
}
.sc-dark-crimson-hover:hover {
  stroke: #6e0519 !important;
}
.sc-dark-crimson-focus:focus {
  stroke: #6e0519 !important;
}
.fc-dark-red {
  fill: #800000 !important;
}
.fc-dark-red-active:active {
  fill: #800000 !important;
}
.fc-dark-red-hover:hover {
  fill: #800000 !important;
}
.fc-dark-red-focus:focus {
  fill: #800000 !important;
}
.sc-dark-red {
  stroke: #800000 !important;
}
.sc-dark-red-active:active {
  stroke: #800000 !important;
}
.sc-dark-red-hover:hover {
  stroke: #800000 !important;
}
.sc-dark-red-focus:focus {
  stroke: #800000 !important;
}
.fc-dark-clown {
  fill: #aa2824 !important;
}
.fc-dark-clown-active:active {
  fill: #aa2824 !important;
}
.fc-dark-clown-hover:hover {
  fill: #aa2824 !important;
}
.fc-dark-clown-focus:focus {
  fill: #aa2824 !important;
}
.sc-dark-clown {
  stroke: #aa2824 !important;
}
.sc-dark-clown-active:active {
  stroke: #aa2824 !important;
}
.sc-dark-clown-hover:hover {
  stroke: #aa2824 !important;
}
.sc-dark-clown-focus:focus {
  stroke: #aa2824 !important;
}
.fc-dark-orange {
  fill: #805100 !important;
}
.fc-dark-orange-active:active {
  fill: #805100 !important;
}
.fc-dark-orange-hover:hover {
  fill: #805100 !important;
}
.fc-dark-orange-focus:focus {
  fill: #805100 !important;
}
.sc-dark-orange {
  stroke: #805100 !important;
}
.sc-dark-orange-active:active {
  stroke: #805100 !important;
}
.sc-dark-orange-hover:hover {
  stroke: #805100 !important;
}
.sc-dark-orange-focus:focus {
  stroke: #805100 !important;
}
.fc-dark-amber {
  fill: #805e00 !important;
}
.fc-dark-amber-active:active {
  fill: #805e00 !important;
}
.fc-dark-amber-hover:hover {
  fill: #805e00 !important;
}
.fc-dark-amber-focus:focus {
  fill: #805e00 !important;
}
.sc-dark-amber {
  stroke: #805e00 !important;
}
.sc-dark-amber-active:active {
  stroke: #805e00 !important;
}
.sc-dark-amber-hover:hover {
  stroke: #805e00 !important;
}
.sc-dark-amber-focus:focus {
  stroke: #805e00 !important;
}
.fc-dark-yellow {
  fill: #bca826 !important;
}
.fc-dark-yellow-active:active {
  fill: #bca826 !important;
}
.fc-dark-yellow-hover:hover {
  fill: #bca826 !important;
}
.fc-dark-yellow-focus:focus {
  fill: #bca826 !important;
}
.sc-dark-yellow {
  stroke: #bca826 !important;
}
.sc-dark-yellow-active:active {
  stroke: #bca826 !important;
}
.sc-dark-yellow-hover:hover {
  stroke: #bca826 !important;
}
.sc-dark-yellow-focus:focus {
  stroke: #bca826 !important;
}
.fc-dark-brown {
  fill: #42240f !important;
}
.fc-dark-brown-active:active {
  fill: #42240f !important;
}
.fc-dark-brown-hover:hover {
  fill: #42240f !important;
}
.fc-dark-brown-focus:focus {
  fill: #42240f !important;
}
.sc-dark-brown {
  stroke: #42240f !important;
}
.sc-dark-brown-active:active {
  stroke: #42240f !important;
}
.sc-dark-brown-hover:hover {
  stroke: #42240f !important;
}
.sc-dark-brown-focus:focus {
  stroke: #42240f !important;
}
.fc-dark-olive {
  fill: #3d3d00 !important;
}
.fc-dark-olive-active:active {
  fill: #3d3d00 !important;
}
.fc-dark-olive-hover:hover {
  fill: #3d3d00 !important;
}
.fc-dark-olive-focus:focus {
  fill: #3d3d00 !important;
}
.sc-dark-olive {
  stroke: #3d3d00 !important;
}
.sc-dark-olive-active:active {
  stroke: #3d3d00 !important;
}
.sc-dark-olive-hover:hover {
  stroke: #3d3d00 !important;
}
.sc-dark-olive-focus:focus {
  stroke: #3d3d00 !important;
}
.fc-dark-steel {
  fill: #2e3841 !important;
}
.fc-dark-steel-active:active {
  fill: #2e3841 !important;
}
.fc-dark-steel-hover:hover {
  fill: #2e3841 !important;
}
.fc-dark-steel-focus:focus {
  fill: #2e3841 !important;
}
.sc-dark-steel {
  stroke: #2e3841 !important;
}
.sc-dark-steel-active:active {
  stroke: #2e3841 !important;
}
.sc-dark-steel-hover:hover {
  stroke: #2e3841 !important;
}
.sc-dark-steel-focus:focus {
  stroke: #2e3841 !important;
}
.fc-dark-mauve {
  fill: #705680 !important;
}
.fc-dark-mauve-active:active {
  fill: #705680 !important;
}
.fc-dark-mauve-hover:hover {
  fill: #705680 !important;
}
.fc-dark-mauve-focus:focus {
  fill: #705680 !important;
}
.sc-dark-mauve {
  stroke: #705680 !important;
}
.sc-dark-mauve-active:active {
  stroke: #705680 !important;
}
.sc-dark-mauve-hover:hover {
  stroke: #705680 !important;
}
.sc-dark-mauve-focus:focus {
  stroke: #705680 !important;
}
.fc-dark-taupe {
  fill: #261e18 !important;
}
.fc-dark-taupe-active:active {
  fill: #261e18 !important;
}
.fc-dark-taupe-hover:hover {
  fill: #261e18 !important;
}
.fc-dark-taupe-focus:focus {
  fill: #261e18 !important;
}
.sc-dark-taupe {
  stroke: #261e18 !important;
}
.sc-dark-taupe-active:active {
  stroke: #261e18 !important;
}
.sc-dark-taupe-hover:hover {
  stroke: #261e18 !important;
}
.sc-dark-taupe-focus:focus {
  stroke: #261e18 !important;
}
.fc-dark-gray {
  fill: #515151 !important;
}
.fc-dark-gray-active:active {
  fill: #515151 !important;
}
.fc-dark-gray-hover:hover {
  fill: #515151 !important;
}
.fc-dark-gray-focus:focus {
  fill: #515151 !important;
}
.sc-dark-gray {
  stroke: #515151 !important;
}
.sc-dark-gray-active:active {
  stroke: #515151 !important;
}
.sc-dark-gray-hover:hover {
  stroke: #515151 !important;
}
.sc-dark-gray-focus:focus {
  stroke: #515151 !important;
}
.fc-dark-gray-blue {
  fill: #36464e !important;
}
.fc-dark-gray-blue-active:active {
  fill: #36464e !important;
}
.fc-dark-gray-blue-hover:hover {
  fill: #36464e !important;
}
.fc-dark-gray-blue-focus:focus {
  fill: #36464e !important;
}
.sc-dark-gray-blue {
  stroke: #36464e !important;
}
.sc-dark-gray-blue-active:active {
  stroke: #36464e !important;
}
.sc-dark-gray-blue-hover:hover {
  stroke: #36464e !important;
}
.sc-dark-gray-blue-focus:focus {
  stroke: #36464e !important;
}
.fc-dark-gray-mouse {
  fill: #2e3c42 !important;
}
.fc-dark-gray-mouse-active:active {
  fill: #2e3c42 !important;
}
.fc-dark-gray-mouse-hover:hover {
  fill: #2e3c42 !important;
}
.fc-dark-gray-mouse-focus:focus {
  fill: #2e3c42 !important;
}
.sc-dark-gray-mouse {
  stroke: #2e3c42 !important;
}
.sc-dark-gray-mouse-active:active {
  stroke: #2e3c42 !important;
}
.sc-dark-gray-mouse-hover:hover {
  stroke: #2e3c42 !important;
}
.sc-dark-gray-mouse-focus:focus {
  stroke: #2e3c42 !important;
}
.fc-dark-champagne {
  fill: #7c7364 !important;
}
.fc-dark-champagne-active:active {
  fill: #7c7364 !important;
}
.fc-dark-champagne-hover:hover {
  fill: #7c7364 !important;
}
.fc-dark-champagne-focus:focus {
  fill: #7c7364 !important;
}
.sc-dark-champagne {
  stroke: #7c7364 !important;
}
.sc-dark-champagne-active:active {
  stroke: #7c7364 !important;
}
.sc-dark-champagne-hover:hover {
  stroke: #7c7364 !important;
}
.sc-dark-champagne-focus:focus {
  stroke: #7c7364 !important;
}
.fc-dark-khaki {
  fill: #6a6142 !important;
}
.fc-dark-khaki-active:active {
  fill: #6a6142 !important;
}
.fc-dark-khaki-hover:hover {
  fill: #6a6142 !important;
}
.fc-dark-khaki-focus:focus {
  fill: #6a6142 !important;
}
.sc-dark-khaki {
  stroke: #6a6142 !important;
}
.sc-dark-khaki-active:active {
  stroke: #6a6142 !important;
}
.sc-dark-khaki-hover:hover {
  stroke: #6a6142 !important;
}
.sc-dark-khaki-focus:focus {
  stroke: #6a6142 !important;
}
.fc-dark-charcoal {
  fill: #202020 !important;
}
.fc-dark-charcoal-active:active {
  fill: #202020 !important;
}
.fc-dark-charcoal-hover:hover {
  fill: #202020 !important;
}
.fc-dark-charcoal-focus:focus {
  fill: #202020 !important;
}
.sc-dark-charcoal {
  stroke: #202020 !important;
}
.sc-dark-charcoal-active:active {
  stroke: #202020 !important;
}
.sc-dark-charcoal-hover:hover {
  stroke: #202020 !important;
}
.sc-dark-charcoal-focus:focus {
  stroke: #202020 !important;
}
.fc-dark-bronze {
  fill: #693c13 !important;
}
.fc-dark-bronze-active:active {
  fill: #693c13 !important;
}
.fc-dark-bronze-hover:hover {
  fill: #693c13 !important;
}
.fc-dark-bronze-focus:focus {
  fill: #693c13 !important;
}
.sc-dark-bronze {
  stroke: #693c13 !important;
}
.sc-dark-bronze-active:active {
  stroke: #693c13 !important;
}
.sc-dark-bronze-hover:hover {
  stroke: #693c13 !important;
}
.sc-dark-bronze-focus:focus {
  stroke: #693c13 !important;
}
.fc-dark-windstorm {
  fill: #304462 !important;
}
.fc-dark-windstorm-active:active {
  fill: #304462 !important;
}
.fc-dark-windstorm-hover:hover {
  fill: #304462 !important;
}
.fc-dark-windstorm-focus:focus {
  fill: #304462 !important;
}
.sc-dark-windstorm {
  stroke: #304462 !important;
}
.sc-dark-windstorm-active:active {
  stroke: #304462 !important;
}
.sc-dark-windstorm-hover:hover {
  stroke: #304462 !important;
}
.sc-dark-windstorm-focus:focus {
  stroke: #304462 !important;
}
.fc-dark-nude {
  fill: #7c6c5d !important;
}
.fc-dark-nude-active:active {
  fill: #7c6c5d !important;
}
.fc-dark-nude-hover:hover {
  fill: #7c6c5d !important;
}
.fc-dark-nude-focus:focus {
  fill: #7c6c5d !important;
}
.sc-dark-nude {
  stroke: #7c6c5d !important;
}
.sc-dark-nude-active:active {
  stroke: #7c6c5d !important;
}
.sc-dark-nude-hover:hover {
  stroke: #7c6c5d !important;
}
.sc-dark-nude-focus:focus {
  stroke: #7c6c5d !important;
}
.fc-dark-terracotta {
  fill: #712516 !important;
}
.fc-dark-terracotta-active:active {
  fill: #712516 !important;
}
.fc-dark-terracotta-hover:hover {
  fill: #712516 !important;
}
.fc-dark-terracotta-focus:focus {
  fill: #712516 !important;
}
.sc-dark-terracotta {
  stroke: #712516 !important;
}
.sc-dark-terracotta-active:active {
  stroke: #712516 !important;
}
.sc-dark-terracotta-hover:hover {
  stroke: #712516 !important;
}
.sc-dark-terracotta-focus:focus {
  stroke: #712516 !important;
}
.fc-dark-coral {
  fill: #804028 !important;
}
.fc-dark-coral-active:active {
  fill: #804028 !important;
}
.fc-dark-coral-hover:hover {
  fill: #804028 !important;
}
.fc-dark-coral-focus:focus {
  fill: #804028 !important;
}
.sc-dark-coral {
  stroke: #804028 !important;
}
.sc-dark-coral-active:active {
  stroke: #804028 !important;
}
.sc-dark-coral-hover:hover {
  stroke: #804028 !important;
}
.sc-dark-coral-focus:focus {
  stroke: #804028 !important;
}
.fc-dark-army {
  fill: #2a2f14 !important;
}
.fc-dark-army-active:active {
  fill: #2a2f14 !important;
}
.fc-dark-army-hover:hover {
  fill: #2a2f14 !important;
}
.fc-dark-army-focus:focus {
  fill: #2a2f14 !important;
}
.sc-dark-army {
  stroke: #2a2f14 !important;
}
.sc-dark-army-active:active {
  stroke: #2a2f14 !important;
}
.sc-dark-army-hover:hover {
  stroke: #2a2f14 !important;
}
.sc-dark-army-focus:focus {
  stroke: #2a2f14 !important;
}
.fc-dark-seashell {
  fill: #bfa89a !important;
}
.fc-dark-seashell-active:active {
  fill: #bfa89a !important;
}
.fc-dark-seashell-hover:hover {
  fill: #bfa89a !important;
}
.fc-dark-seashell-focus:focus {
  fill: #bfa89a !important;
}
.sc-dark-seashell {
  stroke: #bfa89a !important;
}
.sc-dark-seashell-active:active {
  stroke: #bfa89a !important;
}
.sc-dark-seashell-hover:hover {
  stroke: #bfa89a !important;
}
.sc-dark-seashell-focus:focus {
  stroke: #bfa89a !important;
}
.fc-dark-sand {
  fill: #8f8975 !important;
}
.fc-dark-sand-active:active {
  fill: #8f8975 !important;
}
.fc-dark-sand-hover:hover {
  fill: #8f8975 !important;
}
.fc-dark-sand-focus:focus {
  fill: #8f8975 !important;
}
.sc-dark-sand {
  stroke: #8f8975 !important;
}
.sc-dark-sand-active:active {
  stroke: #8f8975 !important;
}
.sc-dark-sand-hover:hover {
  stroke: #8f8975 !important;
}
.sc-dark-sand-focus:focus {
  stroke: #8f8975 !important;
}
.fc-sat-lime {
  fill: #7dba4a !important;
}
.fc-sat-lime-active:active {
  fill: #7dba4a !important;
}
.fc-sat-lime-hover:hover {
  fill: #7dba4a !important;
}
.fc-sat-lime-focus:focus {
  fill: #7dba4a !important;
}
.sc-sat-lime {
  stroke: #7dba4a !important;
}
.sc-sat-lime-active:active {
  stroke: #7dba4a !important;
}
.sc-sat-lime-hover:hover {
  stroke: #7dba4a !important;
}
.sc-sat-lime-focus:focus {
  stroke: #7dba4a !important;
}
.fc-sat-green {
  fill: #008f00 !important;
}
.fc-sat-green-active:active {
  fill: #008f00 !important;
}
.fc-sat-green-hover:hover {
  fill: #008f00 !important;
}
.fc-sat-green-focus:focus {
  fill: #008f00 !important;
}
.sc-sat-green {
  stroke: #008f00 !important;
}
.sc-sat-green-active:active {
  stroke: #008f00 !important;
}
.sc-sat-green-hover:hover {
  stroke: #008f00 !important;
}
.sc-sat-green-focus:focus {
  stroke: #008f00 !important;
}
.fc-sat-emerald {
  fill: #3ca15d !important;
}
.fc-sat-emerald-active:active {
  fill: #3ca15d !important;
}
.fc-sat-emerald-hover:hover {
  fill: #3ca15d !important;
}
.fc-sat-emerald-focus:focus {
  fill: #3ca15d !important;
}
.sc-sat-emerald {
  stroke: #3ca15d !important;
}
.sc-sat-emerald-active:active {
  stroke: #3ca15d !important;
}
.sc-sat-emerald-hover:hover {
  stroke: #3ca15d !important;
}
.sc-sat-emerald-focus:focus {
  stroke: #3ca15d !important;
}
.fc-sat-blue {
  fill: #1f43ae !important;
}
.fc-sat-blue-active:active {
  fill: #1f43ae !important;
}
.fc-sat-blue-hover:hover {
  fill: #1f43ae !important;
}
.fc-sat-blue-focus:focus {
  fill: #1f43ae !important;
}
.sc-sat-blue {
  stroke: #1f43ae !important;
}
.sc-sat-blue-active:active {
  stroke: #1f43ae !important;
}
.sc-sat-blue-hover:hover {
  stroke: #1f43ae !important;
}
.sc-sat-blue-focus:focus {
  stroke: #1f43ae !important;
}
.fc-sat-teal {
  fill: #008a8a !important;
}
.fc-sat-teal-active:active {
  fill: #008a8a !important;
}
.fc-sat-teal-hover:hover {
  fill: #008a8a !important;
}
.fc-sat-teal-focus:focus {
  fill: #008a8a !important;
}
.sc-sat-teal {
  stroke: #008a8a !important;
}
.sc-sat-teal-active:active {
  stroke: #008a8a !important;
}
.sc-sat-teal-hover:hover {
  stroke: #008a8a !important;
}
.sc-sat-teal-focus:focus {
  stroke: #008a8a !important;
}
.fc-sat-cyan {
  fill: #659db6 !important;
}
.fc-sat-cyan-active:active {
  fill: #659db6 !important;
}
.fc-sat-cyan-hover:hover {
  fill: #659db6 !important;
}
.fc-sat-cyan-focus:focus {
  fill: #659db6 !important;
}
.sc-sat-cyan {
  stroke: #659db6 !important;
}
.sc-sat-cyan-active:active {
  stroke: #659db6 !important;
}
.sc-sat-cyan-hover:hover {
  stroke: #659db6 !important;
}
.sc-sat-cyan-focus:focus {
  stroke: #659db6 !important;
}
.fc-sat-cobalt {
  fill: #003391 !important;
}
.fc-sat-cobalt-active:active {
  fill: #003391 !important;
}
.fc-sat-cobalt-hover:hover {
  fill: #003391 !important;
}
.fc-sat-cobalt-focus:focus {
  fill: #003391 !important;
}
.sc-sat-cobalt {
  stroke: #003391 !important;
}
.sc-sat-cobalt-active:active {
  stroke: #003391 !important;
}
.sc-sat-cobalt-hover:hover {
  stroke: #003391 !important;
}
.sc-sat-cobalt-focus:focus {
  stroke: #003391 !important;
}
.fc-sat-indigo {
  fill: #430080 !important;
}
.fc-sat-indigo-active:active {
  fill: #430080 !important;
}
.fc-sat-indigo-hover:hover {
  fill: #430080 !important;
}
.fc-sat-indigo-focus:focus {
  fill: #430080 !important;
}
.sc-sat-indigo {
  stroke: #430080 !important;
}
.sc-sat-indigo-active:active {
  stroke: #430080 !important;
}
.sc-sat-indigo-hover:hover {
  stroke: #430080 !important;
}
.sc-sat-indigo-focus:focus {
  stroke: #430080 !important;
}
.fc-sat-almost {
  fill: #4e18c1 !important;
}
.fc-sat-almost-active:active {
  fill: #4e18c1 !important;
}
.fc-sat-almost-hover:hover {
  fill: #4e18c1 !important;
}
.fc-sat-almost-focus:focus {
  fill: #4e18c1 !important;
}
.sc-sat-almost {
  stroke: #4e18c1 !important;
}
.sc-sat-almost-active:active {
  stroke: #4e18c1 !important;
}
.sc-sat-almost-hover:hover {
  stroke: #4e18c1 !important;
}
.sc-sat-almost-focus:focus {
  stroke: #4e18c1 !important;
}
.fc-sat-violet {
  fill: #b65fb6 !important;
}
.fc-sat-violet-active:active {
  fill: #b65fb6 !important;
}
.fc-sat-violet-hover:hover {
  fill: #b65fb6 !important;
}
.fc-sat-violet-focus:focus {
  fill: #b65fb6 !important;
}
.sc-sat-violet {
  stroke: #b65fb6 !important;
}
.sc-sat-violet-active:active {
  stroke: #b65fb6 !important;
}
.sc-sat-violet-hover:hover {
  stroke: #b65fb6 !important;
}
.sc-sat-violet-focus:focus {
  stroke: #b65fb6 !important;
}
.fc-sat-pink {
  fill: #cc7296 !important;
}
.fc-sat-pink-active:active {
  fill: #cc7296 !important;
}
.fc-sat-pink-hover:hover {
  fill: #cc7296 !important;
}
.fc-sat-pink-focus:focus {
  fill: #cc7296 !important;
}
.sc-sat-pink {
  stroke: #cc7296 !important;
}
.sc-sat-pink-active:active {
  stroke: #cc7296 !important;
}
.sc-sat-pink-hover:hover {
  stroke: #cc7296 !important;
}
.sc-sat-pink-focus:focus {
  stroke: #cc7296 !important;
}
.fc-sat-magenta {
  fill: #c500c5 !important;
}
.fc-sat-magenta-active:active {
  fill: #c500c5 !important;
}
.fc-sat-magenta-hover:hover {
  fill: #c500c5 !important;
}
.fc-sat-magenta-focus:focus {
  fill: #c500c5 !important;
}
.sc-sat-magenta {
  stroke: #c500c5 !important;
}
.sc-sat-magenta-active:active {
  stroke: #c500c5 !important;
}
.sc-sat-magenta-hover:hover {
  stroke: #c500c5 !important;
}
.sc-sat-magenta-focus:focus {
  stroke: #c500c5 !important;
}
.fc-sat-crimson {
  fill: #980824 !important;
}
.fc-sat-crimson-active:active {
  fill: #980824 !important;
}
.fc-sat-crimson-hover:hover {
  fill: #980824 !important;
}
.fc-sat-crimson-focus:focus {
  fill: #980824 !important;
}
.sc-sat-crimson {
  stroke: #980824 !important;
}
.sc-sat-crimson-active:active {
  stroke: #980824 !important;
}
.sc-sat-crimson-hover:hover {
  stroke: #980824 !important;
}
.sc-sat-crimson-focus:focus {
  stroke: #980824 !important;
}
.fc-sat-red {
  fill: #b80000 !important;
}
.fc-sat-red-active:active {
  fill: #b80000 !important;
}
.fc-sat-red-hover:hover {
  fill: #b80000 !important;
}
.fc-sat-red-focus:focus {
  fill: #b80000 !important;
}
.sc-sat-red {
  stroke: #b80000 !important;
}
.sc-sat-red-active:active {
  stroke: #b80000 !important;
}
.sc-sat-red-hover:hover {
  stroke: #b80000 !important;
}
.sc-sat-red-focus:focus {
  stroke: #b80000 !important;
}
.fc-sat-clown {
  fill: #d64f48 !important;
}
.fc-sat-clown-active:active {
  fill: #d64f48 !important;
}
.fc-sat-clown-hover:hover {
  fill: #d64f48 !important;
}
.fc-sat-clown-focus:focus {
  fill: #d64f48 !important;
}
.sc-sat-clown {
  stroke: #d64f48 !important;
}
.sc-sat-clown-active:active {
  stroke: #d64f48 !important;
}
.sc-sat-clown-hover:hover {
  stroke: #d64f48 !important;
}
.sc-sat-clown-focus:focus {
  stroke: #d64f48 !important;
}
.fc-sat-orange {
  fill: #bc7700 !important;
}
.fc-sat-orange-active:active {
  fill: #bc7700 !important;
}
.fc-sat-orange-hover:hover {
  fill: #bc7700 !important;
}
.fc-sat-orange-focus:focus {
  fill: #bc7700 !important;
}
.sc-sat-orange {
  stroke: #bc7700 !important;
}
.sc-sat-orange-active:active {
  stroke: #bc7700 !important;
}
.sc-sat-orange-hover:hover {
  stroke: #bc7700 !important;
}
.sc-sat-orange-focus:focus {
  stroke: #bc7700 !important;
}
.fc-sat-amber {
  fill: #d19b00 !important;
}
.fc-sat-amber-active:active {
  fill: #d19b00 !important;
}
.fc-sat-amber-hover:hover {
  fill: #d19b00 !important;
}
.fc-sat-amber-focus:focus {
  fill: #d19b00 !important;
}
.sc-sat-amber {
  stroke: #d19b00 !important;
}
.sc-sat-amber-active:active {
  stroke: #d19b00 !important;
}
.sc-sat-amber-hover:hover {
  stroke: #d19b00 !important;
}
.sc-sat-amber-focus:focus {
  stroke: #d19b00 !important;
}
.fc-sat-yellow {
  fill: #e4ce43 !important;
}
.fc-sat-yellow-active:active {
  fill: #e4ce43 !important;
}
.fc-sat-yellow-hover:hover {
  fill: #e4ce43 !important;
}
.fc-sat-yellow-focus:focus {
  fill: #e4ce43 !important;
}
.sc-sat-yellow {
  stroke: #e4ce43 !important;
}
.sc-sat-yellow-active:active {
  stroke: #e4ce43 !important;
}
.sc-sat-yellow-hover:hover {
  stroke: #e4ce43 !important;
}
.sc-sat-yellow-focus:focus {
  stroke: #e4ce43 !important;
}
.fc-sat-brown {
  fill: #884b20 !important;
}
.fc-sat-brown-active:active {
  fill: #884b20 !important;
}
.fc-sat-brown-hover:hover {
  fill: #884b20 !important;
}
.fc-sat-brown-focus:focus {
  fill: #884b20 !important;
}
.sc-sat-brown {
  stroke: #884b20 !important;
}
.sc-sat-brown-active:active {
  stroke: #884b20 !important;
}
.sc-sat-brown-hover:hover {
  stroke: #884b20 !important;
}
.sc-sat-brown-focus:focus {
  stroke: #884b20 !important;
}
.fc-sat-olive {
  fill: #838300 !important;
}
.fc-sat-olive-active:active {
  fill: #838300 !important;
}
.fc-sat-olive-hover:hover {
  fill: #838300 !important;
}
.fc-sat-olive-focus:focus {
  fill: #838300 !important;
}
.sc-sat-olive {
  stroke: #838300 !important;
}
.sc-sat-olive-active:active {
  stroke: #838300 !important;
}
.sc-sat-olive-hover:hover {
  stroke: #838300 !important;
}
.sc-sat-olive-focus:focus {
  stroke: #838300 !important;
}
.fc-sat-steel {
  fill: #5c7081 !important;
}
.fc-sat-steel-active:active {
  fill: #5c7081 !important;
}
.fc-sat-steel-hover:hover {
  fill: #5c7081 !important;
}
.fc-sat-steel-focus:focus {
  fill: #5c7081 !important;
}
.sc-sat-steel {
  stroke: #5c7081 !important;
}
.sc-sat-steel-active:active {
  stroke: #5c7081 !important;
}
.sc-sat-steel-hover:hover {
  stroke: #5c7081 !important;
}
.sc-sat-steel-focus:focus {
  stroke: #5c7081 !important;
}
.fc-sat-mauve {
  fill: #a982c1 !important;
}
.fc-sat-mauve-active:active {
  fill: #a982c1 !important;
}
.fc-sat-mauve-hover:hover {
  fill: #a982c1 !important;
}
.fc-sat-mauve-focus:focus {
  fill: #a982c1 !important;
}
.sc-sat-mauve {
  stroke: #a982c1 !important;
}
.sc-sat-mauve-active:active {
  stroke: #a982c1 !important;
}
.sc-sat-mauve-hover:hover {
  stroke: #a982c1 !important;
}
.sc-sat-mauve-focus:focus {
  stroke: #a982c1 !important;
}
.fc-sat-taupe {
  fill: #5e4a3c !important;
}
.fc-sat-taupe-active:active {
  fill: #5e4a3c !important;
}
.fc-sat-taupe-hover:hover {
  fill: #5e4a3c !important;
}
.fc-sat-taupe-focus:focus {
  fill: #5e4a3c !important;
}
.sc-sat-taupe {
  stroke: #5e4a3c !important;
}
.sc-sat-taupe-active:active {
  stroke: #5e4a3c !important;
}
.sc-sat-taupe-hover:hover {
  stroke: #5e4a3c !important;
}
.sc-sat-taupe-focus:focus {
  stroke: #5e4a3c !important;
}
.fc-sat-gray {
  fill: #9c9c9c !important;
}
.fc-sat-gray-active:active {
  fill: #9c9c9c !important;
}
.fc-sat-gray-hover:hover {
  fill: #9c9c9c !important;
}
.fc-sat-gray-focus:focus {
  fill: #9c9c9c !important;
}
.sc-sat-gray {
  stroke: #9c9c9c !important;
}
.sc-sat-gray-active:active {
  stroke: #9c9c9c !important;
}
.sc-sat-gray-hover:hover {
  stroke: #9c9c9c !important;
}
.sc-sat-gray-focus:focus {
  stroke: #9c9c9c !important;
}
.fc-sat-gray-blue {
  fill: #5f7a88 !important;
}
.fc-sat-gray-blue-active:active {
  fill: #5f7a88 !important;
}
.fc-sat-gray-blue-hover:hover {
  fill: #5f7a88 !important;
}
.fc-sat-gray-blue-focus:focus {
  fill: #5f7a88 !important;
}
.sc-sat-gray-blue {
  stroke: #5f7a88 !important;
}
.sc-sat-gray-blue-active:active {
  stroke: #5f7a88 !important;
}
.sc-sat-gray-blue-hover:hover {
  stroke: #5f7a88 !important;
}
.sc-sat-gray-blue-focus:focus {
  stroke: #5f7a88 !important;
}
.fc-sat-gray-mouse {
  fill: #3f535c !important;
}
.fc-sat-gray-mouse-active:active {
  fill: #3f535c !important;
}
.fc-sat-gray-mouse-hover:hover {
  fill: #3f535c !important;
}
.fc-sat-gray-mouse-focus:focus {
  fill: #3f535c !important;
}
.sc-sat-gray-mouse {
  stroke: #3f535c !important;
}
.sc-sat-gray-mouse-active:active {
  stroke: #3f535c !important;
}
.sc-sat-gray-mouse-hover:hover {
  stroke: #3f535c !important;
}
.sc-sat-gray-mouse-focus:focus {
  stroke: #3f535c !important;
}
.fc-sat-champagne {
  fill: #ccbca5 !important;
}
.fc-sat-champagne-active:active {
  fill: #ccbca5 !important;
}
.fc-sat-champagne-hover:hover {
  fill: #ccbca5 !important;
}
.fc-sat-champagne-focus:focus {
  fill: #ccbca5 !important;
}
.sc-sat-champagne {
  stroke: #ccbca5 !important;
}
.sc-sat-champagne-active:active {
  stroke: #ccbca5 !important;
}
.sc-sat-champagne-hover:hover {
  stroke: #ccbca5 !important;
}
.sc-sat-champagne-focus:focus {
  stroke: #ccbca5 !important;
}
.fc-sat-khaki {
  fill: #aa9c6b !important;
}
.fc-sat-khaki-active:active {
  fill: #aa9c6b !important;
}
.fc-sat-khaki-hover:hover {
  fill: #aa9c6b !important;
}
.fc-sat-khaki-focus:focus {
  fill: #aa9c6b !important;
}
.sc-sat-khaki {
  stroke: #aa9c6b !important;
}
.sc-sat-khaki-active:active {
  stroke: #aa9c6b !important;
}
.sc-sat-khaki-hover:hover {
  stroke: #aa9c6b !important;
}
.sc-sat-khaki-focus:focus {
  stroke: #aa9c6b !important;
}
.fc-sat-charcoal {
  fill: #5e5e5e !important;
}
.fc-sat-charcoal-active:active {
  fill: #5e5e5e !important;
}
.fc-sat-charcoal-hover:hover {
  fill: #5e5e5e !important;
}
.fc-sat-charcoal-focus:focus {
  fill: #5e5e5e !important;
}
.sc-sat-charcoal {
  stroke: #5e5e5e !important;
}
.sc-sat-charcoal-active:active {
  stroke: #5e5e5e !important;
}
.sc-sat-charcoal-hover:hover {
  stroke: #5e5e5e !important;
}
.sc-sat-charcoal-focus:focus {
  stroke: #5e5e5e !important;
}
.fc-sat-bronze {
  fill: #aa621f !important;
}
.fc-sat-bronze-active:active {
  fill: #aa621f !important;
}
.fc-sat-bronze-hover:hover {
  fill: #aa621f !important;
}
.fc-sat-bronze-focus:focus {
  fill: #aa621f !important;
}
.sc-sat-bronze {
  stroke: #aa621f !important;
}
.sc-sat-bronze-active:active {
  stroke: #aa621f !important;
}
.sc-sat-bronze-hover:hover {
  stroke: #aa621f !important;
}
.sc-sat-bronze-focus:focus {
  stroke: #aa621f !important;
}
.fc-sat-windstorm {
  fill: #5071a3 !important;
}
.fc-sat-windstorm-active:active {
  fill: #5071a3 !important;
}
.fc-sat-windstorm-hover:hover {
  fill: #5071a3 !important;
}
.fc-sat-windstorm-focus:focus {
  fill: #5071a3 !important;
}
.sc-sat-windstorm {
  stroke: #5071a3 !important;
}
.sc-sat-windstorm-active:active {
  stroke: #5071a3 !important;
}
.sc-sat-windstorm-hover:hover {
  stroke: #5071a3 !important;
}
.sc-sat-windstorm-focus:focus {
  stroke: #5071a3 !important;
}
.fc-sat-nude {
  fill: #baa28b !important;
}
.fc-sat-nude-active:active {
  fill: #baa28b !important;
}
.fc-sat-nude-hover:hover {
  fill: #baa28b !important;
}
.fc-sat-nude-focus:focus {
  fill: #baa28b !important;
}
.sc-sat-nude {
  stroke: #baa28b !important;
}
.sc-sat-nude-active:active {
  stroke: #baa28b !important;
}
.sc-sat-nude-hover:hover {
  stroke: #baa28b !important;
}
.sc-sat-nude-focus:focus {
  stroke: #baa28b !important;
}
.fc-sat-terracotta {
  fill: #af3a23 !important;
}
.fc-sat-terracotta-active:active {
  fill: #af3a23 !important;
}
.fc-sat-terracotta-hover:hover {
  fill: #af3a23 !important;
}
.fc-sat-terracotta-focus:focus {
  fill: #af3a23 !important;
}
.sc-sat-terracotta {
  stroke: #af3a23 !important;
}
.sc-sat-terracotta-active:active {
  stroke: #af3a23 !important;
}
.sc-sat-terracotta-hover:hover {
  stroke: #af3a23 !important;
}
.sc-sat-terracotta-focus:focus {
  stroke: #af3a23 !important;
}
.fc-sat-coral {
  fill: #b65c39 !important;
}
.fc-sat-coral-active:active {
  fill: #b65c39 !important;
}
.fc-sat-coral-hover:hover {
  fill: #b65c39 !important;
}
.fc-sat-coral-focus:focus {
  fill: #b65c39 !important;
}
.sc-sat-coral {
  stroke: #b65c39 !important;
}
.sc-sat-coral-active:active {
  stroke: #b65c39 !important;
}
.sc-sat-coral-hover:hover {
  stroke: #b65c39 !important;
}
.sc-sat-coral-focus:focus {
  stroke: #b65c39 !important;
}
.fc-sat-army {
  fill: #647030 !important;
}
.fc-sat-army-active:active {
  fill: #647030 !important;
}
.fc-sat-army-hover:hover {
  fill: #647030 !important;
}
.fc-sat-army-focus:focus {
  fill: #647030 !important;
}
.sc-sat-army {
  stroke: #647030 !important;
}
.sc-sat-army-active:active {
  stroke: #647030 !important;
}
.sc-sat-army-hover:hover {
  stroke: #647030 !important;
}
.sc-sat-army-focus:focus {
  stroke: #647030 !important;
}
.fc-sat-seashell {
  fill: #e1cbbd !important;
}
.fc-sat-seashell-active:active {
  fill: #e1cbbd !important;
}
.fc-sat-seashell-hover:hover {
  fill: #e1cbbd !important;
}
.fc-sat-seashell-focus:focus {
  fill: #e1cbbd !important;
}
.sc-sat-seashell {
  stroke: #e1cbbd !important;
}
.sc-sat-seashell-active:active {
  stroke: #e1cbbd !important;
}
.sc-sat-seashell-hover:hover {
  stroke: #e1cbbd !important;
}
.sc-sat-seashell-focus:focus {
  stroke: #e1cbbd !important;
}
.fc-sat-sand {
  fill: #d1c5a1 !important;
}
.fc-sat-sand-active:active {
  fill: #d1c5a1 !important;
}
.fc-sat-sand-hover:hover {
  fill: #d1c5a1 !important;
}
.fc-sat-sand-focus:focus {
  fill: #d1c5a1 !important;
}
.sc-sat-sand {
  stroke: #d1c5a1 !important;
}
.sc-sat-sand-active:active {
  stroke: #d1c5a1 !important;
}
.sc-sat-sand-hover:hover {
  stroke: #d1c5a1 !important;
}
.sc-sat-sand-focus:focus {
  stroke: #d1c5a1 !important;
}

/* source/colors-css/foreground.less */
.fg-default {
  color: var(--default-color) !important;
}
.fg-black {
  color: #000000 !important;
}
.fg-black-active:active {
  color: #000000 !important;
}
.fg-black-hover:hover {
  color: #000000 !important;
}
.fg-black-focus:focus {
  color: #000000 !important;
}
.fg-white {
  color: #ffffff !important;
}
.fg-white-active:active {
  color: #ffffff !important;
}
.fg-white-hover:hover {
  color: #ffffff !important;
}
.fg-white-focus:focus {
  color: #ffffff !important;
}
.fg-dark {
  color: #1d1d1d !important;
}
.fg-dark-active:active {
  color: #1d1d1d !important;
}
.fg-dark-hover:hover {
  color: #1d1d1d !important;
}
.fg-dark-focus:focus {
  color: #1d1d1d !important;
}
.fg-light {
  color: #f8f8f8 !important;
}
.fg-light-active:active {
  color: #f8f8f8 !important;
}
.fg-light-hover:hover {
  color: #f8f8f8 !important;
}
.fg-light-focus:focus {
  color: #f8f8f8 !important;
}
.fg-gray {
  color: #ccc !important;
}
.fg-gray-active:active {
  color: #ccc !important;
}
.fg-gray-hover:hover {
  color: #ccc !important;
}
.fg-gray-focus:focus {
  color: #ccc !important;
}
.fg-gray-blue {
  color: #6a89a7 !important;
}
.fg-gray-blue-active:active {
  color: #6a89a7 !important;
}
.fg-gray-blue-hover:hover {
  color: #6a89a7 !important;
}
.fg-gray-blue-focus:focus {
  color: #6a89a7 !important;
}
.fg-gray-white {
  color: #f5f5f5 !important;
}
.fg-gray-white-active:active {
  color: #f5f5f5 !important;
}
.fg-gray-white-hover:hover {
  color: #f5f5f5 !important;
}
.fg-gray-white-focus:focus {
  color: #f5f5f5 !important;
}
.fg-gray-mouse {
  color: #566b75 !important;
}
.fg-gray-mouse-active:active {
  color: #566b75 !important;
}
.fg-gray-mouse-hover:hover {
  color: #566b75 !important;
}
.fg-gray-mouse-focus:focus {
  color: #566b75 !important;
}
.fg-lime {
  color: #AEFD6C !important;
}
.fg-lime-active:active {
  color: #AEFD6C !important;
}
.fg-lime-hover:hover {
  color: #AEFD6C !important;
}
.fg-lime-focus:focus {
  color: #AEFD6C !important;
}
.fg-green {
  color: #00b500 !important;
}
.fg-green-active:active {
  color: #00b500 !important;
}
.fg-green-hover:hover {
  color: #00b500 !important;
}
.fg-green-focus:focus {
  color: #00b500 !important;
}
.fg-emerald {
  color: #50c878 !important;
}
.fg-emerald-active:active {
  color: #50c878 !important;
}
.fg-emerald-hover:hover {
  color: #50c878 !important;
}
.fg-emerald-focus:focus {
  color: #50c878 !important;
}
.fg-blue {
  color: #5e87ff !important;
}
.fg-blue-active:active {
  color: #5e87ff !important;
}
.fg-blue-hover:hover {
  color: #5e87ff !important;
}
.fg-blue-focus:focus {
  color: #5e87ff !important;
}
.fg-teal {
  color: #1ac5c5 !important;
}
.fg-teal-active:active {
  color: #1ac5c5 !important;
}
.fg-teal-hover:hover {
  color: #1ac5c5 !important;
}
.fg-teal-focus:focus {
  color: #1ac5c5 !important;
}
.fg-cyan {
  color: #94b6ff !important;
}
.fg-cyan-active:active {
  color: #94b6ff !important;
}
.fg-cyan-hover:hover {
  color: #94b6ff !important;
}
.fg-cyan-focus:focus {
  color: #94b6ff !important;
}
.fg-cobalt {
  color: #0047ab !important;
}
.fg-cobalt-active:active {
  color: #0047ab !important;
}
.fg-cobalt-hover:hover {
  color: #0047ab !important;
}
.fg-cobalt-focus:focus {
  color: #0047ab !important;
}
.fg-indigo {
  color: #6400a8 !important;
}
.fg-indigo-active:active {
  color: #6400a8 !important;
}
.fg-indigo-hover:hover {
  color: #6400a8 !important;
}
.fg-indigo-focus:focus {
  color: #6400a8 !important;
}
.fg-almost {
  color: #6a2ded !important;
}
.fg-almost-active:active {
  color: #6a2ded !important;
}
.fg-almost-hover:hover {
  color: #6a2ded !important;
}
.fg-almost-focus:focus {
  color: #6a2ded !important;
}
.fg-violet {
  color: #ee82ee !important;
}
.fg-violet-active:active {
  color: #ee82ee !important;
}
.fg-violet-hover:hover {
  color: #ee82ee !important;
}
.fg-violet-focus:focus {
  color: #ee82ee !important;
}
.fg-pink {
  color: #ffc0cb !important;
}
.fg-pink-active:active {
  color: #ffc0cb !important;
}
.fg-pink-hover:hover {
  color: #ffc0cb !important;
}
.fg-pink-focus:focus {
  color: #ffc0cb !important;
}
.fg-magenta {
  color: #ff00ff !important;
}
.fg-magenta-active:active {
  color: #ff00ff !important;
}
.fg-magenta-hover:hover {
  color: #ff00ff !important;
}
.fg-magenta-focus:focus {
  color: #ff00ff !important;
}
.fg-crimson {
  color: #df0e38 !important;
}
.fg-crimson-active:active {
  color: #df0e38 !important;
}
.fg-crimson-hover:hover {
  color: #df0e38 !important;
}
.fg-crimson-focus:focus {
  color: #df0e38 !important;
}
.fg-red {
  color: #ff0000 !important;
}
.fg-red-active:active {
  color: #ff0000 !important;
}
.fg-red-hover:hover {
  color: #ff0000 !important;
}
.fg-red-focus:focus {
  color: #ff0000 !important;
}
.fg-clown {
  color: #ff6d66 !important;
}
.fg-clown-active:active {
  color: #ff6d66 !important;
}
.fg-clown-hover:hover {
  color: #ff6d66 !important;
}
.fg-clown-focus:focus {
  color: #ff6d66 !important;
}
.fg-orange {
  color: #ffa500 !important;
}
.fg-orange-active:active {
  color: #ffa500 !important;
}
.fg-orange-hover:hover {
  color: #ffa500 !important;
}
.fg-orange-focus:focus {
  color: #ffa500 !important;
}
.fg-amber {
  color: #ffca2a !important;
}
.fg-amber-active:active {
  color: #ffca2a !important;
}
.fg-amber-hover:hover {
  color: #ffca2a !important;
}
.fg-amber-focus:focus {
  color: #ffca2a !important;
}
.fg-yellow {
  color: #ffe95e !important;
}
.fg-yellow-active:active {
  color: #ffe95e !important;
}
.fg-yellow-hover:hover {
  color: #ffe95e !important;
}
.fg-yellow-focus:focus {
  color: #ffe95e !important;
}
.fg-brown {
  color: #ca773c !important;
}
.fg-brown-active:active {
  color: #ca773c !important;
}
.fg-brown-hover:hover {
  color: #ca773c !important;
}
.fg-brown-focus:focus {
  color: #ca773c !important;
}
.fg-olive {
  color: #a1a100 !important;
}
.fg-olive-active:active {
  color: #a1a100 !important;
}
.fg-olive-hover:hover {
  color: #a1a100 !important;
}
.fg-olive-focus:focus {
  color: #a1a100 !important;
}
.fg-steel {
  color: #7b91a6 !important;
}
.fg-steel-active:active {
  color: #7b91a6 !important;
}
.fg-steel-hover:hover {
  color: #7b91a6 !important;
}
.fg-steel-focus:focus {
  color: #7b91a6 !important;
}
.fg-mauve {
  color: #e0afff !important;
}
.fg-mauve-active:active {
  color: #e0afff !important;
}
.fg-mauve-hover:hover {
  color: #e0afff !important;
}
.fg-mauve-focus:focus {
  color: #e0afff !important;
}
.fg-taupe {
  color: #977e67 !important;
}
.fg-taupe-active:active {
  color: #977e67 !important;
}
.fg-taupe-hover:hover {
  color: #977e67 !important;
}
.fg-taupe-focus:focus {
  color: #977e67 !important;
}
.fg-champagne {
  color: #f7e6ca !important;
}
.fg-champagne-active:active {
  color: #f7e6ca !important;
}
.fg-champagne-hover:hover {
  color: #f7e6ca !important;
}
.fg-champagne-focus:focus {
  color: #f7e6ca !important;
}
.fg-khaki {
  color: #d5c58a !important;
}
.fg-khaki-active:active {
  color: #d5c58a !important;
}
.fg-khaki-hover:hover {
  color: #d5c58a !important;
}
.fg-khaki-focus:focus {
  color: #d5c58a !important;
}
.fg-charcoal {
  color: #989898 !important;
}
.fg-charcoal-active:active {
  color: #989898 !important;
}
.fg-charcoal-hover:hover {
  color: #989898 !important;
}
.fg-charcoal-focus:focus {
  color: #989898 !important;
}
.fg-bronze {
  color: #e48d3e !important;
}
.fg-bronze-active:active {
  color: #e48d3e !important;
}
.fg-bronze-hover:hover {
  color: #e48d3e !important;
}
.fg-bronze-focus:focus {
  color: #e48d3e !important;
}
.fg-windstorm {
  color: #799ed6 !important;
}
.fg-windstorm-active:active {
  color: #799ed6 !important;
}
.fg-windstorm-hover:hover {
  color: #799ed6 !important;
}
.fg-windstorm-focus:focus {
  color: #799ed6 !important;
}
.fg-nude {
  color: #f7d9bc !important;
}
.fg-nude-active:active {
  color: #f7d9bc !important;
}
.fg-nude-hover:hover {
  color: #f7d9bc !important;
}
.fg-nude-focus:focus {
  color: #f7d9bc !important;
}
.fg-terracotta {
  color: #e35336 !important;
}
.fg-terracotta-active:active {
  color: #e35336 !important;
}
.fg-terracotta-hover:hover {
  color: #e35336 !important;
}
.fg-terracotta-focus:focus {
  color: #e35336 !important;
}
.fg-coral {
  color: #ff8559 !important;
}
.fg-coral-active:active {
  color: #ff8559 !important;
}
.fg-coral-hover:hover {
  color: #ff8559 !important;
}
.fg-coral-focus:focus {
  color: #ff8559 !important;
}
.fg-army {
  color: #5d6532 !important;
}
.fg-army-active:active {
  color: #5d6532 !important;
}
.fg-army-hover:hover {
  color: #5d6532 !important;
}
.fg-army-focus:focus {
  color: #5d6532 !important;
}
.fg-seashell {
  color: #fff1e7 !important;
}
.fg-seashell-active:active {
  color: #fff1e7 !important;
}
.fg-seashell-hover:hover {
  color: #fff1e7 !important;
}
.fg-seashell-focus:focus {
  color: #fff1e7 !important;
}
.fg-sand {
  color: #f1e0ae !important;
}
.fg-sand-active:active {
  color: #f1e0ae !important;
}
.fg-sand-hover:hover {
  color: #f1e0ae !important;
}
.fg-sand-focus:focus {
  color: #f1e0ae !important;
}
.fg-light-lime {
  color: #f2ffe7 !important;
}
.fg-light-lime-active:active {
  color: #f2ffe7 !important;
}
.fg-light-lime-hover:hover {
  color: #f2ffe7 !important;
}
.fg-light-lime-focus:focus {
  color: #f2ffe7 !important;
}
.fg-light-green {
  color: #e7f6e6 !important;
}
.fg-light-green-active:active {
  color: #e7f6e6 !important;
}
.fg-light-green-hover:hover {
  color: #e7f6e6 !important;
}
.fg-light-green-focus:focus {
  color: #e7f6e6 !important;
}
.fg-light-emerald {
  color: #d1e6cc !important;
}
.fg-light-emerald-active:active {
  color: #d1e6cc !important;
}
.fg-light-emerald-hover:hover {
  color: #d1e6cc !important;
}
.fg-light-emerald-focus:focus {
  color: #d1e6cc !important;
}
.fg-light-blue {
  color: #e7eaff !important;
}
.fg-light-blue-active:active {
  color: #e7eaff !important;
}
.fg-light-blue-hover:hover {
  color: #e7eaff !important;
}
.fg-light-blue-focus:focus {
  color: #e7eaff !important;
}
.fg-light-teal {
  color: #e1f2f3 !important;
}
.fg-light-teal-active:active {
  color: #e1f2f3 !important;
}
.fg-light-teal-hover:hover {
  color: #e1f2f3 !important;
}
.fg-light-teal-focus:focus {
  color: #e1f2f3 !important;
}
.fg-light-cyan {
  color: #e3edff !important;
}
.fg-light-cyan-active:active {
  color: #e3edff !important;
}
.fg-light-cyan-hover:hover {
  color: #e3edff !important;
}
.fg-light-cyan-focus:focus {
  color: #e3edff !important;
}
.fg-light-cobalt {
  color: #d1ecff !important;
}
.fg-light-cobalt-active:active {
  color: #d1ecff !important;
}
.fg-light-cobalt-hover:hover {
  color: #d1ecff !important;
}
.fg-light-cobalt-focus:focus {
  color: #d1ecff !important;
}
.fg-light-indigo {
  color: #f3dcf3 !important;
}
.fg-light-indigo-active:active {
  color: #f3dcf3 !important;
}
.fg-light-indigo-hover:hover {
  color: #f3dcf3 !important;
}
.fg-light-indigo-focus:focus {
  color: #f3dcf3 !important;
}
.fg-light-almost {
  color: #eee5ff !important;
}
.fg-light-almost-active:active {
  color: #eee5ff !important;
}
.fg-light-almost-hover:hover {
  color: #eee5ff !important;
}
.fg-light-almost-focus:focus {
  color: #eee5ff !important;
}
.fg-light-violet {
  color: #fce2fb !important;
}
.fg-light-violet-active:active {
  color: #fce2fb !important;
}
.fg-light-violet-hover:hover {
  color: #fce2fb !important;
}
.fg-light-violet-focus:focus {
  color: #fce2fb !important;
}
.fg-light-pink {
  color: #ffeef1 !important;
}
.fg-light-pink-active:active {
  color: #ffeef1 !important;
}
.fg-light-pink-hover:hover {
  color: #ffeef1 !important;
}
.fg-light-pink-focus:focus {
  color: #ffeef1 !important;
}
.fg-light-magenta {
  color: #ffe2ff !important;
}
.fg-light-magenta-active:active {
  color: #ffe2ff !important;
}
.fg-light-magenta-hover:hover {
  color: #ffe2ff !important;
}
.fg-light-magenta-focus:focus {
  color: #ffe2ff !important;
}
.fg-light-crimson {
  color: #ffd1da !important;
}
.fg-light-crimson-active:active {
  color: #ffd1da !important;
}
.fg-light-crimson-hover:hover {
  color: #ffd1da !important;
}
.fg-light-crimson-focus:focus {
  color: #ffd1da !important;
}
.fg-light-red {
  color: #ffe1e1 !important;
}
.fg-light-red-active:active {
  color: #ffe1e1 !important;
}
.fg-light-red-hover:hover {
  color: #ffe1e1 !important;
}
.fg-light-red-focus:focus {
  color: #ffe1e1 !important;
}
.fg-light-clown {
  color: #ffdede !important;
}
.fg-light-clown-active:active {
  color: #ffdede !important;
}
.fg-light-clown-hover:hover {
  color: #ffdede !important;
}
.fg-light-clown-focus:focus {
  color: #ffdede !important;
}
.fg-light-orange {
  color: #fff3de !important;
}
.fg-light-orange-active:active {
  color: #fff3de !important;
}
.fg-light-orange-hover:hover {
  color: #fff3de !important;
}
.fg-light-orange-focus:focus {
  color: #fff3de !important;
}
.fg-light-amber {
  color: #fff8e1 !important;
}
.fg-light-amber-active:active {
  color: #fff8e1 !important;
}
.fg-light-amber-hover:hover {
  color: #fff8e1 !important;
}
.fg-light-amber-focus:focus {
  color: #fff8e1 !important;
}
.fg-light-yellow {
  color: #ffffc6 !important;
}
.fg-light-yellow-active:active {
  color: #ffffc6 !important;
}
.fg-light-yellow-hover:hover {
  color: #ffffc6 !important;
}
.fg-light-yellow-focus:focus {
  color: #ffffc6 !important;
}
.fg-light-brown {
  color: #ffeed9 !important;
}
.fg-light-brown-active:active {
  color: #ffeed9 !important;
}
.fg-light-brown-hover:hover {
  color: #ffeed9 !important;
}
.fg-light-brown-focus:focus {
  color: #ffeed9 !important;
}
.fg-light-olive {
  color: #f8fde7 !important;
}
.fg-light-olive-active:active {
  color: #f8fde7 !important;
}
.fg-light-olive-hover:hover {
  color: #f8fde7 !important;
}
.fg-light-olive-focus:focus {
  color: #f8fde7 !important;
}
.fg-light-steel {
  color: #edeeee !important;
}
.fg-light-steel-active:active {
  color: #edeeee !important;
}
.fg-light-steel-hover:hover {
  color: #edeeee !important;
}
.fg-light-steel-focus:focus {
  color: #edeeee !important;
}
.fg-light-mauve {
  color: #f7ecfe !important;
}
.fg-light-mauve-active:active {
  color: #f7ecfe !important;
}
.fg-light-mauve-hover:hover {
  color: #f7ecfe !important;
}
.fg-light-mauve-focus:focus {
  color: #f7ecfe !important;
}
.fg-light-taupe {
  color: #eadccf !important;
}
.fg-light-taupe-active:active {
  color: #eadccf !important;
}
.fg-light-taupe-hover:hover {
  color: #eadccf !important;
}
.fg-light-taupe-focus:focus {
  color: #eadccf !important;
}
.fg-light-gray {
  color: #f4f4f4 !important;
}
.fg-light-gray-active:active {
  color: #f4f4f4 !important;
}
.fg-light-gray-hover:hover {
  color: #f4f4f4 !important;
}
.fg-light-gray-focus:focus {
  color: #f4f4f4 !important;
}
.fg-light-gray-blue {
  color: #bee2f4 !important;
}
.fg-light-gray-blue-active:active {
  color: #bee2f4 !important;
}
.fg-light-gray-blue-hover:hover {
  color: #bee2f4 !important;
}
.fg-light-gray-blue-focus:focus {
  color: #bee2f4 !important;
}
.fg-light-gray-mouse {
  color: #8ab4c8 !important;
}
.fg-light-gray-mouse-active:active {
  color: #8ab4c8 !important;
}
.fg-light-gray-mouse-hover:hover {
  color: #8ab4c8 !important;
}
.fg-light-gray-mouse-focus:focus {
  color: #8ab4c8 !important;
}
.fg-light-champagne {
  color: #fff9f2 !important;
}
.fg-light-champagne-active:active {
  color: #fff9f2 !important;
}
.fg-light-champagne-hover:hover {
  color: #fff9f2 !important;
}
.fg-light-champagne-focus:focus {
  color: #fff9f2 !important;
}
.fg-light-khaki {
  color: #f6f1dd !important;
}
.fg-light-khaki-active:active {
  color: #f6f1dd !important;
}
.fg-light-khaki-hover:hover {
  color: #f6f1dd !important;
}
.fg-light-khaki-focus:focus {
  color: #f6f1dd !important;
}
.fg-light-charcoal {
  color: #e8e8e8 !important;
}
.fg-light-charcoal-active:active {
  color: #e8e8e8 !important;
}
.fg-light-charcoal-hover:hover {
  color: #e8e8e8 !important;
}
.fg-light-charcoal-focus:focus {
  color: #e8e8e8 !important;
}
.fg-light-bronze {
  color: #ffecdc !important;
}
.fg-light-bronze-active:active {
  color: #ffecdc !important;
}
.fg-light-bronze-hover:hover {
  color: #ffecdc !important;
}
.fg-light-bronze-focus:focus {
  color: #ffecdc !important;
}
.fg-light-windstorm {
  color: #e6ebf5 !important;
}
.fg-light-windstorm-active:active {
  color: #e6ebf5 !important;
}
.fg-light-windstorm-hover:hover {
  color: #e6ebf5 !important;
}
.fg-light-windstorm-focus:focus {
  color: #e6ebf5 !important;
}
.fg-light-nude {
  color: #fcf0e4 !important;
}
.fg-light-nude-active:active {
  color: #fcf0e4 !important;
}
.fg-light-nude-hover:hover {
  color: #fcf0e4 !important;
}
.fg-light-nude-focus:focus {
  color: #fcf0e4 !important;
}
.fg-light-terracotta {
  color: #ffe5df !important;
}
.fg-light-terracotta-active:active {
  color: #ffe5df !important;
}
.fg-light-terracotta-hover:hover {
  color: #ffe5df !important;
}
.fg-light-terracotta-focus:focus {
  color: #ffe5df !important;
}
.fg-light-coral {
  color: #ffd8c8 !important;
}
.fg-light-coral-active:active {
  color: #ffd8c8 !important;
}
.fg-light-coral-hover:hover {
  color: #ffd8c8 !important;
}
.fg-light-coral-focus:focus {
  color: #ffd8c8 !important;
}
.fg-light-army {
  color: #eceacb !important;
}
.fg-light-army-active:active {
  color: #eceacb !important;
}
.fg-light-army-hover:hover {
  color: #eceacb !important;
}
.fg-light-army-focus:focus {
  color: #eceacb !important;
}
.fg-light-seashell {
  color: #fff9f8 !important;
}
.fg-light-seashell-active:active {
  color: #fff9f8 !important;
}
.fg-light-seashell-hover:hover {
  color: #fff9f8 !important;
}
.fg-light-seashell-focus:focus {
  color: #fff9f8 !important;
}
.fg-light-sand {
  color: #f8f3e0 !important;
}
.fg-light-sand-active:active {
  color: #f8f3e0 !important;
}
.fg-light-sand-hover:hover {
  color: #f8f3e0 !important;
}
.fg-light-sand-focus:focus {
  color: #f8f3e0 !important;
}
.fg-dark-lime {
  color: #557f32 !important;
}
.fg-dark-lime-active:active {
  color: #557f32 !important;
}
.fg-dark-lime-hover:hover {
  color: #557f32 !important;
}
.fg-dark-lime-focus:focus {
  color: #557f32 !important;
}
.fg-dark-green {
  color: #003d00 !important;
}
.fg-dark-green-active:active {
  color: #003d00 !important;
}
.fg-dark-green-hover:hover {
  color: #003d00 !important;
}
.fg-dark-green-focus:focus {
  color: #003d00 !important;
}
.fg-dark-emerald {
  color: #246339 !important;
}
.fg-dark-emerald-active:active {
  color: #246339 !important;
}
.fg-dark-emerald-hover:hover {
  color: #246339 !important;
}
.fg-dark-emerald-focus:focus {
  color: #246339 !important;
}
.fg-dark-blue {
  color: #132a6f !important;
}
.fg-dark-blue-active:active {
  color: #132a6f !important;
}
.fg-dark-blue-hover:hover {
  color: #132a6f !important;
}
.fg-dark-blue-focus:focus {
  color: #132a6f !important;
}
.fg-dark-teal {
  color: #014848 !important;
}
.fg-dark-teal-active:active {
  color: #014848 !important;
}
.fg-dark-teal-hover:hover {
  color: #014848 !important;
}
.fg-dark-teal-focus:focus {
  color: #014848 !important;
}
.fg-dark-cyan {
  color: #456c7e !important;
}
.fg-dark-cyan-active:active {
  color: #456c7e !important;
}
.fg-dark-cyan-hover:hover {
  color: #456c7e !important;
}
.fg-dark-cyan-focus:focus {
  color: #456c7e !important;
}
.fg-dark-cobalt {
  color: #001f54 !important;
}
.fg-dark-cobalt-active:active {
  color: #001f54 !important;
}
.fg-dark-cobalt-hover:hover {
  color: #001f54 !important;
}
.fg-dark-cobalt-focus:focus {
  color: #001f54 !important;
}
.fg-dark-indigo {
  color: #21003e !important;
}
.fg-dark-indigo-active:active {
  color: #21003e !important;
}
.fg-dark-indigo-hover:hover {
  color: #21003e !important;
}
.fg-dark-indigo-focus:focus {
  color: #21003e !important;
}
.fg-dark-almost {
  color: #2f0687 !important;
}
.fg-dark-almost-active:active {
  color: #2f0687 !important;
}
.fg-dark-almost-hover:hover {
  color: #2f0687 !important;
}
.fg-dark-almost-focus:focus {
  color: #2f0687 !important;
}
.fg-dark-violet {
  color: #773e77 !important;
}
.fg-dark-violet-active:active {
  color: #773e77 !important;
}
.fg-dark-violet-hover:hover {
  color: #773e77 !important;
}
.fg-dark-violet-focus:focus {
  color: #773e77 !important;
}
.fg-dark-pink {
  color: #805f65 !important;
}
.fg-dark-pink-active:active {
  color: #805f65 !important;
}
.fg-dark-pink-hover:hover {
  color: #805f65 !important;
}
.fg-dark-pink-focus:focus {
  color: #805f65 !important;
}
.fg-dark-magenta {
  color: #800080 !important;
}
.fg-dark-magenta-active:active {
  color: #800080 !important;
}
.fg-dark-magenta-hover:hover {
  color: #800080 !important;
}
.fg-dark-magenta-focus:focus {
  color: #800080 !important;
}
.fg-dark-crimson {
  color: #6e0519 !important;
}
.fg-dark-crimson-active:active {
  color: #6e0519 !important;
}
.fg-dark-crimson-hover:hover {
  color: #6e0519 !important;
}
.fg-dark-crimson-focus:focus {
  color: #6e0519 !important;
}
.fg-dark-red {
  color: #800000 !important;
}
.fg-dark-red-active:active {
  color: #800000 !important;
}
.fg-dark-red-hover:hover {
  color: #800000 !important;
}
.fg-dark-red-focus:focus {
  color: #800000 !important;
}
.fg-dark-clown {
  color: #aa2824 !important;
}
.fg-dark-clown-active:active {
  color: #aa2824 !important;
}
.fg-dark-clown-hover:hover {
  color: #aa2824 !important;
}
.fg-dark-clown-focus:focus {
  color: #aa2824 !important;
}
.fg-dark-orange {
  color: #805100 !important;
}
.fg-dark-orange-active:active {
  color: #805100 !important;
}
.fg-dark-orange-hover:hover {
  color: #805100 !important;
}
.fg-dark-orange-focus:focus {
  color: #805100 !important;
}
.fg-dark-amber {
  color: #805e00 !important;
}
.fg-dark-amber-active:active {
  color: #805e00 !important;
}
.fg-dark-amber-hover:hover {
  color: #805e00 !important;
}
.fg-dark-amber-focus:focus {
  color: #805e00 !important;
}
.fg-dark-yellow {
  color: #bca826 !important;
}
.fg-dark-yellow-active:active {
  color: #bca826 !important;
}
.fg-dark-yellow-hover:hover {
  color: #bca826 !important;
}
.fg-dark-yellow-focus:focus {
  color: #bca826 !important;
}
.fg-dark-brown {
  color: #42240f !important;
}
.fg-dark-brown-active:active {
  color: #42240f !important;
}
.fg-dark-brown-hover:hover {
  color: #42240f !important;
}
.fg-dark-brown-focus:focus {
  color: #42240f !important;
}
.fg-dark-olive {
  color: #3d3d00 !important;
}
.fg-dark-olive-active:active {
  color: #3d3d00 !important;
}
.fg-dark-olive-hover:hover {
  color: #3d3d00 !important;
}
.fg-dark-olive-focus:focus {
  color: #3d3d00 !important;
}
.fg-dark-steel {
  color: #2e3841 !important;
}
.fg-dark-steel-active:active {
  color: #2e3841 !important;
}
.fg-dark-steel-hover:hover {
  color: #2e3841 !important;
}
.fg-dark-steel-focus:focus {
  color: #2e3841 !important;
}
.fg-dark-mauve {
  color: #705680 !important;
}
.fg-dark-mauve-active:active {
  color: #705680 !important;
}
.fg-dark-mauve-hover:hover {
  color: #705680 !important;
}
.fg-dark-mauve-focus:focus {
  color: #705680 !important;
}
.fg-dark-taupe {
  color: #261e18 !important;
}
.fg-dark-taupe-active:active {
  color: #261e18 !important;
}
.fg-dark-taupe-hover:hover {
  color: #261e18 !important;
}
.fg-dark-taupe-focus:focus {
  color: #261e18 !important;
}
.fg-dark-gray {
  color: #515151 !important;
}
.fg-dark-gray-active:active {
  color: #515151 !important;
}
.fg-dark-gray-hover:hover {
  color: #515151 !important;
}
.fg-dark-gray-focus:focus {
  color: #515151 !important;
}
.fg-dark-gray-blue {
  color: #36464e !important;
}
.fg-dark-gray-blue-active:active {
  color: #36464e !important;
}
.fg-dark-gray-blue-hover:hover {
  color: #36464e !important;
}
.fg-dark-gray-blue-focus:focus {
  color: #36464e !important;
}
.fg-dark-gray-mouse {
  color: #2e3c42 !important;
}
.fg-dark-gray-mouse-active:active {
  color: #2e3c42 !important;
}
.fg-dark-gray-mouse-hover:hover {
  color: #2e3c42 !important;
}
.fg-dark-gray-mouse-focus:focus {
  color: #2e3c42 !important;
}
.fg-dark-champagne {
  color: #7c7364 !important;
}
.fg-dark-champagne-active:active {
  color: #7c7364 !important;
}
.fg-dark-champagne-hover:hover {
  color: #7c7364 !important;
}
.fg-dark-champagne-focus:focus {
  color: #7c7364 !important;
}
.fg-dark-khaki {
  color: #6a6142 !important;
}
.fg-dark-khaki-active:active {
  color: #6a6142 !important;
}
.fg-dark-khaki-hover:hover {
  color: #6a6142 !important;
}
.fg-dark-khaki-focus:focus {
  color: #6a6142 !important;
}
.fg-dark-charcoal {
  color: #202020 !important;
}
.fg-dark-charcoal-active:active {
  color: #202020 !important;
}
.fg-dark-charcoal-hover:hover {
  color: #202020 !important;
}
.fg-dark-charcoal-focus:focus {
  color: #202020 !important;
}
.fg-dark-bronze {
  color: #693c13 !important;
}
.fg-dark-bronze-active:active {
  color: #693c13 !important;
}
.fg-dark-bronze-hover:hover {
  color: #693c13 !important;
}
.fg-dark-bronze-focus:focus {
  color: #693c13 !important;
}
.fg-dark-windstorm {
  color: #304462 !important;
}
.fg-dark-windstorm-active:active {
  color: #304462 !important;
}
.fg-dark-windstorm-hover:hover {
  color: #304462 !important;
}
.fg-dark-windstorm-focus:focus {
  color: #304462 !important;
}
.fg-dark-nude {
  color: #7c6c5d !important;
}
.fg-dark-nude-active:active {
  color: #7c6c5d !important;
}
.fg-dark-nude-hover:hover {
  color: #7c6c5d !important;
}
.fg-dark-nude-focus:focus {
  color: #7c6c5d !important;
}
.fg-dark-terracotta {
  color: #712516 !important;
}
.fg-dark-terracotta-active:active {
  color: #712516 !important;
}
.fg-dark-terracotta-hover:hover {
  color: #712516 !important;
}
.fg-dark-terracotta-focus:focus {
  color: #712516 !important;
}
.fg-dark-coral {
  color: #804028 !important;
}
.fg-dark-coral-active:active {
  color: #804028 !important;
}
.fg-dark-coral-hover:hover {
  color: #804028 !important;
}
.fg-dark-coral-focus:focus {
  color: #804028 !important;
}
.fg-dark-army {
  color: #2a2f14 !important;
}
.fg-dark-army-active:active {
  color: #2a2f14 !important;
}
.fg-dark-army-hover:hover {
  color: #2a2f14 !important;
}
.fg-dark-army-focus:focus {
  color: #2a2f14 !important;
}
.fg-dark-seashell {
  color: #bfa89a !important;
}
.fg-dark-seashell-active:active {
  color: #bfa89a !important;
}
.fg-dark-seashell-hover:hover {
  color: #bfa89a !important;
}
.fg-dark-seashell-focus:focus {
  color: #bfa89a !important;
}
.fg-dark-sand {
  color: #8f8975 !important;
}
.fg-dark-sand-active:active {
  color: #8f8975 !important;
}
.fg-dark-sand-hover:hover {
  color: #8f8975 !important;
}
.fg-dark-sand-focus:focus {
  color: #8f8975 !important;
}
.fg-sat-lime {
  color: #7dba4a !important;
}
.fg-sat-lime-active:active {
  color: #7dba4a !important;
}
.fg-sat-lime-hover:hover {
  color: #7dba4a !important;
}
.fg-sat-lime-focus:focus {
  color: #7dba4a !important;
}
.fg-sat-green {
  color: #008f00 !important;
}
.fg-sat-green-active:active {
  color: #008f00 !important;
}
.fg-sat-green-hover:hover {
  color: #008f00 !important;
}
.fg-sat-green-focus:focus {
  color: #008f00 !important;
}
.fg-sat-emerald {
  color: #3ca15d !important;
}
.fg-sat-emerald-active:active {
  color: #3ca15d !important;
}
.fg-sat-emerald-hover:hover {
  color: #3ca15d !important;
}
.fg-sat-emerald-focus:focus {
  color: #3ca15d !important;
}
.fg-sat-blue {
  color: #1f43ae !important;
}
.fg-sat-blue-active:active {
  color: #1f43ae !important;
}
.fg-sat-blue-hover:hover {
  color: #1f43ae !important;
}
.fg-sat-blue-focus:focus {
  color: #1f43ae !important;
}
.fg-sat-teal {
  color: #008a8a !important;
}
.fg-sat-teal-active:active {
  color: #008a8a !important;
}
.fg-sat-teal-hover:hover {
  color: #008a8a !important;
}
.fg-sat-teal-focus:focus {
  color: #008a8a !important;
}
.fg-sat-cyan {
  color: #659db6 !important;
}
.fg-sat-cyan-active:active {
  color: #659db6 !important;
}
.fg-sat-cyan-hover:hover {
  color: #659db6 !important;
}
.fg-sat-cyan-focus:focus {
  color: #659db6 !important;
}
.fg-sat-cobalt {
  color: #003391 !important;
}
.fg-sat-cobalt-active:active {
  color: #003391 !important;
}
.fg-sat-cobalt-hover:hover {
  color: #003391 !important;
}
.fg-sat-cobalt-focus:focus {
  color: #003391 !important;
}
.fg-sat-indigo {
  color: #430080 !important;
}
.fg-sat-indigo-active:active {
  color: #430080 !important;
}
.fg-sat-indigo-hover:hover {
  color: #430080 !important;
}
.fg-sat-indigo-focus:focus {
  color: #430080 !important;
}
.fg-sat-almost {
  color: #4e18c1 !important;
}
.fg-sat-almost-active:active {
  color: #4e18c1 !important;
}
.fg-sat-almost-hover:hover {
  color: #4e18c1 !important;
}
.fg-sat-almost-focus:focus {
  color: #4e18c1 !important;
}
.fg-sat-violet {
  color: #b65fb6 !important;
}
.fg-sat-violet-active:active {
  color: #b65fb6 !important;
}
.fg-sat-violet-hover:hover {
  color: #b65fb6 !important;
}
.fg-sat-violet-focus:focus {
  color: #b65fb6 !important;
}
.fg-sat-pink {
  color: #cc7296 !important;
}
.fg-sat-pink-active:active {
  color: #cc7296 !important;
}
.fg-sat-pink-hover:hover {
  color: #cc7296 !important;
}
.fg-sat-pink-focus:focus {
  color: #cc7296 !important;
}
.fg-sat-magenta {
  color: #c500c5 !important;
}
.fg-sat-magenta-active:active {
  color: #c500c5 !important;
}
.fg-sat-magenta-hover:hover {
  color: #c500c5 !important;
}
.fg-sat-magenta-focus:focus {
  color: #c500c5 !important;
}
.fg-sat-crimson {
  color: #980824 !important;
}
.fg-sat-crimson-active:active {
  color: #980824 !important;
}
.fg-sat-crimson-hover:hover {
  color: #980824 !important;
}
.fg-sat-crimson-focus:focus {
  color: #980824 !important;
}
.fg-sat-red {
  color: #b80000 !important;
}
.fg-sat-red-active:active {
  color: #b80000 !important;
}
.fg-sat-red-hover:hover {
  color: #b80000 !important;
}
.fg-sat-red-focus:focus {
  color: #b80000 !important;
}
.fg-sat-clown {
  color: #d64f48 !important;
}
.fg-sat-clown-active:active {
  color: #d64f48 !important;
}
.fg-sat-clown-hover:hover {
  color: #d64f48 !important;
}
.fg-sat-clown-focus:focus {
  color: #d64f48 !important;
}
.fg-sat-orange {
  color: #bc7700 !important;
}
.fg-sat-orange-active:active {
  color: #bc7700 !important;
}
.fg-sat-orange-hover:hover {
  color: #bc7700 !important;
}
.fg-sat-orange-focus:focus {
  color: #bc7700 !important;
}
.fg-sat-amber {
  color: #d19b00 !important;
}
.fg-sat-amber-active:active {
  color: #d19b00 !important;
}
.fg-sat-amber-hover:hover {
  color: #d19b00 !important;
}
.fg-sat-amber-focus:focus {
  color: #d19b00 !important;
}
.fg-sat-yellow {
  color: #e4ce43 !important;
}
.fg-sat-yellow-active:active {
  color: #e4ce43 !important;
}
.fg-sat-yellow-hover:hover {
  color: #e4ce43 !important;
}
.fg-sat-yellow-focus:focus {
  color: #e4ce43 !important;
}
.fg-sat-brown {
  color: #884b20 !important;
}
.fg-sat-brown-active:active {
  color: #884b20 !important;
}
.fg-sat-brown-hover:hover {
  color: #884b20 !important;
}
.fg-sat-brown-focus:focus {
  color: #884b20 !important;
}
.fg-sat-olive {
  color: #838300 !important;
}
.fg-sat-olive-active:active {
  color: #838300 !important;
}
.fg-sat-olive-hover:hover {
  color: #838300 !important;
}
.fg-sat-olive-focus:focus {
  color: #838300 !important;
}
.fg-sat-steel {
  color: #5c7081 !important;
}
.fg-sat-steel-active:active {
  color: #5c7081 !important;
}
.fg-sat-steel-hover:hover {
  color: #5c7081 !important;
}
.fg-sat-steel-focus:focus {
  color: #5c7081 !important;
}
.fg-sat-mauve {
  color: #a982c1 !important;
}
.fg-sat-mauve-active:active {
  color: #a982c1 !important;
}
.fg-sat-mauve-hover:hover {
  color: #a982c1 !important;
}
.fg-sat-mauve-focus:focus {
  color: #a982c1 !important;
}
.fg-sat-taupe {
  color: #5e4a3c !important;
}
.fg-sat-taupe-active:active {
  color: #5e4a3c !important;
}
.fg-sat-taupe-hover:hover {
  color: #5e4a3c !important;
}
.fg-sat-taupe-focus:focus {
  color: #5e4a3c !important;
}
.fg-sat-gray {
  color: #9c9c9c !important;
}
.fg-sat-gray-active:active {
  color: #9c9c9c !important;
}
.fg-sat-gray-hover:hover {
  color: #9c9c9c !important;
}
.fg-sat-gray-focus:focus {
  color: #9c9c9c !important;
}
.fg-sat-gray-blue {
  color: #5f7a88 !important;
}
.fg-sat-gray-blue-active:active {
  color: #5f7a88 !important;
}
.fg-sat-gray-blue-hover:hover {
  color: #5f7a88 !important;
}
.fg-sat-gray-blue-focus:focus {
  color: #5f7a88 !important;
}
.fg-sat-gray-mouse {
  color: #3f535c !important;
}
.fg-sat-gray-mouse-active:active {
  color: #3f535c !important;
}
.fg-sat-gray-mouse-hover:hover {
  color: #3f535c !important;
}
.fg-sat-gray-mouse-focus:focus {
  color: #3f535c !important;
}
.fg-sat-champagne {
  color: #ccbca5 !important;
}
.fg-sat-champagne-active:active {
  color: #ccbca5 !important;
}
.fg-sat-champagne-hover:hover {
  color: #ccbca5 !important;
}
.fg-sat-champagne-focus:focus {
  color: #ccbca5 !important;
}
.fg-sat-khaki {
  color: #aa9c6b !important;
}
.fg-sat-khaki-active:active {
  color: #aa9c6b !important;
}
.fg-sat-khaki-hover:hover {
  color: #aa9c6b !important;
}
.fg-sat-khaki-focus:focus {
  color: #aa9c6b !important;
}
.fg-sat-charcoal {
  color: #5e5e5e !important;
}
.fg-sat-charcoal-active:active {
  color: #5e5e5e !important;
}
.fg-sat-charcoal-hover:hover {
  color: #5e5e5e !important;
}
.fg-sat-charcoal-focus:focus {
  color: #5e5e5e !important;
}
.fg-sat-bronze {
  color: #aa621f !important;
}
.fg-sat-bronze-active:active {
  color: #aa621f !important;
}
.fg-sat-bronze-hover:hover {
  color: #aa621f !important;
}
.fg-sat-bronze-focus:focus {
  color: #aa621f !important;
}
.fg-sat-windstorm {
  color: #5071a3 !important;
}
.fg-sat-windstorm-active:active {
  color: #5071a3 !important;
}
.fg-sat-windstorm-hover:hover {
  color: #5071a3 !important;
}
.fg-sat-windstorm-focus:focus {
  color: #5071a3 !important;
}
.fg-sat-nude {
  color: #baa28b !important;
}
.fg-sat-nude-active:active {
  color: #baa28b !important;
}
.fg-sat-nude-hover:hover {
  color: #baa28b !important;
}
.fg-sat-nude-focus:focus {
  color: #baa28b !important;
}
.fg-sat-terracotta {
  color: #af3a23 !important;
}
.fg-sat-terracotta-active:active {
  color: #af3a23 !important;
}
.fg-sat-terracotta-hover:hover {
  color: #af3a23 !important;
}
.fg-sat-terracotta-focus:focus {
  color: #af3a23 !important;
}
.fg-sat-coral {
  color: #b65c39 !important;
}
.fg-sat-coral-active:active {
  color: #b65c39 !important;
}
.fg-sat-coral-hover:hover {
  color: #b65c39 !important;
}
.fg-sat-coral-focus:focus {
  color: #b65c39 !important;
}
.fg-sat-army {
  color: #647030 !important;
}
.fg-sat-army-active:active {
  color: #647030 !important;
}
.fg-sat-army-hover:hover {
  color: #647030 !important;
}
.fg-sat-army-focus:focus {
  color: #647030 !important;
}
.fg-sat-seashell {
  color: #e1cbbd !important;
}
.fg-sat-seashell-active:active {
  color: #e1cbbd !important;
}
.fg-sat-seashell-hover:hover {
  color: #e1cbbd !important;
}
.fg-sat-seashell-focus:focus {
  color: #e1cbbd !important;
}
.fg-sat-sand {
  color: #d1c5a1 !important;
}
.fg-sat-sand-active:active {
  color: #d1c5a1 !important;
}
.fg-sat-sand-hover:hover {
  color: #d1c5a1 !important;
}
.fg-sat-sand-focus:focus {
  color: #d1c5a1 !important;
}

/* source/colors-css/opacity.less */
.op-default {
  background-color: rgba(148, 182, 255, 0.5) !important;
}
.op-black {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.op-black-hi {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.op-black-low {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.op-white {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.op-white-hi {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
.op-white-low {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.op-dark {
  background-color: rgba(29, 29, 29, 0.5) !important;
}
.op-dark-hi {
  background-color: rgba(29, 29, 29, 0.2) !important;
}
.op-dark-low {
  background-color: rgba(29, 29, 29, 0.8) !important;
}
.op-light {
  background-color: rgba(248, 248, 248, 0.5) !important;
}
.op-light-hi {
  background-color: rgba(248, 248, 248, 0.2) !important;
}
.op-light-low {
  background-color: rgba(248, 248, 248, 0.8) !important;
}
.op-gray {
  background-color: rgba(204, 204, 204, 0.5) !important;
}
.op-gray-hi {
  background-color: rgba(204, 204, 204, 0.2) !important;
}
.op-gray-low {
  background-color: rgba(204, 204, 204, 0.8) !important;
}
.op-gray-blue {
  background-color: rgba(106, 137, 167, 0.5) !important;
}
.op-gray-blue-hi {
  background-color: rgba(106, 137, 167, 0.2) !important;
}
.op-gray-blue-low {
  background-color: rgba(106, 137, 167, 0.8) !important;
}
.op-gray-white {
  background-color: rgba(245, 245, 245, 0.5) !important;
}
.op-gray-white-hi {
  background-color: rgba(245, 245, 245, 0.2) !important;
}
.op-gray-white-low {
  background-color: rgba(245, 245, 245, 0.8) !important;
}
.op-gray-mouse {
  background-color: rgba(86, 107, 117, 0.5) !important;
}
.op-gray-mouse-hi {
  background-color: rgba(86, 107, 117, 0.2) !important;
}
.op-gray-mouse-low {
  background-color: rgba(86, 107, 117, 0.8) !important;
}
.op-lime {
  background-color: rgba(174, 253, 108, 0.5) !important;
}
.op-lime-hi {
  background-color: rgba(174, 253, 108, 0.2) !important;
}
.op-lime-low {
  background-color: rgba(174, 253, 108, 0.8) !important;
}
.op-green {
  background-color: rgba(0, 181, 0, 0.5) !important;
}
.op-green-hi {
  background-color: rgba(0, 181, 0, 0.2) !important;
}
.op-green-low {
  background-color: rgba(0, 181, 0, 0.8) !important;
}
.op-emerald {
  background-color: rgba(80, 200, 120, 0.5) !important;
}
.op-emerald-hi {
  background-color: rgba(80, 200, 120, 0.2) !important;
}
.op-emerald-low {
  background-color: rgba(80, 200, 120, 0.8) !important;
}
.op-blue {
  background-color: rgba(94, 135, 255, 0.5) !important;
}
.op-blue-hi {
  background-color: rgba(94, 135, 255, 0.2) !important;
}
.op-blue-low {
  background-color: rgba(94, 135, 255, 0.8) !important;
}
.op-teal {
  background-color: rgba(26, 197, 197, 0.5) !important;
}
.op-teal-hi {
  background-color: rgba(26, 197, 197, 0.2) !important;
}
.op-teal-low {
  background-color: rgba(26, 197, 197, 0.8) !important;
}
.op-cyan {
  background-color: rgba(148, 182, 255, 0.5) !important;
}
.op-cyan-hi {
  background-color: rgba(148, 182, 255, 0.2) !important;
}
.op-cyan-low {
  background-color: rgba(148, 182, 255, 0.8) !important;
}
.op-cobalt {
  background-color: rgba(0, 71, 171, 0.5) !important;
}
.op-cobalt-hi {
  background-color: rgba(0, 71, 171, 0.2) !important;
}
.op-cobalt-low {
  background-color: rgba(0, 71, 171, 0.8) !important;
}
.op-indigo {
  background-color: rgba(100, 0, 168, 0.5) !important;
}
.op-indigo-hi {
  background-color: rgba(100, 0, 168, 0.2) !important;
}
.op-indigo-low {
  background-color: rgba(100, 0, 168, 0.8) !important;
}
.op-almost {
  background-color: rgba(106, 45, 237, 0.5) !important;
}
.op-almost-hi {
  background-color: rgba(106, 45, 237, 0.2) !important;
}
.op-almost-low {
  background-color: rgba(106, 45, 237, 0.8) !important;
}
.op-violet {
  background-color: rgba(238, 130, 238, 0.5) !important;
}
.op-violet-hi {
  background-color: rgba(238, 130, 238, 0.2) !important;
}
.op-violet-low {
  background-color: rgba(238, 130, 238, 0.8) !important;
}
.op-pink {
  background-color: rgba(255, 192, 203, 0.5) !important;
}
.op-pink-hi {
  background-color: rgba(255, 192, 203, 0.2) !important;
}
.op-pink-low {
  background-color: rgba(255, 192, 203, 0.8) !important;
}
.op-magenta {
  background-color: rgba(255, 0, 255, 0.5) !important;
}
.op-magenta-hi {
  background-color: rgba(255, 0, 255, 0.2) !important;
}
.op-magenta-low {
  background-color: rgba(255, 0, 255, 0.8) !important;
}
.op-crimson {
  background-color: rgba(223, 14, 56, 0.5) !important;
}
.op-crimson-hi {
  background-color: rgba(223, 14, 56, 0.2) !important;
}
.op-crimson-low {
  background-color: rgba(223, 14, 56, 0.8) !important;
}
.op-red {
  background-color: rgba(255, 0, 0, 0.5) !important;
}
.op-red-hi {
  background-color: rgba(255, 0, 0, 0.2) !important;
}
.op-red-low {
  background-color: rgba(255, 0, 0, 0.8) !important;
}
.op-clown {
  background-color: rgba(255, 109, 102, 0.5) !important;
}
.op-clown-hi {
  background-color: rgba(255, 109, 102, 0.2) !important;
}
.op-clown-low {
  background-color: rgba(255, 109, 102, 0.8) !important;
}
.op-orange {
  background-color: rgba(255, 165, 0, 0.5) !important;
}
.op-orange-hi {
  background-color: rgba(255, 165, 0, 0.2) !important;
}
.op-orange-low {
  background-color: rgba(255, 165, 0, 0.8) !important;
}
.op-amber {
  background-color: rgba(255, 202, 42, 0.5) !important;
}
.op-amber-hi {
  background-color: rgba(255, 202, 42, 0.2) !important;
}
.op-amber-low {
  background-color: rgba(255, 202, 42, 0.8) !important;
}
.op-yellow {
  background-color: rgba(255, 233, 94, 0.5) !important;
}
.op-yellow-hi {
  background-color: rgba(255, 233, 94, 0.2) !important;
}
.op-yellow-low {
  background-color: rgba(255, 233, 94, 0.8) !important;
}
.op-brown {
  background-color: rgba(202, 119, 60, 0.5) !important;
}
.op-brown-hi {
  background-color: rgba(202, 119, 60, 0.2) !important;
}
.op-brown-low {
  background-color: rgba(202, 119, 60, 0.8) !important;
}
.op-olive {
  background-color: rgba(161, 161, 0, 0.5) !important;
}
.op-olive-hi {
  background-color: rgba(161, 161, 0, 0.2) !important;
}
.op-olive-low {
  background-color: rgba(161, 161, 0, 0.8) !important;
}
.op-steel {
  background-color: rgba(123, 145, 166, 0.5) !important;
}
.op-steel-hi {
  background-color: rgba(123, 145, 166, 0.2) !important;
}
.op-steel-low {
  background-color: rgba(123, 145, 166, 0.8) !important;
}
.op-mauve {
  background-color: rgba(224, 175, 255, 0.5) !important;
}
.op-mauve-hi {
  background-color: rgba(224, 175, 255, 0.2) !important;
}
.op-mauve-low {
  background-color: rgba(224, 175, 255, 0.8) !important;
}
.op-taupe {
  background-color: rgba(151, 126, 103, 0.5) !important;
}
.op-taupe-hi {
  background-color: rgba(151, 126, 103, 0.2) !important;
}
.op-taupe-low {
  background-color: rgba(151, 126, 103, 0.8) !important;
}
.op-champagne {
  background-color: rgba(247, 230, 202, 0.5) !important;
}
.op-champagne-hi {
  background-color: rgba(247, 230, 202, 0.2) !important;
}
.op-champagne-low {
  background-color: rgba(247, 230, 202, 0.8) !important;
}
.op-khaki {
  background-color: rgba(213, 197, 138, 0.5) !important;
}
.op-khaki-hi {
  background-color: rgba(213, 197, 138, 0.2) !important;
}
.op-khaki-low {
  background-color: rgba(213, 197, 138, 0.8) !important;
}
.op-charcoal {
  background-color: rgba(152, 152, 152, 0.5) !important;
}
.op-charcoal-hi {
  background-color: rgba(152, 152, 152, 0.2) !important;
}
.op-charcoal-low {
  background-color: rgba(152, 152, 152, 0.8) !important;
}
.op-bronze {
  background-color: rgba(228, 141, 62, 0.5) !important;
}
.op-bronze-hi {
  background-color: rgba(228, 141, 62, 0.2) !important;
}
.op-bronze-low {
  background-color: rgba(228, 141, 62, 0.8) !important;
}
.op-windstorm {
  background-color: rgba(121, 158, 214, 0.5) !important;
}
.op-windstorm-hi {
  background-color: rgba(121, 158, 214, 0.2) !important;
}
.op-windstorm-low {
  background-color: rgba(121, 158, 214, 0.8) !important;
}
.op-nude {
  background-color: rgba(247, 217, 188, 0.5) !important;
}
.op-nude-hi {
  background-color: rgba(247, 217, 188, 0.2) !important;
}
.op-nude-low {
  background-color: rgba(247, 217, 188, 0.8) !important;
}
.op-terracotta {
  background-color: rgba(227, 83, 54, 0.5) !important;
}
.op-terracotta-hi {
  background-color: rgba(227, 83, 54, 0.2) !important;
}
.op-terracotta-low {
  background-color: rgba(227, 83, 54, 0.8) !important;
}
.op-coral {
  background-color: rgba(255, 133, 89, 0.5) !important;
}
.op-coral-hi {
  background-color: rgba(255, 133, 89, 0.2) !important;
}
.op-coral-low {
  background-color: rgba(255, 133, 89, 0.8) !important;
}
.op-army {
  background-color: rgba(93, 101, 50, 0.5) !important;
}
.op-army-hi {
  background-color: rgba(93, 101, 50, 0.2) !important;
}
.op-army-low {
  background-color: rgba(93, 101, 50, 0.8) !important;
}
.op-seashell {
  background-color: rgba(255, 241, 231, 0.5) !important;
}
.op-seashell-hi {
  background-color: rgba(255, 241, 231, 0.2) !important;
}
.op-seashell-low {
  background-color: rgba(255, 241, 231, 0.8) !important;
}
.op-sand {
  background-color: rgba(241, 224, 174, 0.5) !important;
}
.op-sand-hi {
  background-color: rgba(241, 224, 174, 0.2) !important;
}
.op-sand-low {
  background-color: rgba(241, 224, 174, 0.8) !important;
}
.op-light-lime {
  background-color: rgba(242, 255, 231, 0.5) !important;
}
.op-light-lime-hi {
  background-color: rgba(242, 255, 231, 0.2) !important;
}
.op-light-lime-low {
  background-color: rgba(242, 255, 231, 0.8) !important;
}
.op-light-green {
  background-color: rgba(231, 246, 230, 0.5) !important;
}
.op-light-green-hi {
  background-color: rgba(231, 246, 230, 0.2) !important;
}
.op-light-green-low {
  background-color: rgba(231, 246, 230, 0.8) !important;
}
.op-light-emerald {
  background-color: rgba(209, 230, 204, 0.5) !important;
}
.op-light-emerald-hi {
  background-color: rgba(209, 230, 204, 0.2) !important;
}
.op-light-emerald-low {
  background-color: rgba(209, 230, 204, 0.8) !important;
}
.op-light-blue {
  background-color: rgba(231, 234, 255, 0.5) !important;
}
.op-light-blue-hi {
  background-color: rgba(231, 234, 255, 0.2) !important;
}
.op-light-blue-low {
  background-color: rgba(231, 234, 255, 0.8) !important;
}
.op-light-teal {
  background-color: rgba(225, 242, 243, 0.5) !important;
}
.op-light-teal-hi {
  background-color: rgba(225, 242, 243, 0.2) !important;
}
.op-light-teal-low {
  background-color: rgba(225, 242, 243, 0.8) !important;
}
.op-light-cyan {
  background-color: rgba(227, 237, 255, 0.5) !important;
}
.op-light-cyan-hi {
  background-color: rgba(227, 237, 255, 0.2) !important;
}
.op-light-cyan-low {
  background-color: rgba(227, 237, 255, 0.8) !important;
}
.op-light-cobalt {
  background-color: rgba(209, 236, 255, 0.5) !important;
}
.op-light-cobalt-hi {
  background-color: rgba(209, 236, 255, 0.2) !important;
}
.op-light-cobalt-low {
  background-color: rgba(209, 236, 255, 0.8) !important;
}
.op-light-indigo {
  background-color: rgba(243, 220, 243, 0.5) !important;
}
.op-light-indigo-hi {
  background-color: rgba(243, 220, 243, 0.2) !important;
}
.op-light-indigo-low {
  background-color: rgba(243, 220, 243, 0.8) !important;
}
.op-light-almost {
  background-color: rgba(238, 229, 255, 0.5) !important;
}
.op-light-almost-hi {
  background-color: rgba(238, 229, 255, 0.2) !important;
}
.op-light-almost-low {
  background-color: rgba(238, 229, 255, 0.8) !important;
}
.op-light-violet {
  background-color: rgba(252, 226, 251, 0.5) !important;
}
.op-light-violet-hi {
  background-color: rgba(252, 226, 251, 0.2) !important;
}
.op-light-violet-low {
  background-color: rgba(252, 226, 251, 0.8) !important;
}
.op-light-pink {
  background-color: rgba(255, 238, 241, 0.5) !important;
}
.op-light-pink-hi {
  background-color: rgba(255, 238, 241, 0.2) !important;
}
.op-light-pink-low {
  background-color: rgba(255, 238, 241, 0.8) !important;
}
.op-light-magenta {
  background-color: rgba(255, 226, 255, 0.5) !important;
}
.op-light-magenta-hi {
  background-color: rgba(255, 226, 255, 0.2) !important;
}
.op-light-magenta-low {
  background-color: rgba(255, 226, 255, 0.8) !important;
}
.op-light-crimson {
  background-color: rgba(255, 209, 218, 0.5) !important;
}
.op-light-crimson-hi {
  background-color: rgba(255, 209, 218, 0.2) !important;
}
.op-light-crimson-low {
  background-color: rgba(255, 209, 218, 0.8) !important;
}
.op-light-red {
  background-color: rgba(255, 225, 225, 0.5) !important;
}
.op-light-red-hi {
  background-color: rgba(255, 225, 225, 0.2) !important;
}
.op-light-red-low {
  background-color: rgba(255, 225, 225, 0.8) !important;
}
.op-light-clown {
  background-color: rgba(255, 222, 222, 0.5) !important;
}
.op-light-clown-hi {
  background-color: rgba(255, 222, 222, 0.2) !important;
}
.op-light-clown-low {
  background-color: rgba(255, 222, 222, 0.8) !important;
}
.op-light-orange {
  background-color: rgba(255, 243, 222, 0.5) !important;
}
.op-light-orange-hi {
  background-color: rgba(255, 243, 222, 0.2) !important;
}
.op-light-orange-low {
  background-color: rgba(255, 243, 222, 0.8) !important;
}
.op-light-amber {
  background-color: rgba(255, 248, 225, 0.5) !important;
}
.op-light-amber-hi {
  background-color: rgba(255, 248, 225, 0.2) !important;
}
.op-light-amber-low {
  background-color: rgba(255, 248, 225, 0.8) !important;
}
.op-light-yellow {
  background-color: rgba(255, 255, 198, 0.5) !important;
}
.op-light-yellow-hi {
  background-color: rgba(255, 255, 198, 0.2) !important;
}
.op-light-yellow-low {
  background-color: rgba(255, 255, 198, 0.8) !important;
}
.op-light-brown {
  background-color: rgba(255, 238, 217, 0.5) !important;
}
.op-light-brown-hi {
  background-color: rgba(255, 238, 217, 0.2) !important;
}
.op-light-brown-low {
  background-color: rgba(255, 238, 217, 0.8) !important;
}
.op-light-olive {
  background-color: rgba(248, 253, 231, 0.5) !important;
}
.op-light-olive-hi {
  background-color: rgba(248, 253, 231, 0.2) !important;
}
.op-light-olive-low {
  background-color: rgba(248, 253, 231, 0.8) !important;
}
.op-light-steel {
  background-color: rgba(237, 238, 238, 0.5) !important;
}
.op-light-steel-hi {
  background-color: rgba(237, 238, 238, 0.2) !important;
}
.op-light-steel-low {
  background-color: rgba(237, 238, 238, 0.8) !important;
}
.op-light-mauve {
  background-color: rgba(247, 236, 254, 0.5) !important;
}
.op-light-mauve-hi {
  background-color: rgba(247, 236, 254, 0.2) !important;
}
.op-light-mauve-low {
  background-color: rgba(247, 236, 254, 0.8) !important;
}
.op-light-taupe {
  background-color: rgba(234, 220, 207, 0.5) !important;
}
.op-light-taupe-hi {
  background-color: rgba(234, 220, 207, 0.2) !important;
}
.op-light-taupe-low {
  background-color: rgba(234, 220, 207, 0.8) !important;
}
.op-light-gray {
  background-color: rgba(244, 244, 244, 0.5) !important;
}
.op-light-gray-hi {
  background-color: rgba(244, 244, 244, 0.2) !important;
}
.op-light-gray-low {
  background-color: rgba(244, 244, 244, 0.8) !important;
}
.op-light-gray-blue {
  background-color: rgba(190, 226, 244, 0.5) !important;
}
.op-light-gray-blue-hi {
  background-color: rgba(190, 226, 244, 0.2) !important;
}
.op-light-gray-blue-low {
  background-color: rgba(190, 226, 244, 0.8) !important;
}
.op-light-gray-mouse {
  background-color: rgba(138, 180, 200, 0.5) !important;
}
.op-light-gray-mouse-hi {
  background-color: rgba(138, 180, 200, 0.2) !important;
}
.op-light-gray-mouse-low {
  background-color: rgba(138, 180, 200, 0.8) !important;
}
.op-light-champagne {
  background-color: rgba(255, 249, 242, 0.5) !important;
}
.op-light-champagne-hi {
  background-color: rgba(255, 249, 242, 0.2) !important;
}
.op-light-champagne-low {
  background-color: rgba(255, 249, 242, 0.8) !important;
}
.op-light-khaki {
  background-color: rgba(246, 241, 221, 0.5) !important;
}
.op-light-khaki-hi {
  background-color: rgba(246, 241, 221, 0.2) !important;
}
.op-light-khaki-low {
  background-color: rgba(246, 241, 221, 0.8) !important;
}
.op-light-charcoal {
  background-color: rgba(232, 232, 232, 0.5) !important;
}
.op-light-charcoal-hi {
  background-color: rgba(232, 232, 232, 0.2) !important;
}
.op-light-charcoal-low {
  background-color: rgba(232, 232, 232, 0.8) !important;
}
.op-light-bronze {
  background-color: rgba(255, 236, 220, 0.5) !important;
}
.op-light-bronze-hi {
  background-color: rgba(255, 236, 220, 0.2) !important;
}
.op-light-bronze-low {
  background-color: rgba(255, 236, 220, 0.8) !important;
}
.op-light-windstorm {
  background-color: rgba(230, 235, 245, 0.5) !important;
}
.op-light-windstorm-hi {
  background-color: rgba(230, 235, 245, 0.2) !important;
}
.op-light-windstorm-low {
  background-color: rgba(230, 235, 245, 0.8) !important;
}
.op-light-nude {
  background-color: rgba(252, 240, 228, 0.5) !important;
}
.op-light-nude-hi {
  background-color: rgba(252, 240, 228, 0.2) !important;
}
.op-light-nude-low {
  background-color: rgba(252, 240, 228, 0.8) !important;
}
.op-light-terracotta {
  background-color: rgba(255, 229, 223, 0.5) !important;
}
.op-light-terracotta-hi {
  background-color: rgba(255, 229, 223, 0.2) !important;
}
.op-light-terracotta-low {
  background-color: rgba(255, 229, 223, 0.8) !important;
}
.op-light-coral {
  background-color: rgba(255, 216, 200, 0.5) !important;
}
.op-light-coral-hi {
  background-color: rgba(255, 216, 200, 0.2) !important;
}
.op-light-coral-low {
  background-color: rgba(255, 216, 200, 0.8) !important;
}
.op-light-army {
  background-color: rgba(236, 234, 203, 0.5) !important;
}
.op-light-army-hi {
  background-color: rgba(236, 234, 203, 0.2) !important;
}
.op-light-army-low {
  background-color: rgba(236, 234, 203, 0.8) !important;
}
.op-light-seashell {
  background-color: rgba(255, 249, 248, 0.5) !important;
}
.op-light-seashell-hi {
  background-color: rgba(255, 249, 248, 0.2) !important;
}
.op-light-seashell-low {
  background-color: rgba(255, 249, 248, 0.8) !important;
}
.op-light-sand {
  background-color: rgba(248, 243, 224, 0.5) !important;
}
.op-light-sand-hi {
  background-color: rgba(248, 243, 224, 0.2) !important;
}
.op-light-sand-low {
  background-color: rgba(248, 243, 224, 0.8) !important;
}
.op-dark-lime {
  background-color: rgba(85, 127, 50, 0.5) !important;
}
.op-dark-lime-hi {
  background-color: rgba(85, 127, 50, 0.2) !important;
}
.op-dark-lime-low {
  background-color: rgba(85, 127, 50, 0.8) !important;
}
.op-dark-green {
  background-color: rgba(0, 61, 0, 0.5) !important;
}
.op-dark-green-hi {
  background-color: rgba(0, 61, 0, 0.2) !important;
}
.op-dark-green-low {
  background-color: rgba(0, 61, 0, 0.8) !important;
}
.op-dark-emerald {
  background-color: rgba(36, 99, 57, 0.5) !important;
}
.op-dark-emerald-hi {
  background-color: rgba(36, 99, 57, 0.2) !important;
}
.op-dark-emerald-low {
  background-color: rgba(36, 99, 57, 0.8) !important;
}
.op-dark-blue {
  background-color: rgba(19, 42, 111, 0.5) !important;
}
.op-dark-blue-hi {
  background-color: rgba(19, 42, 111, 0.2) !important;
}
.op-dark-blue-low {
  background-color: rgba(19, 42, 111, 0.8) !important;
}
.op-dark-teal {
  background-color: rgba(1, 72, 72, 0.5) !important;
}
.op-dark-teal-hi {
  background-color: rgba(1, 72, 72, 0.2) !important;
}
.op-dark-teal-low {
  background-color: rgba(1, 72, 72, 0.8) !important;
}
.op-dark-cyan {
  background-color: rgba(69, 108, 126, 0.5) !important;
}
.op-dark-cyan-hi {
  background-color: rgba(69, 108, 126, 0.2) !important;
}
.op-dark-cyan-low {
  background-color: rgba(69, 108, 126, 0.8) !important;
}
.op-dark-cobalt {
  background-color: rgba(0, 31, 84, 0.5) !important;
}
.op-dark-cobalt-hi {
  background-color: rgba(0, 31, 84, 0.2) !important;
}
.op-dark-cobalt-low {
  background-color: rgba(0, 31, 84, 0.8) !important;
}
.op-dark-indigo {
  background-color: rgba(33, 0, 62, 0.5) !important;
}
.op-dark-indigo-hi {
  background-color: rgba(33, 0, 62, 0.2) !important;
}
.op-dark-indigo-low {
  background-color: rgba(33, 0, 62, 0.8) !important;
}
.op-dark-almost {
  background-color: rgba(47, 6, 135, 0.5) !important;
}
.op-dark-almost-hi {
  background-color: rgba(47, 6, 135, 0.2) !important;
}
.op-dark-almost-low {
  background-color: rgba(47, 6, 135, 0.8) !important;
}
.op-dark-violet {
  background-color: rgba(119, 62, 119, 0.5) !important;
}
.op-dark-violet-hi {
  background-color: rgba(119, 62, 119, 0.2) !important;
}
.op-dark-violet-low {
  background-color: rgba(119, 62, 119, 0.8) !important;
}
.op-dark-pink {
  background-color: rgba(128, 95, 101, 0.5) !important;
}
.op-dark-pink-hi {
  background-color: rgba(128, 95, 101, 0.2) !important;
}
.op-dark-pink-low {
  background-color: rgba(128, 95, 101, 0.8) !important;
}
.op-dark-magenta {
  background-color: rgba(128, 0, 128, 0.5) !important;
}
.op-dark-magenta-hi {
  background-color: rgba(128, 0, 128, 0.2) !important;
}
.op-dark-magenta-low {
  background-color: rgba(128, 0, 128, 0.8) !important;
}
.op-dark-crimson {
  background-color: rgba(110, 5, 25, 0.5) !important;
}
.op-dark-crimson-hi {
  background-color: rgba(110, 5, 25, 0.2) !important;
}
.op-dark-crimson-low {
  background-color: rgba(110, 5, 25, 0.8) !important;
}
.op-dark-red {
  background-color: rgba(128, 0, 0, 0.5) !important;
}
.op-dark-red-hi {
  background-color: rgba(128, 0, 0, 0.2) !important;
}
.op-dark-red-low {
  background-color: rgba(128, 0, 0, 0.8) !important;
}
.op-dark-clown {
  background-color: rgba(170, 40, 36, 0.5) !important;
}
.op-dark-clown-hi {
  background-color: rgba(170, 40, 36, 0.2) !important;
}
.op-dark-clown-low {
  background-color: rgba(170, 40, 36, 0.8) !important;
}
.op-dark-orange {
  background-color: rgba(128, 81, 0, 0.5) !important;
}
.op-dark-orange-hi {
  background-color: rgba(128, 81, 0, 0.2) !important;
}
.op-dark-orange-low {
  background-color: rgba(128, 81, 0, 0.8) !important;
}
.op-dark-amber {
  background-color: rgba(128, 94, 0, 0.5) !important;
}
.op-dark-amber-hi {
  background-color: rgba(128, 94, 0, 0.2) !important;
}
.op-dark-amber-low {
  background-color: rgba(128, 94, 0, 0.8) !important;
}
.op-dark-yellow {
  background-color: rgba(188, 168, 38, 0.5) !important;
}
.op-dark-yellow-hi {
  background-color: rgba(188, 168, 38, 0.2) !important;
}
.op-dark-yellow-low {
  background-color: rgba(188, 168, 38, 0.8) !important;
}
.op-dark-brown {
  background-color: rgba(66, 36, 15, 0.5) !important;
}
.op-dark-brown-hi {
  background-color: rgba(66, 36, 15, 0.2) !important;
}
.op-dark-brown-low {
  background-color: rgba(66, 36, 15, 0.8) !important;
}
.op-dark-olive {
  background-color: rgba(61, 61, 0, 0.5) !important;
}
.op-dark-olive-hi {
  background-color: rgba(61, 61, 0, 0.2) !important;
}
.op-dark-olive-low {
  background-color: rgba(61, 61, 0, 0.8) !important;
}
.op-dark-steel {
  background-color: rgba(46, 56, 65, 0.5) !important;
}
.op-dark-steel-hi {
  background-color: rgba(46, 56, 65, 0.2) !important;
}
.op-dark-steel-low {
  background-color: rgba(46, 56, 65, 0.8) !important;
}
.op-dark-mauve {
  background-color: rgba(112, 86, 128, 0.5) !important;
}
.op-dark-mauve-hi {
  background-color: rgba(112, 86, 128, 0.2) !important;
}
.op-dark-mauve-low {
  background-color: rgba(112, 86, 128, 0.8) !important;
}
.op-dark-taupe {
  background-color: rgba(38, 30, 24, 0.5) !important;
}
.op-dark-taupe-hi {
  background-color: rgba(38, 30, 24, 0.2) !important;
}
.op-dark-taupe-low {
  background-color: rgba(38, 30, 24, 0.8) !important;
}
.op-dark-gray {
  background-color: rgba(81, 81, 81, 0.5) !important;
}
.op-dark-gray-hi {
  background-color: rgba(81, 81, 81, 0.2) !important;
}
.op-dark-gray-low {
  background-color: rgba(81, 81, 81, 0.8) !important;
}
.op-dark-gray-blue {
  background-color: rgba(54, 70, 78, 0.5) !important;
}
.op-dark-gray-blue-hi {
  background-color: rgba(54, 70, 78, 0.2) !important;
}
.op-dark-gray-blue-low {
  background-color: rgba(54, 70, 78, 0.8) !important;
}
.op-dark-gray-mouse {
  background-color: rgba(46, 60, 66, 0.5) !important;
}
.op-dark-gray-mouse-hi {
  background-color: rgba(46, 60, 66, 0.2) !important;
}
.op-dark-gray-mouse-low {
  background-color: rgba(46, 60, 66, 0.8) !important;
}
.op-dark-champagne {
  background-color: rgba(124, 115, 100, 0.5) !important;
}
.op-dark-champagne-hi {
  background-color: rgba(124, 115, 100, 0.2) !important;
}
.op-dark-champagne-low {
  background-color: rgba(124, 115, 100, 0.8) !important;
}
.op-dark-khaki {
  background-color: rgba(106, 97, 66, 0.5) !important;
}
.op-dark-khaki-hi {
  background-color: rgba(106, 97, 66, 0.2) !important;
}
.op-dark-khaki-low {
  background-color: rgba(106, 97, 66, 0.8) !important;
}
.op-dark-charcoal {
  background-color: rgba(32, 32, 32, 0.5) !important;
}
.op-dark-charcoal-hi {
  background-color: rgba(32, 32, 32, 0.2) !important;
}
.op-dark-charcoal-low {
  background-color: rgba(32, 32, 32, 0.8) !important;
}
.op-dark-bronze {
  background-color: rgba(105, 60, 19, 0.5) !important;
}
.op-dark-bronze-hi {
  background-color: rgba(105, 60, 19, 0.2) !important;
}
.op-dark-bronze-low {
  background-color: rgba(105, 60, 19, 0.8) !important;
}
.op-dark-windstorm {
  background-color: rgba(48, 68, 98, 0.5) !important;
}
.op-dark-windstorm-hi {
  background-color: rgba(48, 68, 98, 0.2) !important;
}
.op-dark-windstorm-low {
  background-color: rgba(48, 68, 98, 0.8) !important;
}
.op-dark-nude {
  background-color: rgba(124, 108, 93, 0.5) !important;
}
.op-dark-nude-hi {
  background-color: rgba(124, 108, 93, 0.2) !important;
}
.op-dark-nude-low {
  background-color: rgba(124, 108, 93, 0.8) !important;
}
.op-dark-terracotta {
  background-color: rgba(113, 37, 22, 0.5) !important;
}
.op-dark-terracotta-hi {
  background-color: rgba(113, 37, 22, 0.2) !important;
}
.op-dark-terracotta-low {
  background-color: rgba(113, 37, 22, 0.8) !important;
}
.op-dark-coral {
  background-color: rgba(128, 64, 40, 0.5) !important;
}
.op-dark-coral-hi {
  background-color: rgba(128, 64, 40, 0.2) !important;
}
.op-dark-coral-low {
  background-color: rgba(128, 64, 40, 0.8) !important;
}
.op-dark-army {
  background-color: rgba(42, 47, 20, 0.5) !important;
}
.op-dark-army-hi {
  background-color: rgba(42, 47, 20, 0.2) !important;
}
.op-dark-army-low {
  background-color: rgba(42, 47, 20, 0.8) !important;
}
.op-dark-seashell {
  background-color: rgba(191, 168, 154, 0.5) !important;
}
.op-dark-seashell-hi {
  background-color: rgba(191, 168, 154, 0.2) !important;
}
.op-dark-seashell-low {
  background-color: rgba(191, 168, 154, 0.8) !important;
}
.op-dark-sand {
  background-color: rgba(143, 137, 117, 0.5) !important;
}
.op-dark-sand-hi {
  background-color: rgba(143, 137, 117, 0.2) !important;
}
.op-dark-sand-low {
  background-color: rgba(143, 137, 117, 0.8) !important;
}
.op-sat-lime {
  background-color: rgba(125, 186, 74, 0.5) !important;
}
.op-sat-lime-hi {
  background-color: rgba(125, 186, 74, 0.2) !important;
}
.op-sat-lime-low {
  background-color: rgba(125, 186, 74, 0.8) !important;
}
.op-sat-green {
  background-color: rgba(0, 143, 0, 0.5) !important;
}
.op-sat-green-hi {
  background-color: rgba(0, 143, 0, 0.2) !important;
}
.op-sat-green-low {
  background-color: rgba(0, 143, 0, 0.8) !important;
}
.op-sat-emerald {
  background-color: rgba(60, 161, 93, 0.5) !important;
}
.op-sat-emerald-hi {
  background-color: rgba(60, 161, 93, 0.2) !important;
}
.op-sat-emerald-low {
  background-color: rgba(60, 161, 93, 0.8) !important;
}
.op-sat-blue {
  background-color: rgba(31, 67, 174, 0.5) !important;
}
.op-sat-blue-hi {
  background-color: rgba(31, 67, 174, 0.2) !important;
}
.op-sat-blue-low {
  background-color: rgba(31, 67, 174, 0.8) !important;
}
.op-sat-teal {
  background-color: rgba(0, 138, 138, 0.5) !important;
}
.op-sat-teal-hi {
  background-color: rgba(0, 138, 138, 0.2) !important;
}
.op-sat-teal-low {
  background-color: rgba(0, 138, 138, 0.8) !important;
}
.op-sat-cyan {
  background-color: rgba(101, 157, 182, 0.5) !important;
}
.op-sat-cyan-hi {
  background-color: rgba(101, 157, 182, 0.2) !important;
}
.op-sat-cyan-low {
  background-color: rgba(101, 157, 182, 0.8) !important;
}
.op-sat-cobalt {
  background-color: rgba(0, 51, 145, 0.5) !important;
}
.op-sat-cobalt-hi {
  background-color: rgba(0, 51, 145, 0.2) !important;
}
.op-sat-cobalt-low {
  background-color: rgba(0, 51, 145, 0.8) !important;
}
.op-sat-indigo {
  background-color: rgba(67, 0, 128, 0.5) !important;
}
.op-sat-indigo-hi {
  background-color: rgba(67, 0, 128, 0.2) !important;
}
.op-sat-indigo-low {
  background-color: rgba(67, 0, 128, 0.8) !important;
}
.op-sat-almost {
  background-color: rgba(78, 24, 193, 0.5) !important;
}
.op-sat-almost-hi {
  background-color: rgba(78, 24, 193, 0.2) !important;
}
.op-sat-almost-low {
  background-color: rgba(78, 24, 193, 0.8) !important;
}
.op-sat-violet {
  background-color: rgba(182, 95, 182, 0.5) !important;
}
.op-sat-violet-hi {
  background-color: rgba(182, 95, 182, 0.2) !important;
}
.op-sat-violet-low {
  background-color: rgba(182, 95, 182, 0.8) !important;
}
.op-sat-pink {
  background-color: rgba(204, 114, 150, 0.5) !important;
}
.op-sat-pink-hi {
  background-color: rgba(204, 114, 150, 0.2) !important;
}
.op-sat-pink-low {
  background-color: rgba(204, 114, 150, 0.8) !important;
}
.op-sat-magenta {
  background-color: rgba(197, 0, 197, 0.5) !important;
}
.op-sat-magenta-hi {
  background-color: rgba(197, 0, 197, 0.2) !important;
}
.op-sat-magenta-low {
  background-color: rgba(197, 0, 197, 0.8) !important;
}
.op-sat-crimson {
  background-color: rgba(152, 8, 36, 0.5) !important;
}
.op-sat-crimson-hi {
  background-color: rgba(152, 8, 36, 0.2) !important;
}
.op-sat-crimson-low {
  background-color: rgba(152, 8, 36, 0.8) !important;
}
.op-sat-red {
  background-color: rgba(184, 0, 0, 0.5) !important;
}
.op-sat-red-hi {
  background-color: rgba(184, 0, 0, 0.2) !important;
}
.op-sat-red-low {
  background-color: rgba(184, 0, 0, 0.8) !important;
}
.op-sat-clown {
  background-color: rgba(214, 79, 72, 0.5) !important;
}
.op-sat-clown-hi {
  background-color: rgba(214, 79, 72, 0.2) !important;
}
.op-sat-clown-low {
  background-color: rgba(214, 79, 72, 0.8) !important;
}
.op-sat-orange {
  background-color: rgba(188, 119, 0, 0.5) !important;
}
.op-sat-orange-hi {
  background-color: rgba(188, 119, 0, 0.2) !important;
}
.op-sat-orange-low {
  background-color: rgba(188, 119, 0, 0.8) !important;
}
.op-sat-amber {
  background-color: rgba(209, 155, 0, 0.5) !important;
}
.op-sat-amber-hi {
  background-color: rgba(209, 155, 0, 0.2) !important;
}
.op-sat-amber-low {
  background-color: rgba(209, 155, 0, 0.8) !important;
}
.op-sat-yellow {
  background-color: rgba(228, 206, 67, 0.5) !important;
}
.op-sat-yellow-hi {
  background-color: rgba(228, 206, 67, 0.2) !important;
}
.op-sat-yellow-low {
  background-color: rgba(228, 206, 67, 0.8) !important;
}
.op-sat-brown {
  background-color: rgba(136, 75, 32, 0.5) !important;
}
.op-sat-brown-hi {
  background-color: rgba(136, 75, 32, 0.2) !important;
}
.op-sat-brown-low {
  background-color: rgba(136, 75, 32, 0.8) !important;
}
.op-sat-olive {
  background-color: rgba(131, 131, 0, 0.5) !important;
}
.op-sat-olive-hi {
  background-color: rgba(131, 131, 0, 0.2) !important;
}
.op-sat-olive-low {
  background-color: rgba(131, 131, 0, 0.8) !important;
}
.op-sat-steel {
  background-color: rgba(92, 112, 129, 0.5) !important;
}
.op-sat-steel-hi {
  background-color: rgba(92, 112, 129, 0.2) !important;
}
.op-sat-steel-low {
  background-color: rgba(92, 112, 129, 0.8) !important;
}
.op-sat-mauve {
  background-color: rgba(169, 130, 193, 0.5) !important;
}
.op-sat-mauve-hi {
  background-color: rgba(169, 130, 193, 0.2) !important;
}
.op-sat-mauve-low {
  background-color: rgba(169, 130, 193, 0.8) !important;
}
.op-sat-taupe {
  background-color: rgba(94, 74, 60, 0.5) !important;
}
.op-sat-taupe-hi {
  background-color: rgba(94, 74, 60, 0.2) !important;
}
.op-sat-taupe-low {
  background-color: rgba(94, 74, 60, 0.8) !important;
}
.op-sat-gray {
  background-color: rgba(156, 156, 156, 0.5) !important;
}
.op-sat-gray-hi {
  background-color: rgba(156, 156, 156, 0.2) !important;
}
.op-sat-gray-low {
  background-color: rgba(156, 156, 156, 0.8) !important;
}
.op-sat-gray-blue {
  background-color: rgba(95, 122, 136, 0.5) !important;
}
.op-sat-gray-blue-hi {
  background-color: rgba(95, 122, 136, 0.2) !important;
}
.op-sat-gray-blue-low {
  background-color: rgba(95, 122, 136, 0.8) !important;
}
.op-sat-gray-mouse {
  background-color: rgba(63, 83, 92, 0.5) !important;
}
.op-sat-gray-mouse-hi {
  background-color: rgba(63, 83, 92, 0.2) !important;
}
.op-sat-gray-mouse-low {
  background-color: rgba(63, 83, 92, 0.8) !important;
}
.op-sat-champagne {
  background-color: rgba(204, 188, 165, 0.5) !important;
}
.op-sat-champagne-hi {
  background-color: rgba(204, 188, 165, 0.2) !important;
}
.op-sat-champagne-low {
  background-color: rgba(204, 188, 165, 0.8) !important;
}
.op-sat-khaki {
  background-color: rgba(170, 156, 107, 0.5) !important;
}
.op-sat-khaki-hi {
  background-color: rgba(170, 156, 107, 0.2) !important;
}
.op-sat-khaki-low {
  background-color: rgba(170, 156, 107, 0.8) !important;
}
.op-sat-charcoal {
  background-color: rgba(94, 94, 94, 0.5) !important;
}
.op-sat-charcoal-hi {
  background-color: rgba(94, 94, 94, 0.2) !important;
}
.op-sat-charcoal-low {
  background-color: rgba(94, 94, 94, 0.8) !important;
}
.op-sat-bronze {
  background-color: rgba(170, 98, 31, 0.5) !important;
}
.op-sat-bronze-hi {
  background-color: rgba(170, 98, 31, 0.2) !important;
}
.op-sat-bronze-low {
  background-color: rgba(170, 98, 31, 0.8) !important;
}
.op-sat-windstorm {
  background-color: rgba(80, 113, 163, 0.5) !important;
}
.op-sat-windstorm-hi {
  background-color: rgba(80, 113, 163, 0.2) !important;
}
.op-sat-windstorm-low {
  background-color: rgba(80, 113, 163, 0.8) !important;
}
.op-sat-nude {
  background-color: rgba(186, 162, 139, 0.5) !important;
}
.op-sat-nude-hi {
  background-color: rgba(186, 162, 139, 0.2) !important;
}
.op-sat-nude-low {
  background-color: rgba(186, 162, 139, 0.8) !important;
}
.op-sat-terracotta {
  background-color: rgba(175, 58, 35, 0.5) !important;
}
.op-sat-terracotta-hi {
  background-color: rgba(175, 58, 35, 0.2) !important;
}
.op-sat-terracotta-low {
  background-color: rgba(175, 58, 35, 0.8) !important;
}
.op-sat-coral {
  background-color: rgba(182, 92, 57, 0.5) !important;
}
.op-sat-coral-hi {
  background-color: rgba(182, 92, 57, 0.2) !important;
}
.op-sat-coral-low {
  background-color: rgba(182, 92, 57, 0.8) !important;
}
.op-sat-army {
  background-color: rgba(100, 112, 48, 0.5) !important;
}
.op-sat-army-hi {
  background-color: rgba(100, 112, 48, 0.2) !important;
}
.op-sat-army-low {
  background-color: rgba(100, 112, 48, 0.8) !important;
}
.op-sat-seashell {
  background-color: rgba(225, 203, 189, 0.5) !important;
}
.op-sat-seashell-hi {
  background-color: rgba(225, 203, 189, 0.2) !important;
}
.op-sat-seashell-low {
  background-color: rgba(225, 203, 189, 0.8) !important;
}
.op-sat-sand {
  background-color: rgba(209, 197, 161, 0.5) !important;
}
.op-sat-sand-hi {
  background-color: rgba(209, 197, 161, 0.2) !important;
}
.op-sat-sand-low {
  background-color: rgba(209, 197, 161, 0.8) !important;
}

/* source/colors-css/outline.less */
.ol-black {
  outline-color: #000000 !important;
}
.ol-black-active:active {
  outline-color: #000000 !important;
}
.ol-black-hover:hover {
  outline-color: #000000 !important;
}
.ol-black-focus:focus {
  outline-color: #000000 !important;
}
.ol-white {
  outline-color: #ffffff !important;
}
.ol-white-active:active {
  outline-color: #ffffff !important;
}
.ol-white-hover:hover {
  outline-color: #ffffff !important;
}
.ol-white-focus:focus {
  outline-color: #ffffff !important;
}
.ol-dark {
  outline-color: #1d1d1d !important;
}
.ol-dark-active:active {
  outline-color: #1d1d1d !important;
}
.ol-dark-hover:hover {
  outline-color: #1d1d1d !important;
}
.ol-dark-focus:focus {
  outline-color: #1d1d1d !important;
}
.ol-light {
  outline-color: #f8f8f8 !important;
}
.ol-light-active:active {
  outline-color: #f8f8f8 !important;
}
.ol-light-hover:hover {
  outline-color: #f8f8f8 !important;
}
.ol-light-focus:focus {
  outline-color: #f8f8f8 !important;
}
.ol-gray {
  outline-color: #ccc !important;
}
.ol-gray-active:active {
  outline-color: #ccc !important;
}
.ol-gray-hover:hover {
  outline-color: #ccc !important;
}
.ol-gray-focus:focus {
  outline-color: #ccc !important;
}
.ol-gray-blue {
  outline-color: #6a89a7 !important;
}
.ol-gray-blue-active:active {
  outline-color: #6a89a7 !important;
}
.ol-gray-blue-hover:hover {
  outline-color: #6a89a7 !important;
}
.ol-gray-blue-focus:focus {
  outline-color: #6a89a7 !important;
}
.ol-gray-white {
  outline-color: #f5f5f5 !important;
}
.ol-gray-white-active:active {
  outline-color: #f5f5f5 !important;
}
.ol-gray-white-hover:hover {
  outline-color: #f5f5f5 !important;
}
.ol-gray-white-focus:focus {
  outline-color: #f5f5f5 !important;
}
.ol-gray-mouse {
  outline-color: #566b75 !important;
}
.ol-gray-mouse-active:active {
  outline-color: #566b75 !important;
}
.ol-gray-mouse-hover:hover {
  outline-color: #566b75 !important;
}
.ol-gray-mouse-focus:focus {
  outline-color: #566b75 !important;
}
.ol-lime {
  outline-color: #AEFD6C !important;
}
.ol-lime-active:active {
  outline-color: #AEFD6C !important;
}
.ol-lime-hover:hover {
  outline-color: #AEFD6C !important;
}
.ol-lime-focus:focus {
  outline-color: #AEFD6C !important;
}
.ol-green {
  outline-color: #00b500 !important;
}
.ol-green-active:active {
  outline-color: #00b500 !important;
}
.ol-green-hover:hover {
  outline-color: #00b500 !important;
}
.ol-green-focus:focus {
  outline-color: #00b500 !important;
}
.ol-emerald {
  outline-color: #50c878 !important;
}
.ol-emerald-active:active {
  outline-color: #50c878 !important;
}
.ol-emerald-hover:hover {
  outline-color: #50c878 !important;
}
.ol-emerald-focus:focus {
  outline-color: #50c878 !important;
}
.ol-blue {
  outline-color: #5e87ff !important;
}
.ol-blue-active:active {
  outline-color: #5e87ff !important;
}
.ol-blue-hover:hover {
  outline-color: #5e87ff !important;
}
.ol-blue-focus:focus {
  outline-color: #5e87ff !important;
}
.ol-teal {
  outline-color: #1ac5c5 !important;
}
.ol-teal-active:active {
  outline-color: #1ac5c5 !important;
}
.ol-teal-hover:hover {
  outline-color: #1ac5c5 !important;
}
.ol-teal-focus:focus {
  outline-color: #1ac5c5 !important;
}
.ol-cyan {
  outline-color: #94b6ff !important;
}
.ol-cyan-active:active {
  outline-color: #94b6ff !important;
}
.ol-cyan-hover:hover {
  outline-color: #94b6ff !important;
}
.ol-cyan-focus:focus {
  outline-color: #94b6ff !important;
}
.ol-cobalt {
  outline-color: #0047ab !important;
}
.ol-cobalt-active:active {
  outline-color: #0047ab !important;
}
.ol-cobalt-hover:hover {
  outline-color: #0047ab !important;
}
.ol-cobalt-focus:focus {
  outline-color: #0047ab !important;
}
.ol-indigo {
  outline-color: #6400a8 !important;
}
.ol-indigo-active:active {
  outline-color: #6400a8 !important;
}
.ol-indigo-hover:hover {
  outline-color: #6400a8 !important;
}
.ol-indigo-focus:focus {
  outline-color: #6400a8 !important;
}
.ol-almost {
  outline-color: #6a2ded !important;
}
.ol-almost-active:active {
  outline-color: #6a2ded !important;
}
.ol-almost-hover:hover {
  outline-color: #6a2ded !important;
}
.ol-almost-focus:focus {
  outline-color: #6a2ded !important;
}
.ol-violet {
  outline-color: #ee82ee !important;
}
.ol-violet-active:active {
  outline-color: #ee82ee !important;
}
.ol-violet-hover:hover {
  outline-color: #ee82ee !important;
}
.ol-violet-focus:focus {
  outline-color: #ee82ee !important;
}
.ol-pink {
  outline-color: #ffc0cb !important;
}
.ol-pink-active:active {
  outline-color: #ffc0cb !important;
}
.ol-pink-hover:hover {
  outline-color: #ffc0cb !important;
}
.ol-pink-focus:focus {
  outline-color: #ffc0cb !important;
}
.ol-magenta {
  outline-color: #ff00ff !important;
}
.ol-magenta-active:active {
  outline-color: #ff00ff !important;
}
.ol-magenta-hover:hover {
  outline-color: #ff00ff !important;
}
.ol-magenta-focus:focus {
  outline-color: #ff00ff !important;
}
.ol-crimson {
  outline-color: #df0e38 !important;
}
.ol-crimson-active:active {
  outline-color: #df0e38 !important;
}
.ol-crimson-hover:hover {
  outline-color: #df0e38 !important;
}
.ol-crimson-focus:focus {
  outline-color: #df0e38 !important;
}
.ol-red {
  outline-color: #ff0000 !important;
}
.ol-red-active:active {
  outline-color: #ff0000 !important;
}
.ol-red-hover:hover {
  outline-color: #ff0000 !important;
}
.ol-red-focus:focus {
  outline-color: #ff0000 !important;
}
.ol-clown {
  outline-color: #ff6d66 !important;
}
.ol-clown-active:active {
  outline-color: #ff6d66 !important;
}
.ol-clown-hover:hover {
  outline-color: #ff6d66 !important;
}
.ol-clown-focus:focus {
  outline-color: #ff6d66 !important;
}
.ol-orange {
  outline-color: #ffa500 !important;
}
.ol-orange-active:active {
  outline-color: #ffa500 !important;
}
.ol-orange-hover:hover {
  outline-color: #ffa500 !important;
}
.ol-orange-focus:focus {
  outline-color: #ffa500 !important;
}
.ol-amber {
  outline-color: #ffca2a !important;
}
.ol-amber-active:active {
  outline-color: #ffca2a !important;
}
.ol-amber-hover:hover {
  outline-color: #ffca2a !important;
}
.ol-amber-focus:focus {
  outline-color: #ffca2a !important;
}
.ol-yellow {
  outline-color: #ffe95e !important;
}
.ol-yellow-active:active {
  outline-color: #ffe95e !important;
}
.ol-yellow-hover:hover {
  outline-color: #ffe95e !important;
}
.ol-yellow-focus:focus {
  outline-color: #ffe95e !important;
}
.ol-brown {
  outline-color: #ca773c !important;
}
.ol-brown-active:active {
  outline-color: #ca773c !important;
}
.ol-brown-hover:hover {
  outline-color: #ca773c !important;
}
.ol-brown-focus:focus {
  outline-color: #ca773c !important;
}
.ol-olive {
  outline-color: #a1a100 !important;
}
.ol-olive-active:active {
  outline-color: #a1a100 !important;
}
.ol-olive-hover:hover {
  outline-color: #a1a100 !important;
}
.ol-olive-focus:focus {
  outline-color: #a1a100 !important;
}
.ol-steel {
  outline-color: #7b91a6 !important;
}
.ol-steel-active:active {
  outline-color: #7b91a6 !important;
}
.ol-steel-hover:hover {
  outline-color: #7b91a6 !important;
}
.ol-steel-focus:focus {
  outline-color: #7b91a6 !important;
}
.ol-mauve {
  outline-color: #e0afff !important;
}
.ol-mauve-active:active {
  outline-color: #e0afff !important;
}
.ol-mauve-hover:hover {
  outline-color: #e0afff !important;
}
.ol-mauve-focus:focus {
  outline-color: #e0afff !important;
}
.ol-taupe {
  outline-color: #977e67 !important;
}
.ol-taupe-active:active {
  outline-color: #977e67 !important;
}
.ol-taupe-hover:hover {
  outline-color: #977e67 !important;
}
.ol-taupe-focus:focus {
  outline-color: #977e67 !important;
}
.ol-champagne {
  outline-color: #f7e6ca !important;
}
.ol-champagne-active:active {
  outline-color: #f7e6ca !important;
}
.ol-champagne-hover:hover {
  outline-color: #f7e6ca !important;
}
.ol-champagne-focus:focus {
  outline-color: #f7e6ca !important;
}
.ol-khaki {
  outline-color: #d5c58a !important;
}
.ol-khaki-active:active {
  outline-color: #d5c58a !important;
}
.ol-khaki-hover:hover {
  outline-color: #d5c58a !important;
}
.ol-khaki-focus:focus {
  outline-color: #d5c58a !important;
}
.ol-charcoal {
  outline-color: #989898 !important;
}
.ol-charcoal-active:active {
  outline-color: #989898 !important;
}
.ol-charcoal-hover:hover {
  outline-color: #989898 !important;
}
.ol-charcoal-focus:focus {
  outline-color: #989898 !important;
}
.ol-bronze {
  outline-color: #e48d3e !important;
}
.ol-bronze-active:active {
  outline-color: #e48d3e !important;
}
.ol-bronze-hover:hover {
  outline-color: #e48d3e !important;
}
.ol-bronze-focus:focus {
  outline-color: #e48d3e !important;
}
.ol-windstorm {
  outline-color: #799ed6 !important;
}
.ol-windstorm-active:active {
  outline-color: #799ed6 !important;
}
.ol-windstorm-hover:hover {
  outline-color: #799ed6 !important;
}
.ol-windstorm-focus:focus {
  outline-color: #799ed6 !important;
}
.ol-nude {
  outline-color: #f7d9bc !important;
}
.ol-nude-active:active {
  outline-color: #f7d9bc !important;
}
.ol-nude-hover:hover {
  outline-color: #f7d9bc !important;
}
.ol-nude-focus:focus {
  outline-color: #f7d9bc !important;
}
.ol-terracotta {
  outline-color: #e35336 !important;
}
.ol-terracotta-active:active {
  outline-color: #e35336 !important;
}
.ol-terracotta-hover:hover {
  outline-color: #e35336 !important;
}
.ol-terracotta-focus:focus {
  outline-color: #e35336 !important;
}
.ol-coral {
  outline-color: #ff8559 !important;
}
.ol-coral-active:active {
  outline-color: #ff8559 !important;
}
.ol-coral-hover:hover {
  outline-color: #ff8559 !important;
}
.ol-coral-focus:focus {
  outline-color: #ff8559 !important;
}
.ol-army {
  outline-color: #5d6532 !important;
}
.ol-army-active:active {
  outline-color: #5d6532 !important;
}
.ol-army-hover:hover {
  outline-color: #5d6532 !important;
}
.ol-army-focus:focus {
  outline-color: #5d6532 !important;
}
.ol-seashell {
  outline-color: #fff1e7 !important;
}
.ol-seashell-active:active {
  outline-color: #fff1e7 !important;
}
.ol-seashell-hover:hover {
  outline-color: #fff1e7 !important;
}
.ol-seashell-focus:focus {
  outline-color: #fff1e7 !important;
}
.ol-sand {
  outline-color: #f1e0ae !important;
}
.ol-sand-active:active {
  outline-color: #f1e0ae !important;
}
.ol-sand-hover:hover {
  outline-color: #f1e0ae !important;
}
.ol-sand-focus:focus {
  outline-color: #f1e0ae !important;
}
.ol-light-lime {
  outline-color: #f2ffe7 !important;
}
.ol-light-lime-active:active {
  outline-color: #f2ffe7 !important;
}
.ol-light-lime-hover:hover {
  outline-color: #f2ffe7 !important;
}
.ol-light-lime-focus:focus {
  outline-color: #f2ffe7 !important;
}
.ol-light-green {
  outline-color: #e7f6e6 !important;
}
.ol-light-green-active:active {
  outline-color: #e7f6e6 !important;
}
.ol-light-green-hover:hover {
  outline-color: #e7f6e6 !important;
}
.ol-light-green-focus:focus {
  outline-color: #e7f6e6 !important;
}
.ol-light-emerald {
  outline-color: #d1e6cc !important;
}
.ol-light-emerald-active:active {
  outline-color: #d1e6cc !important;
}
.ol-light-emerald-hover:hover {
  outline-color: #d1e6cc !important;
}
.ol-light-emerald-focus:focus {
  outline-color: #d1e6cc !important;
}
.ol-light-blue {
  outline-color: #e7eaff !important;
}
.ol-light-blue-active:active {
  outline-color: #e7eaff !important;
}
.ol-light-blue-hover:hover {
  outline-color: #e7eaff !important;
}
.ol-light-blue-focus:focus {
  outline-color: #e7eaff !important;
}
.ol-light-teal {
  outline-color: #e1f2f3 !important;
}
.ol-light-teal-active:active {
  outline-color: #e1f2f3 !important;
}
.ol-light-teal-hover:hover {
  outline-color: #e1f2f3 !important;
}
.ol-light-teal-focus:focus {
  outline-color: #e1f2f3 !important;
}
.ol-light-cyan {
  outline-color: #e3edff !important;
}
.ol-light-cyan-active:active {
  outline-color: #e3edff !important;
}
.ol-light-cyan-hover:hover {
  outline-color: #e3edff !important;
}
.ol-light-cyan-focus:focus {
  outline-color: #e3edff !important;
}
.ol-light-cobalt {
  outline-color: #d1ecff !important;
}
.ol-light-cobalt-active:active {
  outline-color: #d1ecff !important;
}
.ol-light-cobalt-hover:hover {
  outline-color: #d1ecff !important;
}
.ol-light-cobalt-focus:focus {
  outline-color: #d1ecff !important;
}
.ol-light-indigo {
  outline-color: #f3dcf3 !important;
}
.ol-light-indigo-active:active {
  outline-color: #f3dcf3 !important;
}
.ol-light-indigo-hover:hover {
  outline-color: #f3dcf3 !important;
}
.ol-light-indigo-focus:focus {
  outline-color: #f3dcf3 !important;
}
.ol-light-almost {
  outline-color: #eee5ff !important;
}
.ol-light-almost-active:active {
  outline-color: #eee5ff !important;
}
.ol-light-almost-hover:hover {
  outline-color: #eee5ff !important;
}
.ol-light-almost-focus:focus {
  outline-color: #eee5ff !important;
}
.ol-light-violet {
  outline-color: #fce2fb !important;
}
.ol-light-violet-active:active {
  outline-color: #fce2fb !important;
}
.ol-light-violet-hover:hover {
  outline-color: #fce2fb !important;
}
.ol-light-violet-focus:focus {
  outline-color: #fce2fb !important;
}
.ol-light-pink {
  outline-color: #ffeef1 !important;
}
.ol-light-pink-active:active {
  outline-color: #ffeef1 !important;
}
.ol-light-pink-hover:hover {
  outline-color: #ffeef1 !important;
}
.ol-light-pink-focus:focus {
  outline-color: #ffeef1 !important;
}
.ol-light-magenta {
  outline-color: #ffe2ff !important;
}
.ol-light-magenta-active:active {
  outline-color: #ffe2ff !important;
}
.ol-light-magenta-hover:hover {
  outline-color: #ffe2ff !important;
}
.ol-light-magenta-focus:focus {
  outline-color: #ffe2ff !important;
}
.ol-light-crimson {
  outline-color: #ffd1da !important;
}
.ol-light-crimson-active:active {
  outline-color: #ffd1da !important;
}
.ol-light-crimson-hover:hover {
  outline-color: #ffd1da !important;
}
.ol-light-crimson-focus:focus {
  outline-color: #ffd1da !important;
}
.ol-light-red {
  outline-color: #ffe1e1 !important;
}
.ol-light-red-active:active {
  outline-color: #ffe1e1 !important;
}
.ol-light-red-hover:hover {
  outline-color: #ffe1e1 !important;
}
.ol-light-red-focus:focus {
  outline-color: #ffe1e1 !important;
}
.ol-light-clown {
  outline-color: #ffdede !important;
}
.ol-light-clown-active:active {
  outline-color: #ffdede !important;
}
.ol-light-clown-hover:hover {
  outline-color: #ffdede !important;
}
.ol-light-clown-focus:focus {
  outline-color: #ffdede !important;
}
.ol-light-orange {
  outline-color: #fff3de !important;
}
.ol-light-orange-active:active {
  outline-color: #fff3de !important;
}
.ol-light-orange-hover:hover {
  outline-color: #fff3de !important;
}
.ol-light-orange-focus:focus {
  outline-color: #fff3de !important;
}
.ol-light-amber {
  outline-color: #fff8e1 !important;
}
.ol-light-amber-active:active {
  outline-color: #fff8e1 !important;
}
.ol-light-amber-hover:hover {
  outline-color: #fff8e1 !important;
}
.ol-light-amber-focus:focus {
  outline-color: #fff8e1 !important;
}
.ol-light-yellow {
  outline-color: #ffffc6 !important;
}
.ol-light-yellow-active:active {
  outline-color: #ffffc6 !important;
}
.ol-light-yellow-hover:hover {
  outline-color: #ffffc6 !important;
}
.ol-light-yellow-focus:focus {
  outline-color: #ffffc6 !important;
}
.ol-light-brown {
  outline-color: #ffeed9 !important;
}
.ol-light-brown-active:active {
  outline-color: #ffeed9 !important;
}
.ol-light-brown-hover:hover {
  outline-color: #ffeed9 !important;
}
.ol-light-brown-focus:focus {
  outline-color: #ffeed9 !important;
}
.ol-light-olive {
  outline-color: #f8fde7 !important;
}
.ol-light-olive-active:active {
  outline-color: #f8fde7 !important;
}
.ol-light-olive-hover:hover {
  outline-color: #f8fde7 !important;
}
.ol-light-olive-focus:focus {
  outline-color: #f8fde7 !important;
}
.ol-light-steel {
  outline-color: #edeeee !important;
}
.ol-light-steel-active:active {
  outline-color: #edeeee !important;
}
.ol-light-steel-hover:hover {
  outline-color: #edeeee !important;
}
.ol-light-steel-focus:focus {
  outline-color: #edeeee !important;
}
.ol-light-mauve {
  outline-color: #f7ecfe !important;
}
.ol-light-mauve-active:active {
  outline-color: #f7ecfe !important;
}
.ol-light-mauve-hover:hover {
  outline-color: #f7ecfe !important;
}
.ol-light-mauve-focus:focus {
  outline-color: #f7ecfe !important;
}
.ol-light-taupe {
  outline-color: #eadccf !important;
}
.ol-light-taupe-active:active {
  outline-color: #eadccf !important;
}
.ol-light-taupe-hover:hover {
  outline-color: #eadccf !important;
}
.ol-light-taupe-focus:focus {
  outline-color: #eadccf !important;
}
.ol-light-gray {
  outline-color: #f4f4f4 !important;
}
.ol-light-gray-active:active {
  outline-color: #f4f4f4 !important;
}
.ol-light-gray-hover:hover {
  outline-color: #f4f4f4 !important;
}
.ol-light-gray-focus:focus {
  outline-color: #f4f4f4 !important;
}
.ol-light-gray-blue {
  outline-color: #bee2f4 !important;
}
.ol-light-gray-blue-active:active {
  outline-color: #bee2f4 !important;
}
.ol-light-gray-blue-hover:hover {
  outline-color: #bee2f4 !important;
}
.ol-light-gray-blue-focus:focus {
  outline-color: #bee2f4 !important;
}
.ol-light-gray-mouse {
  outline-color: #8ab4c8 !important;
}
.ol-light-gray-mouse-active:active {
  outline-color: #8ab4c8 !important;
}
.ol-light-gray-mouse-hover:hover {
  outline-color: #8ab4c8 !important;
}
.ol-light-gray-mouse-focus:focus {
  outline-color: #8ab4c8 !important;
}
.ol-light-champagne {
  outline-color: #fff9f2 !important;
}
.ol-light-champagne-active:active {
  outline-color: #fff9f2 !important;
}
.ol-light-champagne-hover:hover {
  outline-color: #fff9f2 !important;
}
.ol-light-champagne-focus:focus {
  outline-color: #fff9f2 !important;
}
.ol-light-khaki {
  outline-color: #f6f1dd !important;
}
.ol-light-khaki-active:active {
  outline-color: #f6f1dd !important;
}
.ol-light-khaki-hover:hover {
  outline-color: #f6f1dd !important;
}
.ol-light-khaki-focus:focus {
  outline-color: #f6f1dd !important;
}
.ol-light-charcoal {
  outline-color: #e8e8e8 !important;
}
.ol-light-charcoal-active:active {
  outline-color: #e8e8e8 !important;
}
.ol-light-charcoal-hover:hover {
  outline-color: #e8e8e8 !important;
}
.ol-light-charcoal-focus:focus {
  outline-color: #e8e8e8 !important;
}
.ol-light-bronze {
  outline-color: #ffecdc !important;
}
.ol-light-bronze-active:active {
  outline-color: #ffecdc !important;
}
.ol-light-bronze-hover:hover {
  outline-color: #ffecdc !important;
}
.ol-light-bronze-focus:focus {
  outline-color: #ffecdc !important;
}
.ol-light-windstorm {
  outline-color: #e6ebf5 !important;
}
.ol-light-windstorm-active:active {
  outline-color: #e6ebf5 !important;
}
.ol-light-windstorm-hover:hover {
  outline-color: #e6ebf5 !important;
}
.ol-light-windstorm-focus:focus {
  outline-color: #e6ebf5 !important;
}
.ol-light-nude {
  outline-color: #fcf0e4 !important;
}
.ol-light-nude-active:active {
  outline-color: #fcf0e4 !important;
}
.ol-light-nude-hover:hover {
  outline-color: #fcf0e4 !important;
}
.ol-light-nude-focus:focus {
  outline-color: #fcf0e4 !important;
}
.ol-light-terracotta {
  outline-color: #ffe5df !important;
}
.ol-light-terracotta-active:active {
  outline-color: #ffe5df !important;
}
.ol-light-terracotta-hover:hover {
  outline-color: #ffe5df !important;
}
.ol-light-terracotta-focus:focus {
  outline-color: #ffe5df !important;
}
.ol-light-coral {
  outline-color: #ffd8c8 !important;
}
.ol-light-coral-active:active {
  outline-color: #ffd8c8 !important;
}
.ol-light-coral-hover:hover {
  outline-color: #ffd8c8 !important;
}
.ol-light-coral-focus:focus {
  outline-color: #ffd8c8 !important;
}
.ol-light-army {
  outline-color: #eceacb !important;
}
.ol-light-army-active:active {
  outline-color: #eceacb !important;
}
.ol-light-army-hover:hover {
  outline-color: #eceacb !important;
}
.ol-light-army-focus:focus {
  outline-color: #eceacb !important;
}
.ol-light-seashell {
  outline-color: #fff9f8 !important;
}
.ol-light-seashell-active:active {
  outline-color: #fff9f8 !important;
}
.ol-light-seashell-hover:hover {
  outline-color: #fff9f8 !important;
}
.ol-light-seashell-focus:focus {
  outline-color: #fff9f8 !important;
}
.ol-light-sand {
  outline-color: #f8f3e0 !important;
}
.ol-light-sand-active:active {
  outline-color: #f8f3e0 !important;
}
.ol-light-sand-hover:hover {
  outline-color: #f8f3e0 !important;
}
.ol-light-sand-focus:focus {
  outline-color: #f8f3e0 !important;
}
.ol-dark-lime {
  outline-color: #557f32 !important;
}
.ol-dark-lime-active:active {
  outline-color: #557f32 !important;
}
.ol-dark-lime-hover:hover {
  outline-color: #557f32 !important;
}
.ol-dark-lime-focus:focus {
  outline-color: #557f32 !important;
}
.ol-dark-green {
  outline-color: #003d00 !important;
}
.ol-dark-green-active:active {
  outline-color: #003d00 !important;
}
.ol-dark-green-hover:hover {
  outline-color: #003d00 !important;
}
.ol-dark-green-focus:focus {
  outline-color: #003d00 !important;
}
.ol-dark-emerald {
  outline-color: #246339 !important;
}
.ol-dark-emerald-active:active {
  outline-color: #246339 !important;
}
.ol-dark-emerald-hover:hover {
  outline-color: #246339 !important;
}
.ol-dark-emerald-focus:focus {
  outline-color: #246339 !important;
}
.ol-dark-blue {
  outline-color: #132a6f !important;
}
.ol-dark-blue-active:active {
  outline-color: #132a6f !important;
}
.ol-dark-blue-hover:hover {
  outline-color: #132a6f !important;
}
.ol-dark-blue-focus:focus {
  outline-color: #132a6f !important;
}
.ol-dark-teal {
  outline-color: #014848 !important;
}
.ol-dark-teal-active:active {
  outline-color: #014848 !important;
}
.ol-dark-teal-hover:hover {
  outline-color: #014848 !important;
}
.ol-dark-teal-focus:focus {
  outline-color: #014848 !important;
}
.ol-dark-cyan {
  outline-color: #456c7e !important;
}
.ol-dark-cyan-active:active {
  outline-color: #456c7e !important;
}
.ol-dark-cyan-hover:hover {
  outline-color: #456c7e !important;
}
.ol-dark-cyan-focus:focus {
  outline-color: #456c7e !important;
}
.ol-dark-cobalt {
  outline-color: #001f54 !important;
}
.ol-dark-cobalt-active:active {
  outline-color: #001f54 !important;
}
.ol-dark-cobalt-hover:hover {
  outline-color: #001f54 !important;
}
.ol-dark-cobalt-focus:focus {
  outline-color: #001f54 !important;
}
.ol-dark-indigo {
  outline-color: #21003e !important;
}
.ol-dark-indigo-active:active {
  outline-color: #21003e !important;
}
.ol-dark-indigo-hover:hover {
  outline-color: #21003e !important;
}
.ol-dark-indigo-focus:focus {
  outline-color: #21003e !important;
}
.ol-dark-almost {
  outline-color: #2f0687 !important;
}
.ol-dark-almost-active:active {
  outline-color: #2f0687 !important;
}
.ol-dark-almost-hover:hover {
  outline-color: #2f0687 !important;
}
.ol-dark-almost-focus:focus {
  outline-color: #2f0687 !important;
}
.ol-dark-violet {
  outline-color: #773e77 !important;
}
.ol-dark-violet-active:active {
  outline-color: #773e77 !important;
}
.ol-dark-violet-hover:hover {
  outline-color: #773e77 !important;
}
.ol-dark-violet-focus:focus {
  outline-color: #773e77 !important;
}
.ol-dark-pink {
  outline-color: #805f65 !important;
}
.ol-dark-pink-active:active {
  outline-color: #805f65 !important;
}
.ol-dark-pink-hover:hover {
  outline-color: #805f65 !important;
}
.ol-dark-pink-focus:focus {
  outline-color: #805f65 !important;
}
.ol-dark-magenta {
  outline-color: #800080 !important;
}
.ol-dark-magenta-active:active {
  outline-color: #800080 !important;
}
.ol-dark-magenta-hover:hover {
  outline-color: #800080 !important;
}
.ol-dark-magenta-focus:focus {
  outline-color: #800080 !important;
}
.ol-dark-crimson {
  outline-color: #6e0519 !important;
}
.ol-dark-crimson-active:active {
  outline-color: #6e0519 !important;
}
.ol-dark-crimson-hover:hover {
  outline-color: #6e0519 !important;
}
.ol-dark-crimson-focus:focus {
  outline-color: #6e0519 !important;
}
.ol-dark-red {
  outline-color: #800000 !important;
}
.ol-dark-red-active:active {
  outline-color: #800000 !important;
}
.ol-dark-red-hover:hover {
  outline-color: #800000 !important;
}
.ol-dark-red-focus:focus {
  outline-color: #800000 !important;
}
.ol-dark-clown {
  outline-color: #aa2824 !important;
}
.ol-dark-clown-active:active {
  outline-color: #aa2824 !important;
}
.ol-dark-clown-hover:hover {
  outline-color: #aa2824 !important;
}
.ol-dark-clown-focus:focus {
  outline-color: #aa2824 !important;
}
.ol-dark-orange {
  outline-color: #805100 !important;
}
.ol-dark-orange-active:active {
  outline-color: #805100 !important;
}
.ol-dark-orange-hover:hover {
  outline-color: #805100 !important;
}
.ol-dark-orange-focus:focus {
  outline-color: #805100 !important;
}
.ol-dark-amber {
  outline-color: #805e00 !important;
}
.ol-dark-amber-active:active {
  outline-color: #805e00 !important;
}
.ol-dark-amber-hover:hover {
  outline-color: #805e00 !important;
}
.ol-dark-amber-focus:focus {
  outline-color: #805e00 !important;
}
.ol-dark-yellow {
  outline-color: #bca826 !important;
}
.ol-dark-yellow-active:active {
  outline-color: #bca826 !important;
}
.ol-dark-yellow-hover:hover {
  outline-color: #bca826 !important;
}
.ol-dark-yellow-focus:focus {
  outline-color: #bca826 !important;
}
.ol-dark-brown {
  outline-color: #42240f !important;
}
.ol-dark-brown-active:active {
  outline-color: #42240f !important;
}
.ol-dark-brown-hover:hover {
  outline-color: #42240f !important;
}
.ol-dark-brown-focus:focus {
  outline-color: #42240f !important;
}
.ol-dark-olive {
  outline-color: #3d3d00 !important;
}
.ol-dark-olive-active:active {
  outline-color: #3d3d00 !important;
}
.ol-dark-olive-hover:hover {
  outline-color: #3d3d00 !important;
}
.ol-dark-olive-focus:focus {
  outline-color: #3d3d00 !important;
}
.ol-dark-steel {
  outline-color: #2e3841 !important;
}
.ol-dark-steel-active:active {
  outline-color: #2e3841 !important;
}
.ol-dark-steel-hover:hover {
  outline-color: #2e3841 !important;
}
.ol-dark-steel-focus:focus {
  outline-color: #2e3841 !important;
}
.ol-dark-mauve {
  outline-color: #705680 !important;
}
.ol-dark-mauve-active:active {
  outline-color: #705680 !important;
}
.ol-dark-mauve-hover:hover {
  outline-color: #705680 !important;
}
.ol-dark-mauve-focus:focus {
  outline-color: #705680 !important;
}
.ol-dark-taupe {
  outline-color: #261e18 !important;
}
.ol-dark-taupe-active:active {
  outline-color: #261e18 !important;
}
.ol-dark-taupe-hover:hover {
  outline-color: #261e18 !important;
}
.ol-dark-taupe-focus:focus {
  outline-color: #261e18 !important;
}
.ol-dark-gray {
  outline-color: #515151 !important;
}
.ol-dark-gray-active:active {
  outline-color: #515151 !important;
}
.ol-dark-gray-hover:hover {
  outline-color: #515151 !important;
}
.ol-dark-gray-focus:focus {
  outline-color: #515151 !important;
}
.ol-dark-gray-blue {
  outline-color: #36464e !important;
}
.ol-dark-gray-blue-active:active {
  outline-color: #36464e !important;
}
.ol-dark-gray-blue-hover:hover {
  outline-color: #36464e !important;
}
.ol-dark-gray-blue-focus:focus {
  outline-color: #36464e !important;
}
.ol-dark-gray-mouse {
  outline-color: #2e3c42 !important;
}
.ol-dark-gray-mouse-active:active {
  outline-color: #2e3c42 !important;
}
.ol-dark-gray-mouse-hover:hover {
  outline-color: #2e3c42 !important;
}
.ol-dark-gray-mouse-focus:focus {
  outline-color: #2e3c42 !important;
}
.ol-dark-champagne {
  outline-color: #7c7364 !important;
}
.ol-dark-champagne-active:active {
  outline-color: #7c7364 !important;
}
.ol-dark-champagne-hover:hover {
  outline-color: #7c7364 !important;
}
.ol-dark-champagne-focus:focus {
  outline-color: #7c7364 !important;
}
.ol-dark-khaki {
  outline-color: #6a6142 !important;
}
.ol-dark-khaki-active:active {
  outline-color: #6a6142 !important;
}
.ol-dark-khaki-hover:hover {
  outline-color: #6a6142 !important;
}
.ol-dark-khaki-focus:focus {
  outline-color: #6a6142 !important;
}
.ol-dark-charcoal {
  outline-color: #202020 !important;
}
.ol-dark-charcoal-active:active {
  outline-color: #202020 !important;
}
.ol-dark-charcoal-hover:hover {
  outline-color: #202020 !important;
}
.ol-dark-charcoal-focus:focus {
  outline-color: #202020 !important;
}
.ol-dark-bronze {
  outline-color: #693c13 !important;
}
.ol-dark-bronze-active:active {
  outline-color: #693c13 !important;
}
.ol-dark-bronze-hover:hover {
  outline-color: #693c13 !important;
}
.ol-dark-bronze-focus:focus {
  outline-color: #693c13 !important;
}
.ol-dark-windstorm {
  outline-color: #304462 !important;
}
.ol-dark-windstorm-active:active {
  outline-color: #304462 !important;
}
.ol-dark-windstorm-hover:hover {
  outline-color: #304462 !important;
}
.ol-dark-windstorm-focus:focus {
  outline-color: #304462 !important;
}
.ol-dark-nude {
  outline-color: #7c6c5d !important;
}
.ol-dark-nude-active:active {
  outline-color: #7c6c5d !important;
}
.ol-dark-nude-hover:hover {
  outline-color: #7c6c5d !important;
}
.ol-dark-nude-focus:focus {
  outline-color: #7c6c5d !important;
}
.ol-dark-terracotta {
  outline-color: #712516 !important;
}
.ol-dark-terracotta-active:active {
  outline-color: #712516 !important;
}
.ol-dark-terracotta-hover:hover {
  outline-color: #712516 !important;
}
.ol-dark-terracotta-focus:focus {
  outline-color: #712516 !important;
}
.ol-dark-coral {
  outline-color: #804028 !important;
}
.ol-dark-coral-active:active {
  outline-color: #804028 !important;
}
.ol-dark-coral-hover:hover {
  outline-color: #804028 !important;
}
.ol-dark-coral-focus:focus {
  outline-color: #804028 !important;
}
.ol-dark-army {
  outline-color: #2a2f14 !important;
}
.ol-dark-army-active:active {
  outline-color: #2a2f14 !important;
}
.ol-dark-army-hover:hover {
  outline-color: #2a2f14 !important;
}
.ol-dark-army-focus:focus {
  outline-color: #2a2f14 !important;
}
.ol-dark-seashell {
  outline-color: #bfa89a !important;
}
.ol-dark-seashell-active:active {
  outline-color: #bfa89a !important;
}
.ol-dark-seashell-hover:hover {
  outline-color: #bfa89a !important;
}
.ol-dark-seashell-focus:focus {
  outline-color: #bfa89a !important;
}
.ol-dark-sand {
  outline-color: #8f8975 !important;
}
.ol-dark-sand-active:active {
  outline-color: #8f8975 !important;
}
.ol-dark-sand-hover:hover {
  outline-color: #8f8975 !important;
}
.ol-dark-sand-focus:focus {
  outline-color: #8f8975 !important;
}
.ol-sat-lime {
  outline-color: #7dba4a !important;
}
.ol-sat-lime-active:active {
  outline-color: #7dba4a !important;
}
.ol-sat-lime-hover:hover {
  outline-color: #7dba4a !important;
}
.ol-sat-lime-focus:focus {
  outline-color: #7dba4a !important;
}
.ol-sat-green {
  outline-color: #008f00 !important;
}
.ol-sat-green-active:active {
  outline-color: #008f00 !important;
}
.ol-sat-green-hover:hover {
  outline-color: #008f00 !important;
}
.ol-sat-green-focus:focus {
  outline-color: #008f00 !important;
}
.ol-sat-emerald {
  outline-color: #3ca15d !important;
}
.ol-sat-emerald-active:active {
  outline-color: #3ca15d !important;
}
.ol-sat-emerald-hover:hover {
  outline-color: #3ca15d !important;
}
.ol-sat-emerald-focus:focus {
  outline-color: #3ca15d !important;
}
.ol-sat-blue {
  outline-color: #1f43ae !important;
}
.ol-sat-blue-active:active {
  outline-color: #1f43ae !important;
}
.ol-sat-blue-hover:hover {
  outline-color: #1f43ae !important;
}
.ol-sat-blue-focus:focus {
  outline-color: #1f43ae !important;
}
.ol-sat-teal {
  outline-color: #008a8a !important;
}
.ol-sat-teal-active:active {
  outline-color: #008a8a !important;
}
.ol-sat-teal-hover:hover {
  outline-color: #008a8a !important;
}
.ol-sat-teal-focus:focus {
  outline-color: #008a8a !important;
}
.ol-sat-cyan {
  outline-color: #659db6 !important;
}
.ol-sat-cyan-active:active {
  outline-color: #659db6 !important;
}
.ol-sat-cyan-hover:hover {
  outline-color: #659db6 !important;
}
.ol-sat-cyan-focus:focus {
  outline-color: #659db6 !important;
}
.ol-sat-cobalt {
  outline-color: #003391 !important;
}
.ol-sat-cobalt-active:active {
  outline-color: #003391 !important;
}
.ol-sat-cobalt-hover:hover {
  outline-color: #003391 !important;
}
.ol-sat-cobalt-focus:focus {
  outline-color: #003391 !important;
}
.ol-sat-indigo {
  outline-color: #430080 !important;
}
.ol-sat-indigo-active:active {
  outline-color: #430080 !important;
}
.ol-sat-indigo-hover:hover {
  outline-color: #430080 !important;
}
.ol-sat-indigo-focus:focus {
  outline-color: #430080 !important;
}
.ol-sat-almost {
  outline-color: #4e18c1 !important;
}
.ol-sat-almost-active:active {
  outline-color: #4e18c1 !important;
}
.ol-sat-almost-hover:hover {
  outline-color: #4e18c1 !important;
}
.ol-sat-almost-focus:focus {
  outline-color: #4e18c1 !important;
}
.ol-sat-violet {
  outline-color: #b65fb6 !important;
}
.ol-sat-violet-active:active {
  outline-color: #b65fb6 !important;
}
.ol-sat-violet-hover:hover {
  outline-color: #b65fb6 !important;
}
.ol-sat-violet-focus:focus {
  outline-color: #b65fb6 !important;
}
.ol-sat-pink {
  outline-color: #cc7296 !important;
}
.ol-sat-pink-active:active {
  outline-color: #cc7296 !important;
}
.ol-sat-pink-hover:hover {
  outline-color: #cc7296 !important;
}
.ol-sat-pink-focus:focus {
  outline-color: #cc7296 !important;
}
.ol-sat-magenta {
  outline-color: #c500c5 !important;
}
.ol-sat-magenta-active:active {
  outline-color: #c500c5 !important;
}
.ol-sat-magenta-hover:hover {
  outline-color: #c500c5 !important;
}
.ol-sat-magenta-focus:focus {
  outline-color: #c500c5 !important;
}
.ol-sat-crimson {
  outline-color: #980824 !important;
}
.ol-sat-crimson-active:active {
  outline-color: #980824 !important;
}
.ol-sat-crimson-hover:hover {
  outline-color: #980824 !important;
}
.ol-sat-crimson-focus:focus {
  outline-color: #980824 !important;
}
.ol-sat-red {
  outline-color: #b80000 !important;
}
.ol-sat-red-active:active {
  outline-color: #b80000 !important;
}
.ol-sat-red-hover:hover {
  outline-color: #b80000 !important;
}
.ol-sat-red-focus:focus {
  outline-color: #b80000 !important;
}
.ol-sat-clown {
  outline-color: #d64f48 !important;
}
.ol-sat-clown-active:active {
  outline-color: #d64f48 !important;
}
.ol-sat-clown-hover:hover {
  outline-color: #d64f48 !important;
}
.ol-sat-clown-focus:focus {
  outline-color: #d64f48 !important;
}
.ol-sat-orange {
  outline-color: #bc7700 !important;
}
.ol-sat-orange-active:active {
  outline-color: #bc7700 !important;
}
.ol-sat-orange-hover:hover {
  outline-color: #bc7700 !important;
}
.ol-sat-orange-focus:focus {
  outline-color: #bc7700 !important;
}
.ol-sat-amber {
  outline-color: #d19b00 !important;
}
.ol-sat-amber-active:active {
  outline-color: #d19b00 !important;
}
.ol-sat-amber-hover:hover {
  outline-color: #d19b00 !important;
}
.ol-sat-amber-focus:focus {
  outline-color: #d19b00 !important;
}
.ol-sat-yellow {
  outline-color: #e4ce43 !important;
}
.ol-sat-yellow-active:active {
  outline-color: #e4ce43 !important;
}
.ol-sat-yellow-hover:hover {
  outline-color: #e4ce43 !important;
}
.ol-sat-yellow-focus:focus {
  outline-color: #e4ce43 !important;
}
.ol-sat-brown {
  outline-color: #884b20 !important;
}
.ol-sat-brown-active:active {
  outline-color: #884b20 !important;
}
.ol-sat-brown-hover:hover {
  outline-color: #884b20 !important;
}
.ol-sat-brown-focus:focus {
  outline-color: #884b20 !important;
}
.ol-sat-olive {
  outline-color: #838300 !important;
}
.ol-sat-olive-active:active {
  outline-color: #838300 !important;
}
.ol-sat-olive-hover:hover {
  outline-color: #838300 !important;
}
.ol-sat-olive-focus:focus {
  outline-color: #838300 !important;
}
.ol-sat-steel {
  outline-color: #5c7081 !important;
}
.ol-sat-steel-active:active {
  outline-color: #5c7081 !important;
}
.ol-sat-steel-hover:hover {
  outline-color: #5c7081 !important;
}
.ol-sat-steel-focus:focus {
  outline-color: #5c7081 !important;
}
.ol-sat-mauve {
  outline-color: #a982c1 !important;
}
.ol-sat-mauve-active:active {
  outline-color: #a982c1 !important;
}
.ol-sat-mauve-hover:hover {
  outline-color: #a982c1 !important;
}
.ol-sat-mauve-focus:focus {
  outline-color: #a982c1 !important;
}
.ol-sat-taupe {
  outline-color: #5e4a3c !important;
}
.ol-sat-taupe-active:active {
  outline-color: #5e4a3c !important;
}
.ol-sat-taupe-hover:hover {
  outline-color: #5e4a3c !important;
}
.ol-sat-taupe-focus:focus {
  outline-color: #5e4a3c !important;
}
.ol-sat-gray {
  outline-color: #9c9c9c !important;
}
.ol-sat-gray-active:active {
  outline-color: #9c9c9c !important;
}
.ol-sat-gray-hover:hover {
  outline-color: #9c9c9c !important;
}
.ol-sat-gray-focus:focus {
  outline-color: #9c9c9c !important;
}
.ol-sat-gray-blue {
  outline-color: #5f7a88 !important;
}
.ol-sat-gray-blue-active:active {
  outline-color: #5f7a88 !important;
}
.ol-sat-gray-blue-hover:hover {
  outline-color: #5f7a88 !important;
}
.ol-sat-gray-blue-focus:focus {
  outline-color: #5f7a88 !important;
}
.ol-sat-gray-mouse {
  outline-color: #3f535c !important;
}
.ol-sat-gray-mouse-active:active {
  outline-color: #3f535c !important;
}
.ol-sat-gray-mouse-hover:hover {
  outline-color: #3f535c !important;
}
.ol-sat-gray-mouse-focus:focus {
  outline-color: #3f535c !important;
}
.ol-sat-champagne {
  outline-color: #ccbca5 !important;
}
.ol-sat-champagne-active:active {
  outline-color: #ccbca5 !important;
}
.ol-sat-champagne-hover:hover {
  outline-color: #ccbca5 !important;
}
.ol-sat-champagne-focus:focus {
  outline-color: #ccbca5 !important;
}
.ol-sat-khaki {
  outline-color: #aa9c6b !important;
}
.ol-sat-khaki-active:active {
  outline-color: #aa9c6b !important;
}
.ol-sat-khaki-hover:hover {
  outline-color: #aa9c6b !important;
}
.ol-sat-khaki-focus:focus {
  outline-color: #aa9c6b !important;
}
.ol-sat-charcoal {
  outline-color: #5e5e5e !important;
}
.ol-sat-charcoal-active:active {
  outline-color: #5e5e5e !important;
}
.ol-sat-charcoal-hover:hover {
  outline-color: #5e5e5e !important;
}
.ol-sat-charcoal-focus:focus {
  outline-color: #5e5e5e !important;
}
.ol-sat-bronze {
  outline-color: #aa621f !important;
}
.ol-sat-bronze-active:active {
  outline-color: #aa621f !important;
}
.ol-sat-bronze-hover:hover {
  outline-color: #aa621f !important;
}
.ol-sat-bronze-focus:focus {
  outline-color: #aa621f !important;
}
.ol-sat-windstorm {
  outline-color: #5071a3 !important;
}
.ol-sat-windstorm-active:active {
  outline-color: #5071a3 !important;
}
.ol-sat-windstorm-hover:hover {
  outline-color: #5071a3 !important;
}
.ol-sat-windstorm-focus:focus {
  outline-color: #5071a3 !important;
}
.ol-sat-nude {
  outline-color: #baa28b !important;
}
.ol-sat-nude-active:active {
  outline-color: #baa28b !important;
}
.ol-sat-nude-hover:hover {
  outline-color: #baa28b !important;
}
.ol-sat-nude-focus:focus {
  outline-color: #baa28b !important;
}
.ol-sat-terracotta {
  outline-color: #af3a23 !important;
}
.ol-sat-terracotta-active:active {
  outline-color: #af3a23 !important;
}
.ol-sat-terracotta-hover:hover {
  outline-color: #af3a23 !important;
}
.ol-sat-terracotta-focus:focus {
  outline-color: #af3a23 !important;
}
.ol-sat-coral {
  outline-color: #b65c39 !important;
}
.ol-sat-coral-active:active {
  outline-color: #b65c39 !important;
}
.ol-sat-coral-hover:hover {
  outline-color: #b65c39 !important;
}
.ol-sat-coral-focus:focus {
  outline-color: #b65c39 !important;
}
.ol-sat-army {
  outline-color: #647030 !important;
}
.ol-sat-army-active:active {
  outline-color: #647030 !important;
}
.ol-sat-army-hover:hover {
  outline-color: #647030 !important;
}
.ol-sat-army-focus:focus {
  outline-color: #647030 !important;
}
.ol-sat-seashell {
  outline-color: #e1cbbd !important;
}
.ol-sat-seashell-active:active {
  outline-color: #e1cbbd !important;
}
.ol-sat-seashell-hover:hover {
  outline-color: #e1cbbd !important;
}
.ol-sat-seashell-focus:focus {
  outline-color: #e1cbbd !important;
}
.ol-sat-sand {
  outline-color: #d1c5a1 !important;
}
.ol-sat-sand-active:active {
  outline-color: #d1c5a1 !important;
}
.ol-sat-sand-hover:hover {
  outline-color: #d1c5a1 !important;
}
.ol-sat-sand-focus:focus {
  outline-color: #d1c5a1 !important;
}

/* source/colors-css/pseudo.less */
.before-bg-black::before {
  background: #000000 !important;
}
.before-fg-black::before {
  color: #000000 !important;
}
.before-bd-black::before {
  border-color: #000000 !important;
}
.after-bg-black::after {
  background: #000000 !important;
}
.after-fg-black::after {
  color: #000000 !important;
}
.after-bd-black::after {
  border-color: #000000 !important;
}
.before-bg-white::before {
  background: #ffffff !important;
}
.before-fg-white::before {
  color: #ffffff !important;
}
.before-bd-white::before {
  border-color: #ffffff !important;
}
.after-bg-white::after {
  background: #ffffff !important;
}
.after-fg-white::after {
  color: #ffffff !important;
}
.after-bd-white::after {
  border-color: #ffffff !important;
}
.before-bg-dark::before {
  background: #1d1d1d !important;
}
.before-fg-dark::before {
  color: #1d1d1d !important;
}
.before-bd-dark::before {
  border-color: #1d1d1d !important;
}
.after-bg-dark::after {
  background: #1d1d1d !important;
}
.after-fg-dark::after {
  color: #1d1d1d !important;
}
.after-bd-dark::after {
  border-color: #1d1d1d !important;
}
.before-bg-light::before {
  background: #f8f8f8 !important;
}
.before-fg-light::before {
  color: #f8f8f8 !important;
}
.before-bd-light::before {
  border-color: #f8f8f8 !important;
}
.after-bg-light::after {
  background: #f8f8f8 !important;
}
.after-fg-light::after {
  color: #f8f8f8 !important;
}
.after-bd-light::after {
  border-color: #f8f8f8 !important;
}
.before-bg-gray::before {
  background: #ccc !important;
}
.before-fg-gray::before {
  color: #ccc !important;
}
.before-bd-gray::before {
  border-color: #ccc !important;
}
.after-bg-gray::after {
  background: #ccc !important;
}
.after-fg-gray::after {
  color: #ccc !important;
}
.after-bd-gray::after {
  border-color: #ccc !important;
}
.before-bg-gray-blue::before {
  background: #6a89a7 !important;
}
.before-fg-gray-blue::before {
  color: #6a89a7 !important;
}
.before-bd-gray-blue::before {
  border-color: #6a89a7 !important;
}
.after-bg-gray-blue::after {
  background: #6a89a7 !important;
}
.after-fg-gray-blue::after {
  color: #6a89a7 !important;
}
.after-bd-gray-blue::after {
  border-color: #6a89a7 !important;
}
.before-bg-gray-white::before {
  background: #f5f5f5 !important;
}
.before-fg-gray-white::before {
  color: #f5f5f5 !important;
}
.before-bd-gray-white::before {
  border-color: #f5f5f5 !important;
}
.after-bg-gray-white::after {
  background: #f5f5f5 !important;
}
.after-fg-gray-white::after {
  color: #f5f5f5 !important;
}
.after-bd-gray-white::after {
  border-color: #f5f5f5 !important;
}
.before-bg-gray-mouse::before {
  background: #566b75 !important;
}
.before-fg-gray-mouse::before {
  color: #566b75 !important;
}
.before-bd-gray-mouse::before {
  border-color: #566b75 !important;
}
.after-bg-gray-mouse::after {
  background: #566b75 !important;
}
.after-fg-gray-mouse::after {
  color: #566b75 !important;
}
.after-bd-gray-mouse::after {
  border-color: #566b75 !important;
}
.before-bg-lime::before {
  background: #AEFD6C !important;
}
.before-fg-lime::before {
  color: #AEFD6C !important;
}
.before-bd-lime::before {
  border-color: #AEFD6C !important;
}
.after-bg-lime::after {
  background: #AEFD6C !important;
}
.after-fg-lime::after {
  color: #AEFD6C !important;
}
.after-bd-lime::after {
  border-color: #AEFD6C !important;
}
.before-bg-green::before {
  background: #00b500 !important;
}
.before-fg-green::before {
  color: #00b500 !important;
}
.before-bd-green::before {
  border-color: #00b500 !important;
}
.after-bg-green::after {
  background: #00b500 !important;
}
.after-fg-green::after {
  color: #00b500 !important;
}
.after-bd-green::after {
  border-color: #00b500 !important;
}
.before-bg-emerald::before {
  background: #50c878 !important;
}
.before-fg-emerald::before {
  color: #50c878 !important;
}
.before-bd-emerald::before {
  border-color: #50c878 !important;
}
.after-bg-emerald::after {
  background: #50c878 !important;
}
.after-fg-emerald::after {
  color: #50c878 !important;
}
.after-bd-emerald::after {
  border-color: #50c878 !important;
}
.before-bg-blue::before {
  background: #5e87ff !important;
}
.before-fg-blue::before {
  color: #5e87ff !important;
}
.before-bd-blue::before {
  border-color: #5e87ff !important;
}
.after-bg-blue::after {
  background: #5e87ff !important;
}
.after-fg-blue::after {
  color: #5e87ff !important;
}
.after-bd-blue::after {
  border-color: #5e87ff !important;
}
.before-bg-teal::before {
  background: #1ac5c5 !important;
}
.before-fg-teal::before {
  color: #1ac5c5 !important;
}
.before-bd-teal::before {
  border-color: #1ac5c5 !important;
}
.after-bg-teal::after {
  background: #1ac5c5 !important;
}
.after-fg-teal::after {
  color: #1ac5c5 !important;
}
.after-bd-teal::after {
  border-color: #1ac5c5 !important;
}
.before-bg-cyan::before {
  background: #94b6ff !important;
}
.before-fg-cyan::before {
  color: #94b6ff !important;
}
.before-bd-cyan::before {
  border-color: #94b6ff !important;
}
.after-bg-cyan::after {
  background: #94b6ff !important;
}
.after-fg-cyan::after {
  color: #94b6ff !important;
}
.after-bd-cyan::after {
  border-color: #94b6ff !important;
}
.before-bg-cobalt::before {
  background: #0047ab !important;
}
.before-fg-cobalt::before {
  color: #0047ab !important;
}
.before-bd-cobalt::before {
  border-color: #0047ab !important;
}
.after-bg-cobalt::after {
  background: #0047ab !important;
}
.after-fg-cobalt::after {
  color: #0047ab !important;
}
.after-bd-cobalt::after {
  border-color: #0047ab !important;
}
.before-bg-indigo::before {
  background: #6400a8 !important;
}
.before-fg-indigo::before {
  color: #6400a8 !important;
}
.before-bd-indigo::before {
  border-color: #6400a8 !important;
}
.after-bg-indigo::after {
  background: #6400a8 !important;
}
.after-fg-indigo::after {
  color: #6400a8 !important;
}
.after-bd-indigo::after {
  border-color: #6400a8 !important;
}
.before-bg-almost::before {
  background: #6a2ded !important;
}
.before-fg-almost::before {
  color: #6a2ded !important;
}
.before-bd-almost::before {
  border-color: #6a2ded !important;
}
.after-bg-almost::after {
  background: #6a2ded !important;
}
.after-fg-almost::after {
  color: #6a2ded !important;
}
.after-bd-almost::after {
  border-color: #6a2ded !important;
}
.before-bg-violet::before {
  background: #ee82ee !important;
}
.before-fg-violet::before {
  color: #ee82ee !important;
}
.before-bd-violet::before {
  border-color: #ee82ee !important;
}
.after-bg-violet::after {
  background: #ee82ee !important;
}
.after-fg-violet::after {
  color: #ee82ee !important;
}
.after-bd-violet::after {
  border-color: #ee82ee !important;
}
.before-bg-pink::before {
  background: #ffc0cb !important;
}
.before-fg-pink::before {
  color: #ffc0cb !important;
}
.before-bd-pink::before {
  border-color: #ffc0cb !important;
}
.after-bg-pink::after {
  background: #ffc0cb !important;
}
.after-fg-pink::after {
  color: #ffc0cb !important;
}
.after-bd-pink::after {
  border-color: #ffc0cb !important;
}
.before-bg-magenta::before {
  background: #ff00ff !important;
}
.before-fg-magenta::before {
  color: #ff00ff !important;
}
.before-bd-magenta::before {
  border-color: #ff00ff !important;
}
.after-bg-magenta::after {
  background: #ff00ff !important;
}
.after-fg-magenta::after {
  color: #ff00ff !important;
}
.after-bd-magenta::after {
  border-color: #ff00ff !important;
}
.before-bg-crimson::before {
  background: #df0e38 !important;
}
.before-fg-crimson::before {
  color: #df0e38 !important;
}
.before-bd-crimson::before {
  border-color: #df0e38 !important;
}
.after-bg-crimson::after {
  background: #df0e38 !important;
}
.after-fg-crimson::after {
  color: #df0e38 !important;
}
.after-bd-crimson::after {
  border-color: #df0e38 !important;
}
.before-bg-red::before {
  background: #ff0000 !important;
}
.before-fg-red::before {
  color: #ff0000 !important;
}
.before-bd-red::before {
  border-color: #ff0000 !important;
}
.after-bg-red::after {
  background: #ff0000 !important;
}
.after-fg-red::after {
  color: #ff0000 !important;
}
.after-bd-red::after {
  border-color: #ff0000 !important;
}
.before-bg-clown::before {
  background: #ff6d66 !important;
}
.before-fg-clown::before {
  color: #ff6d66 !important;
}
.before-bd-clown::before {
  border-color: #ff6d66 !important;
}
.after-bg-clown::after {
  background: #ff6d66 !important;
}
.after-fg-clown::after {
  color: #ff6d66 !important;
}
.after-bd-clown::after {
  border-color: #ff6d66 !important;
}
.before-bg-orange::before {
  background: #ffa500 !important;
}
.before-fg-orange::before {
  color: #ffa500 !important;
}
.before-bd-orange::before {
  border-color: #ffa500 !important;
}
.after-bg-orange::after {
  background: #ffa500 !important;
}
.after-fg-orange::after {
  color: #ffa500 !important;
}
.after-bd-orange::after {
  border-color: #ffa500 !important;
}
.before-bg-amber::before {
  background: #ffca2a !important;
}
.before-fg-amber::before {
  color: #ffca2a !important;
}
.before-bd-amber::before {
  border-color: #ffca2a !important;
}
.after-bg-amber::after {
  background: #ffca2a !important;
}
.after-fg-amber::after {
  color: #ffca2a !important;
}
.after-bd-amber::after {
  border-color: #ffca2a !important;
}
.before-bg-yellow::before {
  background: #ffe95e !important;
}
.before-fg-yellow::before {
  color: #ffe95e !important;
}
.before-bd-yellow::before {
  border-color: #ffe95e !important;
}
.after-bg-yellow::after {
  background: #ffe95e !important;
}
.after-fg-yellow::after {
  color: #ffe95e !important;
}
.after-bd-yellow::after {
  border-color: #ffe95e !important;
}
.before-bg-brown::before {
  background: #ca773c !important;
}
.before-fg-brown::before {
  color: #ca773c !important;
}
.before-bd-brown::before {
  border-color: #ca773c !important;
}
.after-bg-brown::after {
  background: #ca773c !important;
}
.after-fg-brown::after {
  color: #ca773c !important;
}
.after-bd-brown::after {
  border-color: #ca773c !important;
}
.before-bg-olive::before {
  background: #a1a100 !important;
}
.before-fg-olive::before {
  color: #a1a100 !important;
}
.before-bd-olive::before {
  border-color: #a1a100 !important;
}
.after-bg-olive::after {
  background: #a1a100 !important;
}
.after-fg-olive::after {
  color: #a1a100 !important;
}
.after-bd-olive::after {
  border-color: #a1a100 !important;
}
.before-bg-steel::before {
  background: #7b91a6 !important;
}
.before-fg-steel::before {
  color: #7b91a6 !important;
}
.before-bd-steel::before {
  border-color: #7b91a6 !important;
}
.after-bg-steel::after {
  background: #7b91a6 !important;
}
.after-fg-steel::after {
  color: #7b91a6 !important;
}
.after-bd-steel::after {
  border-color: #7b91a6 !important;
}
.before-bg-mauve::before {
  background: #e0afff !important;
}
.before-fg-mauve::before {
  color: #e0afff !important;
}
.before-bd-mauve::before {
  border-color: #e0afff !important;
}
.after-bg-mauve::after {
  background: #e0afff !important;
}
.after-fg-mauve::after {
  color: #e0afff !important;
}
.after-bd-mauve::after {
  border-color: #e0afff !important;
}
.before-bg-taupe::before {
  background: #977e67 !important;
}
.before-fg-taupe::before {
  color: #977e67 !important;
}
.before-bd-taupe::before {
  border-color: #977e67 !important;
}
.after-bg-taupe::after {
  background: #977e67 !important;
}
.after-fg-taupe::after {
  color: #977e67 !important;
}
.after-bd-taupe::after {
  border-color: #977e67 !important;
}
.before-bg-champagne::before {
  background: #f7e6ca !important;
}
.before-fg-champagne::before {
  color: #f7e6ca !important;
}
.before-bd-champagne::before {
  border-color: #f7e6ca !important;
}
.after-bg-champagne::after {
  background: #f7e6ca !important;
}
.after-fg-champagne::after {
  color: #f7e6ca !important;
}
.after-bd-champagne::after {
  border-color: #f7e6ca !important;
}
.before-bg-khaki::before {
  background: #d5c58a !important;
}
.before-fg-khaki::before {
  color: #d5c58a !important;
}
.before-bd-khaki::before {
  border-color: #d5c58a !important;
}
.after-bg-khaki::after {
  background: #d5c58a !important;
}
.after-fg-khaki::after {
  color: #d5c58a !important;
}
.after-bd-khaki::after {
  border-color: #d5c58a !important;
}
.before-bg-charcoal::before {
  background: #989898 !important;
}
.before-fg-charcoal::before {
  color: #989898 !important;
}
.before-bd-charcoal::before {
  border-color: #989898 !important;
}
.after-bg-charcoal::after {
  background: #989898 !important;
}
.after-fg-charcoal::after {
  color: #989898 !important;
}
.after-bd-charcoal::after {
  border-color: #989898 !important;
}
.before-bg-bronze::before {
  background: #e48d3e !important;
}
.before-fg-bronze::before {
  color: #e48d3e !important;
}
.before-bd-bronze::before {
  border-color: #e48d3e !important;
}
.after-bg-bronze::after {
  background: #e48d3e !important;
}
.after-fg-bronze::after {
  color: #e48d3e !important;
}
.after-bd-bronze::after {
  border-color: #e48d3e !important;
}
.before-bg-windstorm::before {
  background: #799ed6 !important;
}
.before-fg-windstorm::before {
  color: #799ed6 !important;
}
.before-bd-windstorm::before {
  border-color: #799ed6 !important;
}
.after-bg-windstorm::after {
  background: #799ed6 !important;
}
.after-fg-windstorm::after {
  color: #799ed6 !important;
}
.after-bd-windstorm::after {
  border-color: #799ed6 !important;
}
.before-bg-nude::before {
  background: #f7d9bc !important;
}
.before-fg-nude::before {
  color: #f7d9bc !important;
}
.before-bd-nude::before {
  border-color: #f7d9bc !important;
}
.after-bg-nude::after {
  background: #f7d9bc !important;
}
.after-fg-nude::after {
  color: #f7d9bc !important;
}
.after-bd-nude::after {
  border-color: #f7d9bc !important;
}
.before-bg-terracotta::before {
  background: #e35336 !important;
}
.before-fg-terracotta::before {
  color: #e35336 !important;
}
.before-bd-terracotta::before {
  border-color: #e35336 !important;
}
.after-bg-terracotta::after {
  background: #e35336 !important;
}
.after-fg-terracotta::after {
  color: #e35336 !important;
}
.after-bd-terracotta::after {
  border-color: #e35336 !important;
}
.before-bg-coral::before {
  background: #ff8559 !important;
}
.before-fg-coral::before {
  color: #ff8559 !important;
}
.before-bd-coral::before {
  border-color: #ff8559 !important;
}
.after-bg-coral::after {
  background: #ff8559 !important;
}
.after-fg-coral::after {
  color: #ff8559 !important;
}
.after-bd-coral::after {
  border-color: #ff8559 !important;
}
.before-bg-army::before {
  background: #5d6532 !important;
}
.before-fg-army::before {
  color: #5d6532 !important;
}
.before-bd-army::before {
  border-color: #5d6532 !important;
}
.after-bg-army::after {
  background: #5d6532 !important;
}
.after-fg-army::after {
  color: #5d6532 !important;
}
.after-bd-army::after {
  border-color: #5d6532 !important;
}
.before-bg-seashell::before {
  background: #fff1e7 !important;
}
.before-fg-seashell::before {
  color: #fff1e7 !important;
}
.before-bd-seashell::before {
  border-color: #fff1e7 !important;
}
.after-bg-seashell::after {
  background: #fff1e7 !important;
}
.after-fg-seashell::after {
  color: #fff1e7 !important;
}
.after-bd-seashell::after {
  border-color: #fff1e7 !important;
}
.before-bg-sand::before {
  background: #f1e0ae !important;
}
.before-fg-sand::before {
  color: #f1e0ae !important;
}
.before-bd-sand::before {
  border-color: #f1e0ae !important;
}
.after-bg-sand::after {
  background: #f1e0ae !important;
}
.after-fg-sand::after {
  color: #f1e0ae !important;
}
.after-bd-sand::after {
  border-color: #f1e0ae !important;
}
.before-bg-light-lime::before {
  background: #f2ffe7 !important;
}
.before-fg-light-lime::before {
  color: #f2ffe7 !important;
}
.before-bd-light-lime::before {
  border-color: #f2ffe7 !important;
}
.after-bg-light-lime::after {
  background: #f2ffe7 !important;
}
.after-fg-light-lime::after {
  color: #f2ffe7 !important;
}
.after-bd-light-lime::after {
  border-color: #f2ffe7 !important;
}
.before-bg-light-green::before {
  background: #e7f6e6 !important;
}
.before-fg-light-green::before {
  color: #e7f6e6 !important;
}
.before-bd-light-green::before {
  border-color: #e7f6e6 !important;
}
.after-bg-light-green::after {
  background: #e7f6e6 !important;
}
.after-fg-light-green::after {
  color: #e7f6e6 !important;
}
.after-bd-light-green::after {
  border-color: #e7f6e6 !important;
}
.before-bg-light-emerald::before {
  background: #d1e6cc !important;
}
.before-fg-light-emerald::before {
  color: #d1e6cc !important;
}
.before-bd-light-emerald::before {
  border-color: #d1e6cc !important;
}
.after-bg-light-emerald::after {
  background: #d1e6cc !important;
}
.after-fg-light-emerald::after {
  color: #d1e6cc !important;
}
.after-bd-light-emerald::after {
  border-color: #d1e6cc !important;
}
.before-bg-light-blue::before {
  background: #e7eaff !important;
}
.before-fg-light-blue::before {
  color: #e7eaff !important;
}
.before-bd-light-blue::before {
  border-color: #e7eaff !important;
}
.after-bg-light-blue::after {
  background: #e7eaff !important;
}
.after-fg-light-blue::after {
  color: #e7eaff !important;
}
.after-bd-light-blue::after {
  border-color: #e7eaff !important;
}
.before-bg-light-teal::before {
  background: #e1f2f3 !important;
}
.before-fg-light-teal::before {
  color: #e1f2f3 !important;
}
.before-bd-light-teal::before {
  border-color: #e1f2f3 !important;
}
.after-bg-light-teal::after {
  background: #e1f2f3 !important;
}
.after-fg-light-teal::after {
  color: #e1f2f3 !important;
}
.after-bd-light-teal::after {
  border-color: #e1f2f3 !important;
}
.before-bg-light-cyan::before {
  background: #e3edff !important;
}
.before-fg-light-cyan::before {
  color: #e3edff !important;
}
.before-bd-light-cyan::before {
  border-color: #e3edff !important;
}
.after-bg-light-cyan::after {
  background: #e3edff !important;
}
.after-fg-light-cyan::after {
  color: #e3edff !important;
}
.after-bd-light-cyan::after {
  border-color: #e3edff !important;
}
.before-bg-light-cobalt::before {
  background: #d1ecff !important;
}
.before-fg-light-cobalt::before {
  color: #d1ecff !important;
}
.before-bd-light-cobalt::before {
  border-color: #d1ecff !important;
}
.after-bg-light-cobalt::after {
  background: #d1ecff !important;
}
.after-fg-light-cobalt::after {
  color: #d1ecff !important;
}
.after-bd-light-cobalt::after {
  border-color: #d1ecff !important;
}
.before-bg-light-indigo::before {
  background: #f3dcf3 !important;
}
.before-fg-light-indigo::before {
  color: #f3dcf3 !important;
}
.before-bd-light-indigo::before {
  border-color: #f3dcf3 !important;
}
.after-bg-light-indigo::after {
  background: #f3dcf3 !important;
}
.after-fg-light-indigo::after {
  color: #f3dcf3 !important;
}
.after-bd-light-indigo::after {
  border-color: #f3dcf3 !important;
}
.before-bg-light-almost::before {
  background: #eee5ff !important;
}
.before-fg-light-almost::before {
  color: #eee5ff !important;
}
.before-bd-light-almost::before {
  border-color: #eee5ff !important;
}
.after-bg-light-almost::after {
  background: #eee5ff !important;
}
.after-fg-light-almost::after {
  color: #eee5ff !important;
}
.after-bd-light-almost::after {
  border-color: #eee5ff !important;
}
.before-bg-light-violet::before {
  background: #fce2fb !important;
}
.before-fg-light-violet::before {
  color: #fce2fb !important;
}
.before-bd-light-violet::before {
  border-color: #fce2fb !important;
}
.after-bg-light-violet::after {
  background: #fce2fb !important;
}
.after-fg-light-violet::after {
  color: #fce2fb !important;
}
.after-bd-light-violet::after {
  border-color: #fce2fb !important;
}
.before-bg-light-pink::before {
  background: #ffeef1 !important;
}
.before-fg-light-pink::before {
  color: #ffeef1 !important;
}
.before-bd-light-pink::before {
  border-color: #ffeef1 !important;
}
.after-bg-light-pink::after {
  background: #ffeef1 !important;
}
.after-fg-light-pink::after {
  color: #ffeef1 !important;
}
.after-bd-light-pink::after {
  border-color: #ffeef1 !important;
}
.before-bg-light-magenta::before {
  background: #ffe2ff !important;
}
.before-fg-light-magenta::before {
  color: #ffe2ff !important;
}
.before-bd-light-magenta::before {
  border-color: #ffe2ff !important;
}
.after-bg-light-magenta::after {
  background: #ffe2ff !important;
}
.after-fg-light-magenta::after {
  color: #ffe2ff !important;
}
.after-bd-light-magenta::after {
  border-color: #ffe2ff !important;
}
.before-bg-light-crimson::before {
  background: #ffd1da !important;
}
.before-fg-light-crimson::before {
  color: #ffd1da !important;
}
.before-bd-light-crimson::before {
  border-color: #ffd1da !important;
}
.after-bg-light-crimson::after {
  background: #ffd1da !important;
}
.after-fg-light-crimson::after {
  color: #ffd1da !important;
}
.after-bd-light-crimson::after {
  border-color: #ffd1da !important;
}
.before-bg-light-red::before {
  background: #ffe1e1 !important;
}
.before-fg-light-red::before {
  color: #ffe1e1 !important;
}
.before-bd-light-red::before {
  border-color: #ffe1e1 !important;
}
.after-bg-light-red::after {
  background: #ffe1e1 !important;
}
.after-fg-light-red::after {
  color: #ffe1e1 !important;
}
.after-bd-light-red::after {
  border-color: #ffe1e1 !important;
}
.before-bg-light-clown::before {
  background: #ffdede !important;
}
.before-fg-light-clown::before {
  color: #ffdede !important;
}
.before-bd-light-clown::before {
  border-color: #ffdede !important;
}
.after-bg-light-clown::after {
  background: #ffdede !important;
}
.after-fg-light-clown::after {
  color: #ffdede !important;
}
.after-bd-light-clown::after {
  border-color: #ffdede !important;
}
.before-bg-light-orange::before {
  background: #fff3de !important;
}
.before-fg-light-orange::before {
  color: #fff3de !important;
}
.before-bd-light-orange::before {
  border-color: #fff3de !important;
}
.after-bg-light-orange::after {
  background: #fff3de !important;
}
.after-fg-light-orange::after {
  color: #fff3de !important;
}
.after-bd-light-orange::after {
  border-color: #fff3de !important;
}
.before-bg-light-amber::before {
  background: #fff8e1 !important;
}
.before-fg-light-amber::before {
  color: #fff8e1 !important;
}
.before-bd-light-amber::before {
  border-color: #fff8e1 !important;
}
.after-bg-light-amber::after {
  background: #fff8e1 !important;
}
.after-fg-light-amber::after {
  color: #fff8e1 !important;
}
.after-bd-light-amber::after {
  border-color: #fff8e1 !important;
}
.before-bg-light-yellow::before {
  background: #ffffc6 !important;
}
.before-fg-light-yellow::before {
  color: #ffffc6 !important;
}
.before-bd-light-yellow::before {
  border-color: #ffffc6 !important;
}
.after-bg-light-yellow::after {
  background: #ffffc6 !important;
}
.after-fg-light-yellow::after {
  color: #ffffc6 !important;
}
.after-bd-light-yellow::after {
  border-color: #ffffc6 !important;
}
.before-bg-light-brown::before {
  background: #ffeed9 !important;
}
.before-fg-light-brown::before {
  color: #ffeed9 !important;
}
.before-bd-light-brown::before {
  border-color: #ffeed9 !important;
}
.after-bg-light-brown::after {
  background: #ffeed9 !important;
}
.after-fg-light-brown::after {
  color: #ffeed9 !important;
}
.after-bd-light-brown::after {
  border-color: #ffeed9 !important;
}
.before-bg-light-olive::before {
  background: #f8fde7 !important;
}
.before-fg-light-olive::before {
  color: #f8fde7 !important;
}
.before-bd-light-olive::before {
  border-color: #f8fde7 !important;
}
.after-bg-light-olive::after {
  background: #f8fde7 !important;
}
.after-fg-light-olive::after {
  color: #f8fde7 !important;
}
.after-bd-light-olive::after {
  border-color: #f8fde7 !important;
}
.before-bg-light-steel::before {
  background: #edeeee !important;
}
.before-fg-light-steel::before {
  color: #edeeee !important;
}
.before-bd-light-steel::before {
  border-color: #edeeee !important;
}
.after-bg-light-steel::after {
  background: #edeeee !important;
}
.after-fg-light-steel::after {
  color: #edeeee !important;
}
.after-bd-light-steel::after {
  border-color: #edeeee !important;
}
.before-bg-light-mauve::before {
  background: #f7ecfe !important;
}
.before-fg-light-mauve::before {
  color: #f7ecfe !important;
}
.before-bd-light-mauve::before {
  border-color: #f7ecfe !important;
}
.after-bg-light-mauve::after {
  background: #f7ecfe !important;
}
.after-fg-light-mauve::after {
  color: #f7ecfe !important;
}
.after-bd-light-mauve::after {
  border-color: #f7ecfe !important;
}
.before-bg-light-taupe::before {
  background: #eadccf !important;
}
.before-fg-light-taupe::before {
  color: #eadccf !important;
}
.before-bd-light-taupe::before {
  border-color: #eadccf !important;
}
.after-bg-light-taupe::after {
  background: #eadccf !important;
}
.after-fg-light-taupe::after {
  color: #eadccf !important;
}
.after-bd-light-taupe::after {
  border-color: #eadccf !important;
}
.before-bg-light-gray::before {
  background: #f4f4f4 !important;
}
.before-fg-light-gray::before {
  color: #f4f4f4 !important;
}
.before-bd-light-gray::before {
  border-color: #f4f4f4 !important;
}
.after-bg-light-gray::after {
  background: #f4f4f4 !important;
}
.after-fg-light-gray::after {
  color: #f4f4f4 !important;
}
.after-bd-light-gray::after {
  border-color: #f4f4f4 !important;
}
.before-bg-light-gray-blue::before {
  background: #bee2f4 !important;
}
.before-fg-light-gray-blue::before {
  color: #bee2f4 !important;
}
.before-bd-light-gray-blue::before {
  border-color: #bee2f4 !important;
}
.after-bg-light-gray-blue::after {
  background: #bee2f4 !important;
}
.after-fg-light-gray-blue::after {
  color: #bee2f4 !important;
}
.after-bd-light-gray-blue::after {
  border-color: #bee2f4 !important;
}
.before-bg-light-gray-mouse::before {
  background: #8ab4c8 !important;
}
.before-fg-light-gray-mouse::before {
  color: #8ab4c8 !important;
}
.before-bd-light-gray-mouse::before {
  border-color: #8ab4c8 !important;
}
.after-bg-light-gray-mouse::after {
  background: #8ab4c8 !important;
}
.after-fg-light-gray-mouse::after {
  color: #8ab4c8 !important;
}
.after-bd-light-gray-mouse::after {
  border-color: #8ab4c8 !important;
}
.before-bg-light-champagne::before {
  background: #fff9f2 !important;
}
.before-fg-light-champagne::before {
  color: #fff9f2 !important;
}
.before-bd-light-champagne::before {
  border-color: #fff9f2 !important;
}
.after-bg-light-champagne::after {
  background: #fff9f2 !important;
}
.after-fg-light-champagne::after {
  color: #fff9f2 !important;
}
.after-bd-light-champagne::after {
  border-color: #fff9f2 !important;
}
.before-bg-light-khaki::before {
  background: #f6f1dd !important;
}
.before-fg-light-khaki::before {
  color: #f6f1dd !important;
}
.before-bd-light-khaki::before {
  border-color: #f6f1dd !important;
}
.after-bg-light-khaki::after {
  background: #f6f1dd !important;
}
.after-fg-light-khaki::after {
  color: #f6f1dd !important;
}
.after-bd-light-khaki::after {
  border-color: #f6f1dd !important;
}
.before-bg-light-charcoal::before {
  background: #e8e8e8 !important;
}
.before-fg-light-charcoal::before {
  color: #e8e8e8 !important;
}
.before-bd-light-charcoal::before {
  border-color: #e8e8e8 !important;
}
.after-bg-light-charcoal::after {
  background: #e8e8e8 !important;
}
.after-fg-light-charcoal::after {
  color: #e8e8e8 !important;
}
.after-bd-light-charcoal::after {
  border-color: #e8e8e8 !important;
}
.before-bg-light-bronze::before {
  background: #ffecdc !important;
}
.before-fg-light-bronze::before {
  color: #ffecdc !important;
}
.before-bd-light-bronze::before {
  border-color: #ffecdc !important;
}
.after-bg-light-bronze::after {
  background: #ffecdc !important;
}
.after-fg-light-bronze::after {
  color: #ffecdc !important;
}
.after-bd-light-bronze::after {
  border-color: #ffecdc !important;
}
.before-bg-light-windstorm::before {
  background: #e6ebf5 !important;
}
.before-fg-light-windstorm::before {
  color: #e6ebf5 !important;
}
.before-bd-light-windstorm::before {
  border-color: #e6ebf5 !important;
}
.after-bg-light-windstorm::after {
  background: #e6ebf5 !important;
}
.after-fg-light-windstorm::after {
  color: #e6ebf5 !important;
}
.after-bd-light-windstorm::after {
  border-color: #e6ebf5 !important;
}
.before-bg-light-nude::before {
  background: #fcf0e4 !important;
}
.before-fg-light-nude::before {
  color: #fcf0e4 !important;
}
.before-bd-light-nude::before {
  border-color: #fcf0e4 !important;
}
.after-bg-light-nude::after {
  background: #fcf0e4 !important;
}
.after-fg-light-nude::after {
  color: #fcf0e4 !important;
}
.after-bd-light-nude::after {
  border-color: #fcf0e4 !important;
}
.before-bg-light-terracotta::before {
  background: #ffe5df !important;
}
.before-fg-light-terracotta::before {
  color: #ffe5df !important;
}
.before-bd-light-terracotta::before {
  border-color: #ffe5df !important;
}
.after-bg-light-terracotta::after {
  background: #ffe5df !important;
}
.after-fg-light-terracotta::after {
  color: #ffe5df !important;
}
.after-bd-light-terracotta::after {
  border-color: #ffe5df !important;
}
.before-bg-light-coral::before {
  background: #ffd8c8 !important;
}
.before-fg-light-coral::before {
  color: #ffd8c8 !important;
}
.before-bd-light-coral::before {
  border-color: #ffd8c8 !important;
}
.after-bg-light-coral::after {
  background: #ffd8c8 !important;
}
.after-fg-light-coral::after {
  color: #ffd8c8 !important;
}
.after-bd-light-coral::after {
  border-color: #ffd8c8 !important;
}
.before-bg-light-army::before {
  background: #eceacb !important;
}
.before-fg-light-army::before {
  color: #eceacb !important;
}
.before-bd-light-army::before {
  border-color: #eceacb !important;
}
.after-bg-light-army::after {
  background: #eceacb !important;
}
.after-fg-light-army::after {
  color: #eceacb !important;
}
.after-bd-light-army::after {
  border-color: #eceacb !important;
}
.before-bg-light-seashell::before {
  background: #fff9f8 !important;
}
.before-fg-light-seashell::before {
  color: #fff9f8 !important;
}
.before-bd-light-seashell::before {
  border-color: #fff9f8 !important;
}
.after-bg-light-seashell::after {
  background: #fff9f8 !important;
}
.after-fg-light-seashell::after {
  color: #fff9f8 !important;
}
.after-bd-light-seashell::after {
  border-color: #fff9f8 !important;
}
.before-bg-light-sand::before {
  background: #f8f3e0 !important;
}
.before-fg-light-sand::before {
  color: #f8f3e0 !important;
}
.before-bd-light-sand::before {
  border-color: #f8f3e0 !important;
}
.after-bg-light-sand::after {
  background: #f8f3e0 !important;
}
.after-fg-light-sand::after {
  color: #f8f3e0 !important;
}
.after-bd-light-sand::after {
  border-color: #f8f3e0 !important;
}
.before-bg-dark-lime::before {
  background: #557f32 !important;
}
.before-fg-dark-lime::before {
  color: #557f32 !important;
}
.before-bd-dark-lime::before {
  border-color: #557f32 !important;
}
.after-bg-dark-lime::after {
  background: #557f32 !important;
}
.after-fg-dark-lime::after {
  color: #557f32 !important;
}
.after-bd-dark-lime::after {
  border-color: #557f32 !important;
}
.before-bg-dark-green::before {
  background: #003d00 !important;
}
.before-fg-dark-green::before {
  color: #003d00 !important;
}
.before-bd-dark-green::before {
  border-color: #003d00 !important;
}
.after-bg-dark-green::after {
  background: #003d00 !important;
}
.after-fg-dark-green::after {
  color: #003d00 !important;
}
.after-bd-dark-green::after {
  border-color: #003d00 !important;
}
.before-bg-dark-emerald::before {
  background: #246339 !important;
}
.before-fg-dark-emerald::before {
  color: #246339 !important;
}
.before-bd-dark-emerald::before {
  border-color: #246339 !important;
}
.after-bg-dark-emerald::after {
  background: #246339 !important;
}
.after-fg-dark-emerald::after {
  color: #246339 !important;
}
.after-bd-dark-emerald::after {
  border-color: #246339 !important;
}
.before-bg-dark-blue::before {
  background: #132a6f !important;
}
.before-fg-dark-blue::before {
  color: #132a6f !important;
}
.before-bd-dark-blue::before {
  border-color: #132a6f !important;
}
.after-bg-dark-blue::after {
  background: #132a6f !important;
}
.after-fg-dark-blue::after {
  color: #132a6f !important;
}
.after-bd-dark-blue::after {
  border-color: #132a6f !important;
}
.before-bg-dark-teal::before {
  background: #014848 !important;
}
.before-fg-dark-teal::before {
  color: #014848 !important;
}
.before-bd-dark-teal::before {
  border-color: #014848 !important;
}
.after-bg-dark-teal::after {
  background: #014848 !important;
}
.after-fg-dark-teal::after {
  color: #014848 !important;
}
.after-bd-dark-teal::after {
  border-color: #014848 !important;
}
.before-bg-dark-cyan::before {
  background: #456c7e !important;
}
.before-fg-dark-cyan::before {
  color: #456c7e !important;
}
.before-bd-dark-cyan::before {
  border-color: #456c7e !important;
}
.after-bg-dark-cyan::after {
  background: #456c7e !important;
}
.after-fg-dark-cyan::after {
  color: #456c7e !important;
}
.after-bd-dark-cyan::after {
  border-color: #456c7e !important;
}
.before-bg-dark-cobalt::before {
  background: #001f54 !important;
}
.before-fg-dark-cobalt::before {
  color: #001f54 !important;
}
.before-bd-dark-cobalt::before {
  border-color: #001f54 !important;
}
.after-bg-dark-cobalt::after {
  background: #001f54 !important;
}
.after-fg-dark-cobalt::after {
  color: #001f54 !important;
}
.after-bd-dark-cobalt::after {
  border-color: #001f54 !important;
}
.before-bg-dark-indigo::before {
  background: #21003e !important;
}
.before-fg-dark-indigo::before {
  color: #21003e !important;
}
.before-bd-dark-indigo::before {
  border-color: #21003e !important;
}
.after-bg-dark-indigo::after {
  background: #21003e !important;
}
.after-fg-dark-indigo::after {
  color: #21003e !important;
}
.after-bd-dark-indigo::after {
  border-color: #21003e !important;
}
.before-bg-dark-almost::before {
  background: #2f0687 !important;
}
.before-fg-dark-almost::before {
  color: #2f0687 !important;
}
.before-bd-dark-almost::before {
  border-color: #2f0687 !important;
}
.after-bg-dark-almost::after {
  background: #2f0687 !important;
}
.after-fg-dark-almost::after {
  color: #2f0687 !important;
}
.after-bd-dark-almost::after {
  border-color: #2f0687 !important;
}
.before-bg-dark-violet::before {
  background: #773e77 !important;
}
.before-fg-dark-violet::before {
  color: #773e77 !important;
}
.before-bd-dark-violet::before {
  border-color: #773e77 !important;
}
.after-bg-dark-violet::after {
  background: #773e77 !important;
}
.after-fg-dark-violet::after {
  color: #773e77 !important;
}
.after-bd-dark-violet::after {
  border-color: #773e77 !important;
}
.before-bg-dark-pink::before {
  background: #805f65 !important;
}
.before-fg-dark-pink::before {
  color: #805f65 !important;
}
.before-bd-dark-pink::before {
  border-color: #805f65 !important;
}
.after-bg-dark-pink::after {
  background: #805f65 !important;
}
.after-fg-dark-pink::after {
  color: #805f65 !important;
}
.after-bd-dark-pink::after {
  border-color: #805f65 !important;
}
.before-bg-dark-magenta::before {
  background: #800080 !important;
}
.before-fg-dark-magenta::before {
  color: #800080 !important;
}
.before-bd-dark-magenta::before {
  border-color: #800080 !important;
}
.after-bg-dark-magenta::after {
  background: #800080 !important;
}
.after-fg-dark-magenta::after {
  color: #800080 !important;
}
.after-bd-dark-magenta::after {
  border-color: #800080 !important;
}
.before-bg-dark-crimson::before {
  background: #6e0519 !important;
}
.before-fg-dark-crimson::before {
  color: #6e0519 !important;
}
.before-bd-dark-crimson::before {
  border-color: #6e0519 !important;
}
.after-bg-dark-crimson::after {
  background: #6e0519 !important;
}
.after-fg-dark-crimson::after {
  color: #6e0519 !important;
}
.after-bd-dark-crimson::after {
  border-color: #6e0519 !important;
}
.before-bg-dark-red::before {
  background: #800000 !important;
}
.before-fg-dark-red::before {
  color: #800000 !important;
}
.before-bd-dark-red::before {
  border-color: #800000 !important;
}
.after-bg-dark-red::after {
  background: #800000 !important;
}
.after-fg-dark-red::after {
  color: #800000 !important;
}
.after-bd-dark-red::after {
  border-color: #800000 !important;
}
.before-bg-dark-clown::before {
  background: #aa2824 !important;
}
.before-fg-dark-clown::before {
  color: #aa2824 !important;
}
.before-bd-dark-clown::before {
  border-color: #aa2824 !important;
}
.after-bg-dark-clown::after {
  background: #aa2824 !important;
}
.after-fg-dark-clown::after {
  color: #aa2824 !important;
}
.after-bd-dark-clown::after {
  border-color: #aa2824 !important;
}
.before-bg-dark-orange::before {
  background: #805100 !important;
}
.before-fg-dark-orange::before {
  color: #805100 !important;
}
.before-bd-dark-orange::before {
  border-color: #805100 !important;
}
.after-bg-dark-orange::after {
  background: #805100 !important;
}
.after-fg-dark-orange::after {
  color: #805100 !important;
}
.after-bd-dark-orange::after {
  border-color: #805100 !important;
}
.before-bg-dark-amber::before {
  background: #805e00 !important;
}
.before-fg-dark-amber::before {
  color: #805e00 !important;
}
.before-bd-dark-amber::before {
  border-color: #805e00 !important;
}
.after-bg-dark-amber::after {
  background: #805e00 !important;
}
.after-fg-dark-amber::after {
  color: #805e00 !important;
}
.after-bd-dark-amber::after {
  border-color: #805e00 !important;
}
.before-bg-dark-yellow::before {
  background: #bca826 !important;
}
.before-fg-dark-yellow::before {
  color: #bca826 !important;
}
.before-bd-dark-yellow::before {
  border-color: #bca826 !important;
}
.after-bg-dark-yellow::after {
  background: #bca826 !important;
}
.after-fg-dark-yellow::after {
  color: #bca826 !important;
}
.after-bd-dark-yellow::after {
  border-color: #bca826 !important;
}
.before-bg-dark-brown::before {
  background: #42240f !important;
}
.before-fg-dark-brown::before {
  color: #42240f !important;
}
.before-bd-dark-brown::before {
  border-color: #42240f !important;
}
.after-bg-dark-brown::after {
  background: #42240f !important;
}
.after-fg-dark-brown::after {
  color: #42240f !important;
}
.after-bd-dark-brown::after {
  border-color: #42240f !important;
}
.before-bg-dark-olive::before {
  background: #3d3d00 !important;
}
.before-fg-dark-olive::before {
  color: #3d3d00 !important;
}
.before-bd-dark-olive::before {
  border-color: #3d3d00 !important;
}
.after-bg-dark-olive::after {
  background: #3d3d00 !important;
}
.after-fg-dark-olive::after {
  color: #3d3d00 !important;
}
.after-bd-dark-olive::after {
  border-color: #3d3d00 !important;
}
.before-bg-dark-steel::before {
  background: #2e3841 !important;
}
.before-fg-dark-steel::before {
  color: #2e3841 !important;
}
.before-bd-dark-steel::before {
  border-color: #2e3841 !important;
}
.after-bg-dark-steel::after {
  background: #2e3841 !important;
}
.after-fg-dark-steel::after {
  color: #2e3841 !important;
}
.after-bd-dark-steel::after {
  border-color: #2e3841 !important;
}
.before-bg-dark-mauve::before {
  background: #705680 !important;
}
.before-fg-dark-mauve::before {
  color: #705680 !important;
}
.before-bd-dark-mauve::before {
  border-color: #705680 !important;
}
.after-bg-dark-mauve::after {
  background: #705680 !important;
}
.after-fg-dark-mauve::after {
  color: #705680 !important;
}
.after-bd-dark-mauve::after {
  border-color: #705680 !important;
}
.before-bg-dark-taupe::before {
  background: #261e18 !important;
}
.before-fg-dark-taupe::before {
  color: #261e18 !important;
}
.before-bd-dark-taupe::before {
  border-color: #261e18 !important;
}
.after-bg-dark-taupe::after {
  background: #261e18 !important;
}
.after-fg-dark-taupe::after {
  color: #261e18 !important;
}
.after-bd-dark-taupe::after {
  border-color: #261e18 !important;
}
.before-bg-dark-gray::before {
  background: #515151 !important;
}
.before-fg-dark-gray::before {
  color: #515151 !important;
}
.before-bd-dark-gray::before {
  border-color: #515151 !important;
}
.after-bg-dark-gray::after {
  background: #515151 !important;
}
.after-fg-dark-gray::after {
  color: #515151 !important;
}
.after-bd-dark-gray::after {
  border-color: #515151 !important;
}
.before-bg-dark-gray-blue::before {
  background: #36464e !important;
}
.before-fg-dark-gray-blue::before {
  color: #36464e !important;
}
.before-bd-dark-gray-blue::before {
  border-color: #36464e !important;
}
.after-bg-dark-gray-blue::after {
  background: #36464e !important;
}
.after-fg-dark-gray-blue::after {
  color: #36464e !important;
}
.after-bd-dark-gray-blue::after {
  border-color: #36464e !important;
}
.before-bg-dark-gray-mouse::before {
  background: #2e3c42 !important;
}
.before-fg-dark-gray-mouse::before {
  color: #2e3c42 !important;
}
.before-bd-dark-gray-mouse::before {
  border-color: #2e3c42 !important;
}
.after-bg-dark-gray-mouse::after {
  background: #2e3c42 !important;
}
.after-fg-dark-gray-mouse::after {
  color: #2e3c42 !important;
}
.after-bd-dark-gray-mouse::after {
  border-color: #2e3c42 !important;
}
.before-bg-dark-champagne::before {
  background: #7c7364 !important;
}
.before-fg-dark-champagne::before {
  color: #7c7364 !important;
}
.before-bd-dark-champagne::before {
  border-color: #7c7364 !important;
}
.after-bg-dark-champagne::after {
  background: #7c7364 !important;
}
.after-fg-dark-champagne::after {
  color: #7c7364 !important;
}
.after-bd-dark-champagne::after {
  border-color: #7c7364 !important;
}
.before-bg-dark-khaki::before {
  background: #6a6142 !important;
}
.before-fg-dark-khaki::before {
  color: #6a6142 !important;
}
.before-bd-dark-khaki::before {
  border-color: #6a6142 !important;
}
.after-bg-dark-khaki::after {
  background: #6a6142 !important;
}
.after-fg-dark-khaki::after {
  color: #6a6142 !important;
}
.after-bd-dark-khaki::after {
  border-color: #6a6142 !important;
}
.before-bg-dark-charcoal::before {
  background: #202020 !important;
}
.before-fg-dark-charcoal::before {
  color: #202020 !important;
}
.before-bd-dark-charcoal::before {
  border-color: #202020 !important;
}
.after-bg-dark-charcoal::after {
  background: #202020 !important;
}
.after-fg-dark-charcoal::after {
  color: #202020 !important;
}
.after-bd-dark-charcoal::after {
  border-color: #202020 !important;
}
.before-bg-dark-bronze::before {
  background: #693c13 !important;
}
.before-fg-dark-bronze::before {
  color: #693c13 !important;
}
.before-bd-dark-bronze::before {
  border-color: #693c13 !important;
}
.after-bg-dark-bronze::after {
  background: #693c13 !important;
}
.after-fg-dark-bronze::after {
  color: #693c13 !important;
}
.after-bd-dark-bronze::after {
  border-color: #693c13 !important;
}
.before-bg-dark-windstorm::before {
  background: #304462 !important;
}
.before-fg-dark-windstorm::before {
  color: #304462 !important;
}
.before-bd-dark-windstorm::before {
  border-color: #304462 !important;
}
.after-bg-dark-windstorm::after {
  background: #304462 !important;
}
.after-fg-dark-windstorm::after {
  color: #304462 !important;
}
.after-bd-dark-windstorm::after {
  border-color: #304462 !important;
}
.before-bg-dark-nude::before {
  background: #7c6c5d !important;
}
.before-fg-dark-nude::before {
  color: #7c6c5d !important;
}
.before-bd-dark-nude::before {
  border-color: #7c6c5d !important;
}
.after-bg-dark-nude::after {
  background: #7c6c5d !important;
}
.after-fg-dark-nude::after {
  color: #7c6c5d !important;
}
.after-bd-dark-nude::after {
  border-color: #7c6c5d !important;
}
.before-bg-dark-terracotta::before {
  background: #712516 !important;
}
.before-fg-dark-terracotta::before {
  color: #712516 !important;
}
.before-bd-dark-terracotta::before {
  border-color: #712516 !important;
}
.after-bg-dark-terracotta::after {
  background: #712516 !important;
}
.after-fg-dark-terracotta::after {
  color: #712516 !important;
}
.after-bd-dark-terracotta::after {
  border-color: #712516 !important;
}
.before-bg-dark-coral::before {
  background: #804028 !important;
}
.before-fg-dark-coral::before {
  color: #804028 !important;
}
.before-bd-dark-coral::before {
  border-color: #804028 !important;
}
.after-bg-dark-coral::after {
  background: #804028 !important;
}
.after-fg-dark-coral::after {
  color: #804028 !important;
}
.after-bd-dark-coral::after {
  border-color: #804028 !important;
}
.before-bg-dark-army::before {
  background: #2a2f14 !important;
}
.before-fg-dark-army::before {
  color: #2a2f14 !important;
}
.before-bd-dark-army::before {
  border-color: #2a2f14 !important;
}
.after-bg-dark-army::after {
  background: #2a2f14 !important;
}
.after-fg-dark-army::after {
  color: #2a2f14 !important;
}
.after-bd-dark-army::after {
  border-color: #2a2f14 !important;
}
.before-bg-dark-seashell::before {
  background: #bfa89a !important;
}
.before-fg-dark-seashell::before {
  color: #bfa89a !important;
}
.before-bd-dark-seashell::before {
  border-color: #bfa89a !important;
}
.after-bg-dark-seashell::after {
  background: #bfa89a !important;
}
.after-fg-dark-seashell::after {
  color: #bfa89a !important;
}
.after-bd-dark-seashell::after {
  border-color: #bfa89a !important;
}
.before-bg-dark-sand::before {
  background: #8f8975 !important;
}
.before-fg-dark-sand::before {
  color: #8f8975 !important;
}
.before-bd-dark-sand::before {
  border-color: #8f8975 !important;
}
.after-bg-dark-sand::after {
  background: #8f8975 !important;
}
.after-fg-dark-sand::after {
  color: #8f8975 !important;
}
.after-bd-dark-sand::after {
  border-color: #8f8975 !important;
}
.before-bg-sat-lime::before {
  background: #7dba4a !important;
}
.before-fg-sat-lime::before {
  color: #7dba4a !important;
}
.before-bd-sat-lime::before {
  border-color: #7dba4a !important;
}
.after-bg-sat-lime::after {
  background: #7dba4a !important;
}
.after-fg-sat-lime::after {
  color: #7dba4a !important;
}
.after-bd-sat-lime::after {
  border-color: #7dba4a !important;
}
.before-bg-sat-green::before {
  background: #008f00 !important;
}
.before-fg-sat-green::before {
  color: #008f00 !important;
}
.before-bd-sat-green::before {
  border-color: #008f00 !important;
}
.after-bg-sat-green::after {
  background: #008f00 !important;
}
.after-fg-sat-green::after {
  color: #008f00 !important;
}
.after-bd-sat-green::after {
  border-color: #008f00 !important;
}
.before-bg-sat-emerald::before {
  background: #3ca15d !important;
}
.before-fg-sat-emerald::before {
  color: #3ca15d !important;
}
.before-bd-sat-emerald::before {
  border-color: #3ca15d !important;
}
.after-bg-sat-emerald::after {
  background: #3ca15d !important;
}
.after-fg-sat-emerald::after {
  color: #3ca15d !important;
}
.after-bd-sat-emerald::after {
  border-color: #3ca15d !important;
}
.before-bg-sat-blue::before {
  background: #1f43ae !important;
}
.before-fg-sat-blue::before {
  color: #1f43ae !important;
}
.before-bd-sat-blue::before {
  border-color: #1f43ae !important;
}
.after-bg-sat-blue::after {
  background: #1f43ae !important;
}
.after-fg-sat-blue::after {
  color: #1f43ae !important;
}
.after-bd-sat-blue::after {
  border-color: #1f43ae !important;
}
.before-bg-sat-teal::before {
  background: #008a8a !important;
}
.before-fg-sat-teal::before {
  color: #008a8a !important;
}
.before-bd-sat-teal::before {
  border-color: #008a8a !important;
}
.after-bg-sat-teal::after {
  background: #008a8a !important;
}
.after-fg-sat-teal::after {
  color: #008a8a !important;
}
.after-bd-sat-teal::after {
  border-color: #008a8a !important;
}
.before-bg-sat-cyan::before {
  background: #659db6 !important;
}
.before-fg-sat-cyan::before {
  color: #659db6 !important;
}
.before-bd-sat-cyan::before {
  border-color: #659db6 !important;
}
.after-bg-sat-cyan::after {
  background: #659db6 !important;
}
.after-fg-sat-cyan::after {
  color: #659db6 !important;
}
.after-bd-sat-cyan::after {
  border-color: #659db6 !important;
}
.before-bg-sat-cobalt::before {
  background: #003391 !important;
}
.before-fg-sat-cobalt::before {
  color: #003391 !important;
}
.before-bd-sat-cobalt::before {
  border-color: #003391 !important;
}
.after-bg-sat-cobalt::after {
  background: #003391 !important;
}
.after-fg-sat-cobalt::after {
  color: #003391 !important;
}
.after-bd-sat-cobalt::after {
  border-color: #003391 !important;
}
.before-bg-sat-indigo::before {
  background: #430080 !important;
}
.before-fg-sat-indigo::before {
  color: #430080 !important;
}
.before-bd-sat-indigo::before {
  border-color: #430080 !important;
}
.after-bg-sat-indigo::after {
  background: #430080 !important;
}
.after-fg-sat-indigo::after {
  color: #430080 !important;
}
.after-bd-sat-indigo::after {
  border-color: #430080 !important;
}
.before-bg-sat-almost::before {
  background: #4e18c1 !important;
}
.before-fg-sat-almost::before {
  color: #4e18c1 !important;
}
.before-bd-sat-almost::before {
  border-color: #4e18c1 !important;
}
.after-bg-sat-almost::after {
  background: #4e18c1 !important;
}
.after-fg-sat-almost::after {
  color: #4e18c1 !important;
}
.after-bd-sat-almost::after {
  border-color: #4e18c1 !important;
}
.before-bg-sat-violet::before {
  background: #b65fb6 !important;
}
.before-fg-sat-violet::before {
  color: #b65fb6 !important;
}
.before-bd-sat-violet::before {
  border-color: #b65fb6 !important;
}
.after-bg-sat-violet::after {
  background: #b65fb6 !important;
}
.after-fg-sat-violet::after {
  color: #b65fb6 !important;
}
.after-bd-sat-violet::after {
  border-color: #b65fb6 !important;
}
.before-bg-sat-pink::before {
  background: #cc7296 !important;
}
.before-fg-sat-pink::before {
  color: #cc7296 !important;
}
.before-bd-sat-pink::before {
  border-color: #cc7296 !important;
}
.after-bg-sat-pink::after {
  background: #cc7296 !important;
}
.after-fg-sat-pink::after {
  color: #cc7296 !important;
}
.after-bd-sat-pink::after {
  border-color: #cc7296 !important;
}
.before-bg-sat-magenta::before {
  background: #c500c5 !important;
}
.before-fg-sat-magenta::before {
  color: #c500c5 !important;
}
.before-bd-sat-magenta::before {
  border-color: #c500c5 !important;
}
.after-bg-sat-magenta::after {
  background: #c500c5 !important;
}
.after-fg-sat-magenta::after {
  color: #c500c5 !important;
}
.after-bd-sat-magenta::after {
  border-color: #c500c5 !important;
}
.before-bg-sat-crimson::before {
  background: #980824 !important;
}
.before-fg-sat-crimson::before {
  color: #980824 !important;
}
.before-bd-sat-crimson::before {
  border-color: #980824 !important;
}
.after-bg-sat-crimson::after {
  background: #980824 !important;
}
.after-fg-sat-crimson::after {
  color: #980824 !important;
}
.after-bd-sat-crimson::after {
  border-color: #980824 !important;
}
.before-bg-sat-red::before {
  background: #b80000 !important;
}
.before-fg-sat-red::before {
  color: #b80000 !important;
}
.before-bd-sat-red::before {
  border-color: #b80000 !important;
}
.after-bg-sat-red::after {
  background: #b80000 !important;
}
.after-fg-sat-red::after {
  color: #b80000 !important;
}
.after-bd-sat-red::after {
  border-color: #b80000 !important;
}
.before-bg-sat-clown::before {
  background: #d64f48 !important;
}
.before-fg-sat-clown::before {
  color: #d64f48 !important;
}
.before-bd-sat-clown::before {
  border-color: #d64f48 !important;
}
.after-bg-sat-clown::after {
  background: #d64f48 !important;
}
.after-fg-sat-clown::after {
  color: #d64f48 !important;
}
.after-bd-sat-clown::after {
  border-color: #d64f48 !important;
}
.before-bg-sat-orange::before {
  background: #bc7700 !important;
}
.before-fg-sat-orange::before {
  color: #bc7700 !important;
}
.before-bd-sat-orange::before {
  border-color: #bc7700 !important;
}
.after-bg-sat-orange::after {
  background: #bc7700 !important;
}
.after-fg-sat-orange::after {
  color: #bc7700 !important;
}
.after-bd-sat-orange::after {
  border-color: #bc7700 !important;
}
.before-bg-sat-amber::before {
  background: #d19b00 !important;
}
.before-fg-sat-amber::before {
  color: #d19b00 !important;
}
.before-bd-sat-amber::before {
  border-color: #d19b00 !important;
}
.after-bg-sat-amber::after {
  background: #d19b00 !important;
}
.after-fg-sat-amber::after {
  color: #d19b00 !important;
}
.after-bd-sat-amber::after {
  border-color: #d19b00 !important;
}
.before-bg-sat-yellow::before {
  background: #e4ce43 !important;
}
.before-fg-sat-yellow::before {
  color: #e4ce43 !important;
}
.before-bd-sat-yellow::before {
  border-color: #e4ce43 !important;
}
.after-bg-sat-yellow::after {
  background: #e4ce43 !important;
}
.after-fg-sat-yellow::after {
  color: #e4ce43 !important;
}
.after-bd-sat-yellow::after {
  border-color: #e4ce43 !important;
}
.before-bg-sat-brown::before {
  background: #884b20 !important;
}
.before-fg-sat-brown::before {
  color: #884b20 !important;
}
.before-bd-sat-brown::before {
  border-color: #884b20 !important;
}
.after-bg-sat-brown::after {
  background: #884b20 !important;
}
.after-fg-sat-brown::after {
  color: #884b20 !important;
}
.after-bd-sat-brown::after {
  border-color: #884b20 !important;
}
.before-bg-sat-olive::before {
  background: #838300 !important;
}
.before-fg-sat-olive::before {
  color: #838300 !important;
}
.before-bd-sat-olive::before {
  border-color: #838300 !important;
}
.after-bg-sat-olive::after {
  background: #838300 !important;
}
.after-fg-sat-olive::after {
  color: #838300 !important;
}
.after-bd-sat-olive::after {
  border-color: #838300 !important;
}
.before-bg-sat-steel::before {
  background: #5c7081 !important;
}
.before-fg-sat-steel::before {
  color: #5c7081 !important;
}
.before-bd-sat-steel::before {
  border-color: #5c7081 !important;
}
.after-bg-sat-steel::after {
  background: #5c7081 !important;
}
.after-fg-sat-steel::after {
  color: #5c7081 !important;
}
.after-bd-sat-steel::after {
  border-color: #5c7081 !important;
}
.before-bg-sat-mauve::before {
  background: #a982c1 !important;
}
.before-fg-sat-mauve::before {
  color: #a982c1 !important;
}
.before-bd-sat-mauve::before {
  border-color: #a982c1 !important;
}
.after-bg-sat-mauve::after {
  background: #a982c1 !important;
}
.after-fg-sat-mauve::after {
  color: #a982c1 !important;
}
.after-bd-sat-mauve::after {
  border-color: #a982c1 !important;
}
.before-bg-sat-taupe::before {
  background: #5e4a3c !important;
}
.before-fg-sat-taupe::before {
  color: #5e4a3c !important;
}
.before-bd-sat-taupe::before {
  border-color: #5e4a3c !important;
}
.after-bg-sat-taupe::after {
  background: #5e4a3c !important;
}
.after-fg-sat-taupe::after {
  color: #5e4a3c !important;
}
.after-bd-sat-taupe::after {
  border-color: #5e4a3c !important;
}
.before-bg-sat-gray::before {
  background: #9c9c9c !important;
}
.before-fg-sat-gray::before {
  color: #9c9c9c !important;
}
.before-bd-sat-gray::before {
  border-color: #9c9c9c !important;
}
.after-bg-sat-gray::after {
  background: #9c9c9c !important;
}
.after-fg-sat-gray::after {
  color: #9c9c9c !important;
}
.after-bd-sat-gray::after {
  border-color: #9c9c9c !important;
}
.before-bg-sat-gray-blue::before {
  background: #5f7a88 !important;
}
.before-fg-sat-gray-blue::before {
  color: #5f7a88 !important;
}
.before-bd-sat-gray-blue::before {
  border-color: #5f7a88 !important;
}
.after-bg-sat-gray-blue::after {
  background: #5f7a88 !important;
}
.after-fg-sat-gray-blue::after {
  color: #5f7a88 !important;
}
.after-bd-sat-gray-blue::after {
  border-color: #5f7a88 !important;
}
.before-bg-sat-gray-mouse::before {
  background: #3f535c !important;
}
.before-fg-sat-gray-mouse::before {
  color: #3f535c !important;
}
.before-bd-sat-gray-mouse::before {
  border-color: #3f535c !important;
}
.after-bg-sat-gray-mouse::after {
  background: #3f535c !important;
}
.after-fg-sat-gray-mouse::after {
  color: #3f535c !important;
}
.after-bd-sat-gray-mouse::after {
  border-color: #3f535c !important;
}
.before-bg-sat-champagne::before {
  background: #ccbca5 !important;
}
.before-fg-sat-champagne::before {
  color: #ccbca5 !important;
}
.before-bd-sat-champagne::before {
  border-color: #ccbca5 !important;
}
.after-bg-sat-champagne::after {
  background: #ccbca5 !important;
}
.after-fg-sat-champagne::after {
  color: #ccbca5 !important;
}
.after-bd-sat-champagne::after {
  border-color: #ccbca5 !important;
}
.before-bg-sat-khaki::before {
  background: #aa9c6b !important;
}
.before-fg-sat-khaki::before {
  color: #aa9c6b !important;
}
.before-bd-sat-khaki::before {
  border-color: #aa9c6b !important;
}
.after-bg-sat-khaki::after {
  background: #aa9c6b !important;
}
.after-fg-sat-khaki::after {
  color: #aa9c6b !important;
}
.after-bd-sat-khaki::after {
  border-color: #aa9c6b !important;
}
.before-bg-sat-charcoal::before {
  background: #5e5e5e !important;
}
.before-fg-sat-charcoal::before {
  color: #5e5e5e !important;
}
.before-bd-sat-charcoal::before {
  border-color: #5e5e5e !important;
}
.after-bg-sat-charcoal::after {
  background: #5e5e5e !important;
}
.after-fg-sat-charcoal::after {
  color: #5e5e5e !important;
}
.after-bd-sat-charcoal::after {
  border-color: #5e5e5e !important;
}
.before-bg-sat-bronze::before {
  background: #aa621f !important;
}
.before-fg-sat-bronze::before {
  color: #aa621f !important;
}
.before-bd-sat-bronze::before {
  border-color: #aa621f !important;
}
.after-bg-sat-bronze::after {
  background: #aa621f !important;
}
.after-fg-sat-bronze::after {
  color: #aa621f !important;
}
.after-bd-sat-bronze::after {
  border-color: #aa621f !important;
}
.before-bg-sat-windstorm::before {
  background: #5071a3 !important;
}
.before-fg-sat-windstorm::before {
  color: #5071a3 !important;
}
.before-bd-sat-windstorm::before {
  border-color: #5071a3 !important;
}
.after-bg-sat-windstorm::after {
  background: #5071a3 !important;
}
.after-fg-sat-windstorm::after {
  color: #5071a3 !important;
}
.after-bd-sat-windstorm::after {
  border-color: #5071a3 !important;
}
.before-bg-sat-nude::before {
  background: #baa28b !important;
}
.before-fg-sat-nude::before {
  color: #baa28b !important;
}
.before-bd-sat-nude::before {
  border-color: #baa28b !important;
}
.after-bg-sat-nude::after {
  background: #baa28b !important;
}
.after-fg-sat-nude::after {
  color: #baa28b !important;
}
.after-bd-sat-nude::after {
  border-color: #baa28b !important;
}
.before-bg-sat-terracotta::before {
  background: #af3a23 !important;
}
.before-fg-sat-terracotta::before {
  color: #af3a23 !important;
}
.before-bd-sat-terracotta::before {
  border-color: #af3a23 !important;
}
.after-bg-sat-terracotta::after {
  background: #af3a23 !important;
}
.after-fg-sat-terracotta::after {
  color: #af3a23 !important;
}
.after-bd-sat-terracotta::after {
  border-color: #af3a23 !important;
}
.before-bg-sat-coral::before {
  background: #b65c39 !important;
}
.before-fg-sat-coral::before {
  color: #b65c39 !important;
}
.before-bd-sat-coral::before {
  border-color: #b65c39 !important;
}
.after-bg-sat-coral::after {
  background: #b65c39 !important;
}
.after-fg-sat-coral::after {
  color: #b65c39 !important;
}
.after-bd-sat-coral::after {
  border-color: #b65c39 !important;
}
.before-bg-sat-army::before {
  background: #647030 !important;
}
.before-fg-sat-army::before {
  color: #647030 !important;
}
.before-bd-sat-army::before {
  border-color: #647030 !important;
}
.after-bg-sat-army::after {
  background: #647030 !important;
}
.after-fg-sat-army::after {
  color: #647030 !important;
}
.after-bd-sat-army::after {
  border-color: #647030 !important;
}
.before-bg-sat-seashell::before {
  background: #e1cbbd !important;
}
.before-fg-sat-seashell::before {
  color: #e1cbbd !important;
}
.before-bd-sat-seashell::before {
  border-color: #e1cbbd !important;
}
.after-bg-sat-seashell::after {
  background: #e1cbbd !important;
}
.after-fg-sat-seashell::after {
  color: #e1cbbd !important;
}
.after-bd-sat-seashell::after {
  border-color: #e1cbbd !important;
}
.before-bg-sat-sand::before {
  background: #d1c5a1 !important;
}
.before-fg-sat-sand::before {
  color: #d1c5a1 !important;
}
.before-bd-sat-sand::before {
  border-color: #d1c5a1 !important;
}
.after-bg-sat-sand::after {
  background: #d1c5a1 !important;
}
.after-fg-sat-sand::after {
  color: #d1c5a1 !important;
}
.after-bd-sat-sand::after {
  border-color: #d1c5a1 !important;
}

/* source/colors-css/ribbed.less */
:root {
  --ribbed-size: 20px;
  --ribbed-alpha: 0.15;
  --ribbed-angle: -45deg;
}
.ribbed-black {
  background:
    #000000 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-white {
  background:
    #ffffff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark {
  background:
    #1d1d1d linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light {
  background:
    #f8f8f8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-gray {
  background:
    #ccc linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-gray-blue {
  background:
    #6a89a7 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-gray-white {
  background:
    #f5f5f5 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-gray-mouse {
  background:
    #566b75 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-lime {
  background:
    #AEFD6C linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-green {
  background:
    #00b500 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-emerald {
  background:
    #50c878 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-blue {
  background:
    #5e87ff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-teal {
  background:
    #1ac5c5 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-cyan {
  background:
    #94b6ff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-cobalt {
  background:
    #0047ab linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-indigo {
  background:
    #6400a8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-almost {
  background:
    #6a2ded linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-violet {
  background:
    #ee82ee linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-pink {
  background:
    #ffc0cb linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-magenta {
  background:
    #ff00ff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-crimson {
  background:
    #df0e38 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-red {
  background:
    #ff0000 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-clown {
  background:
    #ff6d66 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-orange {
  background:
    #ffa500 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-amber {
  background:
    #ffca2a linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-yellow {
  background:
    #ffe95e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-brown {
  background:
    #ca773c linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-olive {
  background:
    #a1a100 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-steel {
  background:
    #7b91a6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-mauve {
  background:
    #e0afff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-taupe {
  background:
    #977e67 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-champagne {
  background:
    #f7e6ca linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-khaki {
  background:
    #d5c58a linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-charcoal {
  background:
    #989898 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-bronze {
  background:
    #e48d3e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-windstorm {
  background:
    #799ed6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-nude {
  background:
    #f7d9bc linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-terracotta {
  background:
    #e35336 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-coral {
  background:
    #ff8559 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-army {
  background:
    #5d6532 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-seashell {
  background:
    #fff1e7 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sand {
  background:
    #f1e0ae linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-lime {
  background:
    #f2ffe7 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-green {
  background:
    #e7f6e6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-emerald {
  background:
    #d1e6cc linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-blue {
  background:
    #e7eaff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-teal {
  background:
    #e1f2f3 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-cyan {
  background:
    #e3edff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-cobalt {
  background:
    #d1ecff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-indigo {
  background:
    #f3dcf3 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-almost {
  background:
    #eee5ff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-violet {
  background:
    #fce2fb linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-pink {
  background:
    #ffeef1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-magenta {
  background:
    #ffe2ff linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-crimson {
  background:
    #ffd1da linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-red {
  background:
    #ffe1e1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-clown {
  background:
    #ffdede linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-orange {
  background:
    #fff3de linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-amber {
  background:
    #fff8e1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-yellow {
  background:
    #ffffc6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-brown {
  background:
    #ffeed9 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-olive {
  background:
    #f8fde7 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-steel {
  background:
    #edeeee linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-mauve {
  background:
    #f7ecfe linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-taupe {
  background:
    #eadccf linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-gray {
  background:
    #f4f4f4 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-gray-blue {
  background:
    #bee2f4 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-gray-mouse {
  background:
    #8ab4c8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-champagne {
  background:
    #fff9f2 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-khaki {
  background:
    #f6f1dd linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-charcoal {
  background:
    #e8e8e8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-bronze {
  background:
    #ffecdc linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-windstorm {
  background:
    #e6ebf5 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-nude {
  background:
    #fcf0e4 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-terracotta {
  background:
    #ffe5df linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-coral {
  background:
    #ffd8c8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-army {
  background:
    #eceacb linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-seashell {
  background:
    #fff9f8 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-light-sand {
  background:
    #f8f3e0 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-lime {
  background:
    #557f32 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-green {
  background:
    #003d00 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-emerald {
  background:
    #246339 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-blue {
  background:
    #132a6f linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-teal {
  background:
    #014848 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-cyan {
  background:
    #456c7e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-cobalt {
  background:
    #001f54 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-indigo {
  background:
    #21003e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-almost {
  background:
    #2f0687 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-violet {
  background:
    #773e77 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-pink {
  background:
    #805f65 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-magenta {
  background:
    #800080 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-crimson {
  background:
    #6e0519 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-red {
  background:
    #800000 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-clown {
  background:
    #aa2824 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-orange {
  background:
    #805100 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-amber {
  background:
    #805e00 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-yellow {
  background:
    #bca826 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-brown {
  background:
    #42240f linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-olive {
  background:
    #3d3d00 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-steel {
  background:
    #2e3841 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-mauve {
  background:
    #705680 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-taupe {
  background:
    #261e18 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-gray {
  background:
    #515151 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-gray-blue {
  background:
    #36464e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-gray-mouse {
  background:
    #2e3c42 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-champagne {
  background:
    #7c7364 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-khaki {
  background:
    #6a6142 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-charcoal {
  background:
    #202020 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-bronze {
  background:
    #693c13 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-windstorm {
  background:
    #304462 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-nude {
  background:
    #7c6c5d linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-terracotta {
  background:
    #712516 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-coral {
  background:
    #804028 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-army {
  background:
    #2a2f14 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-seashell {
  background:
    #bfa89a linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-dark-sand {
  background:
    #8f8975 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-lime {
  background:
    #7dba4a linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-green {
  background:
    #008f00 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-emerald {
  background:
    #3ca15d linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-blue {
  background:
    #1f43ae linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-teal {
  background:
    #008a8a linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-cyan {
  background:
    #659db6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-cobalt {
  background:
    #003391 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-indigo {
  background:
    #430080 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-almost {
  background:
    #4e18c1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-violet {
  background:
    #b65fb6 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-pink {
  background:
    #cc7296 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-magenta {
  background:
    #c500c5 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-crimson {
  background:
    #980824 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-red {
  background:
    #b80000 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-clown {
  background:
    #d64f48 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-orange {
  background:
    #bc7700 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-amber {
  background:
    #d19b00 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-yellow {
  background:
    #e4ce43 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-brown {
  background:
    #884b20 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-olive {
  background:
    #838300 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-steel {
  background:
    #5c7081 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-mauve {
  background:
    #a982c1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-taupe {
  background:
    #5e4a3c linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-gray {
  background:
    #9c9c9c linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-gray-blue {
  background:
    #5f7a88 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-gray-mouse {
  background:
    #3f535c linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-champagne {
  background:
    #ccbca5 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-khaki {
  background:
    #aa9c6b linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-charcoal {
  background:
    #5e5e5e linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-bronze {
  background:
    #aa621f linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-windstorm {
  background:
    #5071a3 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-nude {
  background:
    #baa28b linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-terracotta {
  background:
    #af3a23 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-coral {
  background:
    #b65c39 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-army {
  background:
    #647030 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-seashell {
  background:
    #e1cbbd linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-sat-sand {
  background:
    #d1c5a1 linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}

/* source/colors-css/accent.less */
.primary {
  outline-color: #fee5e5 !important;
  background-color: #f75553 !important;
  border-color: #f75553 !important;
  color: #ffffff !important;
}
.primary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.secondary {
  outline-color: #ed632a !important;
  background-color: #74290a !important;
  border-color: #74290a !important;
  color: #ffffff !important;
}
.secondary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.tertiary {
  outline-color: #ffffff !important;
  background-color: #ffbebd !important;
  border-color: #ffbebd !important;
  color: #ffffff !important;
}
.tertiary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.success {
  outline-color: #c4edd2 !important;
  background-color: #50c878 !important;
  border-color: #50c878 !important;
  color: #ffffff !important;
}
.success.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.alert {
  outline-color: #f88ea3 !important;
  background-color: #df0e38 !important;
  border-color: #df0e38 !important;
  color: #ffffff !important;
}
.alert.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.warning {
  outline-color: #ffdb99 !important;
  background-color: #ffa500 !important;
  border-color: #ffa500 !important;
  color: #ffffff !important;
}
.warning.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.info {
  outline-color: #dfebff !important;
  background-color: #468cff !important;
  border-color: #468cff !important;
  color: #ffffff !important;
}
.info.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.dark {
  outline-color: #9d9d9d !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
  color: #ffffff !important;
}
.dark.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.light {
  outline-color: #ffffff !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  color: #ffffff !important;
}
.light.dropdown-toggle::before {
  border-color: #ffffff !important;
}
button.primary.outline,
.button.primary.outline,
.command-button.primary.outline,
.shortcut.primary.outline,
.action-button.primary.outline {
  color: #f75553 !important;
  border-color: #f75553 !important;
  background-color: transparent !important;
}
button.primary.outline.dropdown-toggle::before,
.button.primary.outline.dropdown-toggle::before,
.command-button.primary.outline.dropdown-toggle::before,
.shortcut.primary.outline.dropdown-toggle::before,
.action-button.primary.outline.dropdown-toggle::before {
  border-color: #f75553 !important;
}
@media (hover: hover) {
  button.primary.outline:hover,
  .button.primary.outline:hover,
  .command-button.primary.outline:hover,
  .shortcut.primary.outline:hover,
  .action-button.primary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.primary.outline:active,
  .button.primary.outline:active,
  .command-button.primary.outline:active,
  .shortcut.primary.outline:active,
  .action-button.primary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.primary:hover,
  .button.primary:hover,
  .command-button.primary:hover,
  .shortcut.primary:hover,
  .action-button.primary:hover {
    color: #ffffff !important;
    background-color: #f52522 !important;
    border-color: #f52522 !important;
  }
  button.primary:hover.dropdown-toggle::before,
  .button.primary:hover.dropdown-toggle::before,
  .command-button.primary:hover.dropdown-toggle::before,
  .shortcut.primary:hover.dropdown-toggle::before,
  .action-button.primary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.primary:active,
  .button.primary:active,
  .command-button.primary:active,
  .shortcut.primary:active,
  .action-button.primary:active {
    color: #ffffff !important;
    background-color: #f52522 !important;
    border-color: #f52522 !important;
  }
  button.primary:active.dropdown-toggle::before,
  .button.primary:active.dropdown-toggle::before,
  .command-button.primary:active.dropdown-toggle::before,
  .shortcut.primary:active.dropdown-toggle::before,
  .action-button.primary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.primary.same-color:hover,
  .button.primary.same-color:hover,
  .command-button.primary.same-color:hover,
  .shortcut.primary.same-color:hover,
  .action-button.primary.same-color:hover {
    background-color: #f75553 !important;
    border-color: #f75553 !important;
  }
}
@media (hover: none) {
  button.primary.same-color:active,
  .button.primary.same-color:active,
  .command-button.primary.same-color:active,
  .shortcut.primary.same-color:active,
  .action-button.primary.same-color:active {
    background-color: #f75553 !important;
    border-color: #f75553 !important;
  }
}
button.secondary.outline,
.button.secondary.outline,
.command-button.secondary.outline,
.shortcut.secondary.outline,
.action-button.secondary.outline {
  color: #74290a !important;
  border-color: #74290a !important;
  background-color: transparent !important;
}
button.secondary.outline.dropdown-toggle::before,
.button.secondary.outline.dropdown-toggle::before,
.command-button.secondary.outline.dropdown-toggle::before,
.shortcut.secondary.outline.dropdown-toggle::before,
.action-button.secondary.outline.dropdown-toggle::before {
  border-color: #74290a !important;
}
@media (hover: hover) {
  button.secondary.outline:hover,
  .button.secondary.outline:hover,
  .command-button.secondary.outline:hover,
  .shortcut.secondary.outline:hover,
  .action-button.secondary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.secondary.outline:active,
  .button.secondary.outline:active,
  .command-button.secondary.outline:active,
  .shortcut.secondary.outline:active,
  .action-button.secondary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.secondary:hover,
  .button.secondary:hover,
  .command-button.secondary:hover,
  .shortcut.secondary:hover,
  .action-button.secondary:hover {
    color: #ffffff !important;
    background-color: #451806 !important;
    border-color: #451806 !important;
  }
  button.secondary:hover.dropdown-toggle::before,
  .button.secondary:hover.dropdown-toggle::before,
  .command-button.secondary:hover.dropdown-toggle::before,
  .shortcut.secondary:hover.dropdown-toggle::before,
  .action-button.secondary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.secondary:active,
  .button.secondary:active,
  .command-button.secondary:active,
  .shortcut.secondary:active,
  .action-button.secondary:active {
    color: #ffffff !important;
    background-color: #451806 !important;
    border-color: #451806 !important;
  }
  button.secondary:active.dropdown-toggle::before,
  .button.secondary:active.dropdown-toggle::before,
  .command-button.secondary:active.dropdown-toggle::before,
  .shortcut.secondary:active.dropdown-toggle::before,
  .action-button.secondary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.secondary.same-color:hover,
  .button.secondary.same-color:hover,
  .command-button.secondary.same-color:hover,
  .shortcut.secondary.same-color:hover,
  .action-button.secondary.same-color:hover {
    background-color: #74290a !important;
    border-color: #74290a !important;
  }
}
@media (hover: none) {
  button.secondary.same-color:active,
  .button.secondary.same-color:active,
  .command-button.secondary.same-color:active,
  .shortcut.secondary.same-color:active,
  .action-button.secondary.same-color:active {
    background-color: #74290a !important;
    border-color: #74290a !important;
  }
}
button.tertiary.outline,
.button.tertiary.outline,
.command-button.tertiary.outline,
.shortcut.tertiary.outline,
.action-button.tertiary.outline {
  color: #ffbebd !important;
  border-color: #ffbebd !important;
  background-color: transparent !important;
}
button.tertiary.outline.dropdown-toggle::before,
.button.tertiary.outline.dropdown-toggle::before,
.command-button.tertiary.outline.dropdown-toggle::before,
.shortcut.tertiary.outline.dropdown-toggle::before,
.action-button.tertiary.outline.dropdown-toggle::before {
  border-color: #ffbebd !important;
}
@media (hover: hover) {
  button.tertiary.outline:hover,
  .button.tertiary.outline:hover,
  .command-button.tertiary.outline:hover,
  .shortcut.tertiary.outline:hover,
  .action-button.tertiary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.tertiary.outline:active,
  .button.tertiary.outline:active,
  .command-button.tertiary.outline:active,
  .shortcut.tertiary.outline:active,
  .action-button.tertiary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.tertiary:hover,
  .button.tertiary:hover,
  .command-button.tertiary:hover,
  .shortcut.tertiary:hover,
  .action-button.tertiary:hover {
    color: #ffffff !important;
    background-color: #ff8c8a !important;
    border-color: #ff8c8a !important;
  }
  button.tertiary:hover.dropdown-toggle::before,
  .button.tertiary:hover.dropdown-toggle::before,
  .command-button.tertiary:hover.dropdown-toggle::before,
  .shortcut.tertiary:hover.dropdown-toggle::before,
  .action-button.tertiary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.tertiary:active,
  .button.tertiary:active,
  .command-button.tertiary:active,
  .shortcut.tertiary:active,
  .action-button.tertiary:active {
    color: #ffffff !important;
    background-color: #ff8c8a !important;
    border-color: #ff8c8a !important;
  }
  button.tertiary:active.dropdown-toggle::before,
  .button.tertiary:active.dropdown-toggle::before,
  .command-button.tertiary:active.dropdown-toggle::before,
  .shortcut.tertiary:active.dropdown-toggle::before,
  .action-button.tertiary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.tertiary.same-color:hover,
  .button.tertiary.same-color:hover,
  .command-button.tertiary.same-color:hover,
  .shortcut.tertiary.same-color:hover,
  .action-button.tertiary.same-color:hover {
    background-color: #ffbebd !important;
    border-color: #ffbebd !important;
  }
}
@media (hover: none) {
  button.tertiary.same-color:active,
  .button.tertiary.same-color:active,
  .command-button.tertiary.same-color:active,
  .shortcut.tertiary.same-color:active,
  .action-button.tertiary.same-color:active {
    background-color: #ffbebd !important;
    border-color: #ffbebd !important;
  }
}
button.success.outline,
.button.success.outline,
.command-button.success.outline,
.shortcut.success.outline,
.action-button.success.outline {
  color: #50c878 !important;
  border-color: #50c878 !important;
  background-color: transparent !important;
}
button.success.outline.dropdown-toggle::before,
.button.success.outline.dropdown-toggle::before,
.command-button.success.outline.dropdown-toggle::before,
.shortcut.success.outline.dropdown-toggle::before,
.action-button.success.outline.dropdown-toggle::before {
  border-color: #50c878 !important;
}
@media (hover: hover) {
  button.success.outline:hover,
  .button.success.outline:hover,
  .command-button.success.outline:hover,
  .shortcut.success.outline:hover,
  .action-button.success.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.success.outline:active,
  .button.success.outline:active,
  .command-button.success.outline:active,
  .shortcut.success.outline:active,
  .action-button.success.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.success:hover,
  .button.success:hover,
  .command-button.success:hover,
  .shortcut.success:hover,
  .action-button.success:hover {
    color: #ffffff !important;
    background-color: #37ae5f !important;
    border-color: #37ae5f !important;
  }
  button.success:hover.dropdown-toggle::before,
  .button.success:hover.dropdown-toggle::before,
  .command-button.success:hover.dropdown-toggle::before,
  .shortcut.success:hover.dropdown-toggle::before,
  .action-button.success:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.success:active,
  .button.success:active,
  .command-button.success:active,
  .shortcut.success:active,
  .action-button.success:active {
    color: #ffffff !important;
    background-color: #37ae5f !important;
    border-color: #37ae5f !important;
  }
  button.success:active.dropdown-toggle::before,
  .button.success:active.dropdown-toggle::before,
  .command-button.success:active.dropdown-toggle::before,
  .shortcut.success:active.dropdown-toggle::before,
  .action-button.success:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.success.same-color:hover,
  .button.success.same-color:hover,
  .command-button.success.same-color:hover,
  .shortcut.success.same-color:hover,
  .action-button.success.same-color:hover {
    background-color: #50c878 !important;
    border-color: #50c878 !important;
  }
}
@media (hover: none) {
  button.success.same-color:active,
  .button.success.same-color:active,
  .command-button.success.same-color:active,
  .shortcut.success.same-color:active,
  .action-button.success.same-color:active {
    background-color: #50c878 !important;
    border-color: #50c878 !important;
  }
}
button.alert.outline,
.button.alert.outline,
.command-button.alert.outline,
.shortcut.alert.outline,
.action-button.alert.outline {
  color: #df0e38 !important;
  border-color: #df0e38 !important;
  background-color: transparent !important;
}
button.alert.outline.dropdown-toggle::before,
.button.alert.outline.dropdown-toggle::before,
.command-button.alert.outline.dropdown-toggle::before,
.shortcut.alert.outline.dropdown-toggle::before,
.action-button.alert.outline.dropdown-toggle::before {
  border-color: #df0e38 !important;
}
@media (hover: hover) {
  button.alert.outline:hover,
  .button.alert.outline:hover,
  .command-button.alert.outline:hover,
  .shortcut.alert.outline:hover,
  .action-button.alert.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.alert.outline:active,
  .button.alert.outline:active,
  .command-button.alert.outline:active,
  .shortcut.alert.outline:active,
  .action-button.alert.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.alert:hover,
  .button.alert:hover,
  .command-button.alert:hover,
  .shortcut.alert:hover,
  .action-button.alert:hover {
    color: #ffffff !important;
    background-color: #af0b2c !important;
    border-color: #af0b2c !important;
  }
  button.alert:hover.dropdown-toggle::before,
  .button.alert:hover.dropdown-toggle::before,
  .command-button.alert:hover.dropdown-toggle::before,
  .shortcut.alert:hover.dropdown-toggle::before,
  .action-button.alert:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.alert:active,
  .button.alert:active,
  .command-button.alert:active,
  .shortcut.alert:active,
  .action-button.alert:active {
    color: #ffffff !important;
    background-color: #af0b2c !important;
    border-color: #af0b2c !important;
  }
  button.alert:active.dropdown-toggle::before,
  .button.alert:active.dropdown-toggle::before,
  .command-button.alert:active.dropdown-toggle::before,
  .shortcut.alert:active.dropdown-toggle::before,
  .action-button.alert:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.alert.same-color:hover,
  .button.alert.same-color:hover,
  .command-button.alert.same-color:hover,
  .shortcut.alert.same-color:hover,
  .action-button.alert.same-color:hover {
    background-color: #df0e38 !important;
    border-color: #df0e38 !important;
  }
}
@media (hover: none) {
  button.alert.same-color:active,
  .button.alert.same-color:active,
  .command-button.alert.same-color:active,
  .shortcut.alert.same-color:active,
  .action-button.alert.same-color:active {
    background-color: #df0e38 !important;
    border-color: #df0e38 !important;
  }
}
button.warning.outline,
.button.warning.outline,
.command-button.warning.outline,
.shortcut.warning.outline,
.action-button.warning.outline {
  color: #ffa500 !important;
  border-color: #ffa500 !important;
  background-color: transparent !important;
}
button.warning.outline.dropdown-toggle::before,
.button.warning.outline.dropdown-toggle::before,
.command-button.warning.outline.dropdown-toggle::before,
.shortcut.warning.outline.dropdown-toggle::before,
.action-button.warning.outline.dropdown-toggle::before {
  border-color: #ffa500 !important;
}
@media (hover: hover) {
  button.warning.outline:hover,
  .button.warning.outline:hover,
  .command-button.warning.outline:hover,
  .shortcut.warning.outline:hover,
  .action-button.warning.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.warning.outline:active,
  .button.warning.outline:active,
  .command-button.warning.outline:active,
  .shortcut.warning.outline:active,
  .action-button.warning.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.warning:hover,
  .button.warning:hover,
  .command-button.warning:hover,
  .shortcut.warning:hover,
  .action-button.warning:hover {
    color: #ffffff !important;
    background-color: #cc8400 !important;
    border-color: #cc8400 !important;
  }
  button.warning:hover.dropdown-toggle::before,
  .button.warning:hover.dropdown-toggle::before,
  .command-button.warning:hover.dropdown-toggle::before,
  .shortcut.warning:hover.dropdown-toggle::before,
  .action-button.warning:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.warning:active,
  .button.warning:active,
  .command-button.warning:active,
  .shortcut.warning:active,
  .action-button.warning:active {
    color: #ffffff !important;
    background-color: #cc8400 !important;
    border-color: #cc8400 !important;
  }
  button.warning:active.dropdown-toggle::before,
  .button.warning:active.dropdown-toggle::before,
  .command-button.warning:active.dropdown-toggle::before,
  .shortcut.warning:active.dropdown-toggle::before,
  .action-button.warning:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.warning.same-color:hover,
  .button.warning.same-color:hover,
  .command-button.warning.same-color:hover,
  .shortcut.warning.same-color:hover,
  .action-button.warning.same-color:hover {
    background-color: #ffa500 !important;
    border-color: #ffa500 !important;
  }
}
@media (hover: none) {
  button.warning.same-color:active,
  .button.warning.same-color:active,
  .command-button.warning.same-color:active,
  .shortcut.warning.same-color:active,
  .action-button.warning.same-color:active {
    background-color: #ffa500 !important;
    border-color: #ffa500 !important;
  }
}
button.info.outline,
.button.info.outline,
.command-button.info.outline,
.shortcut.info.outline,
.action-button.info.outline {
  color: #468cff !important;
  border-color: #468cff !important;
  background-color: transparent !important;
}
button.info.outline.dropdown-toggle::before,
.button.info.outline.dropdown-toggle::before,
.command-button.info.outline.dropdown-toggle::before,
.shortcut.info.outline.dropdown-toggle::before,
.action-button.info.outline.dropdown-toggle::before {
  border-color: #468cff !important;
}
@media (hover: hover) {
  button.info.outline:hover,
  .button.info.outline:hover,
  .command-button.info.outline:hover,
  .shortcut.info.outline:hover,
  .action-button.info.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.info.outline:active,
  .button.info.outline:active,
  .command-button.info.outline:active,
  .shortcut.info.outline:active,
  .action-button.info.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.info:hover,
  .button.info:hover,
  .command-button.info:hover,
  .shortcut.info:hover,
  .action-button.info:hover {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  button.info:hover.dropdown-toggle::before,
  .button.info:hover.dropdown-toggle::before,
  .command-button.info:hover.dropdown-toggle::before,
  .shortcut.info:hover.dropdown-toggle::before,
  .action-button.info:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.info:active,
  .button.info:active,
  .command-button.info:active,
  .shortcut.info:active,
  .action-button.info:active {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  button.info:active.dropdown-toggle::before,
  .button.info:active.dropdown-toggle::before,
  .command-button.info:active.dropdown-toggle::before,
  .shortcut.info:active.dropdown-toggle::before,
  .action-button.info:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.info.same-color:hover,
  .button.info.same-color:hover,
  .command-button.info.same-color:hover,
  .shortcut.info.same-color:hover,
  .action-button.info.same-color:hover {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
@media (hover: none) {
  button.info.same-color:active,
  .button.info.same-color:active,
  .command-button.info.same-color:active,
  .shortcut.info.same-color:active,
  .action-button.info.same-color:active {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
button.dark.outline,
.button.dark.outline,
.command-button.dark.outline,
.shortcut.dark.outline,
.action-button.dark.outline {
  color: #505050 !important;
  border-color: #505050 !important;
  background-color: transparent !important;
}
button.dark.outline.dropdown-toggle::before,
.button.dark.outline.dropdown-toggle::before,
.command-button.dark.outline.dropdown-toggle::before,
.shortcut.dark.outline.dropdown-toggle::before,
.action-button.dark.outline.dropdown-toggle::before {
  border-color: #505050 !important;
}
@media (hover: hover) {
  button.dark.outline:hover,
  .button.dark.outline:hover,
  .command-button.dark.outline:hover,
  .shortcut.dark.outline:hover,
  .action-button.dark.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.dark.outline:active,
  .button.dark.outline:active,
  .command-button.dark.outline:active,
  .shortcut.dark.outline:active,
  .action-button.dark.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.dark:hover,
  .button.dark:hover,
  .command-button.dark:hover,
  .shortcut.dark:hover,
  .action-button.dark:hover {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  button.dark:hover.dropdown-toggle::before,
  .button.dark:hover.dropdown-toggle::before,
  .command-button.dark:hover.dropdown-toggle::before,
  .shortcut.dark:hover.dropdown-toggle::before,
  .action-button.dark:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.dark:active,
  .button.dark:active,
  .command-button.dark:active,
  .shortcut.dark:active,
  .action-button.dark:active {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  button.dark:active.dropdown-toggle::before,
  .button.dark:active.dropdown-toggle::before,
  .command-button.dark:active.dropdown-toggle::before,
  .shortcut.dark:active.dropdown-toggle::before,
  .action-button.dark:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.dark.same-color:hover,
  .button.dark.same-color:hover,
  .command-button.dark.same-color:hover,
  .shortcut.dark.same-color:hover,
  .action-button.dark.same-color:hover {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
@media (hover: none) {
  button.dark.same-color:active,
  .button.dark.same-color:active,
  .command-button.dark.same-color:active,
  .shortcut.dark.same-color:active,
  .action-button.dark.same-color:active {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
button.light.outline,
.button.light.outline,
.command-button.light.outline,
.shortcut.light.outline,
.action-button.light.outline {
  color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  background-color: transparent !important;
}
button.light.outline.dropdown-toggle::before,
.button.light.outline.dropdown-toggle::before,
.command-button.light.outline.dropdown-toggle::before,
.shortcut.light.outline.dropdown-toggle::before,
.action-button.light.outline.dropdown-toggle::before {
  border-color: #f8f8f8 !important;
}
@media (hover: hover) {
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.light:hover,
  .button.light:hover,
  .command-button.light:hover,
  .shortcut.light:hover,
  .action-button.light:hover {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  button.light:hover.dropdown-toggle::before,
  .button.light:hover.dropdown-toggle::before,
  .command-button.light:hover.dropdown-toggle::before,
  .shortcut.light:hover.dropdown-toggle::before,
  .action-button.light:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.light:active,
  .button.light:active,
  .command-button.light:active,
  .shortcut.light:active,
  .action-button.light:active {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  button.light:active.dropdown-toggle::before,
  .button.light:active.dropdown-toggle::before,
  .command-button.light:active.dropdown-toggle::before,
  .shortcut.light:active.dropdown-toggle::before,
  .action-button.light:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.light.same-color:hover,
  .button.light.same-color:hover,
  .command-button.light.same-color:hover,
  .shortcut.light.same-color:hover,
  .action-button.light.same-color:hover {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
@media (hover: none) {
  button.light.same-color:active,
  .button.light.same-color:active,
  .command-button.light.same-color:active,
  .shortcut.light.same-color:active,
  .action-button.light.same-color:active {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
button.yellow,
.button.yellow,
.command-button.yellow,
.shortcut.yellow,
.action-button.yellow,
button.yellow.outline,
.button.yellow.outline,
.command-button.yellow.outline,
.shortcut.yellow.outline,
.action-button.yellow.outline,
button.light,
.button.light,
.command-button.light,
.shortcut.light,
.action-button.light,
button.light.outline,
.button.light.outline,
.command-button.light.outline,
.shortcut.light.outline,
.action-button.light.outline {
  color: #1d1d1d !important;
}
@media (hover: hover) {
  button.yellow:hover,
  .button.yellow:hover,
  .command-button.yellow:hover,
  .shortcut.yellow:hover,
  .action-button.yellow:hover,
  button.yellow.outline:hover,
  .button.yellow.outline:hover,
  .command-button.yellow.outline:hover,
  .shortcut.yellow.outline:hover,
  .action-button.yellow.outline:hover,
  button.light:hover,
  .button.light:hover,
  .command-button.light:hover,
  .shortcut.light:hover,
  .action-button.light:hover,
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover,
  button.yellow.outline:hover,
  .button.yellow.outline:hover,
  .command-button.yellow.outline:hover,
  .shortcut.yellow.outline:hover,
  .action-button.yellow.outline:hover,
  button.yellow.outline.outline:hover,
  .button.yellow.outline.outline:hover,
  .command-button.yellow.outline.outline:hover,
  .shortcut.yellow.outline.outline:hover,
  .action-button.yellow.outline.outline:hover,
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover,
  button.light.outline.outline:hover,
  .button.light.outline.outline:hover,
  .command-button.light.outline.outline:hover,
  .shortcut.light.outline.outline:hover,
  .action-button.light.outline.outline:hover {
    color: #1d1d1d !important;
  }
}
@media (hover: none) {
  button.yellow:active,
  .button.yellow:active,
  .command-button.yellow:active,
  .shortcut.yellow:active,
  .action-button.yellow:active,
  button.yellow.outline:active,
  .button.yellow.outline:active,
  .command-button.yellow.outline:active,
  .shortcut.yellow.outline:active,
  .action-button.yellow.outline:active,
  button.light:active,
  .button.light:active,
  .command-button.light:active,
  .shortcut.light:active,
  .action-button.light:active,
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active,
  button.yellow.outline:active,
  .button.yellow.outline:active,
  .command-button.yellow.outline:active,
  .shortcut.yellow.outline:active,
  .action-button.yellow.outline:active,
  button.yellow.outline.outline:active,
  .button.yellow.outline.outline:active,
  .command-button.yellow.outline.outline:active,
  .shortcut.yellow.outline.outline:active,
  .action-button.yellow.outline.outline:active,
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active,
  button.light.outline.outline:active,
  .button.light.outline.outline:active,
  .command-button.light.outline.outline:active,
  .shortcut.light.outline.outline:active,
  .action-button.light.outline.outline:active {
    color: #1d1d1d !important;
  }
}
.focusable.primary:active,
.focusable.primary.focus,
.focusable.primary:focus {
  box-shadow: 0 0 0 3px rgba(247, 85, 83, 0.45) !important;
}
.focusable.secondary:active,
.focusable.secondary.focus,
.focusable.secondary:focus {
  box-shadow: 0 0 0 3px rgba(116, 41, 10, 0.45) !important;
}
.focusable.tertiary:active,
.focusable.tertiary.focus,
.focusable.tertiary:focus {
  box-shadow: 0 0 0 3px rgba(255, 190, 189, 0.45) !important;
}
.focusable.success:active,
.focusable.success.focus,
.focusable.success:focus {
  box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.45) !important;
}
.focusable.alert:active,
.focusable.alert.focus,
.focusable.alert:focus {
  box-shadow: 0 0 0 3px rgba(223, 14, 56, 0.45) !important;
}
.focusable.warning:active,
.focusable.warning.focus,
.focusable.warning:focus {
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.45) !important;
}
.focusable.info:active,
.focusable.info.focus,
.focusable.info:focus {
  box-shadow: 0 0 0 3px rgba(70, 140, 255, 0.45) !important;
}
.focusable.dark:active,
.focusable.dark.focus,
.focusable.dark:focus {
  box-shadow: 0 0 0 3px rgba(80, 80, 80, 0.45) !important;
}
.focusable.light:active,
.focusable.light.focus,
.focusable.light:focus {
  box-shadow: 0 0 0 3px rgba(248, 248, 248, 0.45) !important;
}
.metro-input.primary,
.file.primary,
.input.primary,
.select.primary,
.textarea.primary,
.keypad.primary,
.tag-input.primary,
.spinner.primary {
  border-color: #f75553;
}
.metro-input.primary:focus,
.file.primary:focus,
.input.primary:focus,
.select.primary:focus,
.textarea.primary:focus,
.keypad.primary:focus,
.tag-input.primary:focus,
.spinner.primary:focus,
.metro-input.primary.focused,
.file.primary.focused,
.input.primary.focused,
.select.primary.focused,
.textarea.primary.focused,
.keypad.primary.focused,
.tag-input.primary.focused,
.spinner.primary.focused {
  box-shadow: 0 0 0 3px rgba(247, 85, 83, 0.45);
}
.metro-input.secondary,
.file.secondary,
.input.secondary,
.select.secondary,
.textarea.secondary,
.keypad.secondary,
.tag-input.secondary,
.spinner.secondary {
  border-color: #74290a;
}
.metro-input.secondary:focus,
.file.secondary:focus,
.input.secondary:focus,
.select.secondary:focus,
.textarea.secondary:focus,
.keypad.secondary:focus,
.tag-input.secondary:focus,
.spinner.secondary:focus,
.metro-input.secondary.focused,
.file.secondary.focused,
.input.secondary.focused,
.select.secondary.focused,
.textarea.secondary.focused,
.keypad.secondary.focused,
.tag-input.secondary.focused,
.spinner.secondary.focused {
  box-shadow: 0 0 0 3px rgba(116, 41, 10, 0.45);
}
.metro-input.tertiary,
.file.tertiary,
.input.tertiary,
.select.tertiary,
.textarea.tertiary,
.keypad.tertiary,
.tag-input.tertiary,
.spinner.tertiary {
  border-color: #ffbebd;
}
.metro-input.tertiary:focus,
.file.tertiary:focus,
.input.tertiary:focus,
.select.tertiary:focus,
.textarea.tertiary:focus,
.keypad.tertiary:focus,
.tag-input.tertiary:focus,
.spinner.tertiary:focus,
.metro-input.tertiary.focused,
.file.tertiary.focused,
.input.tertiary.focused,
.select.tertiary.focused,
.textarea.tertiary.focused,
.keypad.tertiary.focused,
.tag-input.tertiary.focused,
.spinner.tertiary.focused {
  box-shadow: 0 0 0 3px rgba(255, 190, 189, 0.45);
}
.metro-input.success,
.file.success,
.input.success,
.select.success,
.textarea.success,
.keypad.success,
.tag-input.success,
.spinner.success {
  border-color: #50c878;
}
.metro-input.success:focus,
.file.success:focus,
.input.success:focus,
.select.success:focus,
.textarea.success:focus,
.keypad.success:focus,
.tag-input.success:focus,
.spinner.success:focus,
.metro-input.success.focused,
.file.success.focused,
.input.success.focused,
.select.success.focused,
.textarea.success.focused,
.keypad.success.focused,
.tag-input.success.focused,
.spinner.success.focused {
  box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.45);
}
.metro-input.alert,
.file.alert,
.input.alert,
.select.alert,
.textarea.alert,
.keypad.alert,
.tag-input.alert,
.spinner.alert {
  border-color: #df0e38;
}
.metro-input.alert:focus,
.file.alert:focus,
.input.alert:focus,
.select.alert:focus,
.textarea.alert:focus,
.keypad.alert:focus,
.tag-input.alert:focus,
.spinner.alert:focus,
.metro-input.alert.focused,
.file.alert.focused,
.input.alert.focused,
.select.alert.focused,
.textarea.alert.focused,
.keypad.alert.focused,
.tag-input.alert.focused,
.spinner.alert.focused {
  box-shadow: 0 0 0 3px rgba(223, 14, 56, 0.45);
}
.metro-input.warning,
.file.warning,
.input.warning,
.select.warning,
.textarea.warning,
.keypad.warning,
.tag-input.warning,
.spinner.warning {
  border-color: #ffa500;
}
.metro-input.warning:focus,
.file.warning:focus,
.input.warning:focus,
.select.warning:focus,
.textarea.warning:focus,
.keypad.warning:focus,
.tag-input.warning:focus,
.spinner.warning:focus,
.metro-input.warning.focused,
.file.warning.focused,
.input.warning.focused,
.select.warning.focused,
.textarea.warning.focused,
.keypad.warning.focused,
.tag-input.warning.focused,
.spinner.warning.focused {
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.45);
}
.metro-input.info,
.file.info,
.input.info,
.select.info,
.textarea.info,
.keypad.info,
.tag-input.info,
.spinner.info {
  border-color: #468cff;
}
.metro-input.info:focus,
.file.info:focus,
.input.info:focus,
.select.info:focus,
.textarea.info:focus,
.keypad.info:focus,
.tag-input.info:focus,
.spinner.info:focus,
.metro-input.info.focused,
.file.info.focused,
.input.info.focused,
.select.info.focused,
.textarea.info.focused,
.keypad.info.focused,
.tag-input.info.focused,
.spinner.info.focused {
  box-shadow: 0 0 0 3px rgba(70, 140, 255, 0.45);
}
.metro-input.dark,
.file.dark,
.input.dark,
.select.dark,
.textarea.dark,
.keypad.dark,
.tag-input.dark,
.spinner.dark {
  border-color: #505050;
}
.metro-input.dark:focus,
.file.dark:focus,
.input.dark:focus,
.select.dark:focus,
.textarea.dark:focus,
.keypad.dark:focus,
.tag-input.dark:focus,
.spinner.dark:focus,
.metro-input.dark.focused,
.file.dark.focused,
.input.dark.focused,
.select.dark.focused,
.textarea.dark.focused,
.keypad.dark.focused,
.tag-input.dark.focused,
.spinner.dark.focused {
  box-shadow: 0 0 0 3px rgba(80, 80, 80, 0.45);
}
.metro-input.light,
.file.light,
.input.light,
.select.light,
.textarea.light,
.keypad.light,
.tag-input.light,
.spinner.light {
  border-color: #f8f8f8;
}
.metro-input.light:focus,
.file.light:focus,
.input.light:focus,
.select.light:focus,
.textarea.light:focus,
.keypad.light:focus,
.tag-input.light:focus,
.spinner.light:focus,
.metro-input.light.focused,
.file.light.focused,
.input.light.focused,
.select.light.focused,
.textarea.light.focused,
.keypad.light.focused,
.tag-input.light.focused,
.spinner.light.focused {
  box-shadow: 0 0 0 3px rgba(248, 248, 248, 0.45);
}

/* source/colors-css/gradients.less */
:root {
  --gradient-direction: to right;
  --gradient-from-color: #000;
  --gradient-to-color: #5c5c5c;
}
.dark-side {
  --gradient-from-color: #fff;
  --gradient-to-color: #cacaca;
}
.gradient {
  background:
    linear-gradient(
      var(--gradient-direction),
      var(--gradient-from-color),
      var(--gradient-to-color)) !important;
}
.gr-lime {
  background:
    linear-gradient(
      var(--gradient-direction),
      #AEFD6C,
      #e5fed1) !important;
}
.gr-green {
  background:
    linear-gradient(
      var(--gradient-direction),
      #00b500,
      #1cff1c) !important;
}
.gr-emerald {
  background:
    linear-gradient(
      var(--gradient-direction),
      #50c878,
      #9ee0b4) !important;
}
.gr-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #5e87ff,
      #c4d3ff) !important;
}
.gr-teal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1ac5c5,
      #5ce9e9) !important;
}
.gr-cyan {
  background:
    linear-gradient(
      var(--gradient-direction),
      #94b6ff,
      #fafcff) !important;
}
.gr-cobalt {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0047ab,
      #1274ff) !important;
}
.gr-indigo {
  background:
    linear-gradient(
      var(--gradient-direction),
      #6400a8,
      #9e0fff) !important;
}
.gr-almost {
  background:
    linear-gradient(
      var(--gradient-direction),
      #6a2ded,
      #ad8bf5) !important;
}
.gr-violet {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ee82ee,
      #fadcfa) !important;
}
.gr-pink {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffc0cb,
      #ffffff) !important;
}
.gr-magenta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ff00ff,
      #ff66ff) !important;
}
.gr-crimson {
  background:
    linear-gradient(
      var(--gradient-direction),
      #df0e38,
      #f55e7c) !important;
}
.gr-red {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ff0000,
      #ff6666) !important;
}
.gr-orange {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffa500,
      #ffc966) !important;
}
.gr-amber {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffca2a,
      #ffe390) !important;
}
.gr-yellow {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffe95e,
      #fff7c4) !important;
}
.gr-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ca773c,
      #e0af8c) !important;
}
.gr-olive {
  background:
    linear-gradient(
      var(--gradient-direction),
      #a1a100,
      #ffff08) !important;
}
.gr-steel {
  background:
    linear-gradient(
      var(--gradient-direction),
      #7b91a6,
      #b8c4cf) !important;
}
.gr-mauve {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e0afff,
      #ffffff) !important;
}
.gr-taupe {
  background:
    linear-gradient(
      var(--gradient-direction),
      #977e67,
      #c1b1a3) !important;
}
.gr-champagne {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f7e6ca,
      #ffffff) !important;
}
.gr-khaki {
  background:
    linear-gradient(
      var(--gradient-direction),
      #d5c58a,
      #f0ead5) !important;
}
.gr-charcoal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #989898,
      #cbcbcb) !important;
}
.gr-bronze {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e48d3e,
      #f1c297) !important;
}
.gr-windstorm {
  background:
    linear-gradient(
      var(--gradient-direction),
      #799ed6,
      #c7d7ee) !important;
}
.gr-nude {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f7d9bc,
      #ffffff) !important;
}
.gr-terracotta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e35336,
      #efa090) !important;
}
.gr-coral {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ff8559,
      #ffd0bf) !important;
}
.gr-army {
  background:
    linear-gradient(
      var(--gradient-direction),
      #5d6532,
      #9ca954) !important;
}
.gr-seashell {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fff1e7,
      #ffffff) !important;
}
.gr-sand {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f1e0ae,
      #ffffff) !important;
}
.gr-light-lime {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f2ffe7,
      #ffffff) !important;
}
.gr-light-green {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e7f6e6,
      #ffffff) !important;
}
.gr-light-emerald {
  background:
    linear-gradient(
      var(--gradient-direction),
      #d1e6cc,
      #ffffff) !important;
}
.gr-light-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e7eaff,
      #ffffff) !important;
}
.gr-light-teal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e1f2f3,
      #ffffff) !important;
}
.gr-light-cyan {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e3edff,
      #ffffff) !important;
}
.gr-light-cobalt {
  background:
    linear-gradient(
      var(--gradient-direction),
      #d1ecff,
      #ffffff) !important;
}
.gr-light-indigo {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f3dcf3,
      #ffffff) !important;
}
.gr-light-almost {
  background:
    linear-gradient(
      var(--gradient-direction),
      #eee5ff,
      #ffffff) !important;
}
.gr-light-violet {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fce2fb,
      #ffffff) !important;
}
.gr-light-pink {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffeef1,
      #ffffff) !important;
}
.gr-light-magenta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffe2ff,
      #ffffff) !important;
}
.gr-light-crimson {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffd1da,
      #ffffff) !important;
}
.gr-light-red {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffe1e1,
      #ffffff) !important;
}
.gr-light-orange {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fff3de,
      #ffffff) !important;
}
.gr-light-amber {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fff8e1,
      #ffffff) !important;
}
.gr-light-yellow {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffffc6,
      #ffffff) !important;
}
.gr-light-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffeed9,
      #ffffff) !important;
}
.gr-light-olive {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f8fde7,
      #ffffff) !important;
}
.gr-light-steel {
  background:
    linear-gradient(
      var(--gradient-direction),
      #edeeee,
      #ffffff) !important;
}
.gr-light-mauve {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f7ecfe,
      #ffffff) !important;
}
.gr-light-taupe {
  background:
    linear-gradient(
      var(--gradient-direction),
      #eadccf,
      #ffffff) !important;
}
.gr-light-gray {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f4f4f4,
      #ffffff) !important;
}
.gr-light-gray-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #bee2f4,
      #ffffff) !important;
}
.gr-light-gray-mouse {
  background:
    linear-gradient(
      var(--gradient-direction),
      #8ab4c8,
      #ffffff) !important;
}
.gr-light-champagne {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fff9f2,
      #ffffff) !important;
}
.gr-light-khaki {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f6f1dd,
      #ffffff) !important;
}
.gr-light-charcoal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e8e8e8,
      #ffffff) !important;
}
.gr-light-bronze {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffecdc,
      #ffffff) !important;
}
.gr-light-windstorm {
  background:
    linear-gradient(
      var(--gradient-direction),
      #e6ebf5,
      #ffffff) !important;
}
.gr-light-nude {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fcf0e4,
      #ffffff) !important;
}
.gr-light-terracotta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffe5df,
      #ffffff) !important;
}
.gr-light-coral {
  background:
    linear-gradient(
      var(--gradient-direction),
      #ffd8c8,
      #ffffff) !important;
}
.gr-light-army {
  background:
    linear-gradient(
      var(--gradient-direction),
      #eceacb,
      #ffffff) !important;
}
.gr-light-seashell {
  background:
    linear-gradient(
      var(--gradient-direction),
      #fff9f8,
      #ffffff) !important;
}
.gr-light-sand {
  background:
    linear-gradient(
      var(--gradient-direction),
      #f8f3e0,
      #ffffff) !important;
}
.gr-dark-lime {
  background:
    linear-gradient(
      var(--gradient-direction),
      #243615,
      #557f32) !important;
}
.gr-dark-green {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #003d00) !important;
}
.gr-dark-emerald {
  background:
    linear-gradient(
      var(--gradient-direction),
      #09180e,
      #246339) !important;
}
.gr-dark-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #040918,
      #132a6f) !important;
}
.gr-dark-teal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #014848) !important;
}
.gr-dark-cyan {
  background:
    linear-gradient(
      var(--gradient-direction),
      #21343c,
      #456c7e) !important;
}
.gr-dark-cobalt {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #001f54) !important;
}
.gr-dark-indigo {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #21003e) !important;
}
.gr-dark-almost {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0d0225,
      #2f0687) !important;
}
.gr-dark-violet {
  background:
    linear-gradient(
      var(--gradient-direction),
      #341b34,
      #773e77) !important;
}
.gr-dark-pink {
  background:
    linear-gradient(
      var(--gradient-direction),
      #453437,
      #805f65) !important;
}
.gr-dark-magenta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1a001a,
      #800080) !important;
}
.gr-dark-crimson {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0c0103,
      #6e0519) !important;
}
.gr-dark-red {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1a0000,
      #800000) !important;
}
.gr-dark-orange {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1a1000,
      #805100) !important;
}
.gr-dark-amber {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1a1300,
      #805e00) !important;
}
.gr-dark-yellow {
  background:
    linear-gradient(
      var(--gradient-direction),
      #675c15,
      #bca826) !important;
}
.gr-dark-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #42240f) !important;
}
.gr-dark-olive {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #3d3d00) !important;
}
.gr-dark-steel {
  background:
    linear-gradient(
      var(--gradient-direction),
      #040505,
      #2e3841) !important;
}
.gr-dark-mauve {
  background:
    linear-gradient(
      var(--gradient-direction),
      #3b2d43,
      #705680) !important;
}
.gr-dark-taupe {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #261e18) !important;
}
.gr-dark-gray {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1e1e1e,
      #515151) !important;
}
.gr-dark-gray-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0c1012,
      #36464e) !important;
}
.gr-dark-gray-mouse {
  background:
    linear-gradient(
      var(--gradient-direction),
      #040506,
      #2e3c42) !important;
}
.gr-dark-champagne {
  background:
    linear-gradient(
      var(--gradient-direction),
      #443f36,
      #7c7364) !important;
}
.gr-dark-khaki {
  background:
    linear-gradient(
      var(--gradient-direction),
      #2b271b,
      #6a6142) !important;
}
.gr-dark-charcoal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #202020) !important;
}
.gr-dark-bronze {
  background:
    linear-gradient(
      var(--gradient-direction),
      #130b03,
      #693c13) !important;
}
.gr-dark-windstorm {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0e141e,
      #304462) !important;
}
.gr-dark-nude {
  background:
    linear-gradient(
      var(--gradient-direction),
      #423931,
      #7c6c5d) !important;
}
.gr-dark-terracotta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1c0905,
      #712516) !important;
}
.gr-dark-coral {
  background:
    linear-gradient(
      var(--gradient-direction),
      #321910,
      #804028) !important;
}
.gr-dark-army {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000,
      #2a2f14) !important;
}
.gr-dark-seashell {
  background:
    linear-gradient(
      var(--gradient-direction),
      #95735e,
      #bfa89a) !important;
}
.gr-dark-sand {
  background:
    linear-gradient(
      var(--gradient-direction),
      #575347,
      #8f8975) !important;
}
.dark-side .gr-light-lime {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-green {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-emerald {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-teal {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-cyan {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-cobalt {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-indigo {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-almost {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-violet {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-pink {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-magenta {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-crimson {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-red {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-orange {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-amber {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-yellow {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-olive {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-steel {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-mauve {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-taupe {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-gray {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-gray-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-gray-mouse {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-champagne {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-khaki {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-charcoal {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-bronze {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-windstorm {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-nude {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-terracotta {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-coral {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-army {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-seashell {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.dark-side .gr-light-sand {
  background:
    linear-gradient(
      var(--gradient-direction),
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1)) !important;
}
.gradient-text {
  background:
    linear-gradient(
      var(--gradient-direction),
      var(--gradient-from-color),
      var(--gradient-to-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-lime {
  background:
    linear-gradient(
      var(--gradient-direction),
      #334d1e 10%,
      #AEFD6C,
      #334d1e) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-green {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000 10%,
      #00b500,
      #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-emerald {
  background:
    linear-gradient(
      var(--gradient-direction),
      #12321d 10%,
      #50c878,
      #12321d) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-blue {
  background:
    linear-gradient(
      var(--gradient-direction),
      #08112c 10%,
      #5e87ff,
      #08112c) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-teal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000 10%,
      #1ac5c5,
      #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-cyan {
  background:
    linear-gradient(
      var(--gradient-direction),
      #2a4a58 10%,
      #94b6ff,
      #2a4a58) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-cobalt {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000 10%,
      #0047ab,
      #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-indigo {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000 10%,
      #6400a8,
      #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-almost {
  background:
    linear-gradient(
      var(--gradient-direction),
      #170739 10%,
      #6a2ded,
      #170739) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-violet {
  background:
    linear-gradient(
      var(--gradient-direction),
      #552755 10%,
      #ee82ee,
      #552755) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-pink {
  background:
    linear-gradient(
      var(--gradient-direction),
      #792c4b 10%,
      #ffc0cb,
      #792c4b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-magenta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #2c002c 10%,
      #ff00ff,
      #2c002c) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-crimson {
  background:
    linear-gradient(
      var(--gradient-direction),
      #070002 10%,
      #df0e38,
      #070002) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-red {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1f0000 10%,
      #ff0000,
      #1f0000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-orange {
  background:
    linear-gradient(
      var(--gradient-direction),
      #231600 10%,
      #ffa500,
      #231600) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-amber {
  background:
    linear-gradient(
      var(--gradient-direction),
      #382a00 10%,
      #ffca2a,
      #382a00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-yellow {
  background:
    linear-gradient(
      var(--gradient-direction),
      #7c6e12 10%,
      #ffe95e,
      #7c6e12) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0c0703 10%,
      #ca773c,
      #0c0703) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-olive {
  background:
    linear-gradient(
      var(--gradient-direction),
      #000000 10%,
      #a1a100,
      #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-steel {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1c2228 10%,
      #7b91a6,
      #1c2228) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-mauve {
  background:
    linear-gradient(
      var(--gradient-direction),
      #5c3872 10%,
      #e0afff,
      #5c3872) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-taupe {
  background:
    linear-gradient(
      var(--gradient-direction),
      #010000 10%,
      #977e67,
      #010000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-champagne {
  background:
    linear-gradient(
      var(--gradient-direction),
      #8a714e 10%,
      #f7e6ca,
      #8a714e) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-khaki {
  background:
    linear-gradient(
      var(--gradient-direction),
      #4f472d 10%,
      #d5c58a,
      #4f472d) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-charcoal {
  background:
    linear-gradient(
      var(--gradient-direction),
      #121212 10%,
      #989898,
      #121212) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-bronze {
  background:
    linear-gradient(
      var(--gradient-direction),
      #291707 10%,
      #e48d3e,
      #291707) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-windstorm {
  background:
    linear-gradient(
      var(--gradient-direction),
      #1e2a3c 10%,
      #799ed6,
      #1e2a3c) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-nude {
  background:
    linear-gradient(
      var(--gradient-direction),
      #6c5640 10%,
      #f7d9bc,
      #6c5640) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-terracotta {
  background:
    linear-gradient(
      var(--gradient-direction),
      #301009 10%,
      #e35336,
      #301009) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-coral {
  background:
    linear-gradient(
      var(--gradient-direction),
      #412115 10%,
      #ff8559,
      #412115) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-army {
  background:
    linear-gradient(
      var(--gradient-direction),
      #040502 10%,
      #5d6532,
      #040502) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-seashell {
  background:
    linear-gradient(
      var(--gradient-direction),
      #b17854 10%,
      #fff1e7,
      #b17854) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-sand {
  background:
    linear-gradient(
      var(--gradient-direction),
      #927f47 10%,
      #f1e0ae,
      #927f47) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

/* source/colors-css/stroke.less */
:root {
  --stroke-width: 1px;
}
.stroke-light-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f2ffe7;
  text-stroke: var(--stroke-width) #f2ffe7;
}
.stroke-dark-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #557f32;
  text-stroke: var(--stroke-width) #557f32;
}
.stroke-sat-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #7dba4a;
  text-stroke: var(--stroke-width) #7dba4a;
}
.stroke-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #AEFD6C;
  text-stroke: var(--stroke-width) #AEFD6C;
}
.stroke-light-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e7f6e6;
  text-stroke: var(--stroke-width) #e7f6e6;
}
.stroke-dark-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #003d00;
  text-stroke: var(--stroke-width) #003d00;
}
.stroke-sat-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #008f00;
  text-stroke: var(--stroke-width) #008f00;
}
.stroke-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #00b500;
  text-stroke: var(--stroke-width) #00b500;
}
.stroke-light-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #d1e6cc;
  text-stroke: var(--stroke-width) #d1e6cc;
}
.stroke-dark-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #246339;
  text-stroke: var(--stroke-width) #246339;
}
.stroke-sat-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #3ca15d;
  text-stroke: var(--stroke-width) #3ca15d;
}
.stroke-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #50c878;
  text-stroke: var(--stroke-width) #50c878;
}
.stroke-light-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e7eaff;
  text-stroke: var(--stroke-width) #e7eaff;
}
.stroke-dark-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #132a6f;
  text-stroke: var(--stroke-width) #132a6f;
}
.stroke-sat-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #1f43ae;
  text-stroke: var(--stroke-width) #1f43ae;
}
.stroke-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5e87ff;
  text-stroke: var(--stroke-width) #5e87ff;
}
.stroke-light-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e1f2f3;
  text-stroke: var(--stroke-width) #e1f2f3;
}
.stroke-dark-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #014848;
  text-stroke: var(--stroke-width) #014848;
}
.stroke-sat-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #008a8a;
  text-stroke: var(--stroke-width) #008a8a;
}
.stroke-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #1ac5c5;
  text-stroke: var(--stroke-width) #1ac5c5;
}
.stroke-light-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e3edff;
  text-stroke: var(--stroke-width) #e3edff;
}
.stroke-dark-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #456c7e;
  text-stroke: var(--stroke-width) #456c7e;
}
.stroke-sat-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #659db6;
  text-stroke: var(--stroke-width) #659db6;
}
.stroke-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #94b6ff;
  text-stroke: var(--stroke-width) #94b6ff;
}
.stroke-light-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #d1ecff;
  text-stroke: var(--stroke-width) #d1ecff;
}
.stroke-dark-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #001f54;
  text-stroke: var(--stroke-width) #001f54;
}
.stroke-sat-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #003391;
  text-stroke: var(--stroke-width) #003391;
}
.stroke-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #0047ab;
  text-stroke: var(--stroke-width) #0047ab;
}
.stroke-light-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f3dcf3;
  text-stroke: var(--stroke-width) #f3dcf3;
}
.stroke-dark-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #21003e;
  text-stroke: var(--stroke-width) #21003e;
}
.stroke-sat-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #430080;
  text-stroke: var(--stroke-width) #430080;
}
.stroke-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #6400a8;
  text-stroke: var(--stroke-width) #6400a8;
}
.stroke-light-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #eee5ff;
  text-stroke: var(--stroke-width) #eee5ff;
}
.stroke-dark-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #2f0687;
  text-stroke: var(--stroke-width) #2f0687;
}
.stroke-sat-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #4e18c1;
  text-stroke: var(--stroke-width) #4e18c1;
}
.stroke-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #6a2ded;
  text-stroke: var(--stroke-width) #6a2ded;
}
.stroke-light-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fce2fb;
  text-stroke: var(--stroke-width) #fce2fb;
}
.stroke-dark-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #773e77;
  text-stroke: var(--stroke-width) #773e77;
}
.stroke-sat-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #b65fb6;
  text-stroke: var(--stroke-width) #b65fb6;
}
.stroke-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ee82ee;
  text-stroke: var(--stroke-width) #ee82ee;
}
.stroke-light-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffeef1;
  text-stroke: var(--stroke-width) #ffeef1;
}
.stroke-dark-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #805f65;
  text-stroke: var(--stroke-width) #805f65;
}
.stroke-sat-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #cc7296;
  text-stroke: var(--stroke-width) #cc7296;
}
.stroke-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffc0cb;
  text-stroke: var(--stroke-width) #ffc0cb;
}
.stroke-light-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffe2ff;
  text-stroke: var(--stroke-width) #ffe2ff;
}
.stroke-dark-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #800080;
  text-stroke: var(--stroke-width) #800080;
}
.stroke-sat-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #c500c5;
  text-stroke: var(--stroke-width) #c500c5;
}
.stroke-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ff00ff;
  text-stroke: var(--stroke-width) #ff00ff;
}
.stroke-light-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffd1da;
  text-stroke: var(--stroke-width) #ffd1da;
}
.stroke-dark-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #6e0519;
  text-stroke: var(--stroke-width) #6e0519;
}
.stroke-sat-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #980824;
  text-stroke: var(--stroke-width) #980824;
}
.stroke-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #df0e38;
  text-stroke: var(--stroke-width) #df0e38;
}
.stroke-light-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffe1e1;
  text-stroke: var(--stroke-width) #ffe1e1;
}
.stroke-dark-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #800000;
  text-stroke: var(--stroke-width) #800000;
}
.stroke-sat-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #b80000;
  text-stroke: var(--stroke-width) #b80000;
}
.stroke-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ff0000;
  text-stroke: var(--stroke-width) #ff0000;
}
.stroke-light-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fff3de;
  text-stroke: var(--stroke-width) #fff3de;
}
.stroke-dark-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #805100;
  text-stroke: var(--stroke-width) #805100;
}
.stroke-sat-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #bc7700;
  text-stroke: var(--stroke-width) #bc7700;
}
.stroke-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffa500;
  text-stroke: var(--stroke-width) #ffa500;
}
.stroke-light-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fff8e1;
  text-stroke: var(--stroke-width) #fff8e1;
}
.stroke-dark-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #805e00;
  text-stroke: var(--stroke-width) #805e00;
}
.stroke-sat-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #d19b00;
  text-stroke: var(--stroke-width) #d19b00;
}
.stroke-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffca2a;
  text-stroke: var(--stroke-width) #ffca2a;
}
.stroke-light-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffffc6;
  text-stroke: var(--stroke-width) #ffffc6;
}
.stroke-dark-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #bca826;
  text-stroke: var(--stroke-width) #bca826;
}
.stroke-sat-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e4ce43;
  text-stroke: var(--stroke-width) #e4ce43;
}
.stroke-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffe95e;
  text-stroke: var(--stroke-width) #ffe95e;
}
.stroke-light-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffeed9;
  text-stroke: var(--stroke-width) #ffeed9;
}
.stroke-dark-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #42240f;
  text-stroke: var(--stroke-width) #42240f;
}
.stroke-sat-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #884b20;
  text-stroke: var(--stroke-width) #884b20;
}
.stroke-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ca773c;
  text-stroke: var(--stroke-width) #ca773c;
}
.stroke-light-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f8fde7;
  text-stroke: var(--stroke-width) #f8fde7;
}
.stroke-dark-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #3d3d00;
  text-stroke: var(--stroke-width) #3d3d00;
}
.stroke-sat-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #838300;
  text-stroke: var(--stroke-width) #838300;
}
.stroke-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #a1a100;
  text-stroke: var(--stroke-width) #a1a100;
}
.stroke-light-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #edeeee;
  text-stroke: var(--stroke-width) #edeeee;
}
.stroke-dark-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #2e3841;
  text-stroke: var(--stroke-width) #2e3841;
}
.stroke-sat-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5c7081;
  text-stroke: var(--stroke-width) #5c7081;
}
.stroke-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #7b91a6;
  text-stroke: var(--stroke-width) #7b91a6;
}
.stroke-light-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f7ecfe;
  text-stroke: var(--stroke-width) #f7ecfe;
}
.stroke-dark-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #705680;
  text-stroke: var(--stroke-width) #705680;
}
.stroke-sat-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #a982c1;
  text-stroke: var(--stroke-width) #a982c1;
}
.stroke-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e0afff;
  text-stroke: var(--stroke-width) #e0afff;
}
.stroke-light-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #eadccf;
  text-stroke: var(--stroke-width) #eadccf;
}
.stroke-dark-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #261e18;
  text-stroke: var(--stroke-width) #261e18;
}
.stroke-sat-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5e4a3c;
  text-stroke: var(--stroke-width) #5e4a3c;
}
.stroke-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #977e67;
  text-stroke: var(--stroke-width) #977e67;
}
.stroke-light-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fff9f2;
  text-stroke: var(--stroke-width) #fff9f2;
}
.stroke-dark-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #7c7364;
  text-stroke: var(--stroke-width) #7c7364;
}
.stroke-sat-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ccbca5;
  text-stroke: var(--stroke-width) #ccbca5;
}
.stroke-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f7e6ca;
  text-stroke: var(--stroke-width) #f7e6ca;
}
.stroke-light-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f6f1dd;
  text-stroke: var(--stroke-width) #f6f1dd;
}
.stroke-dark-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #6a6142;
  text-stroke: var(--stroke-width) #6a6142;
}
.stroke-sat-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #aa9c6b;
  text-stroke: var(--stroke-width) #aa9c6b;
}
.stroke-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #d5c58a;
  text-stroke: var(--stroke-width) #d5c58a;
}
.stroke-light-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e8e8e8;
  text-stroke: var(--stroke-width) #e8e8e8;
}
.stroke-dark-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #202020;
  text-stroke: var(--stroke-width) #202020;
}
.stroke-sat-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5e5e5e;
  text-stroke: var(--stroke-width) #5e5e5e;
}
.stroke-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #989898;
  text-stroke: var(--stroke-width) #989898;
}
.stroke-light-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffecdc;
  text-stroke: var(--stroke-width) #ffecdc;
}
.stroke-dark-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #693c13;
  text-stroke: var(--stroke-width) #693c13;
}
.stroke-sat-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #aa621f;
  text-stroke: var(--stroke-width) #aa621f;
}
.stroke-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e48d3e;
  text-stroke: var(--stroke-width) #e48d3e;
}
.stroke-light-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e6ebf5;
  text-stroke: var(--stroke-width) #e6ebf5;
}
.stroke-dark-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #304462;
  text-stroke: var(--stroke-width) #304462;
}
.stroke-sat-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5071a3;
  text-stroke: var(--stroke-width) #5071a3;
}
.stroke-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #799ed6;
  text-stroke: var(--stroke-width) #799ed6;
}
.stroke-light-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fcf0e4;
  text-stroke: var(--stroke-width) #fcf0e4;
}
.stroke-dark-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #7c6c5d;
  text-stroke: var(--stroke-width) #7c6c5d;
}
.stroke-sat-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #baa28b;
  text-stroke: var(--stroke-width) #baa28b;
}
.stroke-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f7d9bc;
  text-stroke: var(--stroke-width) #f7d9bc;
}
.stroke-light-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffe5df;
  text-stroke: var(--stroke-width) #ffe5df;
}
.stroke-dark-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #712516;
  text-stroke: var(--stroke-width) #712516;
}
.stroke-sat-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #af3a23;
  text-stroke: var(--stroke-width) #af3a23;
}
.stroke-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e35336;
  text-stroke: var(--stroke-width) #e35336;
}
.stroke-light-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffd8c8;
  text-stroke: var(--stroke-width) #ffd8c8;
}
.stroke-dark-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #804028;
  text-stroke: var(--stroke-width) #804028;
}
.stroke-sat-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #b65c39;
  text-stroke: var(--stroke-width) #b65c39;
}
.stroke-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ff8559;
  text-stroke: var(--stroke-width) #ff8559;
}
.stroke-light-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #eceacb;
  text-stroke: var(--stroke-width) #eceacb;
}
.stroke-dark-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #2a2f14;
  text-stroke: var(--stroke-width) #2a2f14;
}
.stroke-sat-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #647030;
  text-stroke: var(--stroke-width) #647030;
}
.stroke-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #5d6532;
  text-stroke: var(--stroke-width) #5d6532;
}
.stroke-light-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fff9f8;
  text-stroke: var(--stroke-width) #fff9f8;
}
.stroke-dark-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #bfa89a;
  text-stroke: var(--stroke-width) #bfa89a;
}
.stroke-sat-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #e1cbbd;
  text-stroke: var(--stroke-width) #e1cbbd;
}
.stroke-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #fff1e7;
  text-stroke: var(--stroke-width) #fff1e7;
}
.stroke-light-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f8f3e0;
  text-stroke: var(--stroke-width) #f8f3e0;
}
.stroke-dark-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #8f8975;
  text-stroke: var(--stroke-width) #8f8975;
}
.stroke-sat-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #d1c5a1;
  text-stroke: var(--stroke-width) #d1c5a1;
}
.stroke-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f1e0ae;
  text-stroke: var(--stroke-width) #f1e0ae;
}

/* source/components/accordion/accordion.less */
:root {
  --accordion-heading-background: #f8f8f8;
  --accordion-heading-color: #191919;
}
.dark-side {
  --accordion-heading-background: #2b2d30;
  --accordion-heading-color: #dfe1e5;
}
.accordion {
  list-style: none inside;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.accordion > .frame {
  display: block;
  margin: 1px 0;
}
.accordion > .frame > .heading {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 16px;
  background-color: var(--accordion-heading-background);
  color: var(--accordion-heading-color);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 6px;
}
.accordion > .frame > .content {
  display: block;
}
.accordion.marker-on .heading {
  padding-left: 40px;
}
.accordion.marker-on .heading::before {
  line-height: 1;
  display: flex;
  content: "\2bc8";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  width: 34px;
  height: 34px;
  text-align: center;
  transform: rotate(0);
  transition: transform 0.3s;
  transform-origin: center center;
  align-items: center;
  justify-content: center;
}
.accordion.marker-on .frame.active > .heading::before {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.accordion.marker-on[dir=rtl] .heading {
  padding-left: 1rem;
  padding-right: 32px;
}
.accordion.marker-on[dir=rtl] .heading::before {
  left: auto;
  right: 0;
}
.accordion.marker-on[dir=rtl] .frame.active > .heading::before {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion.material .heading::before {
  display: none;
}
.accordion.material > .frame > .heading {
  padding: 16px 42px 16px 16px;
  font-size: 16px;
  background-color: var(--accordion-heading-background);
  color: var(--accordion-heading-color);
  border-radius: 1rem;
}
.accordion.material > .frame > .heading::after {
  display: block;
  content: "\203a";
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -20px;
  font-size: 32px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  transform: rotate(0);
  transition: transform 0.3s;
  transform-origin: 50% 50%;
}
.accordion.material > .frame > .content {
  font-size: 14px;
}
.accordion.material > .frame.active .heading::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.accordion.rtl.material > .frame > .heading,
.accordion[dir=rtl].material > .frame > .heading {
  padding: 16px 16px 16px 42px;
}
.accordion.rtl.material > .frame > .heading::after,
.accordion[dir=rtl].material > .frame > .heading::after {
  left: 16px;
  right: auto;
  top: 8px;
  transform: rotate(180deg);
}
.accordion.rtl.material > .frame.active .heading::after,
.accordion[dir=rtl].material > .frame.active .heading::after {
  transform: rotate(270deg);
}

/* source/components/action-button/action-button.less */
:root {
  --action-button-background: #ebebeb;
  --action-button-color: #191919;
}
.dark-side {
  --action-button-background: #2b2d30;
  --action-button-color: #f3fcff;
}
.action-button {
  --num-actions: 0;
  --action-shift: 60px;
  padding: 0;
  margin: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 500;
}
.action-button button {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 400;
  white-space: nowrap;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.15s ease-in-out;
  background-color: var(--action-button-background);
  color: var(--action-button-color);
  cursor: pointer;
  outline: none;
  z-index: 1;
}
.action-button button .icon {
  transition: all 0.15s ease-in-out;
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.action-button button.active.rotate {
  transform: rotate(45deg);
}
.action-button button.active .icon {
  transform: scale(1.6);
}
.action-button .actions {
  list-style: none inside none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 0;
}
.action-button .actions li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--action-button-background);
  color: var(--action-button-color);
  position: absolute;
  transition: all 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  z-index: 0;
}
.action-button .actions li * {
  width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  text-decoration: none;
  color: inherit;
  background: inherit;
}
.action-button button.active + .actions li {
  --angle: calc(360deg / var(--num-actions) * var(--action-index));
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--action-shift)) rotate(calc(-1 * var(--angle))) scale(1);
}

/* source/components/button/button.less */
:root {
  --button-border-radius: 4px;
  --button-font-size: 14px;
  --button-background: #ebebeb;
  --button-background-hover: #dadada;
  --button-color: #191919;
  --button-border-color: #ebebeb;
  --button-disabled-opacity: 0.65;
}
.dark-side {
  --button-background: #2b2d30;
  --button-background-hover: #333439;
  --button-color: #f3fcff;
  --button-border-color: #4e5157;
  --button-disabled-opacity: 0.25;
}
button,
input[type=button],
input[type=submit],
input[type=reset],
.button,
.flat-button {
  --control-height: var(--control-height-normal);
  --pill-button-radius: calc(var(--control-height) / 2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0 var(--button-font-size);
  font-size: var(--button-font-size);
  height: var(--control-height);
  background-color: var(--button-background);
  color: var(--button-color);
  border: 1px solid var(--button-border-color);
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: visible;
  border-radius: var(--button-border-radius);
  gap: 8px;
}
button:first-child,
input[type=button]:first-child,
input[type=submit]:first-child,
input[type=reset]:first-child,
.button:first-child,
.flat-button:first-child {
  margin-left: 0;
}
button:last-child,
input[type=button]:last-child,
input[type=submit]:last-child,
input[type=reset]:last-child,
.button:last-child,
.flat-button:last-child {
  margin-right: 0;
}
button.disabled,
input[type=button].disabled,
input[type=submit].disabled,
input[type=reset].disabled,
.button.disabled,
.flat-button.disabled,
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled,
.button:disabled,
.flat-button:disabled {
  pointer-events: none;
  opacity: var(--button-disabled-opacity);
}
button .icon,
input[type=button] .icon,
input[type=submit] .icon,
input[type=reset] .icon,
.button .icon,
.flat-button .icon {
  height: calc(var(--button-size)/2);
  font-size: calc(var(--button-font-size) * 1.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
button.pill-button,
input[type=button].pill-button,
input[type=submit].pill-button,
input[type=reset].pill-button,
.button.pill-button,
.flat-button.pill-button {
  border-radius: var(--pill-button-radius);
}
button:active,
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
.button:active,
.flat-button:active,
button.focus,
input[type=button].focus,
input[type=submit].focus,
input[type=reset].focus,
.button.focus,
.flat-button.focus,
button:focus,
input[type=button]:focus,
input[type=submit]:focus,
input[type=reset]:focus,
.button:focus,
.flat-button:focus {
  text-decoration: none;
}
@media (hover: hover) {
  button:hover,
  input[type=button]:hover,
  input[type=submit]:hover,
  input[type=reset]:hover,
  .button:hover,
  .flat-button:hover {
    background-color: var(--button-background-hover);
  }
}
@media (hover: none) {
  button:active,
  input[type=button]:active,
  input[type=submit]:active,
  input[type=reset]:active,
  .button:active,
  .flat-button:active {
    background-color: var(--button-background-hover);
  }
}
button.link,
input[type=button].link,
input[type=submit].link,
input[type=reset].link,
.button.link,
.flat-button.link {
  background-color: transparent;
  border: none;
}
button.link:hover,
input[type=button].link:hover,
input[type=submit].link:hover,
input[type=reset].link:hover,
.button.link:hover,
.flat-button.link:hover {
  background-color: transparent;
  text-decoration: underline;
}
button.link.focus,
input[type=button].link.focus,
input[type=submit].link.focus,
input[type=reset].link.focus,
.button.link.focus,
.flat-button.link.focus,
button.link:focus,
input[type=button].link:focus,
input[type=submit].link:focus,
input[type=reset].link:focus,
.button.link:focus,
.flat-button.link:focus {
  box-shadow: none;
}
button.mini,
input[type=button].mini,
input[type=submit].mini,
input[type=reset].mini,
.button.mini,
.flat-button.mini {
  --control-height: var(--control-height-mini);
  --button-font-size: 10px;
}
button.small,
input[type=button].small,
input[type=submit].small,
input[type=reset].small,
.button.small,
.flat-button.small {
  --control-height: var(--control-height-small);
  --button-font-size: 12px;
}
button.medium,
input[type=button].medium,
input[type=submit].medium,
input[type=reset].medium,
.button.medium,
.flat-button.medium {
  --control-height: var(--control-height-medium);
  --button-font-size: 14px;
}
button.large,
input[type=button].large,
input[type=submit].large,
input[type=reset].large,
.button.large,
.flat-button.large {
  --control-height: var(--control-height-large);
  --button-font-size: 18px;
}
button.square,
input[type=button].square,
input[type=submit].square,
input[type=reset].square,
.button.square,
.flat-button.square,
button.cycle,
input[type=button].cycle,
input[type=submit].cycle,
input[type=reset].cycle,
.button.cycle,
.flat-button.cycle {
  width: var(--control-height);
  height: var(--control-height);
  padding: 0 !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
button.cycle,
input[type=button].cycle,
input[type=submit].cycle,
input[type=reset].cycle,
.button.cycle,
.flat-button.cycle {
  border-radius: 50%;
}
button.square.dropdown-toggle::before,
input[type=button].square.dropdown-toggle::before,
input[type=submit].square.dropdown-toggle::before,
input[type=reset].square.dropdown-toggle::before,
.button.square.dropdown-toggle::before,
.flat-button.square.dropdown-toggle::before,
button.cycle.dropdown-toggle::before,
input[type=button].cycle.dropdown-toggle::before,
input[type=submit].cycle.dropdown-toggle::before,
input[type=reset].cycle.dropdown-toggle::before,
.button.cycle.dropdown-toggle::before,
.flat-button.cycle.dropdown-toggle::before {
  display: none;
}
button.dropdown-toggle.no-marker,
input[type=button].dropdown-toggle.no-marker,
input[type=submit].dropdown-toggle.no-marker,
input[type=reset].dropdown-toggle.no-marker,
.button.dropdown-toggle.no-marker,
.flat-button.dropdown-toggle.no-marker {
  padding-right: 0.75rem !important;
}
button.outline,
input[type=button].outline,
input[type=submit].outline,
input[type=reset].outline,
.button.outline,
.flat-button.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--button-border-color);
  color: var(--button-color);
}
@media (hover: hover) {
  button.outline:hover,
  input[type=button].outline:hover,
  input[type=submit].outline:hover,
  input[type=reset].outline:hover,
  .button.outline:hover,
  .flat-button.outline:hover {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@media (hover: none) {
  button.outline:active,
  input[type=button].outline:active,
  input[type=submit].outline:active,
  input[type=reset].outline:active,
  .button.outline:active,
  .flat-button.outline:active {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
a.button,
a.flat-button {
  appearance: none;
  color: var(--button-color);
  box-shadow: none;
  text-decoration: none;
}
button .loader,
input[type=button] .loader,
input[type=submit] .loader,
input[type=reset] .loader,
.button .loader {
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
button .loader + .caption,
input[type=button] .loader + .caption,
input[type=submit] .loader + .caption,
input[type=reset] .loader + .caption,
.button .loader + .caption {
  transition: all 0.3s ease-in-out;
  margin-left: -16px;
}
button.loading,
input[type=button].loading,
input[type=submit].loading,
input[type=reset].loading,
.button.loading {
  transition: all 0.3s ease-in-out;
}
button.loading .loader,
input[type=button].loading .loader,
input[type=submit].loading .loader,
input[type=reset].loading .loader,
.button.loading .loader {
  transform: scale(1);
  opacity: 1;
}
button.loading .caption,
input[type=button].loading .caption,
input[type=submit].loading .caption,
input[type=reset].loading .caption,
.button.loading .caption {
  margin-left: 0.3rem;
}
button.flat,
.button.flat,
.flat-button {
  min-width: 64px;
  background-color: transparent;
  border-color: transparent;
}
@media (hover: hover) {
  button.flat:hover,
  .button.flat:hover,
  .flat-button:hover {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@media (hover: none) {
  button.flat:active,
  .button.flat:active,
  .flat-button:active {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@container (min-width: 0) {
  button.large-fs,
  input[type=button].large-fs,
  input[type=submit].large-fs,
  input[type=reset].large-fs,
  .button.large-fs {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-fs,
  input[type=button].small-fs,
  input[type=submit].small-fs,
  input[type=reset].small-fs,
  .button.small-fs {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-fs,
  input[type=button].mini-fs,
  input[type=submit].mini-fs,
  input[type=reset].mini-fs,
  .button.mini-fs {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 360px) {
  button.large-xs,
  input[type=button].large-xs,
  input[type=submit].large-xs,
  input[type=reset].large-xs,
  .button.large-xs {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-xs,
  input[type=button].small-xs,
  input[type=submit].small-xs,
  input[type=reset].small-xs,
  .button.small-xs {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-xs,
  input[type=button].mini-xs,
  input[type=submit].mini-xs,
  input[type=reset].mini-xs,
  .button.mini-xs {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 576px) {
  button.large-sm,
  input[type=button].large-sm,
  input[type=submit].large-sm,
  input[type=reset].large-sm,
  .button.large-sm {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-sm,
  input[type=button].small-sm,
  input[type=submit].small-sm,
  input[type=reset].small-sm,
  .button.small-sm {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-sm,
  input[type=button].mini-sm,
  input[type=submit].mini-sm,
  input[type=reset].mini-sm,
  .button.mini-sm {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 640px) {
  button.large-ld,
  input[type=button].large-ld,
  input[type=submit].large-ld,
  input[type=reset].large-ld,
  .button.large-ld {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-ld,
  input[type=button].small-ld,
  input[type=submit].small-ld,
  input[type=reset].small-ld,
  .button.small-ld {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-ld,
  input[type=button].mini-ld,
  input[type=submit].mini-ld,
  input[type=reset].mini-ld,
  .button.mini-ld {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 768px) {
  button.large-md,
  input[type=button].large-md,
  input[type=submit].large-md,
  input[type=reset].large-md,
  .button.large-md {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-md,
  input[type=button].small-md,
  input[type=submit].small-md,
  input[type=reset].small-md,
  .button.small-md {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-md,
  input[type=button].mini-md,
  input[type=submit].mini-md,
  input[type=reset].mini-md,
  .button.mini-md {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 992px) {
  button.large-lg,
  input[type=button].large-lg,
  input[type=submit].large-lg,
  input[type=reset].large-lg,
  .button.large-lg {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-lg,
  input[type=button].small-lg,
  input[type=submit].small-lg,
  input[type=reset].small-lg,
  .button.small-lg {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-lg,
  input[type=button].mini-lg,
  input[type=submit].mini-lg,
  input[type=reset].mini-lg,
  .button.mini-lg {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 1200px) {
  button.large-xl,
  input[type=button].large-xl,
  input[type=submit].large-xl,
  input[type=reset].large-xl,
  .button.large-xl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-xl,
  input[type=button].small-xl,
  input[type=submit].small-xl,
  input[type=reset].small-xl,
  .button.small-xl {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-xl,
  input[type=button].mini-xl,
  input[type=submit].mini-xl,
  input[type=reset].mini-xl,
  .button.mini-xl {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 1400px) {
  button.large-xxl,
  input[type=button].large-xxl,
  input[type=submit].large-xxl,
  input[type=reset].large-xxl,
  .button.large-xxl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-xxl,
  input[type=button].small-xxl,
  input[type=submit].small-xxl,
  input[type=reset].small-xxl,
  .button.small-xxl {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-xxl,
  input[type=button].mini-xxl,
  input[type=submit].mini-xxl,
  input[type=reset].mini-xxl,
  .button.mini-xxl {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
@container (min-width: 2000px) {
  button.large-xxxl,
  input[type=button].large-xxxl,
  input[type=submit].large-xxxl,
  input[type=reset].large-xxxl,
  .button.large-xxxl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.small-xxxl,
  input[type=button].small-xxxl,
  input[type=submit].small-xxxl,
  input[type=reset].small-xxxl,
  .button.small-xxxl {
    --button-pill-radius: 13px;
    --button-size: 26px;
    --button-font-size: 12px;
  }
  button.mini-xxxl,
  input[type=button].mini-xxxl,
  input[type=submit].mini-xxxl,
  input[type=reset].mini-xxxl,
  .button.mini-xxxl {
    --button-pill-radius: 10px;
    --button-size: 20px;
    --button-font-size: 10px;
  }
}
.button-soft-lime {
  background: #f2ffe7 !important;
  color: #557f32 !important;
  border-color: #AEFD6C !important;
}
@media (hover: hover) {
  .button-soft-lime:hover {
    background: #AEFD6C !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-lime:active {
    background: #AEFD6C !important;
    color: #ffffff !important;
  }
}
.button-lime {
  background: #AEFD6C !important;
  color: #ffffff !important;
  border-color: #7dba4a !important;
}
@media (hover: hover) {
  .button-lime:hover {
    background: #7dba4a !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-lime:active {
    background: #7dba4a !important;
    color: #ffffff !important;
  }
}
.button-soft-green {
  background: #e7f6e6 !important;
  color: #003d00 !important;
  border-color: #00b500 !important;
}
@media (hover: hover) {
  .button-soft-green:hover {
    background: #00b500 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-green:active {
    background: #00b500 !important;
    color: #ffffff !important;
  }
}
.button-green {
  background: #00b500 !important;
  color: #ffffff !important;
  border-color: #008f00 !important;
}
@media (hover: hover) {
  .button-green:hover {
    background: #008f00 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-green:active {
    background: #008f00 !important;
    color: #ffffff !important;
  }
}
.button-soft-emerald {
  background: #d1e6cc !important;
  color: #246339 !important;
  border-color: #50c878 !important;
}
@media (hover: hover) {
  .button-soft-emerald:hover {
    background: #50c878 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-emerald:active {
    background: #50c878 !important;
    color: #ffffff !important;
  }
}
.button-emerald {
  background: #50c878 !important;
  color: #ffffff !important;
  border-color: #3ca15d !important;
}
@media (hover: hover) {
  .button-emerald:hover {
    background: #3ca15d !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-emerald:active {
    background: #3ca15d !important;
    color: #ffffff !important;
  }
}
.button-soft-blue {
  background: #e7eaff !important;
  color: #132a6f !important;
  border-color: #5e87ff !important;
}
@media (hover: hover) {
  .button-soft-blue:hover {
    background: #5e87ff !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-blue:active {
    background: #5e87ff !important;
    color: #ffffff !important;
  }
}
.button-blue {
  background: #5e87ff !important;
  color: #ffffff !important;
  border-color: #1f43ae !important;
}
@media (hover: hover) {
  .button-blue:hover {
    background: #1f43ae !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-blue:active {
    background: #1f43ae !important;
    color: #ffffff !important;
  }
}
.button-soft-teal {
  background: #e1f2f3 !important;
  color: #014848 !important;
  border-color: #1ac5c5 !important;
}
@media (hover: hover) {
  .button-soft-teal:hover {
    background: #1ac5c5 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-teal:active {
    background: #1ac5c5 !important;
    color: #ffffff !important;
  }
}
.button-teal {
  background: #1ac5c5 !important;
  color: #ffffff !important;
  border-color: #008a8a !important;
}
@media (hover: hover) {
  .button-teal:hover {
    background: #008a8a !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-teal:active {
    background: #008a8a !important;
    color: #ffffff !important;
  }
}
.button-soft-cyan {
  background: #e3edff !important;
  color: #456c7e !important;
  border-color: #94b6ff !important;
}
@media (hover: hover) {
  .button-soft-cyan:hover {
    background: #94b6ff !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-cyan:active {
    background: #94b6ff !important;
    color: #ffffff !important;
  }
}
.button-cyan {
  background: #94b6ff !important;
  color: #ffffff !important;
  border-color: #659db6 !important;
}
@media (hover: hover) {
  .button-cyan:hover {
    background: #659db6 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-cyan:active {
    background: #659db6 !important;
    color: #ffffff !important;
  }
}
.button-soft-cobalt {
  background: #d1ecff !important;
  color: #001f54 !important;
  border-color: #0047ab !important;
}
@media (hover: hover) {
  .button-soft-cobalt:hover {
    background: #0047ab !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-cobalt:active {
    background: #0047ab !important;
    color: #ffffff !important;
  }
}
.button-cobalt {
  background: #0047ab !important;
  color: #ffffff !important;
  border-color: #003391 !important;
}
@media (hover: hover) {
  .button-cobalt:hover {
    background: #003391 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-cobalt:active {
    background: #003391 !important;
    color: #ffffff !important;
  }
}
.button-soft-indigo {
  background: #f3dcf3 !important;
  color: #21003e !important;
  border-color: #6400a8 !important;
}
@media (hover: hover) {
  .button-soft-indigo:hover {
    background: #6400a8 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-indigo:active {
    background: #6400a8 !important;
    color: #ffffff !important;
  }
}
.button-indigo {
  background: #6400a8 !important;
  color: #ffffff !important;
  border-color: #430080 !important;
}
@media (hover: hover) {
  .button-indigo:hover {
    background: #430080 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-indigo:active {
    background: #430080 !important;
    color: #ffffff !important;
  }
}
.button-soft-almost {
  background: #eee5ff !important;
  color: #2f0687 !important;
  border-color: #6a2ded !important;
}
@media (hover: hover) {
  .button-soft-almost:hover {
    background: #6a2ded !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-almost:active {
    background: #6a2ded !important;
    color: #ffffff !important;
  }
}
.button-almost {
  background: #6a2ded !important;
  color: #ffffff !important;
  border-color: #4e18c1 !important;
}
@media (hover: hover) {
  .button-almost:hover {
    background: #4e18c1 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-almost:active {
    background: #4e18c1 !important;
    color: #ffffff !important;
  }
}
.button-soft-violet {
  background: #fce2fb !important;
  color: #773e77 !important;
  border-color: #ee82ee !important;
}
@media (hover: hover) {
  .button-soft-violet:hover {
    background: #ee82ee !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-violet:active {
    background: #ee82ee !important;
    color: #ffffff !important;
  }
}
.button-violet {
  background: #ee82ee !important;
  color: #ffffff !important;
  border-color: #b65fb6 !important;
}
@media (hover: hover) {
  .button-violet:hover {
    background: #b65fb6 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-violet:active {
    background: #b65fb6 !important;
    color: #ffffff !important;
  }
}
.button-soft-pink {
  background: #ffeef1 !important;
  color: #805f65 !important;
  border-color: #ffc0cb !important;
}
@media (hover: hover) {
  .button-soft-pink:hover {
    background: #ffc0cb !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-pink:active {
    background: #ffc0cb !important;
    color: #ffffff !important;
  }
}
.button-pink {
  background: #ffc0cb !important;
  color: #ffffff !important;
  border-color: #cc7296 !important;
}
@media (hover: hover) {
  .button-pink:hover {
    background: #cc7296 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-pink:active {
    background: #cc7296 !important;
    color: #ffffff !important;
  }
}
.button-soft-magenta {
  background: #ffe2ff !important;
  color: #800080 !important;
  border-color: #ff00ff !important;
}
@media (hover: hover) {
  .button-soft-magenta:hover {
    background: #ff00ff !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-magenta:active {
    background: #ff00ff !important;
    color: #ffffff !important;
  }
}
.button-magenta {
  background: #ff00ff !important;
  color: #ffffff !important;
  border-color: #c500c5 !important;
}
@media (hover: hover) {
  .button-magenta:hover {
    background: #c500c5 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-magenta:active {
    background: #c500c5 !important;
    color: #ffffff !important;
  }
}
.button-soft-crimson {
  background: #ffd1da !important;
  color: #6e0519 !important;
  border-color: #df0e38 !important;
}
@media (hover: hover) {
  .button-soft-crimson:hover {
    background: #df0e38 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-crimson:active {
    background: #df0e38 !important;
    color: #ffffff !important;
  }
}
.button-crimson {
  background: #df0e38 !important;
  color: #ffffff !important;
  border-color: #980824 !important;
}
@media (hover: hover) {
  .button-crimson:hover {
    background: #980824 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-crimson:active {
    background: #980824 !important;
    color: #ffffff !important;
  }
}
.button-soft-red {
  background: #ffe1e1 !important;
  color: #800000 !important;
  border-color: #ff0000 !important;
}
@media (hover: hover) {
  .button-soft-red:hover {
    background: #ff0000 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-red:active {
    background: #ff0000 !important;
    color: #ffffff !important;
  }
}
.button-red {
  background: #ff0000 !important;
  color: #ffffff !important;
  border-color: #b80000 !important;
}
@media (hover: hover) {
  .button-red:hover {
    background: #b80000 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-red:active {
    background: #b80000 !important;
    color: #ffffff !important;
  }
}
.button-soft-orange {
  background: #fff3de !important;
  color: #805100 !important;
  border-color: #ffa500 !important;
}
@media (hover: hover) {
  .button-soft-orange:hover {
    background: #ffa500 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-orange:active {
    background: #ffa500 !important;
    color: #ffffff !important;
  }
}
.button-orange {
  background: #ffa500 !important;
  color: #ffffff !important;
  border-color: #bc7700 !important;
}
@media (hover: hover) {
  .button-orange:hover {
    background: #bc7700 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-orange:active {
    background: #bc7700 !important;
    color: #ffffff !important;
  }
}
.button-soft-amber {
  background: #fff8e1 !important;
  color: #805e00 !important;
  border-color: #ffca2a !important;
}
@media (hover: hover) {
  .button-soft-amber:hover {
    background: #ffca2a !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-amber:active {
    background: #ffca2a !important;
    color: #ffffff !important;
  }
}
.button-amber {
  background: #ffca2a !important;
  color: #ffffff !important;
  border-color: #d19b00 !important;
}
@media (hover: hover) {
  .button-amber:hover {
    background: #d19b00 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-amber:active {
    background: #d19b00 !important;
    color: #ffffff !important;
  }
}
.button-soft-yellow {
  background: #ffffc6 !important;
  color: #bca826 !important;
  border-color: #ffe95e !important;
}
@media (hover: hover) {
  .button-soft-yellow:hover {
    background: #ffe95e !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-yellow:active {
    background: #ffe95e !important;
    color: #ffffff !important;
  }
}
.button-yellow {
  background: #ffe95e !important;
  color: #ffffff !important;
  border-color: #e4ce43 !important;
}
@media (hover: hover) {
  .button-yellow:hover {
    background: #e4ce43 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-yellow:active {
    background: #e4ce43 !important;
    color: #ffffff !important;
  }
}
.button-soft-brown {
  background: #ffeed9 !important;
  color: #42240f !important;
  border-color: #ca773c !important;
}
@media (hover: hover) {
  .button-soft-brown:hover {
    background: #ca773c !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-brown:active {
    background: #ca773c !important;
    color: #ffffff !important;
  }
}
.button-brown {
  background: #ca773c !important;
  color: #ffffff !important;
  border-color: #884b20 !important;
}
@media (hover: hover) {
  .button-brown:hover {
    background: #884b20 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-brown:active {
    background: #884b20 !important;
    color: #ffffff !important;
  }
}
.button-soft-olive {
  background: #f8fde7 !important;
  color: #3d3d00 !important;
  border-color: #a1a100 !important;
}
@media (hover: hover) {
  .button-soft-olive:hover {
    background: #a1a100 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-olive:active {
    background: #a1a100 !important;
    color: #ffffff !important;
  }
}
.button-olive {
  background: #a1a100 !important;
  color: #ffffff !important;
  border-color: #838300 !important;
}
@media (hover: hover) {
  .button-olive:hover {
    background: #838300 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-olive:active {
    background: #838300 !important;
    color: #ffffff !important;
  }
}
.button-soft-steel {
  background: #edeeee !important;
  color: #2e3841 !important;
  border-color: #7b91a6 !important;
}
@media (hover: hover) {
  .button-soft-steel:hover {
    background: #7b91a6 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-steel:active {
    background: #7b91a6 !important;
    color: #ffffff !important;
  }
}
.button-steel {
  background: #7b91a6 !important;
  color: #ffffff !important;
  border-color: #5c7081 !important;
}
@media (hover: hover) {
  .button-steel:hover {
    background: #5c7081 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-steel:active {
    background: #5c7081 !important;
    color: #ffffff !important;
  }
}
.button-soft-mauve {
  background: #f7ecfe !important;
  color: #705680 !important;
  border-color: #e0afff !important;
}
@media (hover: hover) {
  .button-soft-mauve:hover {
    background: #e0afff !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-mauve:active {
    background: #e0afff !important;
    color: #ffffff !important;
  }
}
.button-mauve {
  background: #e0afff !important;
  color: #ffffff !important;
  border-color: #a982c1 !important;
}
@media (hover: hover) {
  .button-mauve:hover {
    background: #a982c1 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-mauve:active {
    background: #a982c1 !important;
    color: #ffffff !important;
  }
}
.button-soft-taupe {
  background: #eadccf !important;
  color: #261e18 !important;
  border-color: #977e67 !important;
}
@media (hover: hover) {
  .button-soft-taupe:hover {
    background: #977e67 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-taupe:active {
    background: #977e67 !important;
    color: #ffffff !important;
  }
}
.button-taupe {
  background: #977e67 !important;
  color: #ffffff !important;
  border-color: #5e4a3c !important;
}
@media (hover: hover) {
  .button-taupe:hover {
    background: #5e4a3c !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-taupe:active {
    background: #5e4a3c !important;
    color: #ffffff !important;
  }
}
.button-soft-champagne {
  background: #fff9f2 !important;
  color: #7c7364 !important;
  border-color: #f7e6ca !important;
}
@media (hover: hover) {
  .button-soft-champagne:hover {
    background: #f7e6ca !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-champagne:active {
    background: #f7e6ca !important;
    color: #ffffff !important;
  }
}
.button-champagne {
  background: #f7e6ca !important;
  color: #ffffff !important;
  border-color: #ccbca5 !important;
}
@media (hover: hover) {
  .button-champagne:hover {
    background: #ccbca5 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-champagne:active {
    background: #ccbca5 !important;
    color: #ffffff !important;
  }
}
.button-soft-khaki {
  background: #f6f1dd !important;
  color: #6a6142 !important;
  border-color: #d5c58a !important;
}
@media (hover: hover) {
  .button-soft-khaki:hover {
    background: #d5c58a !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-khaki:active {
    background: #d5c58a !important;
    color: #ffffff !important;
  }
}
.button-khaki {
  background: #d5c58a !important;
  color: #ffffff !important;
  border-color: #aa9c6b !important;
}
@media (hover: hover) {
  .button-khaki:hover {
    background: #aa9c6b !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-khaki:active {
    background: #aa9c6b !important;
    color: #ffffff !important;
  }
}
.button-soft-charcoal {
  background: #e8e8e8 !important;
  color: #202020 !important;
  border-color: #989898 !important;
}
@media (hover: hover) {
  .button-soft-charcoal:hover {
    background: #989898 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-charcoal:active {
    background: #989898 !important;
    color: #ffffff !important;
  }
}
.button-charcoal {
  background: #989898 !important;
  color: #ffffff !important;
  border-color: #5e5e5e !important;
}
@media (hover: hover) {
  .button-charcoal:hover {
    background: #5e5e5e !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-charcoal:active {
    background: #5e5e5e !important;
    color: #ffffff !important;
  }
}
.button-soft-bronze {
  background: #ffecdc !important;
  color: #693c13 !important;
  border-color: #e48d3e !important;
}
@media (hover: hover) {
  .button-soft-bronze:hover {
    background: #e48d3e !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-bronze:active {
    background: #e48d3e !important;
    color: #ffffff !important;
  }
}
.button-bronze {
  background: #e48d3e !important;
  color: #ffffff !important;
  border-color: #aa621f !important;
}
@media (hover: hover) {
  .button-bronze:hover {
    background: #aa621f !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-bronze:active {
    background: #aa621f !important;
    color: #ffffff !important;
  }
}
.button-soft-windstorm {
  background: #e6ebf5 !important;
  color: #304462 !important;
  border-color: #799ed6 !important;
}
@media (hover: hover) {
  .button-soft-windstorm:hover {
    background: #799ed6 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-windstorm:active {
    background: #799ed6 !important;
    color: #ffffff !important;
  }
}
.button-windstorm {
  background: #799ed6 !important;
  color: #ffffff !important;
  border-color: #5071a3 !important;
}
@media (hover: hover) {
  .button-windstorm:hover {
    background: #5071a3 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-windstorm:active {
    background: #5071a3 !important;
    color: #ffffff !important;
  }
}
.button-soft-nude {
  background: #fcf0e4 !important;
  color: #7c6c5d !important;
  border-color: #f7d9bc !important;
}
@media (hover: hover) {
  .button-soft-nude:hover {
    background: #f7d9bc !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-nude:active {
    background: #f7d9bc !important;
    color: #ffffff !important;
  }
}
.button-nude {
  background: #f7d9bc !important;
  color: #ffffff !important;
  border-color: #baa28b !important;
}
@media (hover: hover) {
  .button-nude:hover {
    background: #baa28b !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-nude:active {
    background: #baa28b !important;
    color: #ffffff !important;
  }
}
.button-soft-terracotta {
  background: #ffe5df !important;
  color: #712516 !important;
  border-color: #e35336 !important;
}
@media (hover: hover) {
  .button-soft-terracotta:hover {
    background: #e35336 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-terracotta:active {
    background: #e35336 !important;
    color: #ffffff !important;
  }
}
.button-terracotta {
  background: #e35336 !important;
  color: #ffffff !important;
  border-color: #af3a23 !important;
}
@media (hover: hover) {
  .button-terracotta:hover {
    background: #af3a23 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-terracotta:active {
    background: #af3a23 !important;
    color: #ffffff !important;
  }
}
.button-soft-coral {
  background: #ffd8c8 !important;
  color: #804028 !important;
  border-color: #ff8559 !important;
}
@media (hover: hover) {
  .button-soft-coral:hover {
    background: #ff8559 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-coral:active {
    background: #ff8559 !important;
    color: #ffffff !important;
  }
}
.button-coral {
  background: #ff8559 !important;
  color: #ffffff !important;
  border-color: #b65c39 !important;
}
@media (hover: hover) {
  .button-coral:hover {
    background: #b65c39 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-coral:active {
    background: #b65c39 !important;
    color: #ffffff !important;
  }
}
.button-soft-army {
  background: #eceacb !important;
  color: #2a2f14 !important;
  border-color: #5d6532 !important;
}
@media (hover: hover) {
  .button-soft-army:hover {
    background: #5d6532 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-army:active {
    background: #5d6532 !important;
    color: #ffffff !important;
  }
}
.button-army {
  background: #5d6532 !important;
  color: #ffffff !important;
  border-color: #647030 !important;
}
@media (hover: hover) {
  .button-army:hover {
    background: #647030 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-army:active {
    background: #647030 !important;
    color: #ffffff !important;
  }
}
.button-soft-seashell {
  background: #fff9f8 !important;
  color: #bfa89a !important;
  border-color: #fff1e7 !important;
}
@media (hover: hover) {
  .button-soft-seashell:hover {
    background: #fff1e7 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-seashell:active {
    background: #fff1e7 !important;
    color: #ffffff !important;
  }
}
.button-seashell {
  background: #fff1e7 !important;
  color: #ffffff !important;
  border-color: #e1cbbd !important;
}
@media (hover: hover) {
  .button-seashell:hover {
    background: #e1cbbd !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-seashell:active {
    background: #e1cbbd !important;
    color: #ffffff !important;
  }
}
.button-soft-sand {
  background: #f8f3e0 !important;
  color: #8f8975 !important;
  border-color: #f1e0ae !important;
}
@media (hover: hover) {
  .button-soft-sand:hover {
    background: #f1e0ae !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-sand:active {
    background: #f1e0ae !important;
    color: #ffffff !important;
  }
}
.button-sand {
  background: #f1e0ae !important;
  color: #ffffff !important;
  border-color: #d1c5a1 !important;
}
@media (hover: hover) {
  .button-sand:hover {
    background: #d1c5a1 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-sand:active {
    background: #d1c5a1 !important;
    color: #ffffff !important;
  }
}
.button-seashell,
.button-champagne,
.button-yellow,
.button-lime {
  color: #191919 !important;
}
button.shadow,
.button.shadow {
  box-shadow: 6px 6px 0 var(--shadow-color-3d);
}
button.shadow:active,
.button.shadow:active {
  transform: translate(4px, 4px);
}
button.large.shadow,
.button.large.shadow {
  box-shadow: 8px 8px 0 var(--shadow-color-3d);
}
button.large.shadow:active,
.button.large.shadow:active {
  transform: translate(6px, 6px);
}
button.small.shadow,
.button.small.shadow {
  box-shadow: 4px 4px 0 var(--shadow-color-3d);
}
button.small.shadow:active,
.button.small.shadow:active {
  transform: translate(2px, 2px);
}
button.mini.shadow,
.button.mini.shadow {
  box-shadow: 2px 2px 0 var(--shadow-color-3d);
}
button.mini.shadow:active,
.button.mini.shadow:active {
  transform: translate(1px, 1px);
}
button.shadow:active,
.button.shadow:active {
  box-shadow: none;
}
button.shift:active,
.button.shift:active {
  transform: translate(2px, 2px);
}
button.large.shift:active,
.button.large.shift:active {
  transform: translate(4px, 4px);
}
button.small.shift:active,
.button.small.shift:active {
  transform: translate(2px, 2px);
}
button.mini.shift:active,
.button.mini.shift:active {
  transform: translate(1px, 1px);
}
button .badge,
.button .badge {
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 2px !important;
}
button:has(.badge.corner),
.button:has(.badge.corner) {
  padding-right: 1.5rem;
}

/* source/components/dialog/dialog.less */
:root {
  --dialog-border-radius: 6px;
  --dialog-background: #f7f8fa;
  --dialog-color: #191919;
  --dialog-border-color: #aaaaaa;
  --dialog-closer-background: inherit;
  --dialog-closer-color: inherit;
  --dialog-closer-background-hover: var(--color-alert);
  --dialog-closer-color-hover: var(--color-light);
}
.dark-side {
  --dialog-background: #2b2d30;
  --dialog-color: #dbdfe7;
  --dialog-border-color: #414245;
  --dialog-closer-background: inherit;
  --dialog-closer-color: inherit;
  --dialog-closer-background-hover: var(--color-alert);
  --dialog-closer-color-hover: var(--color-light);
}
.dialog {
  position: fixed;
  display: flex;
  flex-flow: column;
  width: min(90%, 600px);
  max-width: calc(100vw - 100px);
  max-height: calc(100vh - 100px);
  height: auto;
  background-color: var(--dialog-background);
  color: var(--dialog-color);
  z-index: 1050;
  border: 1px solid var(--dialog-border-color);
  border-radius: var(--dialog-border-radius);
}
.dialog-title,
.dialog-content,
.dialog-actions {
  display: flex;
}
.dialog-title {
  font-size: 1rem;
  padding: 10px 24px;
  order: 1;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  justify-content: flex-start !important;
  flex-flow: row nowrap;
}
.dialog-title .icon {
  margin-right: 1rem;
}
.dialog-content {
  padding: 12px 24px;
  order: 2;
  font-size: 14px;
}
.dialog-actions {
  border-top: 1px solid var(--border-color);
  padding: 8px 16px;
  order: 3;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.dialog-actions > * {
  margin: 0 4px;
  min-width: 64px;
}
.dialog-actions.text-left {
  justify-content: flex-start;
}
.dialog-actions.text-center {
  justify-content: center;
}
.dialog-actions.text-right {
  justify-content: flex-end;
}
.dialog * + .dialog-content {
  margin-top: 8px;
}
.dialog * + .dialog-actions {
  margin-top: 8px;
}
.dialog .closer {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 100;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dialog-closer-background);
  color: var(--dialog-closer-color);
  cursor: pointer;
  border-radius: 4px;
}
.dialog .closer::before {
  display: block;
  content: "\d7";
  font-size: 24px;
  margin-top: -4px;
}
.dialog .closer:hover {
  background-color: var(--dialog-closer-background-hover);
  color: var(--dialog-closer-color-hover);
}
.dialog.primary {
  border: 1px solid #f75553;
}
.dialog.primary .dialog-title {
  background-color: #f75553;
  border-bottom-color: #f75553;
  color: #ffffff;
}
.dialog.primary .dialog-actions {
  border-top-color: #f75553;
}
.dialog.secondary {
  border: 1px solid #74290a;
}
.dialog.secondary .dialog-title {
  background-color: #74290a;
  border-bottom-color: #74290a;
  color: #ffffff;
}
.dialog.secondary .dialog-actions {
  border-top-color: #74290a;
}
.dialog.tertiary {
  border: 1px solid #ffbebd;
}
.dialog.tertiary .dialog-title {
  background-color: #ffbebd;
  border-bottom-color: #ffbebd;
  color: #ffffff;
}
.dialog.tertiary .dialog-actions {
  border-top-color: #ffbebd;
}
.dialog.success {
  border: 1px solid #50c878;
}
.dialog.success .dialog-title {
  background-color: #50c878;
  border-bottom-color: #50c878;
  color: #ffffff;
}
.dialog.success .dialog-actions {
  border-top-color: #50c878;
}
.dialog.alert {
  border: 1px solid #df0e38;
}
.dialog.alert .dialog-title {
  background-color: #df0e38;
  border-bottom-color: #df0e38;
  color: #ffffff;
}
.dialog.alert .dialog-actions {
  border-top-color: #df0e38;
}
.dialog.warning {
  border: 1px solid #ffa500;
}
.dialog.warning .dialog-title {
  background-color: #ffa500;
  border-bottom-color: #ffa500;
  color: #ffffff;
}
.dialog.warning .dialog-actions {
  border-top-color: #ffa500;
}
.dialog.info {
  border: 1px solid #468cff;
}
.dialog.info .dialog-title {
  background-color: #468cff;
  border-bottom-color: #468cff;
  color: #ffffff;
}
.dialog.info .dialog-actions {
  border-top-color: #468cff;
}
.dialog.dark {
  border: 1px solid #505050;
}
.dialog.dark .dialog-title {
  background-color: #505050;
  border-bottom-color: #505050;
  color: #ffffff;
}
.dialog.dark .dialog-actions {
  border-top-color: #505050;
}
.dialog.light {
  border: 1px solid #f8f8f8;
}
.dialog.light .dialog-title {
  background-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
  color: #ffffff;
}
.dialog.light .dialog-actions {
  border-top-color: #f8f8f8;
}
.dialog.light .dialog-title,
.dialog.yellow .dialog-title {
  color: #1d1d1d;
}

/* source/components/activity/activity.less */
:root {
  --activity-ring-time: 4000ms;
  --activity-ring-time-mute: 30;
  --activity-ring-size: 32px;
  --activity-ring-rotate: -14deg;
  --activity-color: #191919;
}
.dark-side {
  --activity-color: #ffffff;
}
.activity-ring {
  position: relative;
  padding-top: 0.22rem;
  width: 32px;
  height: 32px;
  margin: 0.625rem;
}
.activity-ring > .wrap {
  position: absolute;
  width: 30px;
  height: 30px;
}
.activity-ring > .wrap > .circle {
  opacity: 0;
  width: 30px;
  height: 30px;
  transform: rotate(225deg);
  animation: orbit 4000ms infinite;
}
.activity-ring > .wrap > .circle:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: var(--activity-color);
}
.activity-ring > .wrap:nth-child(2) {
  transform: rotate(-14deg);
}
.activity-ring > .wrap:nth-child(2) > .circle {
  animation-delay: 133.33333333ms;
}
.activity-ring > .wrap:nth-child(3) {
  transform: rotate(-28deg);
}
.activity-ring > .wrap:nth-child(3) > .circle {
  animation-delay: 266.66666667ms;
}
.activity-ring > .wrap:nth-child(4) {
  transform: rotate(-42deg);
}
.activity-ring > .wrap:nth-child(4) > .circle {
  animation-delay: 400ms;
}
.activity-ring > .wrap:nth-child(5) {
  transform: rotate(-56deg);
}
.activity-ring > .wrap:nth-child(5) > .circle {
  animation-delay: 533.33333333ms;
}
.activity-ring.color-style > .wrap > .circle:after {
  background-color: #94b6ff;
}
.activity-ring.color-style > .wrap:nth-child(2) > .circle:after {
  background-color: #ffa500;
}
.activity-ring.color-style > .wrap:nth-child(3) > .circle:after {
  background-color: #00b500;
}
.activity-ring.color-style > .wrap:nth-child(4) > .circle:after {
  background-color: #ff0000;
}
.activity-ring.color-style > .wrap:nth-child(5) > .circle:after {
  background-color: #ffe95e;
}
.activity-metro {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 10px;
  background-color: transparent;
}
.activity-metro > .circle {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--activity-color);
  opacity: 0;
  margin-left: 5px;
  animation: activity-metro-slide 3s cubic-bezier(0.1, 0.85, 0.9, 0.15) infinite, metro-opacity 2s ease-in-out infinite alternate;
}
.activity-metro > .circle:nth-child(2) {
  animation-delay: 0.8s;
}
.activity-metro > .circle:nth-child(3) {
  animation-delay: 0.7s;
}
.activity-metro > .circle:nth-child(4) {
  animation-delay: 0.6s;
}
.activity-metro > .circle:nth-child(5) {
  animation-delay: 0.5s;
}
.activity-metro.color-style > .circle {
  background-color: #94b6ff;
}
.activity-metro.color-style > .circle:nth-child(2) {
  background-color: #ffa500;
}
.activity-metro.color-style > .circle:nth-child(3) {
  background-color: #00b500;
}
.activity-metro.color-style > .circle:nth-child(4) {
  background-color: #ff0000;
}
.activity-metro.color-style > .circle:nth-child(5) {
  background-color: #ffe95e;
}
.activity-square {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  transform-origin: bottom left;
  animation: activity-shrink 1s linear infinite;
}
.activity-square .square {
  position: absolute;
  width: 19px;
  height: 19px;
  background: var(--activity-color);
}
.activity-square .square:nth-child(1) {
  left: 0;
  top: 21px;
}
.activity-square .square:nth-child(2) {
  left: 21px;
  top: 21px;
  animation: activity-drop 1s linear infinite;
}
.activity-square .square:nth-child(3) {
  left: 0;
  top: 0;
  animation: activity-drop2 1s linear infinite;
}
.activity-square .square:nth-child(4) {
  left: 21px;
  top: 0;
  animation: activity-drop3 1s linear infinite;
}
.activity-square.color-style > .square:nth-child(1) {
  background-color: #ffa500;
}
.activity-square.color-style > .square:nth-child(2) {
  background-color: #00b500;
}
.activity-square.color-style > .square:nth-child(3) {
  background-color: #94b6ff;
}
.activity-square.color-style > .square:nth-child(4) {
  background-color: #ffe95e;
}
.activity-cycle {
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.activity-cycle .cycle {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--activity-color);
  animation: activity-pre-spin 1s linear infinite;
  z-index: 1001;
}
.activity-cycle .cycle::before,
.activity-cycle .cycle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--activity-color);
}
.activity-cycle .cycle:before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  animation: activity-pre-spin 2s linear infinite;
}
.activity-cycle .cycle:after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  animation: activity-spin 1.5s linear infinite;
}
.activity-cycle.color-style .cycle {
  border-top-color: #94b6ff;
}
.activity-cycle.color-style .cycle:before {
  border-top-color: #ff0000;
}
.activity-cycle.color-style .cycle:after {
  border-top-color: #ffe95e;
}
.activity-simple {
  width: 64px;
  height: 64px;
}
.activity-simple .circular {
  animation: activity-rotate 2s linear infinite;
  position: relative;
  width: 100%;
  height: 100%;
}
.activity-simple .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: activity-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: var(--activity-color);
}
.activity-simple.color-style .path {
  animation: activity-dash 1.5s ease-in-out infinite, activity-color 6s ease-in-out infinite;
}
.activity-simple.small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.activity-simple.small .circular {
  width: 32px;
  height: 32px;
}
.activity-atom {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}
.activity-atom span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.activity-atom span:nth-child(1) {
  left: 0;
  top: 0;
  animation: activity-rotate-one 1s linear infinite;
  border-bottom: 3px solid;
  border-bottom-color: var(--activity-color);
}
.activity-atom span:nth-child(2) {
  right: 0;
  top: 0;
  animation: activity-rotate-two 1s linear infinite;
  border-right: 3px solid;
  border-right-color: var(--activity-color);
}
.activity-atom span:nth-child(3) {
  right: 0;
  bottom: 0;
  animation: activity-rotate-three 1s linear infinite;
  border-top: 3px solid;
  border-top-color: var(--activity-color);
}
.activity-atom.color-style span:nth-child(1) {
  border-bottom-color: #94b6ff;
}
.activity-atom.color-style span:nth-child(2) {
  border-right-color: #ff0000;
}
.activity-atom.color-style span:nth-child(3) {
  border-top-color: #ffe95e;
}
.activity-bars {
  width: 60px;
  height: 50px;
}
.activity-bars span {
  height: 100%;
  width: 8px;
  display: inline-block;
  float: left;
  margin-left: 2px;
  animation: activity-bars 0.8s infinite ease-in-out;
  background-color: var(--activity-color);
}
.activity-bars span:nth-child(2) {
  animation-delay: -0.7s;
}
.activity-bars span:nth-child(3) {
  animation-delay: -0.6s;
}
.activity-bars span:nth-child(4) {
  animation-delay: -0.5s;
}
.activity-bars span:nth-child(5) {
  animation-delay: -0.4s;
}
.activity-bars span:nth-child(6) {
  animation-delay: -0.3s;
}
.activity-bars.color-style span:nth-child(1) {
  background-color: #ee82ee;
}
.activity-bars.color-style span:nth-child(2) {
  background-color: #94b6ff;
}
.activity-bars.color-style span:nth-child(3) {
  background-color: #00b500;
}
.activity-bars.color-style span:nth-child(4) {
  background-color: #ffe95e;
}
.activity-bars.color-style span:nth-child(5) {
  background-color: #ffa500;
}
.activity-bars.color-style span:nth-child(6) {
  background-color: #ffc0cb;
}
@keyframes activity-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes activity-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes activity-color {
  100%, 0% {
    stroke: #ff0000;
  }
  40% {
    stroke: #5e87ff;
  }
  66% {
    stroke: #00b500;
  }
  80%, 90% {
    stroke: #ffe95e;
  }
}
@keyframes activity-rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes activity-rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes activity-rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@keyframes activity-bars {
  0%, 40%, 100% {
    transform: scaleY(0.05);
  }
  20% {
    transform: scaleY(1);
  }
}
@keyframes activity-drop {
  0% {
    transform: translateY(-50px);
  }
  25% {
    transform: translate(0);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes activity-drop2 {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translate(0);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes activity-drop3 {
  0% {
    transform: translateY(-50px);
  }
  75% {
    transform: translate(0);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes activity-pre-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes activity-metro-slide {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
.dialog.no-shadow {
  box-shadow: none !important;
}

/* source/components/analog-clock/analog-clock.less */
:root {
  --analog-clock-size: 300px;
  --analog-clock-icon-size: 100px;
  --analog-clock-border-color: #6a6a6a;
  --analog-clock-dash-color: #191919;
  --analog-clock-background: var(--default-background);
  --analog-clock-color: var(--default-color);
  --analog-clock-hour-color: var(--color-dark);
  --analog-clock-minute-color: var(--color-dark);
  --analog-clock-second-color: var(--color-red);
  --analog-clock-hand-border-color: #ccc;
  --analog-clock-inset-border-color: #e6e6e6;
  --analog-clock-inset-shadow: rgba(0, 0, 0, 0.45);
}
.dark-side {
  --analog-clock-border-color: #6a6a6a;
  --analog-clock-dash-color: #efefef;
  --analog-clock-background: var(--default-background);
  --analog-clock-color: var(--default-color);
  --analog-clock-hour-color: #cdcdcd;
  --analog-clock-minute-color: #cdcdcd;
  --analog-clock-second-color: var(--color-red);
  --analog-clock-hand-border-color: #efefef;
  --analog-clock-inset-border-color: #333333;
  --analog-clock-inset-shadow: #919191;
}
.analog-clock {
  position: relative;
  display: flex;
  height: var(--analog-clock-size);
  width: var(--analog-clock-size);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1), 0 25px 45px rgba(0, 0, 0, 0.1);
  font-size: 32px;
  line-height: 1;
  text-align: center;
  color: var(--analog-clock-color);
  font-weight: 100;
}
.analog-clock .icon,
.analog-clock .moon {
  position: absolute;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: var(--analog-clock-icon-size);
  width: var(--analog-clock-icon-size);
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
.analog-clock .icon *,
.analog-clock .moon * {
  font-size: 24px;
  font-weight: 600;
  color: var(--analog-clock-color);
  width: 100%;
  height: 100%;
}
.analog-clock .moon {
  width: 32px;
  height: 32px;
}
.analog-clock .day-month {
  position: absolute;
  display: inline-flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  height: auto;
  width: auto;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--analog-clock-color);
  background: var(--analog-clock-background);
  font-weight: 600;
  padding: 1px 2px;
  box-shadow: 0 0 2px 0 var(--analog-clock-inset-shadow) inset;
  font-family: monospace;
}
.analog-clock .day-month .day-month-inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.analog-clock .day-month .day,
.analog-clock .day-month .month,
.analog-clock .day-month .week-day {
  padding: 2px 6px;
  width: 50%;
}
.analog-clock .day-month .week-day {
  border-top: 1px solid var(--analog-clock-inset-border-color);
  width: 100%;
}
.analog-clock .day-month .day {
  border-right: 1px solid var(--analog-clock-inset-border-color);
  font-family: digital, monospace;
  letter-spacing: 2px;
}
.analog-clock .dash {
  position: absolute;
  inset: 10px;
  text-align: center;
  transform: rotate(calc(var(--i) * (360deg / 12)));
  font-size: 20px;
}
.analog-clock .dash span {
  display: inline-block;
  font-weight: 600;
  color: var(--black-color);
}
.analog-clock.show-numbers label {
  color: var(--analog-clock-color);
  font-family: digital, monospace;
}
.analog-clock.show-numbers label span {
  transform: rotate(calc(var(--i) * (-360deg / 12)));
}
.analog-clock .secondary-dash {
  position: absolute;
  inset: 10px;
  text-align: center;
  transform: rotate(calc(var(--i2) * 6 * 1deg));
  font-size: 10px;
}
.analog-clock .secondary-dash span {
  display: inline-block;
  font-weight: 600;
  color: var(--black-color);
}
.analog-clock .hands {
  position: absolute;
  height: 10px;
  width: 10px;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.analog-clock .hands::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: var(--analog-clock-hour-color);
  border: 2px solid var(--analog-clock-second-color);
  border-radius: 50%;
}
.analog-clock .hands .hour-hand,
.analog-clock .hands .minute-hand,
.analog-clock .hands .second-hand {
  z-index: -1;
}
.analog-clock .hands .minute,
.analog-clock .hands .hour,
.analog-clock .hands .second {
  position: absolute;
  height: 110px;
  width: 4px;
  bottom: 5px;
  border-radius: 25px;
  transform-origin: bottom;
}
.analog-clock .hands .minute,
.analog-clock .hands .hour {
  border: 1px solid var(--analog-clock-hand-border-color);
}
.analog-clock .hands .second {
  background: var(--analog-clock-second-color);
  width: 2px;
}
.analog-clock .hands .hour {
  height: 80px;
  width: 8px;
  background: var(--analog-clock-hour-color);
}
.analog-clock .hands .minute {
  height: 100px;
  width: 5px;
  background: var(--analog-clock-minute-color);
}
.analog-clock .digital-clock {
  width: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  border-radius: 2px;
  background: var(--analog-clock-background);
  font-weight: 700;
  padding: 1px;
  box-shadow: 0 0 2px 0 var(--analog-clock-inset-shadow) inset;
  font-family: monospace;
  letter-spacing: 2px;
}
.analog-clock .digital-clock .dc-hour,
.analog-clock .digital-clock .dc-minute,
.analog-clock .digital-clock .dc-second {
  width: 30px;
  display: inline-flex;
  padding: 4px 4px;
  position: relative;
  font-family: digital, monospace;
}
.analog-clock .digital-clock .dc-minute::before,
.analog-clock .digital-clock .dc-minute::after {
  position: absolute;
  content: ":";
  display: block;
  color: #c6c6c6;
  top: 4px;
  font-size: 10px;
  font-weight: 900;
}
.analog-clock .digital-clock .dc-minute::before {
  left: -2px;
}
.analog-clock .digital-clock .dc-minute::after {
  right: -2px;
}
.analog-clock.tick .dc-minute::before,
.analog-clock.tick .dc-minute::after {
  display: none;
}
.analog-clock .moon {
  left: 40px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 24px;
}
.analog-clock .moon.new-moon::before {
  content: "\1f311";
}
.analog-clock .moon.waxing-crescent::before {
  content: "\1f312";
}
.analog-clock .moon.first-quarter::before {
  content: "\1f313";
}
.analog-clock .moon.waxing-gibbous::before {
  content: "\1f314";
}
.analog-clock .moon.full-moon::before {
  content: "\1f315";
}
.analog-clock .moon.waning-gibbous::before {
  content: "\1f316";
}
.analog-clock .moon.last-quarter::before {
  content: "\1f317";
}
.analog-clock .moon.waning-crescent::before {
  content: "\1f318";
}
@container (min-width: 0) {
  .analog-clock {
    transform: scale(0.8);
  }
}
.analog-clock.size-fs {
  transform: scale(0.8);
}
@container (min-width: 360px) {
  .analog-clock {
    transform: scale(1.1);
  }
}
.analog-clock.size-xs {
  transform: scale(1.1);
}
@container (min-width: 576px) {
  .analog-clock {
    transform: scale(1.2);
  }
}
.analog-clock.size-sm {
  transform: scale(1.2);
}
@container (min-width: 640px) {
  .analog-clock {
    transform: scale(1.3);
  }
}
.analog-clock.size-ld {
  transform: scale(1.3);
}
@container (min-width: 768px) {
  .analog-clock {
    transform: scale(1.4);
  }
}
.analog-clock.size-md {
  transform: scale(1.4);
}
@container (min-width: 992px) {
  .analog-clock {
    transform: scale(1.5);
  }
}
.analog-clock.size-lg {
  transform: scale(1.5);
}
@container (min-width: 1200px) {
  .analog-clock {
    transform: scale(1.6);
  }
}
.analog-clock.size-xl {
  transform: scale(1.6);
}
@container (min-width: 1400px) {
  .analog-clock {
    transform: scale(1.7);
  }
}
.analog-clock.size-xxl {
  transform: scale(1.7);
}
@container (min-width: 2000px) {
  .analog-clock {
    transform: scale(1.8);
  }
}
.analog-clock.size-xxxl {
  transform: scale(1.8);
}

/* source/components/hamburger/hamburger.less */
:root {
  --hamburger-background: transparent;
  --hamburger-color: #191919;
}
.dark-side {
  --hamburger-background: transparent;
  --hamburger-color: #ffffff;
}
.hamburger,
.nav-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0;
  font-size: 14px;
  line-height: 36px;
  transition: all 0.15s ease-in-out;
  background: var(--hamburger-background);
  color: var(--hamburger-color);
  cursor: pointer;
  outline: none;
  width: 36px;
  height: 36px;
}
.hamburger .line,
.nav-button .line {
  width: 30px;
  background: var(--hamburger-color);
  display: block;
  transition: all 0.3s ease-in-out;
  height: 3px;
  margin: 4px auto;
}
.hamburger.menu-down .line:nth-child(2),
.nav-button.menu-down .line:nth-child(2),
.hamburger.chevron-down .line:nth-child(2),
.nav-button.chevron-down .line:nth-child(2) {
  transition-delay: 0.3s;
}
.hamburger.menu-down.active,
.nav-button.menu-down.active,
.hamburger.chevron-down.active,
.nav-button.chevron-down.active {
  transform: rotate(90deg);
}
.hamburger.menu-down.active .line:nth-child(2),
.nav-button.menu-down.active .line:nth-child(2),
.hamburger.chevron-down.active .line:nth-child(2),
.nav-button.chevron-down.active .line:nth-child(2) {
  opacity: 0;
  transition: none;
}
.hamburger.menu-down.active .line:nth-child(1),
.nav-button.menu-down.active .line:nth-child(1),
.hamburger.chevron-down.active .line:nth-child(1),
.nav-button.chevron-down.active .line:nth-child(1),
.hamburger.menu-down.active .line:nth-child(3),
.nav-button.menu-down.active .line:nth-child(3),
.hamburger.chevron-down.active .line:nth-child(3),
.nav-button.chevron-down.active .line:nth-child(3) {
  width: 20px;
  transform-origin: right;
  margin: -4px 8px;
}
.hamburger.menu-down.active .line:nth-child(1),
.nav-button.menu-down.active .line:nth-child(1),
.hamburger.chevron-down.active .line:nth-child(1),
.nav-button.chevron-down.active .line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.menu-down.active .line:nth-child(3),
.nav-button.menu-down.active .line:nth-child(3),
.hamburger.chevron-down.active .line:nth-child(3),
.nav-button.chevron-down.active .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}
.hamburger.menu-up .line:nth-child(2),
.nav-button.menu-up .line:nth-child(2),
.hamburger.chevron-up .line:nth-child(2),
.nav-button.chevron-up .line:nth-child(2) {
  transition-delay: 0.3s;
}
.hamburger.menu-up.active,
.nav-button.menu-up.active,
.hamburger.chevron-up.active,
.nav-button.chevron-up.active {
  transform: rotate(-90deg);
}
.hamburger.menu-up.active .line:nth-child(2),
.nav-button.menu-up.active .line:nth-child(2),
.hamburger.chevron-up.active .line:nth-child(2),
.nav-button.chevron-up.active .line:nth-child(2) {
  opacity: 0;
  transition: none;
}
.hamburger.menu-up.active .line:nth-child(1),
.nav-button.menu-up.active .line:nth-child(1),
.hamburger.chevron-up.active .line:nth-child(1),
.nav-button.chevron-up.active .line:nth-child(1),
.hamburger.menu-up.active .line:nth-child(3),
.nav-button.menu-up.active .line:nth-child(3),
.hamburger.chevron-up.active .line:nth-child(3),
.nav-button.chevron-up.active .line:nth-child(3) {
  width: 20px;
  transform-origin: right;
  margin: -4px 8px;
}
.hamburger.menu-up.active .line:nth-child(1),
.nav-button.menu-up.active .line:nth-child(1),
.hamburger.chevron-up.active .line:nth-child(1),
.nav-button.chevron-up.active .line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.menu-up.active .line:nth-child(3),
.nav-button.menu-up.active .line:nth-child(3),
.hamburger.chevron-up.active .line:nth-child(3),
.nav-button.chevron-up.active .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}
.hamburger.arrow-left.active .line:nth-child(1),
.nav-button.arrow-left.active .line:nth-child(1),
.hamburger.arrow-left.active .line:nth-child(3),
.nav-button.arrow-left.active .line:nth-child(3) {
  width: 20px;
  margin-left: 0;
}
.hamburger.arrow-left.active .line:nth-child(1),
.nav-button.arrow-left.active .line:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger.arrow-left.active .line:nth-child(3),
.nav-button.arrow-left.active .line:nth-child(3) {
  transform: rotate(45deg);
}
.hamburger.arrow-right.active .line:nth-child(1),
.nav-button.arrow-right.active .line:nth-child(1),
.hamburger.arrow-right.active .line:nth-child(3),
.nav-button.arrow-right.active .line:nth-child(3) {
  width: 20px;
  margin-right: 0;
}
.hamburger.arrow-right.active .line:nth-child(1),
.nav-button.arrow-right.active .line:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger.arrow-right.active .line:nth-child(3),
.nav-button.arrow-right.active .line:nth-child(3) {
  transform: rotate(-45deg);
}

/* source/components/app-bar/app-bar.less */
:root {
  --appbar-border-radius: 4px;
  --appbar-z-index: 1030;
}
:root {
  --appbar-background: #ffffff;
  --appbar-color: #191919;
  --appbar-item-background: transparent;
  --appbar-item-color: #191919;
  --appbar-item-color-disabled: #ccc;
  --appbar-item-color-hover: #000000;
  --appbar-item-background-hover: #e8e8e8;
}
.dark-side {
  --appbar-background: #1e1f22;
  --appbar-color: #dbdfe7;
  --appbar-item-background: transparent;
  --appbar-item-color: #dbdfe7;
  --appbar-item-color-disabled: #a8a8a8;
  --appbar-item-color-hover: #ffffff;
  --appbar-item-background-hover: #2b2d30;
}
.app-bar {
  display: flex;
  position: sticky;
  align-self: flex-start !important;
  justify-self: flex-start !important;
  top: 0;
  width: 100%;
  height: auto;
  min-height: 52px;
  z-index: var(--appbar-z-index);
  background-color: var(--appbar-background);
  color: var(--appbar-color);
  flex-flow: row wrap;
  align-items: center;
  padding: 0 10px;
}
.app-bar .app-bar-container {
  background-color: inherit;
  color: inherit;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-bar .app-bar-item,
.app-bar .app-bar-item-static,
.app-bar .app-bar-menu > li {
  position: relative;
}
.app-bar .app-bar-item,
.app-bar .app-bar-item-static,
.app-bar .app-bar-menu > li > a {
  display: flex;
  align-items: center;
  font-size: 13px;
  background-color: var(--appbar-item-background);
  color: var(--appbar-item-color);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--appbar-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
  overflow: hidden;
}
@media (hover: hover) {
  .app-bar .app-bar-item:hover,
  .app-bar .app-bar-item-static:hover,
  .app-bar .app-bar-menu > li > a:hover {
    color: var(--appbar-item-color-hover);
    text-decoration: none;
    background-color: var(--appbar-item-background-hover);
  }
}
@media (hover: none) {
  .app-bar .app-bar-item:active,
  .app-bar .app-bar-item-static:active,
  .app-bar .app-bar-menu > li > a:active {
    color: var(--appbar-item-color-hover);
    text-decoration: none;
    background-color: var(--appbar-item-background-hover);
  }
}
.app-bar .app-bar-item:focus,
.app-bar .app-bar-item-static:focus,
.app-bar .app-bar-menu > li > a:focus {
  outline: none;
}
.app-bar .app-bar-item.disabled,
.app-bar .app-bar-item-static.disabled,
.app-bar .app-bar-menu > li > a.disabled {
  color: var(--appbar-item-color-disabled);
}
@media (hover: hover) {
  .app-bar .app-bar-item-static:hover {
    background-color: var(--appbar-item-background);
    color: var(--appbar-item-color);
  }
}
@media (hover: none) {
  .app-bar .app-bar-item-static:active {
    background-color: var(--appbar-item-background);
    color: var(--appbar-item-color);
  }
}
.app-bar .brand {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 0.8;
}
.app-bar .brand:hover {
  background-color: transparent;
}
.app-bar .brand .icon {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.app-bar .brand .icon + * {
  margin-left: 6px;
}
.app-bar .brand .caption {
  margin-bottom: 3px;
}
.app-bar .app-bar-button {
  width: 52px;
  padding: 0;
}
.app-bar .app-bar-menu {
  flex-shrink: 0;
  list-style: none inside;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: inherit;
  color: inherit;
}
.app-bar .app-bar-menu > li > a:focus {
  outline: 1px solid var(--appbar-item-background-hover);
}
.app-bar .app-bar-menu > li > a.dropdown-toggle::before {
  border-color: var(--appbar-item-color) !important;
}
.app-bar .hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  height: 52px;
  width: 52px;
  margin-top: -27px;
  background: transparent;
}
.app-bar .hamburger .line {
  background-color: var(--appbar-item-color);
}
.app-bar .hamburger.menu-down.active .line:nth-child(1),
.app-bar .hamburger.menu-down.active .line:nth-child(3) {
  margin: -4px 16px;
}
.app-bar .hamburger:focus {
  outline: 1px solid var(--appbar-item-background-hover);
}
.app-bar .app-bar-menu.collapsed {
  display: none;
}
.app-bar .app-bar-menu.opened {
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  padding: 4px;
}
.app-bar .app-bar-menu.opened ul {
  position: relative;
  left: 0;
  float: none;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  background-color: inherit;
  border: none;
}
.app-bar .app-bar-input {
  width: 100px;
  height: 30px;
  font-size: 0.875rem;
  border: none !important;
  border-radius: 4px;
}
.app-bar:not(.app-bar-expand) {
  padding-right: 60px !important;
}
.app-bar:not(.app-bar-expand) .app-bar-menu {
  width: 100%;
  order: 1000;
  top: 100%;
  left: 0;
  position: absolute;
}
.app-bar-expand {
  flex-direction: row;
  flex-wrap: nowrap;
}
.app-bar-expand .app-bar-menu {
  flex-direction: row;
}
.app-bar-expand .app-bar-menu.collapsed {
  display: flex !important;
}
.app-bar-expand .hamburger {
  display: none;
}
.container-fluid > .app-bar,
.container > .app-bar {
  position: relative;
}

/* source/components/slider/slider.less */
:root {
  --slider-thumb-size: 18px;
  --slider-thumb-color: var(--color-blue);
  --slider-bar-color: #191919;
  --slider-buffer-color: #fefefe;
  --slider-back-color: #d5d5d5;
  --slider-fill-color: var(--color-cyan);
  --slider-thumb-border-color: var(--color-light-cyan);
}
.dark-side {
  --slider-thumb-color: var(--color-crimson);
  --slider-bar-color: #191919;
  --slider-buffer-color: #fefefe;
  --slider-back-color: #4e5055;
  --slider-fill-color: #ff145c;
  --slider-thumb-border-color: #ffffff;
}
.slider {
  display: block;
  position: relative;
  height: 2.125rem;
  background: transparent;
  cursor: default;
  width: 100%;
  border-radius: 4px;
}
.slider input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.slider .backside,
.slider .complete,
.slider .buffer,
.slider .marker {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
}
.slider .marker {
  border-radius: 50%;
  padding: 0;
  transition: none;
  width: var(--slider-thumb-size);
  height: var(--slider-thumb-size);
  background: var(--slider-thumb-color);
  z-index: 4;
  outline: none;
  border: 2px solid var(--slider-thumb-border-color);
  cursor: pointer;
  overflow: visible;
}
.slider .marker:focus {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.slider .marker:active::after {
  display: block;
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: rgba(187, 187, 187, 0.5);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  margin-top: -1.5625rem;
  margin-left: -1.5625rem;
}
.slider .marker.left-knob {
  left: 0;
}
.slider .marker.right-knob {
  left: auto;
  right: 0;
}
.slider.hidden-button .marker {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .slider.hidden-button:hover .marker {
    opacity: 1;
  }
}
.slider .backside {
  background-color: var(--slider-back-color);
  width: 100%;
  z-index: 1;
  height: 0.6rem;
}
.slider .buffer {
  z-index: 2;
  height: 0.3rem;
  background-color: var(--slider-buffer-color);
}
.slider .complete {
  z-index: 3;
  height: 0.6rem;
  background-color: var(--slider-fill-color);
}
.slider .hint {
  display: none;
  position: absolute;
  z-index: 5;
  width: auto !important;
  height: auto !important;
  padding: 0.25rem 0.5rem;
  background-color: #515151;
  color: #ffffff;
  white-space: nowrap;
}
.slider .hint::before {
  display: block;
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: inherit;
}
.slider .hint.top-side {
  top: 0;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  margin-top: -8px;
}
.slider .hint.top-side::before {
  top: 100%;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  margin-top: -1px;
}
.slider .hint.bottom-side {
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 8px;
}
.slider .hint.bottom-side::before {
  top: 0;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  margin-top: -1px;
}
.slider .hint.left-side {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  margin-left: -8px;
}
.slider .hint.left-side::before {
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  margin-right: -3px;
}
.slider .hint.right-side {
  left: 100%;
  transform: translateY(-50%);
  top: 50%;
  margin-left: 8px;
}
.slider .hint.right-side::before {
  top: 50%;
  left: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.slider.range .complete {
  width: 100%;
}
.slider.thin .backside,
.slider.thin .complete,
.slider.thin .buffer {
  height: 6px;
}
.slider.ultra-thin .backside,
.slider.ultra-thin .complete,
.slider.ultra-thin .buffer {
  height: 4px;
}
.slider.ultra-thin .marker {
  width: 12px;
  height: 12px;
}
.slider.cycle-marker .marker {
  border-radius: 50%;
}
.slider.vertical-slider {
  width: 2.125rem;
  height: 100px;
}
.slider.vertical-slider .backside,
.slider.vertical-slider .complete,
.slider.vertical-slider .buffer,
.slider.vertical-slider .marker {
  top: auto;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}
.slider.vertical-slider .backside,
.slider.vertical-slider .complete,
.slider.vertical-slider .buffer {
  width: 0.5rem;
  bottom: 0;
}
.slider.vertical-slider .backside {
  height: 100%;
}
.slider.vertical-slider .buffer {
  width: 0.3rem;
}
.slider.vertical-slider .marker {
  top: 100%;
  transform: translateY(-100%) translateX(-50%);
}
.slider.rounded .backside,
.slider.rounded .complete,
.slider.rounded .buffer,
.slider.rounded .marker {
  border-radius: 0.25rem;
}
.slider.disabled .marker {
  display: none;
}
.slider-min-max {
  display: block;
  position: relative;
}
.slider-min-max::after {
  display: block;
  clear: both;
  content: "";
}
.slider-min-max .slider-text-min,
.slider-min-max .slider-text-max {
  display: block;
}
.slider-min-max .slider-text-min {
  float: left;
}
.slider-min-max .slider-text-max {
  float: right;
}

/* source/components/media-player/media-player.less */
:root {
  --player-background: #f2f3f5;
  --player-info-background: #f2f3f5;
  --player-info-color: #191919;
  --player-control-background-hover: #dadbdd;
  --player-constrol-color-hover: #191919;
}
.dark-side {
  --player-background: #191919;
  --player-info-background: #191919;
  --player-info-color: #f2f3f5;
  --player-control-background-hover: #4e5055;
  --player-constrol-color-hover: #f2f3f5;
}
.media-player {
  display: flex;
  position: relative;
  width: 100%;
  background: var(--player-background);
  height: auto;
  overflow: hidden;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 20px;
}
.media-player video {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.media-player .logo {
  display: block;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  height: 32px;
}
.media-player .logo img {
  height: 32px;
}
.media-player .preloader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.media-player .preloader.show {
  display: block;
}
.media-player .controls {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 2147483647;
  background-color: transparent;
  gap: 4px;
}
.media-player .controls.outside {
  position: relative;
}
.media-player .stream {
  display: flex;
  padding: 0;
  order: 5;
  width: 100%;
  min-width: 100px;
  position: relative;
  margin: 0;
}
.media-player .stream .slider {
  height: 0.875rem;
}
.media-player .load-audio {
  padding: 0;
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0.625rem;
  width: calc(100% - 1.25rem);
}
.media-player button:focus {
  box-shadow: none !important;
}
.media-player .loop {
  order: 1;
}
.media-player .play {
  order: 2;
}
.media-player .stop {
  order: 3;
}
.media-player .info-box {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 4;
  background: var(--player-info-background);
  color: var(--player-info-color);
  padding: 0.625rem;
  font-size: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  border: none;
}
.media-player .mute {
  order: 6;
}
.media-player .volume {
  order: 7;
  min-width: 50px;
  padding: 0;
  display: flex;
  gap: 4px;
}
.media-player .full {
  order: 8;
}
.media-player .loop,
.media-player .stop,
.media-player .play,
.media-player .mute {
  background: transparent;
}
@media (hover: hover) {
  .media-player .loop:hover,
  .media-player .stop:hover,
  .media-player .play:hover,
  .media-player .mute:hover {
    background: var(--player-control-background-hover);
    color: var(--player-constrol-color-hover);
  }
}
:-webkit-full-screen {
  width: 100%;
  height: 100%;
  z-index: 2147483647;
}
:-ms-fullscreen {
  width: 100%;
}
.media-player.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483647;
  max-height: 100% !important;
  height: 100% !important;
}
.audio-player {
  overflow: visible;
}
.audio-player .controls {
  position: relative;
}

/* source/components/audio-player/audio-player.less */
.audio-player {
  width: auto;
  display: inline-flex;
}

/* source/components/badges/badges.less */
:root {
  --badge-background: #F8F8F8;
  --badge-color: #191919;
  --badge-border-radius: 4px;
}
.dark-side {
  --badge-background: #2b2d30;
  --badge-color: #F8F8F8;
}
.badge {
  position: relative;
  z-index: 1;
  background-color: var(--badge-background);
  color: var(--badge-color);
  border-radius: var(--badge-border-radius);
  padding: 0.2em 0.4em 0.3em;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.badge.corner {
  position: absolute;
  top: 2px;
  right: 2px;
}
.badge.corner-outside {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

/* source/components/bar3d/bar3d.less */
:root {
  --chart-height: 160px;
  --bar-height: 160px;
  --bar-width: 32px;
  --bar-value-color: #191919;
  --bar-bottom-color: rgba(194, 157, 11, 0.2);
  --bar-top-color: rgba(254, 254, 254, 0.8);
  --bar-left-color: rgba(241, 241, 241, 0.8);
  --bar-right-color: rgba(216, 216, 216, 0.8);
}
.bar3d {
  font-size: 1em;
  position: relative;
  width: var(--bar-width);
  padding: 1em;
  transform: rotateX(-30deg) rotateY(-135deg);
  transform-style: preserve-3d;
  height: var(--bar-height);
}
.bar3d .side {
  position: relative;
  bottom: 0;
  width: var(--bar-width);
  height: var(--bar-height);
  background-position: center center;
  overflow: hidden;
}
.bar3d .left-side {
  transform: rotateY(90deg) translateZ(1em);
  background-color: var(--bar-left-color);
}
.bar3d .right-side {
  transform: rotateY(180deg) translateY(-10em) translateZ(1em);
  background-color: var(--bar-right-color);
}
.bar3d .top-side {
  width: var(--bar-width);
  height: var(--bar-width);
  transform: rotateX(90deg) translateZ(21em);
  text-align: center;
  background-color: var(--bar-top-color);
}
.bar3d .bottom-side {
  width: var(--bar-width);
  height: var(--bar-width);
  background-color: var(--bar-bottom-color);
  transform: rotateX(-90deg) translateY(0em) translateZ(-13em) rotate(180deg);
  text-align: center;
  box-shadow:
    0 0 0.6em rgba(0, 0, 0, 0.3),
    0.6em -1em 3em rgba(0, 0, 0, 0.3),
    1em 1em 10em rgba(254, 254, 254, 0.8);
}
.bar3d .growing-bar {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: transform linear;
  transition-duration: 0.3s;
  transform: translateY(100%);
  opacity: 0.8;
  background-color: var(--bar-growing-color);
}
.bar3d .growing-bar::before {
  content: attr(data-value);
  font-family: "Open Sans", sans-serif;
  font-size: 0.6em;
  font-weight: 700;
  display: inline-block;
  box-sizing: content-box;
  padding: 0.8em;
  text-align: center;
  opacity: 1;
  color: var(--bar-value-color);
}

/* source/components/box/box.less */
:root {
  --box-border-radius: 10px;
  --box-border-color: var(--border-color);
  --box-background: #ffffff;
  --box-color: #191919;
}
.dark-side {
  --box-border-color: var(--border-color);
  --box-background: var(--default-background);
  --box-color: var(--default-color);
}
.box {
  padding: 1.5rem;
  background: var(--box-background);
  border: 1px solid var(--box-border-color);
  border-radius: var(--box-border-radius);
  margin: 0;
  font-size: 14px;
  position: relative;
}
.box .box-title,
.box .box-title-secondary {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.box .box-title {
  border-bottom: 1px solid var(--box-border-color);
  padding-bottom: 0.5rem;
}
.box * + .box-title,
.box * + .box-title-secondary {
  margin-top: 2rem;
}
.box .box-title-secondary {
  font-size: 16px;
}
* + .box {
  margin-top: 1rem;
}

/* source/components/breadcrumbs/breadcrumbs.less */
:root {
  --breadcrumbs-background: transparent;
  --breadcrumbs-color: #191919;
  --breadcrumbs-background-hover: #ffffff;
  --breadcrumbs-color-hover: #000000;
}
.dark-side {
  --breadcrumbs-background: #1e1f22;
  --breadcrumbs-color: #dbdfe7;
  --breadcrumbs-background-hover: #1e1f22;
  --breadcrumbs-color-hover: #ffffff;
}
.breadcrumbs {
  position: relative;
  list-style: none inside;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.breadcrumbs.default {
  margin: 10px 0;
  padding: 0;
  background-color: var(--breadcrumbs-background);
  color: var(--breadcrumbs-color);
}
.breadcrumbs.default li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: inherit;
  color: inherit;
  margin: 0 4px;
}
.breadcrumbs.default li::after {
  content: "\203a";
  position: absolute;
  left: 100%;
  transform: translateY(-3px);
  font-size: 1.4em;
}
.breadcrumbs.default a {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.75rem;
  line-height: 1;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
.breadcrumbs.default .icon {
  font-size: 16px;
  margin-right: 0.5rem;
}
.breadcrumbs.default .caption {
  font-size: inherit;
  color: inherit;
}
.breadcrumbs.default a:hover {
  background-color: var(--breadcrumbs-background-hover);
  color: var(--breadcrumbs-color-hover);
  text-decoration: none;
}
.breadcrumbs.default li:last-child a {
  font-weight: bold;
}
.breadcrumbs.default li:last-child::after {
  display: none;
}
:root {
  --breadcrumbs-arrow-item-background: #fbfbfb;
  --breadcrumbs-arrow-counter-background: #ffffff;
  --breadcrumbs-arrow-counter-color: #000000;
  --breadcrumbs-arrow-item-background-active: #959595;
  --breadcrumbs-arrow-item-color-active: #ffffff;
  --breadcrumbs-arrow-item-color: #191919;
  --breadcrumbs-arrow-border-color: #c6c6c6;
  --breadcrumbs-arrow-item-shadow: rgba(133, 133, 133, 0.1);
}
.dark-side {
  --breadcrumbs-arrow-item-background: #2b2d30;
  --breadcrumbs-arrow-counter-background: #ffffff;
  --breadcrumbs-arrow-counter-color: #000000;
  --breadcrumbs-arrow-item-background-active: #959595;
  --breadcrumbs-arrow-item-color-active: #000;
  --breadcrumbs-arrow-item-color: #ffffff;
  --breadcrumbs-arrow-border-color: #4a4d51;
  --breadcrumbs-arrow-item-shadow: rgba(255, 255, 255, 0.1);
}
.breadcrumbs.arrow {
  overflow: hidden;
  border-radius: var(--border-radius);
  counter-reset: flag;
  border: 1px solid var(--breadcrumbs-arrow-border-color);
  margin: 0;
}
.breadcrumbs.arrow li {
  display: block;
}
.breadcrumbs.arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 36px;
  background: var(--breadcrumbs-arrow-item-background);
  color: var(--breadcrumbs-arrow-item-color);
  padding: 0 10px 0 70px;
  position: relative;
  height: 36px;
  text-decoration: none;
}
.breadcrumbs.arrow a::before {
  content: counter(flag);
  counter-increment: flag;
  border-radius: 50%;
  border: 1px solid var(--breadcrumbs-arrow-border-color);
  width: 26px;
  height: 26px;
  line-height: 26px;
  margin: 8px 0;
  position: absolute;
  top: -3px;
  left: 27px;
  background: var(--breadcrumbs-arrow-counter-background);
  color: var(--breadcrumbs-arrow-counter-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumbs.arrow a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 36px;
  transform: scale(0.707) rotate(45deg);
  z-index: 1;
  box-shadow: 1px -1px 0 1px var(--breadcrumbs-arrow-item-shadow);
  border-radius: 0 5px 0 50px;
  background: var(--breadcrumbs-arrow-item-background);
  color: var(--breadcrumbs-arrow-item-color);
}
.breadcrumbs.arrow .icon {
  font-size: 16px;
  margin: 0 0.5rem;
}
.breadcrumbs.arrow .caption {
  font-size: inherit;
}
.breadcrumbs.arrow li:first-child a {
  padding-left: 46px;
  border-radius: 5px 0 0 5px;
}
.breadcrumbs.arrow li:first-child a::before {
  left: 14px;
}
.breadcrumbs.arrow li:last-child a {
  border-radius: 0 5px 5px 0;
  padding-right: 20px;
}
.breadcrumbs.arrow li:last-child a:after {
  display: none;
}
.breadcrumbs.arrow li.active a,
.breadcrumbs.arrow li:hover a {
  background: var(--breadcrumbs-arrow-item-background-active);
  color: var(--breadcrumbs-arrow-item-color-active);
}
.breadcrumbs.arrow li.active a::after,
.breadcrumbs.arrow li:hover a::after {
  background: var(--breadcrumbs-arrow-item-background-active);
  box-shadow: 1px -1px 0 1px rgba(255, 255, 255, 0.4);
}

/* source/components/button-group/button-group.less */
:root {
  --button-group-active-background: #989898;
  --button-group-active-color: #fff;
}
.dark-side {
  --button-group-active-background: #4b4b4b;
  --button-group-active-color: #fff;
}
.button-group {
  display: inline-flex;
  position: relative;
}
.button-group .active {
  background-color: var(--button-group-active-background);
  color: var(--button-group-active-color);
}
.button-group > * {
  margin-right: 2px;
}
.button-group > *:last-child {
  margin-right: 0;
}
.button-group + .button-group {
  margin-left: 0.5rem;
}

/* source/components/input-common/input-common.less */
:root {
  --input-height: var(--control-height-normal);
  --input-font-size: 16px;
  --input-background: #ffffff;
  --input-background-disabled: #f7f8fa;
  --input-color-disabled: #c9ccd6;
  --input-border-color: #c9ccd6;
  --input-border-color-hover: #adb0b8;
  --input-color: #161316;
  --input-box-shadow: rgba(201, 204, 214, 0.42);
  --input-prepend-background: #f8f8f8;
  --input-prepend-color: #191919;
  --input-append-background: #f8f8f8;
  --input-append-color: #191919;
  --input-required-color: #468cff;
  --input-invalid-color: #ad2a14;
  --input-valid-color: #4cad14;
  --input-border-radius: 6px;
}
.dark-side {
  --input-background: #2b2d30;
  --input-background-disabled: #2b2d30;
  --input-color-disabled: #333437;
  --input-border-color: #4e5157;
  --input-border-color-hover: #71757e;
  --input-color: #dfe1e5;
  --input-box-shadow: rgba(78, 81, 87, 0.43);
  --input-prepend-background: #4e5157;
  --input-prepend-color: #bac1cf;
  --input-append-background: #4e5157;
  --input-append-color: #bac1cf;
}
input[type=text],
input[type=password],
input[type=email],
input[type=date],
input[type=datetime-local],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
textarea,
select,
.metro-input,
.file,
.input,
.textarea,
.select,
.tag-input,
.spinner,
.color-picker {
  position: relative;
  border: 1px var(--input-border-color) solid;
  border-radius: var(--input-border-radius);
  color: var(--input-color);
  width: 100%;
  font-size: var(--input-font-size);
  height: var(--input-height);
  line-height: var(--input-height);
  background: var(--input-background) none;
  background-clip: padding-box;
  min-width: 0;
  padding: 0 8px;
}
input[type=text] input,
input[type=password] input,
input[type=email] input,
input[type=date] input,
input[type=datetime-local] input,
input[type=search] input,
input[type=tel] input,
input[type=time] input,
input[type=url] input,
input[type=week] input,
textarea input,
select input,
.metro-input input,
.file input,
.input input,
.textarea input,
.select input,
.tag-input input,
.spinner input,
.color-picker input {
  appearance: none;
  display: block;
  outline: none;
  width: 100%;
  min-width: 0;
  height: calc(var(--input-height) - 2px);
}
input[type=text] input::-ms-clear,
input[type=password] input::-ms-clear,
input[type=email] input::-ms-clear,
input[type=date] input::-ms-clear,
input[type=datetime-local] input::-ms-clear,
input[type=search] input::-ms-clear,
input[type=tel] input::-ms-clear,
input[type=time] input::-ms-clear,
input[type=url] input::-ms-clear,
input[type=week] input::-ms-clear,
textarea input::-ms-clear,
select input::-ms-clear,
.metro-input input::-ms-clear,
.file input::-ms-clear,
.input input::-ms-clear,
.textarea input::-ms-clear,
.select input::-ms-clear,
.tag-input input::-ms-clear,
.spinner input::-ms-clear,
.color-picker input::-ms-clear {
  display: none;
}
input[type=text] input::-ms-reveal,
input[type=password] input::-ms-reveal,
input[type=email] input::-ms-reveal,
input[type=date] input::-ms-reveal,
input[type=datetime-local] input::-ms-reveal,
input[type=search] input::-ms-reveal,
input[type=tel] input::-ms-reveal,
input[type=time] input::-ms-reveal,
input[type=url] input::-ms-reveal,
input[type=week] input::-ms-reveal,
textarea input::-ms-reveal,
select input::-ms-reveal,
.metro-input input::-ms-reveal,
.file input::-ms-reveal,
.input input::-ms-reveal,
.textarea input::-ms-reveal,
.select input::-ms-reveal,
.tag-input input::-ms-reveal,
.spinner input::-ms-reveal,
.color-picker input::-ms-reveal {
  display: none;
}
input[type=text] input::-webkit-clear-button,
input[type=password] input::-webkit-clear-button,
input[type=email] input::-webkit-clear-button,
input[type=date] input::-webkit-clear-button,
input[type=datetime-local] input::-webkit-clear-button,
input[type=search] input::-webkit-clear-button,
input[type=tel] input::-webkit-clear-button,
input[type=time] input::-webkit-clear-button,
input[type=url] input::-webkit-clear-button,
input[type=week] input::-webkit-clear-button,
textarea input::-webkit-clear-button,
select input::-webkit-clear-button,
.metro-input input::-webkit-clear-button,
.file input::-webkit-clear-button,
.input input::-webkit-clear-button,
.textarea input::-webkit-clear-button,
.select input::-webkit-clear-button,
.tag-input input::-webkit-clear-button,
.spinner input::-webkit-clear-button,
.color-picker input::-webkit-clear-button {
  display: none;
}
input[type=text] input::-webkit-inner-spin-button,
input[type=password] input::-webkit-inner-spin-button,
input[type=email] input::-webkit-inner-spin-button,
input[type=date] input::-webkit-inner-spin-button,
input[type=datetime-local] input::-webkit-inner-spin-button,
input[type=search] input::-webkit-inner-spin-button,
input[type=tel] input::-webkit-inner-spin-button,
input[type=time] input::-webkit-inner-spin-button,
input[type=url] input::-webkit-inner-spin-button,
input[type=week] input::-webkit-inner-spin-button,
textarea input::-webkit-inner-spin-button,
select input::-webkit-inner-spin-button,
.metro-input input::-webkit-inner-spin-button,
.file input::-webkit-inner-spin-button,
.input input::-webkit-inner-spin-button,
.textarea input::-webkit-inner-spin-button,
.select input::-webkit-inner-spin-button,
.tag-input input::-webkit-inner-spin-button,
.spinner input::-webkit-inner-spin-button,
.color-picker input::-webkit-inner-spin-button {
  height: 100%;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus,
select:focus,
.metro-input:focus,
.file:focus,
.input:focus,
.textarea:focus,
.select:focus,
.tag-input:focus,
.spinner:focus,
.color-picker:focus {
  outline: none;
}
@media (hover: hover) {
  input[type=text]:hover,
  input[type=password]:hover,
  input[type=email]:hover,
  input[type=date]:hover,
  input[type=datetime-local]:hover,
  input[type=search]:hover,
  input[type=tel]:hover,
  input[type=time]:hover,
  input[type=url]:hover,
  input[type=week]:hover,
  textarea:hover,
  select:hover,
  .metro-input:hover,
  .file:hover,
  .input:hover,
  .textarea:hover,
  .select:hover,
  .tag-input:hover,
  .spinner:hover,
  .color-picker:hover {
    border-color: var(--input-border-color-hover);
  }
}
@media (hover: none) {
  input[type=text]:active,
  input[type=password]:active,
  input[type=email]:active,
  input[type=date]:active,
  input[type=datetime-local]:active,
  input[type=search]:active,
  input[type=tel]:active,
  input[type=time]:active,
  input[type=url]:active,
  input[type=week]:active,
  textarea:active,
  select:active,
  .metro-input:active,
  .file:active,
  .input:active,
  .textarea:active,
  .select:active,
  .tag-input:active,
  .spinner:active,
  .color-picker:active {
    border-color: var(--input-border-color-hover);
  }
}
input[type=text] .input-clear-button,
input[type=password] .input-clear-button,
input[type=email] .input-clear-button,
input[type=date] .input-clear-button,
input[type=datetime-local] .input-clear-button,
input[type=search] .input-clear-button,
input[type=tel] .input-clear-button,
input[type=time] .input-clear-button,
input[type=url] .input-clear-button,
input[type=week] .input-clear-button,
textarea .input-clear-button,
select .input-clear-button,
.metro-input .input-clear-button,
.file .input-clear-button,
.input .input-clear-button,
.textarea .input-clear-button,
.select .input-clear-button,
.tag-input .input-clear-button,
.spinner .input-clear-button,
.color-picker .input-clear-button,
input[type=text] .input-reveal-button,
input[type=password] .input-reveal-button,
input[type=email] .input-reveal-button,
input[type=date] .input-reveal-button,
input[type=datetime-local] .input-reveal-button,
input[type=search] .input-reveal-button,
input[type=tel] .input-reveal-button,
input[type=time] .input-reveal-button,
input[type=url] .input-reveal-button,
input[type=week] .input-reveal-button,
textarea .input-reveal-button,
select .input-reveal-button,
.metro-input .input-reveal-button,
.file .input-reveal-button,
.input .input-reveal-button,
.textarea .input-reveal-button,
.select .input-reveal-button,
.tag-input .input-reveal-button,
.spinner .input-reveal-button,
.color-picker .input-reveal-button {
  transform: scale(0);
  opacity: 0;
}
input[type=text] .input-clear-button:active,
input[type=password] .input-clear-button:active,
input[type=email] .input-clear-button:active,
input[type=date] .input-clear-button:active,
input[type=datetime-local] .input-clear-button:active,
input[type=search] .input-clear-button:active,
input[type=tel] .input-clear-button:active,
input[type=time] .input-clear-button:active,
input[type=url] .input-clear-button:active,
input[type=week] .input-clear-button:active,
textarea .input-clear-button:active,
select .input-clear-button:active,
.metro-input .input-clear-button:active,
.file .input-clear-button:active,
.input .input-clear-button:active,
.textarea .input-clear-button:active,
.select .input-clear-button:active,
.tag-input .input-clear-button:active,
.spinner .input-clear-button:active,
.color-picker .input-clear-button:active,
input[type=text] .input-reveal-button:active,
input[type=password] .input-reveal-button:active,
input[type=email] .input-reveal-button:active,
input[type=date] .input-reveal-button:active,
input[type=datetime-local] .input-reveal-button:active,
input[type=search] .input-reveal-button:active,
input[type=tel] .input-reveal-button:active,
input[type=time] .input-reveal-button:active,
input[type=url] .input-reveal-button:active,
input[type=week] .input-reveal-button:active,
textarea .input-reveal-button:active,
select .input-reveal-button:active,
.metro-input .input-reveal-button:active,
.file .input-reveal-button:active,
.input .input-reveal-button:active,
.textarea .input-reveal-button:active,
.select .input-reveal-button:active,
.tag-input .input-reveal-button:active,
.spinner .input-reveal-button:active,
.color-picker .input-reveal-button:active,
input[type=text] .input-clear-button:focus,
input[type=password] .input-clear-button:focus,
input[type=email] .input-clear-button:focus,
input[type=date] .input-clear-button:focus,
input[type=datetime-local] .input-clear-button:focus,
input[type=search] .input-clear-button:focus,
input[type=tel] .input-clear-button:focus,
input[type=time] .input-clear-button:focus,
input[type=url] .input-clear-button:focus,
input[type=week] .input-clear-button:focus,
textarea .input-clear-button:focus,
select .input-clear-button:focus,
.metro-input .input-clear-button:focus,
.file .input-clear-button:focus,
.input .input-clear-button:focus,
.textarea .input-clear-button:focus,
.select .input-clear-button:focus,
.tag-input .input-clear-button:focus,
.spinner .input-clear-button:focus,
.color-picker .input-clear-button:focus,
input[type=text] .input-reveal-button:focus,
input[type=password] .input-reveal-button:focus,
input[type=email] .input-reveal-button:focus,
input[type=date] .input-reveal-button:focus,
input[type=datetime-local] .input-reveal-button:focus,
input[type=search] .input-reveal-button:focus,
input[type=tel] .input-reveal-button:focus,
input[type=time] .input-reveal-button:focus,
input[type=url] .input-reveal-button:focus,
input[type=week] .input-reveal-button:focus,
textarea .input-reveal-button:focus,
select .input-reveal-button:focus,
.metro-input .input-reveal-button:focus,
.file .input-reveal-button:focus,
.input .input-reveal-button:focus,
.textarea .input-reveal-button:focus,
.select .input-reveal-button:focus,
.tag-input .input-reveal-button:focus,
.spinner .input-reveal-button:focus,
.color-picker .input-reveal-button:focus,
input[type=text] .input-clear-button:hover,
input[type=password] .input-clear-button:hover,
input[type=email] .input-clear-button:hover,
input[type=date] .input-clear-button:hover,
input[type=datetime-local] .input-clear-button:hover,
input[type=search] .input-clear-button:hover,
input[type=tel] .input-clear-button:hover,
input[type=time] .input-clear-button:hover,
input[type=url] .input-clear-button:hover,
input[type=week] .input-clear-button:hover,
textarea .input-clear-button:hover,
select .input-clear-button:hover,
.metro-input .input-clear-button:hover,
.file .input-clear-button:hover,
.input .input-clear-button:hover,
.textarea .input-clear-button:hover,
.select .input-clear-button:hover,
.tag-input .input-clear-button:hover,
.spinner .input-clear-button:hover,
.color-picker .input-clear-button:hover,
input[type=text] .input-reveal-button:hover,
input[type=password] .input-reveal-button:hover,
input[type=email] .input-reveal-button:hover,
input[type=date] .input-reveal-button:hover,
input[type=datetime-local] .input-reveal-button:hover,
input[type=search] .input-reveal-button:hover,
input[type=tel] .input-reveal-button:hover,
input[type=time] .input-reveal-button:hover,
input[type=url] .input-reveal-button:hover,
input[type=week] .input-reveal-button:hover,
textarea .input-reveal-button:hover,
select .input-reveal-button:hover,
.metro-input .input-reveal-button:hover,
.file .input-reveal-button:hover,
.input .input-reveal-button:hover,
.textarea .input-reveal-button:hover,
.select .input-reveal-button:hover,
.tag-input .input-reveal-button:hover,
.spinner .input-reveal-button:hover,
.color-picker .input-reveal-button:hover {
  opacity: 1;
  transform: scale(1);
}
input[type=text]:focus .input-clear-button,
input[type=password]:focus .input-clear-button,
input[type=email]:focus .input-clear-button,
input[type=date]:focus .input-clear-button,
input[type=datetime-local]:focus .input-clear-button,
input[type=search]:focus .input-clear-button,
input[type=tel]:focus .input-clear-button,
input[type=time]:focus .input-clear-button,
input[type=url]:focus .input-clear-button,
input[type=week]:focus .input-clear-button,
textarea:focus .input-clear-button,
select:focus .input-clear-button,
.metro-input:focus .input-clear-button,
.file:focus .input-clear-button,
.input:focus .input-clear-button,
.textarea:focus .input-clear-button,
.select:focus .input-clear-button,
.tag-input:focus .input-clear-button,
.spinner:focus .input-clear-button,
.color-picker:focus .input-clear-button,
input[type=text].focused .input-clear-button,
input[type=password].focused .input-clear-button,
input[type=email].focused .input-clear-button,
input[type=date].focused .input-clear-button,
input[type=datetime-local].focused .input-clear-button,
input[type=search].focused .input-clear-button,
input[type=tel].focused .input-clear-button,
input[type=time].focused .input-clear-button,
input[type=url].focused .input-clear-button,
input[type=week].focused .input-clear-button,
textarea.focused .input-clear-button,
select.focused .input-clear-button,
.metro-input.focused .input-clear-button,
.file.focused .input-clear-button,
.input.focused .input-clear-button,
.textarea.focused .input-clear-button,
.select.focused .input-clear-button,
.tag-input.focused .input-clear-button,
.spinner.focused .input-clear-button,
.color-picker.focused .input-clear-button,
input[type=text]:hover .input-clear-button,
input[type=password]:hover .input-clear-button,
input[type=email]:hover .input-clear-button,
input[type=date]:hover .input-clear-button,
input[type=datetime-local]:hover .input-clear-button,
input[type=search]:hover .input-clear-button,
input[type=tel]:hover .input-clear-button,
input[type=time]:hover .input-clear-button,
input[type=url]:hover .input-clear-button,
input[type=week]:hover .input-clear-button,
textarea:hover .input-clear-button,
select:hover .input-clear-button,
.metro-input:hover .input-clear-button,
.file:hover .input-clear-button,
.input:hover .input-clear-button,
.textarea:hover .input-clear-button,
.select:hover .input-clear-button,
.tag-input:hover .input-clear-button,
.spinner:hover .input-clear-button,
.color-picker:hover .input-clear-button,
input[type=text]:focus .input-reveal-button,
input[type=password]:focus .input-reveal-button,
input[type=email]:focus .input-reveal-button,
input[type=date]:focus .input-reveal-button,
input[type=datetime-local]:focus .input-reveal-button,
input[type=search]:focus .input-reveal-button,
input[type=tel]:focus .input-reveal-button,
input[type=time]:focus .input-reveal-button,
input[type=url]:focus .input-reveal-button,
input[type=week]:focus .input-reveal-button,
textarea:focus .input-reveal-button,
select:focus .input-reveal-button,
.metro-input:focus .input-reveal-button,
.file:focus .input-reveal-button,
.input:focus .input-reveal-button,
.textarea:focus .input-reveal-button,
.select:focus .input-reveal-button,
.tag-input:focus .input-reveal-button,
.spinner:focus .input-reveal-button,
.color-picker:focus .input-reveal-button,
input[type=text].focused .input-reveal-button,
input[type=password].focused .input-reveal-button,
input[type=email].focused .input-reveal-button,
input[type=date].focused .input-reveal-button,
input[type=datetime-local].focused .input-reveal-button,
input[type=search].focused .input-reveal-button,
input[type=tel].focused .input-reveal-button,
input[type=time].focused .input-reveal-button,
input[type=url].focused .input-reveal-button,
input[type=week].focused .input-reveal-button,
textarea.focused .input-reveal-button,
select.focused .input-reveal-button,
.metro-input.focused .input-reveal-button,
.file.focused .input-reveal-button,
.input.focused .input-reveal-button,
.textarea.focused .input-reveal-button,
.select.focused .input-reveal-button,
.tag-input.focused .input-reveal-button,
.spinner.focused .input-reveal-button,
.color-picker.focused .input-reveal-button,
input[type=text]:hover .input-reveal-button,
input[type=password]:hover .input-reveal-button,
input[type=email]:hover .input-reveal-button,
input[type=date]:hover .input-reveal-button,
input[type=datetime-local]:hover .input-reveal-button,
input[type=search]:hover .input-reveal-button,
input[type=tel]:hover .input-reveal-button,
input[type=time]:hover .input-reveal-button,
input[type=url]:hover .input-reveal-button,
input[type=week]:hover .input-reveal-button,
textarea:hover .input-reveal-button,
select:hover .input-reveal-button,
.metro-input:hover .input-reveal-button,
.file:hover .input-reveal-button,
.input:hover .input-reveal-button,
.textarea:hover .input-reveal-button,
.select:hover .input-reveal-button,
.tag-input:hover .input-reveal-button,
.spinner:hover .input-reveal-button,
.color-picker:hover .input-reveal-button {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus,
select:focus,
.metro-input:focus,
.file:focus,
.input:focus,
.textarea:focus,
.select:focus,
.tag-input:focus,
.spinner:focus,
.color-picker:focus,
input[type=text].focused,
input[type=password].focused,
input[type=email].focused,
input[type=date].focused,
input[type=datetime-local].focused,
input[type=search].focused,
input[type=tel].focused,
input[type=time].focused,
input[type=url].focused,
input[type=week].focused,
textarea.focused,
select.focused,
.metro-input.focused,
.file.focused,
.input.focused,
.textarea.focused,
.select.focused,
.tag-input.focused,
.spinner.focused,
.color-picker.focused {
  box-shadow: 0 0 0 3px var(--input-box-shadow);
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=email]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=time]:disabled,
input[type=url]:disabled,
input[type=week]:disabled,
textarea:disabled,
select:disabled,
.metro-input:disabled,
.file:disabled,
.input:disabled,
.textarea:disabled,
.select:disabled,
.tag-input:disabled,
.spinner:disabled,
.color-picker:disabled,
input[type=text].disabled,
input[type=password].disabled,
input[type=email].disabled,
input[type=date].disabled,
input[type=datetime-local].disabled,
input[type=search].disabled,
input[type=tel].disabled,
input[type=time].disabled,
input[type=url].disabled,
input[type=week].disabled,
textarea.disabled,
select.disabled,
.metro-input.disabled,
.file.disabled,
.input.disabled,
.textarea.disabled,
.select.disabled,
.tag-input.disabled,
.spinner.disabled,
.color-picker.disabled {
  pointer-events: none;
  border-color: var(--input-border-color);
  background-color: var(--input-background-disabled);
  color: var(--input-color-disabled);
}
input[type=text].hide-cursor input,
input[type=password].hide-cursor input,
input[type=email].hide-cursor input,
input[type=date].hide-cursor input,
input[type=datetime-local].hide-cursor input,
input[type=search].hide-cursor input,
input[type=tel].hide-cursor input,
input[type=time].hide-cursor input,
input[type=url].hide-cursor input,
input[type=week].hide-cursor input,
textarea.hide-cursor input,
select.hide-cursor input,
.metro-input.hide-cursor input,
.file.hide-cursor input,
.input.hide-cursor input,
.textarea.hide-cursor input,
.select.hide-cursor input,
.tag-input.hide-cursor input,
.spinner.hide-cursor input,
.color-picker.hide-cursor input {
  color: transparent;
  text-shadow: 0 0 0 var(--input-background);
}
input[type=text].required,
input[type=password].required,
input[type=email].required,
input[type=date].required,
input[type=datetime-local].required,
input[type=search].required,
input[type=tel].required,
input[type=time].required,
input[type=url].required,
input[type=week].required,
textarea.required,
select.required,
.metro-input.required,
.file.required,
.input.required,
.textarea.required,
.select.required,
.tag-input.required,
.spinner.required,
.color-picker.required {
  border: 1px var(--input-required-color) dashed !important;
}
input[type=text].required:focus,
input[type=password].required:focus,
input[type=email].required:focus,
input[type=date].required:focus,
input[type=datetime-local].required:focus,
input[type=search].required:focus,
input[type=tel].required:focus,
input[type=time].required:focus,
input[type=url].required:focus,
input[type=week].required:focus,
textarea.required:focus,
select.required:focus,
.metro-input.required:focus,
.file.required:focus,
.input.required:focus,
.textarea.required:focus,
.select.required:focus,
.tag-input.required:focus,
.spinner.required:focus,
.color-picker.required:focus,
input[type=text].required.focused,
input[type=password].required.focused,
input[type=email].required.focused,
input[type=date].required.focused,
input[type=datetime-local].required.focused,
input[type=search].required.focused,
input[type=tel].required.focused,
input[type=time].required.focused,
input[type=url].required.focused,
input[type=week].required.focused,
textarea.required.focused,
select.required.focused,
.metro-input.required.focused,
.file.required.focused,
.input.required.focused,
.textarea.required.focused,
.select.required.focused,
.tag-input.required.focused,
.spinner.required.focused,
.color-picker.required.focused {
  box-shadow: 0 0 0 3px var(--input-required-color) !important;
}
input[type=text].invalid,
input[type=password].invalid,
input[type=email].invalid,
input[type=date].invalid,
input[type=datetime-local].invalid,
input[type=search].invalid,
input[type=tel].invalid,
input[type=time].invalid,
input[type=url].invalid,
input[type=week].invalid,
textarea.invalid,
select.invalid,
.metro-input.invalid,
.file.invalid,
.input.invalid,
.textarea.invalid,
.select.invalid,
.tag-input.invalid,
.spinner.invalid,
.color-picker.invalid {
  border: 1px var(--input-invalid-color) solid !important;
}
input[type=text].invalid:focus,
input[type=password].invalid:focus,
input[type=email].invalid:focus,
input[type=date].invalid:focus,
input[type=datetime-local].invalid:focus,
input[type=search].invalid:focus,
input[type=tel].invalid:focus,
input[type=time].invalid:focus,
input[type=url].invalid:focus,
input[type=week].invalid:focus,
textarea.invalid:focus,
select.invalid:focus,
.metro-input.invalid:focus,
.file.invalid:focus,
.input.invalid:focus,
.textarea.invalid:focus,
.select.invalid:focus,
.tag-input.invalid:focus,
.spinner.invalid:focus,
.color-picker.invalid:focus,
input[type=text].invalid.focused,
input[type=password].invalid.focused,
input[type=email].invalid.focused,
input[type=date].invalid.focused,
input[type=datetime-local].invalid.focused,
input[type=search].invalid.focused,
input[type=tel].invalid.focused,
input[type=time].invalid.focused,
input[type=url].invalid.focused,
input[type=week].invalid.focused,
textarea.invalid.focused,
select.invalid.focused,
.metro-input.invalid.focused,
.file.invalid.focused,
.input.invalid.focused,
.textarea.invalid.focused,
.select.invalid.focused,
.tag-input.invalid.focused,
.spinner.invalid.focused,
.color-picker.invalid.focused {
  box-shadow: 0 0 0 3px var(--input-invalid-color) !important;
}
input[type=text].invalid::after,
input[type=password].invalid::after,
input[type=email].invalid::after,
input[type=date].invalid::after,
input[type=datetime-local].invalid::after,
input[type=search].invalid::after,
input[type=tel].invalid::after,
input[type=time].invalid::after,
input[type=url].invalid::after,
input[type=week].invalid::after,
textarea.invalid::after,
select.invalid::after,
.metro-input.invalid::after,
.file.invalid::after,
.input.invalid::after,
.textarea.invalid::after,
.select.invalid::after,
.tag-input.invalid::after,
.spinner.invalid::after,
.color-picker.invalid::after {
  position: absolute;
  content: attr(data-exclaim);
  color: var(--input-invalid-color);
  left: -16px;
  top: 0;
  font-size: 1.625rem;
  font-weight: bold;
}
input[type=text].valid,
input[type=password].valid,
input[type=email].valid,
input[type=date].valid,
input[type=datetime-local].valid,
input[type=search].valid,
input[type=tel].valid,
input[type=time].valid,
input[type=url].valid,
input[type=week].valid,
textarea.valid,
select.valid,
.metro-input.valid,
.file.valid,
.input.valid,
.textarea.valid,
.select.valid,
.tag-input.valid,
.spinner.valid,
.color-picker.valid {
  border: 1px var(--input-valid-color) solid !important;
}
input[type=text].valid:focus,
input[type=password].valid:focus,
input[type=email].valid:focus,
input[type=date].valid:focus,
input[type=datetime-local].valid:focus,
input[type=search].valid:focus,
input[type=tel].valid:focus,
input[type=time].valid:focus,
input[type=url].valid:focus,
input[type=week].valid:focus,
textarea.valid:focus,
select.valid:focus,
.metro-input.valid:focus,
.file.valid:focus,
.input.valid:focus,
.textarea.valid:focus,
.select.valid:focus,
.tag-input.valid:focus,
.spinner.valid:focus,
.color-picker.valid:focus,
input[type=text].valid.focused,
input[type=password].valid.focused,
input[type=email].valid.focused,
input[type=date].valid.focused,
input[type=datetime-local].valid.focused,
input[type=search].valid.focused,
input[type=tel].valid.focused,
input[type=time].valid.focused,
input[type=url].valid.focused,
input[type=week].valid.focused,
textarea.valid.focused,
select.valid.focused,
.metro-input.valid.focused,
.file.valid.focused,
.input.valid.focused,
.textarea.valid.focused,
.select.valid.focused,
.tag-input.valid.focused,
.spinner.valid.focused,
.color-picker.valid.focused {
  box-shadow: 0 0 0 3px var(--input-valid-color) !important;
}
input[type=text].small,
input[type=password].small,
input[type=email].small,
input[type=date].small,
input[type=datetime-local].small,
input[type=search].small,
input[type=tel].small,
input[type=time].small,
input[type=url].small,
input[type=week].small,
textarea.small,
select.small,
.metro-input.small,
.file.small,
.input.small,
.textarea.small,
.select.small,
.tag-input.small,
.spinner.small,
.color-picker.small {
  --input-height: var(--control-height-small);
  --input-font-size: 12px;
}
input[type=text].medium,
input[type=password].medium,
input[type=email].medium,
input[type=date].medium,
input[type=datetime-local].medium,
input[type=search].medium,
input[type=tel].medium,
input[type=time].medium,
input[type=url].medium,
input[type=week].medium,
textarea.medium,
select.medium,
.metro-input.medium,
.file.medium,
.input.medium,
.textarea.medium,
.select.medium,
.tag-input.medium,
.spinner.medium,
.color-picker.medium {
  --input-height: var(--control-height-medium);
  --input-font-size: 14px;
}
input[type=text].large,
input[type=password].large,
input[type=email].large,
input[type=date].large,
input[type=datetime-local].large,
input[type=search].large,
input[type=tel].large,
input[type=time].large,
input[type=url].large,
input[type=week].large,
textarea.large,
select.large,
.metro-input.large,
.file.large,
.input.large,
.textarea.large,
.select.large,
.tag-input.large,
.spinner.large,
.color-picker.large {
  --input-height: var(--control-height-large);
  --input-font-size: 20px;
}
textarea {
  padding: 8px;
  font-size: var(--input-font-size);
}
textarea.metro-input {
  height: auto;
}
input[type=button],
input[type=submit],
input[type=reset] {
  width: auto;
}
.file .prepend,
.input .prepend,
.select .prepend,
.textarea .prepend,
.tag-input .prepend,
.spinner .prepend,
.color-picker .prepend,
.file .append,
.input .append,
.select .append,
.textarea .append,
.tag-input .append,
.spinner .append,
.color-picker .append {
  padding: 0 calc(var(--input-height) / 2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file .prepend,
.input .prepend,
.select .prepend,
.textarea .prepend,
.tag-input .prepend,
.spinner .prepend,
.color-picker .prepend {
  background-color: var(--input-prepend-background);
  color: var(--input-prepend-color);
}
.file .append,
.input .append,
.select .append,
.textarea .append,
.tag-input .append,
.spinner .append,
.color-picker .append {
  background-color: var(--input-append-background);
  color: var(--input-append-color);
}
.hidden-input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.file:disabled input,
.input:disabled input,
.textarea:disabled input,
.select:disabled input,
.tag-input:disabled input,
.spinner:disabled input,
.tag-input:disabled input,
.rating:disabled input,
.color-picker:disabled input,
.file.disabled input,
.input.disabled input,
.textarea.disabled input,
.select.disabled input,
.tag-input.disabled input,
.spinner.disabled input,
.tag-input.disabled input,
.rating.disabled input,
.color-picker.disabled input,
.file:disabled textarea,
.input:disabled textarea,
.textarea:disabled textarea,
.select:disabled textarea,
.tag-input:disabled textarea,
.spinner:disabled textarea,
.tag-input:disabled textarea,
.rating:disabled textarea,
.color-picker:disabled textarea,
.file.disabled textarea,
.input.disabled textarea,
.textarea.disabled textarea,
.select.disabled textarea,
.tag-input.disabled textarea,
.spinner.disabled textarea,
.tag-input.disabled textarea,
.rating.disabled textarea,
.color-picker.disabled textarea,
.file:disabled select,
.input:disabled select,
.textarea:disabled select,
.select:disabled select,
.tag-input:disabled select,
.spinner:disabled select,
.tag-input:disabled select,
.rating:disabled select,
.color-picker:disabled select,
.file.disabled select,
.input.disabled select,
.textarea.disabled select,
.select.disabled select,
.tag-input.disabled select,
.spinner.disabled select,
.tag-input.disabled select,
.rating.disabled select,
.color-picker.disabled select,
.file:disabled .select-input,
.input:disabled .select-input,
.textarea:disabled .select-input,
.select:disabled .select-input,
.tag-input:disabled .select-input,
.spinner:disabled .select-input,
.tag-input:disabled .select-input,
.rating:disabled .select-input,
.color-picker:disabled .select-input,
.file.disabled .select-input,
.input.disabled .select-input,
.textarea.disabled .select-input,
.select.disabled .select-input,
.tag-input.disabled .select-input,
.spinner.disabled .select-input,
.tag-input.disabled .select-input,
.rating.disabled .select-input,
.color-picker.disabled .select-input,
.file:disabled .caption,
.input:disabled .caption,
.textarea:disabled .caption,
.select:disabled .caption,
.tag-input:disabled .caption,
.spinner:disabled .caption,
.tag-input:disabled .caption,
.rating:disabled .caption,
.color-picker:disabled .caption,
.file.disabled .caption,
.input.disabled .caption,
.textarea.disabled .caption,
.select.disabled .caption,
.tag-input.disabled .caption,
.spinner.disabled .caption,
.tag-input.disabled .caption,
.rating.disabled .caption,
.color-picker.disabled .caption,
.file:disabled .stars li,
.input:disabled .stars li,
.textarea:disabled .stars li,
.select:disabled .stars li,
.tag-input:disabled .stars li,
.spinner:disabled .stars li,
.tag-input:disabled .stars li,
.rating:disabled .stars li,
.color-picker:disabled .stars li,
.file.disabled .stars li,
.input.disabled .stars li,
.textarea.disabled .stars li,
.select.disabled .stars li,
.tag-input.disabled .stars li,
.spinner.disabled .stars li,
.tag-input.disabled .stars li,
.rating.disabled .stars li,
.color-picker.disabled .stars li {
  background: transparent;
  color: var(--input-color-disabled);
}
.file:disabled .button-group,
.input:disabled .button-group,
.textarea:disabled .button-group,
.select:disabled .button-group,
.tag-input:disabled .button-group,
.spinner:disabled .button-group,
.tag-input:disabled .button-group,
.rating:disabled .button-group,
.color-picker:disabled .button-group,
.file.disabled .button-group,
.input.disabled .button-group,
.textarea.disabled .button-group,
.select.disabled .button-group,
.tag-input.disabled .button-group,
.spinner.disabled .button-group,
.tag-input.disabled .button-group,
.rating.disabled .button-group,
.color-picker.disabled .button-group {
  display: none;
}
.invalid_feedback {
  font-size: 0.9em;
  color: var(--input-invalid-color);
}
.custom-validation input[required]:valid,
.custom-validation select[required]:valid,
.custom-validation textarea[required]:valid {
  border-color: var(--input-valid-color);
}
.custom-validation input[required]:valid + .invalid_feedback,
.custom-validation select[required]:valid + .invalid_feedback,
.custom-validation textarea[required]:valid + .invalid_feedback {
  display: none;
}
.custom-validation input[required]:invalid,
.custom-validation select[required]:invalid,
.custom-validation textarea[required]:invalid {
  border-color: var(--input-invalid-color);
}
.custom-validation input[required]:invalid + .invalid_feedback,
.custom-validation select[required]:invalid + .invalid_feedback,
.custom-validation textarea[required]:invalid + .invalid_feedback {
  display: block;
}
.invalid_feedback {
  display: none;
}
.invalid + .invalid_feedback,
.invalid > .invalid_feedback {
  display: block !important;
}
::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
::-webkit-search-results-button {
  -webkit-appearance: none;
}
input[type=search] {
  -webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--input-background) inset;
  background-color: var(--input-background) !important;
  transition: background-color 5000s ease-in-out 0s;
}
::-webkit-input-placeholder {
  font-size: 14px;
}
::-moz-placeholder {
  font-size: 14px;
}
:-moz-placeholder {
  font-size: 14px;
}
:-ms-input-placeholder {
  font-size: 14px;
}
input.rtl,
input[dir=rtl] {
  direction: rtl;
}
.label-for-input {
  display: block;
  position: relative;
}
.label-for-input.rtl {
  text-align: right;
}
input::placeholder {
  text-overflow: ellipsis;
  font-size: var(--input-font-size);
}

/* source/components/spinner/spinner.less */
:root {
  --spinner-border-radius: 4px;
}
.spinner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4px;
  cursor: text;
  position: relative;
  height: var(--input-height, 36px);
  border-radius: var(--spinner-border-radius);
}
.spinner input {
  border: none !important;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 36px;
  font-size: var(--input-font-size);
  padding: 0 4px !important;
  text-align: center;
}
.spinner input:focus {
  box-shadow: none !important;
}
.spinner .button {
  height: calc(100% - 4px);
  aspect-ratio: 1;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  padding: 0;
  user-select: none;
}
.spinner .spinner-button-plus {
  order: 3;
}
.spinner .spinner-button-minus {
  order: 1;
}
.spinner input {
  order: 2;
}
.spinner.buttons-left .spinner-button-plus {
  order: 2;
  margin-left: 2px;
}
.spinner.buttons-left .spinner-button-minus {
  order: 1;
}
.spinner.buttons-left input {
  order: 3;
  text-align: right;
}
.spinner.buttons-right .spinner-button-plus {
  order: 3;
  margin-left: 2px;
}
.spinner.buttons-right .spinner-button-minus {
  order: 2;
}
.spinner.buttons-right input {
  order: 1;
  text-align: left;
}
.spinner.pill-input {
  --spinner-border-radius: calc(var(--input-height) * 0.44);
}
.spinner.pill-input .button {
  border-radius: 50%;
}

/* source/components/calendar/calendar.less */
:root {
  --today-selection: url(data:image/png;base64,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);
  --calendar-background: #ffffff;
  --calendar-header-background: #fafafa;
  --calendar-header-color: #191919;
  --calendar-weekday-background: #f8f8f7;
  --calendar-weekday-color: #191919;
  --calendar-border-color: #dddddd;
  --calendar-color: #191919;
  --calendar-day-border-color: #e8e8e8;
  --calendar-exclude-day-background: #ffffff;
  --calendar-exclude-day-color: #aaa;
  --calendar-today-day-background: #56c30f;
  --calendar-today-day-color: #fff;
  --calendar-border-radius: 6px;
}
.dark-side {
  --calendar-background: #2b2d30;
  --calendar-header-background: #43454a;
  --calendar-weekday-background: #414245;
  --calendar-weekday-color: #dfe1e5;
  --calendar-header-color: #dfe1e5;
  --calendar-border-color: #414245;
  --calendar-color: #dfe1e5;
  --calendar-day-border-color: #4a4d51;
  --calendar-exclude-day-background: #2b2d30;
  --calendar-exclude-day-color: #818181;
}
.calendar {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  width: auto;
  float: left;
  border: 1px solid var(--calendar-border-color);
  overflow: hidden;
  user-select: none;
  background-color: var(--calendar-background);
  border-radius: var(--calendar-border-radius);
}
.calendar-header,
.calendar-content,
.calendar-footer {
  position: relative;
  display: block;
  background-color: var(--calendar-background);
  color: var(--calnedar-color);
  flex-shrink: 0;
}
.calendar-header {
  padding: 1rem;
  background-color: var(--calendar-header-background);
  color: var(--calendar-header-color);
  user-select: none;
}
.calendar-header .header-year {
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
}
.calendar-header .header-day {
  font-size: 1.2rem;
  cursor: pointer;
}
.calendar-header .header-actions {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.2rem;
  line-height: 1;
  user-select: none;
  gap: 4px;
}
.calendar-header .header-actions .caret {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  fill: var(--calendar-header-color);
}
.calendar-content {
  padding: 1px;
  width: 278px;
}
.calendar-content .calendar-toolbar,
.calendar-content .days-wrapper {
  display: flex;
  position: relative;
}
.calendar-content .calendar-toolbar {
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  width: 100%;
}
.calendar-content .calendar-toolbar .prev-month,
.calendar-content .calendar-toolbar .prev-year,
.calendar-content .calendar-toolbar .next-month,
.calendar-content .calendar-toolbar .next-year,
.calendar-content .calendar-toolbar .next-year-group,
.calendar-content .calendar-toolbar .prev-year-group {
  padding: 0.5rem 0;
  cursor: pointer;
  text-align: center;
  width: 30px;
  display: block;
  position: relative;
  flex-shrink: 0;
}
.calendar-content .calendar-toolbar .curr-month,
.calendar-content .calendar-toolbar .curr-year {
  padding: 0.5rem 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.calendar-content .week-days,
.calendar-content .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0;
}
.calendar-content.-week-numbers .week-days,
.calendar-content.-week-numbers .days {
  grid-template-columns: repeat(8, 1fr);
}
.calendar-content .week-day,
.calendar-content .week-number,
.calendar-content .day {
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-content .week-day,
.calendar-content .week-number {
  font-weight: 700;
  background-color: var(--calendar-weekday-background);
  color: var(--calendar-weekday-color);
}
.calendar-content .week-day {
  border-bottom: 1px solid var(--calnedar-border-color);
}
.calendar-content .week-number {
  border-right: 1px solid var(--calnedar-border-color);
}
.calendar-content .week-days .week-number {
  border-right: none;
}
.calendar-content .day,
.calendar-content .week-day,
.calendar-content .week-number {
  height: 39px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  user-select: none;
  margin: 0;
}
.calendar-content .day {
  overflow: hidden;
}
.calendar-content .day.selected {
  box-shadow: inset 0 0 0 1px #94b6ff !important;
}
.calendar-content .day.selected::after {
  border-top: 20px solid #94b6ff;
  border-left: 20px solid transparent;
  right: 0;
  top: 0;
}
.calendar-content .day.selected::before {
  right: 1px !important;
  top: 1px !important;
}
.calendar-content .day.showed {
  font-weight: bold;
}
.calendar-content .outside {
  color: #ccc;
  font-size: 12px;
}
.calendar-content .today .day-content {
  background: var(--today-selection) center no-repeat;
  background-size: cover;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-content .coincidental {
  box-shadow: inset 0 0 12px rgba(204, 204, 204, 0.4);
}
.calendar-content .excluded {
  background-color: var(--calendar-exclude-day-background);
  color: var(--calendar-exclude-day-color) !important;
  text-decoration: line-through;
}
.calendar-content .day {
  border: 1px solid transparent;
}
.calendar-content .day:hover {
  border-color: var(--calendar-border-color);
  border-radius: 6px;
}
.calendar-content .month.today {
  border: 1px solid var(--calendar-border-color) !important;
  border-radius: 6px;
}
.calendar-footer {
  padding: 0.5rem;
  border-top: 1px solid var(--calendar-border-color);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.calendar-footer > * {
  margin: 0 2px;
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  padding: 0 4px;
}
.calendar-footer:not(:has(button)) {
  display: none;
}
.calendar.compact .calendar-content {
  width: 100%;
}
.calendar.compact .calendar-header {
  padding: 0.5rem;
  line-height: 1.2;
}
.calendar.compact .calendar-header .header-year {
  font-size: 0.65rem;
  font-weight: 600;
}
.calendar.compact .calendar-header .header-day {
  font-size: 14px;
}
.calendar.compact .calendar-toolbar > * {
  padding: 0 !important;
  font-size: 14px;
}
.calendar.compact .calendar-footer .button {
  height: 24px;
  line-height: 24px;
  padding: 0 0.25rem;
}
.calendar.compact .day,
.calendar.compact .week-number {
  height: 30px;
  line-height: 30px;
  width: 30px;
  margin: 0;
  font-size: 12px;
}
.calendar .calendar-time {
  display: block;
  padding: 5px 10px 10px;
  border-top: 1px solid var(--calendar-border-color);
  background: var(--calendar-background);
}
.calendar .calendar-time .calendar-time__inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.calendar .calendar-time .calendar-time__inner .button.spinner-button-minus {
  margin-right: 2px;
}
.calendar .calendar-time .calendar-time__inner input {
  text-align: center;
}
.calendar .calendar-time .calendar-time__inner .minutes {
  margin-left: 2px;
}
.calendar .calendar-time .calendar-time__inner-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
}
.calendar .calendar-time .calendar-time__inner-cell {
  display: block;
  width: 50%;
}
.calendar.compact .calendar-time__inner-cell {
  display: block;
  width: 50%;
}
.calendar.compact .calendar-time__inner-cell span {
  font-size: 12px;
}
.calendar .calendar-content .months,
.calendar .calendar-content .years {
  display: flex;
  flex-flow: row wrap;
}
.calendar .calendar-content .months .month,
.calendar .calendar-content .years .month,
.calendar .calendar-content .months .year,
.calendar .calendar-content .years .year {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: 33.33%;
  height: 68px;
  font-size: 14px;
  cursor: pointer;
}
@media (hover: hover) {
  .calendar .calendar-content .months .month:hover,
  .calendar .calendar-content .years .month:hover,
  .calendar .calendar-content .months .year:hover,
  .calendar .calendar-content .years .year:hover {
    border-color: var(--calendar-border-color);
    border-radius: 6px;
  }
}
@media (hover: none) {
  .calendar .calendar-content .months .month:active,
  .calendar .calendar-content .years .month:active,
  .calendar .calendar-content .months .year:active,
  .calendar .calendar-content .years .year:active {
    border-color: var(--calendar-border-color);
    border-radius: 6px;
  }
}
.calendar .calendar-content .months,
.calendar .calendar-content .years {
  padding: 1px;
}
.calendar .calendar-content .calendar-toolbar {
  border-bottom: 1px solid var(--calendar-border-color);
}
.calendar.compact .calendar-header .header-actions {
  right: 4px;
  top: 4px;
}
.calendar.compact .calendar-header button {
  width: 16px;
  height: 16px;
}
.calendar.compact .months .month,
.calendar.compact .years .month,
.calendar.compact .months .year,
.calendar.compact .years .year {
  height: 52px;
}
.calendar-wide {
  flex-flow: row nowrap;
}
.calendar-wide .calendar-header {
  left: 0;
}
.calendar-wide .calendar-footer {
  right: 0;
}
.calendar-wide .calendar-header {
  width: 180px;
}
.calendar-wide .calendar-footer {
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  border-top: none;
  border-left: 1px solid var(--calendar-border-color);
  width: 100px;
}
.calendar-wide .calendar-footer * {
  width: 100%;
  margin: 2px 0;
}
.calendar-wide.compact .calendar-header {
  width: 140px;
}
.calendar-wide.compact .calendar-content {
  width: 234px;
}
.calendar .day,
.calendar .month,
.calendar .year {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.calendar .to-animate {
  transform: scale(0);
}
.calendar .days .day,
.calendar .months .month,
.calendar .years .year {
  border: 1px solid transparent;
}
.calendar .days .day:hover,
.calendar .months .month:hover,
.calendar .years .year:hover {
  border: 1px solid var(--calendar-border-color);
}
.calendar .events {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  height: auto;
}
.calendar .events .event {
  width: 4px;
  height: 4px;
  background-color: red;
  margin: 1px;
}
.calendar:not(.calendar-wide).calendar-collapsed .calendar-header .caret.toggle-collapsed {
  transform: rotate(-90deg);
}
.calendar:not(.calendar-wide).calendar-collapsed .calendar-content,
.calendar:not(.calendar-wide).calendar-collapsed .calendar-footer {
  height: 0;
  overflow: hidden;
  padding: 0;
}
.calendar:not(.calendar-wide).calendar-collapsed.calendar-wide .calendar-footer {
  width: 0;
}
.calendar.calendar-wide.calendar-collapsed .calendar-header .caret.toggle-collapsed {
  transform: rotate(-90deg);
}
.calendar.calendar-wide.calendar-collapsed .calendar-content,
.calendar.calendar-wide.calendar-collapsed .calendar-footer {
  width: 0;
  overflow: hidden;
  padding: 0;
}

/* source/components/calendarpicker/calendarpicker.less */
.calendar-picker {
  position: relative;
}
.calendar-picker input {
  width: 100%;
}
.calendar-picker .input-calendar-button,
.calendar-picker .input-clear-button {
  font-family: "Segoe UI Symbol", serif;
}
.calendar-picker .calendar-wide {
  width: 464px;
}
.calendar-picker .calendar-wide.compact {
  width: 364px;
}
.calendar-for-picker {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 500;
}
.calendar-for-picker.open {
  display: block !important;
}
.calendar-for-picker.open-up {
  top: auto;
  bottom: 100%;
}
.calendar-for-picker.dialog-mode {
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1050;
}
.calendar-for-picker.dialog-mode.open-up {
  top: auto;
  bottom: auto;
}

/* source/components/cards/cards.less */
:root {
  --card-header-background: #fbfbfb;
  --card-header-color: #191919;
  --card-footer-background: #fbfbfb;
  --card-footer-color: #191919;
  --card-background: #ffffff;
  --card-color: #191919;
  --card-avatar-border-color: #ffffff;
  --card-border-radius: 6px;
  --card-button-border-color: var(--border-color);
}
.dark-side {
  --card-header-background: #282c35;
  --card-header-color: #fbfbfb;
  --card-footer-background: #282c35;
  --card-footer-color: #fbfbfb;
  --card-background: #2b2d30;
  --card-color: #dbdfe7;
  --card-avatar-border-color: #414245;
  --card-button-border-color: var(--border-color);
}
.card {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  font-size: 14px;
  margin: 8px auto;
  border: 1px solid var(--border-color);
  border-radius: var(--card-border-radius);
  background: var(--card-background);
  color: var(--card-color);
}
.card-header {
  border-bottom: 1px var(--border-color) solid;
  padding: 0.5rem 1rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--card-header-background);
  color: var(--card-header-color);
  border-top-left-radius: var(--card-border-radius);
  border-top-right-radius: var(--card-border-radius);
  overflow: hidden;
}
.card-header .buttons {
  margin-left: auto;
  display: flex;
  flex-flow: row nowrap;
}
.card-header .button {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid var(--card-button-border-color);
  padding: 0;
  margin-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-header .button:last-child {
  margin-right: 0;
}
.card-content {
  display: flex;
  background-color: var(--card-background);
  color: var(--card-color);
  padding: 1rem;
}
.card-footer {
  border-top: 1px var(--border-color) solid;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--card-footer-background);
  color: var(--card-footer-color);
  border-bottom-left-radius: var(--card-border-radius);
  border-bottom-right-radius: var(--card-border-radius);
  overflow: hidden;
}
.card-footer .button {
  margin-right: 4px;
}
.card-footer .button:last-child {
  margin-right: 0;
}
.card.image-header .card-header {
  height: 9rem;
  vertical-align: bottom;
  background-size: cover;
  background-position: center;
  align-items: flex-start;
  justify-content: flex-end;
}
* + .card {
  margin-top: 1rem;
}
.card.flex-card {
  display: flex;
  flex-flow: column;
}
.card.flex-card .card-header,
.card.flex-card .card-footer {
  height: 57px;
  flex-shrink: 0;
  flex-grow: 0;
}
.card.flex-card .card-footer {
  margin-top: auto;
}

/* source/components/carousel/carousel.less */
:root {
  --carousel-background: var(--default-background);
  --carousel-switch-color: var(--default-color);
  --carousel-switch-color-hover: var(--default-color-hover);
  --carousel-bullet-color: #f5f8fe;
  --carousel-bullet-color-active: #50a8ff;
}
.dark-side {
  --carousel-background: var(--default-background);
  --carousel-switch-color: var(--default-color);
  --carousel-switch-color-hover: var(--default-color-hover);
  --carousel-bullet-color: #26282e;
  --carousel-bullet-color-active: #50a8ff;
}
.carousel {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  background-color: var(--carousel-background);
}
.carousel .slides {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel .slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.carousel .slide.active-slide {
  z-index: 2;
}
.carousel.fixed-size .slide {
  overflow: hidden;
}
.carousel [class*=carousel-switch],
.carousel .carousel-bullets {
  position: absolute;
  display: block;
  z-index: 501;
  user-select: none;
}
.carousel .carousel-switch-next,
.carousel .carousel-switch-prev {
  line-height: 4rem;
  height: 4rem;
  width: 4rem;
  text-decoration: none;
  margin-top: -2rem;
  top: 50%;
  font-weight: 300;
  color: var(--carousel-switch-color);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel .carousel-switch-next:hover,
.carousel .carousel-switch-prev:hover {
  color: var(--carousel-switch-color-hover);
}
.carousel .carousel-switch-next > *,
.carousel .carousel-switch-prev > * {
  max-width: 32px;
  max-height: 32px;
  font-size: 32px;
}
.carousel .carousel-switch-next {
  right: 0;
  left: auto;
}
.carousel .carousel-switch-prev {
  left: 0;
  right: auto;
}
.carousel .carousel-bullets {
  left: 0;
  right: 0;
  bottom: 0.625rem;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.carousel .carousel-bullets .carousel-bullet {
  display: block;
  float: none;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--carousel-bullet-color);
  border-radius: 50%;
  cursor: pointer;
  border: 1px var(--border-color) solid;
  margin: 0 0.3125rem;
}
.carousel .carousel-bullets .carousel-bullet.bullet-on {
  background-color: var(--carousel-bullet-color-active);
}
.carousel .carousel-bullets.default-size .carousel-bullet {
  width: 22px;
  height: 22px;
}
.carousel .carousel-bullets.mini-size .carousel-bullet {
  width: 10px;
  height: 10px;
}
.carousel .carousel-bullets.small-size .carousel-bullet {
  width: 16px;
  height: 16px;
}
.carousel .carousel-bullets.large-size .carousel-bullet {
  width: 32px;
  height: 32px;
}
.carousel .carousel-bullets.bullet-style-square .carousel-bullet {
  border-radius: 0;
}
.carousel .carousel-bullets.bullet-style-cycle .carousel-bullet {
  border-radius: 50%;
}
.carousel .carousel-bullets.bullet-style-diamond .carousel-bullet {
  border-radius: 0;
  transform: rotate(45deg);
}
.carousel .carousel-bullets.bullet-style-rect .carousel-bullet {
  border-radius: 0;
}
.carousel .carousel-bullets.bullet-style-rect.default-size .carousel-bullet {
  width: 44px;
  height: 14px;
}
.carousel .carousel-bullets.bullet-style-rect.mini-size .carousel-bullet {
  width: 20px;
  height: 6px;
}
.carousel .carousel-bullets.bullet-style-rect.small-size .carousel-bullet {
  width: 32px;
  height: 10px;
}
.carousel .carousel-bullets.bullet-style-rect.large-size .carousel-bullet {
  width: 64px;
  height: 24px;
}
.carousel.controls-outside {
  padding: 0 4rem 1.375rem 4rem;
}
.carousel.controls-outside .carousel-bullets {
  bottom: 0;
}

/* source/components/charms/charms.less */
.charms {
  display: block;
  position: fixed;
  z-index: 1090;
  background-color: #1d1d1d;
  color: #ffffff;
  transition: transform 0.3s ease;
  padding: 16px;
}
.charms.top-side {
  bottom: 100%;
  width: 100%;
  left: 0;
}
.charms.top-side.open {
  transform: translateY(100%);
}
.charms.bottom-side {
  top: 100%;
  left: 0;
  width: 100%;
}
.charms.bottom-side.open {
  transform: translateY(-100%);
}
.charms.left-side {
  top: 0;
  bottom: 0;
  right: 100%;
  width: auto;
}
.charms.left-side.open {
  transform: translateX(100%);
}
.charms.right-side {
  top: 0;
  bottom: 0;
  width: auto;
  left: 100%;
}
.charms.right-side.open {
  transform: translateX(-100%);
}
.charm-tile,
.charm-notify {
  display: block;
  position: relative;
  cursor: pointer;
}
.charm-tile {
  width: 90px;
  height: 66px;
  padding: 4px;
  background-color: #50727C;
  color: #ffffff;
  margin: 2px;
  flex-shrink: 0;
  flex-grow: 0;
}
.charm-tile .icon {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.charm-tile .caption {
  margin-top: 30px;
  font-size: 10px;
  display: block;
}
.charm-tile.active {
  background-color: #126278;
}
.charm-notify {
  height: auto;
  background-color: #2D6070;
  color: #ffffff;
  padding: 24px;
}
.charm-notify .icon {
  position: absolute;
  left: 16px;
  top: 24px;
  width: 48px;
  height: 48px;
  font-size: 40px;
}
.charm-notify .title,
.charm-notify .content,
.charm-notify .secondary {
  display: block;
  position: relative;
  margin-left: 52px;
  line-height: 1;
}
.charm-notify .title {
  font-weight: bold;
  margin-bottom: 6px;
}
.charm-notify .content {
  font-size: 14px;
  line-height: 1.2;
}
.charm-notify .secondary {
  font-size: 10px;
  margin-top: 8px;
}
* + .charm-notify {
  margin-top: 4px;
}

/* source/components/chart-card/chart-card.less */
:root {
  --chart-card-border-radius: 6px;
  --chart-card-border-color: var(--border-color);
  --chart-card-background: var(--default-background);
  --chart-card-color: var(--default-color);
}
.dark-side {
  --chart-card-border-color: var(--border-color);
  --chart-card-background: var(--default-background);
  --chart-card-color: var(--default-color);
}
.chart-card {
  display: flex;
  border-radius: var(--chart-card-border-radius);
  flex-flow: row nowrap;
  background: var(--chart-card-background);
  color: var(--chart-card-color);
  border: 1px solid var(--chart-card-border-color);
  padding: 1rem;
  position: relative;
}
.chart-card .content,
.chart-card .chart {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}
.chart-card .content {
  flex-flow: column nowrap;
}
.chart-card .chart {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.chart-card .title {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.chart-card .subtitle {
  font-size: 12px;
  font-weight: 400;
  white-space: wrap;
  border-top: 1px solid var(--chart-card-border-color);
  padding-top: 0.5rem;
}
.chart-card .value {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 4px 0;
  white-space: nowrap;
}

/* source/components/dropdown/dropdown.less */
.dropdown {
  position: fixed !important;
  z-index: 1030 !important;
}
.dropdown-caret {
  margin-left: 4px;
}
ul ul .dropdown-caret {
  margin-left: auto;
}
.dropdown-toggle svg {
  fill: var(--drop-menu-toggle-color);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.dropdown-toggle.active-toggle svg {
  transform: rotate(270deg);
}
.no-dropdown-caret .dropdown-caret {
  display: none !important;
}
.drop-left {
  right: 100% !important;
  top: 0 !important;
}
.drop-right {
  left: 100% !important;
  top: 0 !important;
}
.drop-up {
  top: auto !important;
  bottom: 100% !important;
}
.drop-up-left {
  top: auto !important;
  bottom: 100% !important;
  left: 0;
}
.drop-up-right {
  top: auto !important;
  bottom: 100% !important;
  right: 0 !important;
}
.drop-down {
  top: 100% !important;
  bottom: auto !important;
}
.drop-down-left {
  top: 100% !important;
  bottom: auto !important;
  left: 0 !important;
}
.drop-down-right {
  top: 100% !important;
  bottom: auto !important;
  right: 0 !important;
}

/* source/components/tag/tag.less */
:root {
  --tag-background: #f8f8f8;
  --tag-color: #191919;
  --tag-action-background: #dcdcdc;
  --tag-action-color: #191919;
}
.dark-side {
  --tag-background: #53575c;
  --tag-color: #f3fcff;
  --tag-action-background: #2b2d30;
  --tag-action-color: #ffffff;
}
.tag {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 2px;
  padding: 0;
  height: 26px;
  background: var(--tag-background);
  color: var(--tag-color);
  cursor: default;
  border-radius: 4px;
  flex-wrap: nowrap;
}
.tag .title {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5rem;
  white-space: nowrap;
  height: 100%;
}
.tag .action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  text-align: center;
  cursor: pointer;
  background: var(--tag-action-background);
  color: var(--tag-action-color);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: all 0.15s ease-in-out;
  line-height: 1;
}
@media (hover: hover) {
  .tag .action:hover {
    font-size: 1.4em;
  }
}
@media (hover: none) {
  .tag .action:active {
    font-size: 1.4em;
  }
}
.tag.short-tag .title {
  max-width: 120px;
}
.tag.static {
  background: #d4f0ff;
  color: #1d1d1d;
}
.tag.static .action {
  display: none !important;
}
.tag.primary .action {
  background: #f52522;
  color: #ffffff;
}
.tag.primary:hover {
  background: #f75553 !important;
}
.tag.secondary .action {
  background: #451806;
  color: #ffffff;
}
.tag.secondary:hover {
  background: #74290a !important;
}
.tag.tertiary .action {
  background: #ff8c8a;
  color: #ffffff;
}
.tag.tertiary:hover {
  background: #ffbebd !important;
}
.tag.success .action {
  background: #37ae5f;
  color: #ffffff;
}
.tag.success:hover {
  background: #50c878 !important;
}
.tag.alert .action {
  background: #af0b2c;
  color: #ffffff;
}
.tag.alert:hover {
  background: #df0e38 !important;
}
.tag.warning .action {
  background: #cc8400;
  color: #ffffff;
}
.tag.warning:hover {
  background: #ffa500 !important;
}
.tag.info .action {
  background: #136cff;
  color: #ffffff;
}
.tag.info:hover {
  background: #468cff !important;
}
.tag.dark .action {
  background: #373737;
  color: #ffffff;
}
.tag.dark:hover {
  background: #505050 !important;
}
.tag.light .action {
  background: #dfdfdf;
  color: #ffffff;
}
.tag.light:hover {
  background: #f8f8f8 !important;
}
.tag.soft-lime .action {
  background: #d6ffb4;
  color: #000000;
}
.tag.soft-lime:hover {
  background: #f2ffe7 !important;
  color: #557f32 !important;
}
.tag.normal-lime .action {
  background: #92fc3a;
  color: #ffffff;
}
.tag.normal-lime:hover {
  background: #AEFD6C !important;
  color: #ffffff;
}
.tag.soft-green .action {
  background: #c3e9c1;
  color: #000000;
}
.tag.soft-green:hover {
  background: #e7f6e6 !important;
  color: #003d00 !important;
}
.tag.normal-green .action {
  background: #008200;
  color: #ffffff;
}
.tag.normal-green:hover {
  background: #00b500 !important;
  color: #ffffff;
}
.tag.soft-emerald .action {
  background: #b2d5aa;
  color: #000000;
}
.tag.soft-emerald:hover {
  background: #d1e6cc !important;
  color: #246339 !important;
}
.tag.normal-emerald .action {
  background: #37ae5f;
  color: #ffffff;
}
.tag.normal-emerald:hover {
  background: #50c878 !important;
  color: #ffffff;
}
.tag.soft-blue .action {
  background: #b4bdff;
  color: #000000;
}
.tag.soft-blue:hover {
  background: #e7eaff !important;
  color: #132a6f !important;
}
.tag.normal-blue .action {
  background: #2b61ff;
  color: #ffffff;
}
.tag.normal-blue:hover {
  background: #5e87ff !important;
  color: #ffffff;
}
.tag.soft-teal .action {
  background: #bde2e4;
  color: #000000;
}
.tag.soft-teal:hover {
  background: #e1f2f3 !important;
  color: #014848 !important;
}
.tag.normal-teal .action {
  background: #149898;
  color: #ffffff;
}
.tag.normal-teal:hover {
  background: #1ac5c5 !important;
  color: #ffffff;
}
.tag.soft-cyan .action {
  background: #b0ccff;
  color: #000000;
}
.tag.soft-cyan:hover {
  background: #e3edff !important;
  color: #456c7e !important;
}
.tag.normal-cyan .action {
  background: #6193ff;
  color: #ffffff;
}
.tag.normal-cyan:hover {
  background: #94b6ff !important;
  color: #ffffff;
}
.tag.soft-cobalt .action {
  background: #9ed7ff;
  color: #000000;
}
.tag.soft-cobalt:hover {
  background: #d1ecff !important;
  color: #001f54 !important;
}
.tag.normal-cobalt .action {
  background: #003278;
  color: #ffffff;
}
.tag.normal-cobalt:hover {
  background: #0047ab !important;
  color: #ffffff;
}
.tag.soft-indigo .action {
  background: #e6b6e6;
  color: #000000;
}
.tag.soft-indigo:hover {
  background: #f3dcf3 !important;
  color: #21003e !important;
}
.tag.normal-indigo .action {
  background: #460075;
  color: #ffffff;
}
.tag.normal-indigo:hover {
  background: #6400a8 !important;
  color: #ffffff;
}
.tag.soft-almost .action {
  background: #cdb2ff;
  color: #000000;
}
.tag.soft-almost:hover {
  background: #eee5ff !important;
  color: #2f0687 !important;
}
.tag.normal-almost .action {
  background: #5012d5;
  color: #ffffff;
}
.tag.normal-almost:hover {
  background: #6a2ded !important;
  color: #ffffff;
}
.tag.soft-violet .action {
  background: #f7b4f5;
  color: #000000;
}
.tag.soft-violet:hover {
  background: #fce2fb !important;
  color: #773e77 !important;
}
.tag.normal-violet .action {
  background: #e855e8;
  color: #ffffff;
}
.tag.normal-violet:hover {
  background: #ee82ee !important;
  color: #ffffff;
}
.tag.soft-pink .action {
  background: #ffbbc7;
  color: #000000;
}
.tag.soft-pink:hover {
  background: #ffeef1 !important;
  color: #805f65 !important;
}
.tag.normal-pink .action {
  background: #ff8da1;
  color: #ffffff;
}
.tag.normal-pink:hover {
  background: #ffc0cb !important;
  color: #ffffff;
}
.tag.soft-magenta .action {
  background: #ffafff;
  color: #000000;
}
.tag.soft-magenta:hover {
  background: #ffe2ff !important;
  color: #800080 !important;
}
.tag.normal-magenta .action {
  background: #cc00cc;
  color: #ffffff;
}
.tag.normal-magenta:hover {
  background: #ff00ff !important;
  color: #ffffff;
}
.tag.soft-crimson .action {
  background: #ff9eb1;
  color: #000000;
}
.tag.soft-crimson:hover {
  background: #ffd1da !important;
  color: #6e0519 !important;
}
.tag.normal-crimson .action {
  background: #af0b2c;
  color: #ffffff;
}
.tag.normal-crimson:hover {
  background: #df0e38 !important;
  color: #ffffff;
}
.tag.soft-red .action {
  background: #ffaeae;
  color: #000000;
}
.tag.soft-red:hover {
  background: #ffe1e1 !important;
  color: #800000 !important;
}
.tag.normal-red .action {
  background: #cc0000;
  color: #ffffff;
}
.tag.normal-red:hover {
  background: #ff0000 !important;
  color: #ffffff;
}
.tag.soft-orange .action {
  background: #ffe0ab;
  color: #000000;
}
.tag.soft-orange:hover {
  background: #fff3de !important;
  color: #805100 !important;
}
.tag.normal-orange .action {
  background: #cc8400;
  color: #ffffff;
}
.tag.normal-orange:hover {
  background: #ffa500 !important;
  color: #ffffff;
}
.tag.soft-amber .action {
  background: #ffecae;
  color: #000000;
}
.tag.soft-amber:hover {
  background: #fff8e1 !important;
  color: #805e00 !important;
}
.tag.normal-amber .action {
  background: #f6b900;
  color: #ffffff;
}
.tag.normal-amber:hover {
  background: #ffca2a !important;
  color: #ffffff;
}
.tag.soft-yellow .action {
  background: #ffff93;
  color: #000000;
}
.tag.soft-yellow:hover {
  background: #ffffc6 !important;
  color: #bca826 !important;
}
.tag.normal-yellow .action {
  background: #ffe22b;
  color: #ffffff;
}
.tag.normal-yellow:hover {
  background: #ffe95e !important;
  color: #ffffff;
}
.tag.soft-brown .action {
  background: #ffd7a6;
  color: #000000;
}
.tag.soft-brown:hover {
  background: #ffeed9 !important;
  color: #42240f !important;
}
.tag.normal-brown .action {
  background: #a65f2d;
  color: #ffffff;
}
.tag.normal-brown:hover {
  background: #ca773c !important;
  color: #ffffff;
}
.tag.soft-olive .action {
  background: #eaf9b8;
  color: #000000;
}
.tag.soft-olive:hover {
  background: #f8fde7 !important;
  color: #3d3d00 !important;
}
.tag.normal-olive .action {
  background: #6e6e00;
  color: #ffffff;
}
.tag.normal-olive:hover {
  background: #a1a100 !important;
  color: #ffffff;
}
.tag.soft-steel .action {
  background: #d3d5d5;
  color: #000000;
}
.tag.soft-steel:hover {
  background: #edeeee !important;
  color: #2e3841 !important;
}
.tag.normal-steel .action {
  background: #60788e;
  color: #ffffff;
}
.tag.normal-steel:hover {
  background: #7b91a6 !important;
  color: #ffffff;
}
.tag.soft-mauve .action {
  background: #e3bcfb;
  color: #000000;
}
.tag.soft-mauve:hover {
  background: #f7ecfe !important;
  color: #705680 !important;
}
.tag.normal-mauve .action {
  background: #cc7cff;
  color: #ffffff;
}
.tag.normal-mauve:hover {
  background: #e0afff !important;
  color: #ffffff;
}
.tag.soft-taupe .action {
  background: #dac2ac;
  color: #000000;
}
.tag.soft-taupe:hover {
  background: #eadccf !important;
  color: #261e18 !important;
}
.tag.normal-taupe .action {
  background: #796552;
  color: #ffffff;
}
.tag.normal-taupe:hover {
  background: #977e67 !important;
  color: #ffffff;
}
.tag.soft-champagne .action {
  background: #ffe1bf;
  color: #000000;
}
.tag.soft-champagne:hover {
  background: #fff9f2 !important;
  color: #7c7364 !important;
}
.tag.normal-champagne .action {
  background: #f0d19e;
  color: #ffffff;
}
.tag.normal-champagne:hover {
  background: #f7e6ca !important;
  color: #ffffff;
}
.tag.soft-khaki .action {
  background: #ebe0b5;
  color: #000000;
}
.tag.soft-khaki:hover {
  background: #f6f1dd !important;
  color: #6a6142 !important;
}
.tag.normal-khaki .action {
  background: #c8b264;
  color: #ffffff;
}
.tag.normal-khaki:hover {
  background: #d5c58a !important;
  color: #ffffff;
}
.tag.soft-charcoal .action {
  background: #cfcfcf;
  color: #000000;
}
.tag.soft-charcoal:hover {
  background: #e8e8e8 !important;
  color: #202020 !important;
}
.tag.normal-charcoal .action {
  background: #7f7f7f;
  color: #ffffff;
}
.tag.normal-charcoal:hover {
  background: #989898 !important;
  color: #ffffff;
}
.tag.soft-bronze .action {
  background: #ffd0a9;
  color: #000000;
}
.tag.soft-bronze:hover {
  background: #ffecdc !important;
  color: #693c13 !important;
}
.tag.normal-bronze .action {
  background: #d2731d;
  color: #ffffff;
}
.tag.normal-bronze:hover {
  background: #e48d3e !important;
  color: #ffffff;
}
.tag.soft-windstorm .action {
  background: #c2cee6;
  color: #000000;
}
.tag.soft-windstorm:hover {
  background: #e6ebf5 !important;
  color: #304462 !important;
}
.tag.normal-windstorm .action {
  background: #5282ca;
  color: #ffffff;
}
.tag.normal-windstorm:hover {
  background: #799ed6 !important;
  color: #ffffff;
}
.tag.soft-nude .action {
  background: #f7d6b6;
  color: #000000;
}
.tag.soft-nude:hover {
  background: #fcf0e4 !important;
  color: #7c6c5d !important;
}
.tag.normal-nude .action {
  background: #f2bf8e;
  color: #ffffff;
}
.tag.normal-nude:hover {
  background: #f7d9bc !important;
  color: #ffffff;
}
.tag.soft-terracotta .action {
  background: #ffbcac;
  color: #000000;
}
.tag.soft-terracotta:hover {
  background: #ffe5df !important;
  color: #712516 !important;
}
.tag.normal-terracotta .action {
  background: #ca391c;
  color: #ffffff;
}
.tag.normal-terracotta:hover {
  background: #e35336 !important;
  color: #ffffff;
}
.tag.soft-coral .action {
  background: #ffb495;
  color: #000000;
}
.tag.soft-coral:hover {
  background: #ffd8c8 !important;
  color: #804028 !important;
}
.tag.normal-coral .action {
  background: #ff6026;
  color: #ffffff;
}
.tag.normal-coral:hover {
  background: #ff8559 !important;
  color: #ffffff;
}
.tag.soft-army .action {
  background: #dedba6;
  color: #000000;
}
.tag.soft-army:hover {
  background: #eceacb !important;
  color: #2a2f14 !important;
}
.tag.normal-army .action {
  background: #3e4321;
  color: #ffffff;
}
.tag.normal-army:hover {
  background: #5d6532 !important;
  color: #ffffff;
}
.tag.soft-seashell .action {
  background: #ffcdc5;
  color: #000000;
}
.tag.soft-seashell:hover {
  background: #fff9f8 !important;
  color: #bfa89a !important;
}
.tag.normal-seashell .action {
  background: #ffd3b4;
  color: #ffffff;
}
.tag.normal-seashell:hover {
  background: #fff1e7 !important;
  color: #ffffff;
}
.tag.soft-sand .action {
  background: #efe3b6;
  color: #000000;
}
.tag.soft-sand:hover {
  background: #f8f3e0 !important;
  color: #8f8975 !important;
}
.tag.normal-sand .action {
  background: #e9cf83;
  color: #ffffff;
}
.tag.normal-sand:hover {
  background: #f1e0ae !important;
  color: #ffffff;
}

/* source/components/select/select.less */
:root {
  --select-focus-color: rgba(244, 244, 244, 0.45);
  --select-disabled-color: #ccc;
  --select-options-background: #ffffff;
  --select-options-color: #191919;
  --select-option-background: transparent;
  --select-option-color: inherit;
  --select-option-background-hover: rgba(29, 29, 29, 0.1);
  --select-option-color-hover: inherit;
  --select-option-background-selected: #e8e8e8;
  --select-option-color-selected: #191919;
  --select-button-background: transparent;
  --select-button-color: #191919;
  --select-button-background-hover: transparent;
  --select-button-color-hover: #191919;
  --select-dropdown-toggle-color: #191919;
  --select-group-title-background: #f6f7f8;
  --select-group-title-color: #646464;
  --select-item-group-title-background: transparent;
  --select-item-group-title-color: #ccc;
  --select-tag-background: #f6f7f8;
  --select-tag-color: #191919;
  --select-tag-button-background: #f6f7f8;
  --select-tag-button-color: #191919;
  --select-border-radius: 4px;
}
.dark-side {
  --select-focus-color: rgba(244, 244, 244, 0.2);
  --select-disabled-color: #ccc;
  --select-options-background: #2b2d30;
  --select-options-color: #dbdfe7;
  --select-option-background: transparent;
  --select-option-color: inherit;
  --select-option-background-hover: #43454a;
  --select-option-color-hover: #ffffff;
  --select-option-background-selected: #43454a;
  --select-option-color-selected: #ffffff;
  --select-button-background: transparent;
  --select-button-color: #dbdfe7;
  --select-button-background-hover: transparent;
  --select-button-color-hover: #ffffff;
  --select-dropdown-toggle-color: #ffffff;
  --select-group-title-background: #1e1f22;
  --select-group-title-color: #646464;
  --select-item-group-title-background: transparent;
  --select-item-group-title-color: #646464;
  --select-tag-background: #2b2d30;
  --select-tag-color: #dbdfe7;
  --select-tag-button-background: #2b2d30;
  --select-tag-button-color: #dbdfe7;
}
.select {
  --select-height: var(--control-height-normal);
  --select-font-size: 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
  user-select: none;
  border-radius: var(--select-border-radius);
}
.select:hover .button,
.select.focused .button {
  border: none !important;
  box-shadow: none !important;
}
.select.small {
  --select-height: var(--control-height-small);
  --select-font-size: 12px;
}
.select.medium {
  --select-height: var(--control-height-medium);
  --select-font-size: 14px;
}
.select.large {
  --select-height: var(--control-height-large);
  --select-font-size: 20px;
}
.select .dropdown-caret {
  --caret-size: calc(var(--select-font-size) * 1.5);
  position: absolute;
  top: calc((var(--select-height, 36px) - var(--caret-size)) / 2);
  right: 8px;
  height: var(--caret-size);
  width: var(--caret-size);
  aspect-ratio: 1 / 1;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}
.select.active-toggle .dropdown-caret {
  transform: rotate(270deg);
}
.select .option-list {
  margin: 0;
  list-style: none inside;
  overflow-y: auto;
  position: relative;
  display: block;
  background-color: var(--select-options-background);
  color: var(--select-options-color);
  border-radius: var(--select-border-radius);
  padding: 4px 0;
}
.select .option-list li {
  display: block;
  margin: 0 4px;
  border-radius: var(--select-border-radius);
  overflow: hidden;
}
.select .option-list a {
  min-width: auto;
  height: 32px;
  line-height: 32px;
  text-overflow: ellipsis;
  padding: 0 10px;
  font-size: var(--select-font-size);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}
.select .option-list .icon {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  font-size: var(--select-font-size);
  display: flex;
  object-fit: cover;
}
.select .option-list .icon * {
  object-fit: cover;
  font-size: 16px;
  width: 100%;
  height: 100%;
}
.select .option-list a:has(.icon) {
  padding-left: 32px;
}
.select .option-list li:hover {
  background-color: var(--select-option-background-hover);
  color: var(--select-option-color-hover);
}
.select .option-list li.active {
  background-color: var(--select-option-background-selected);
  color: var(--select-option-color-selected);
  font-weight: bold;
}
.select input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.select select {
  display: none;
}
.select .button-group {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 1rem;
}
.select select[multiple] ~ .button-group {
  margin-right: 0;
}
.select .button {
  background-color: var(--select-button-background);
  color: var(--select-button-color);
  height: calc(var(--select-heigt, 36px) - 2px);
  min-width: calc(var(--select-heigt, 36px) - 2px);
}
.select .button:hover {
  background-color: var(--select-button-background-hover);
  color: var(--select-button-color-hover);
  text-shadow: rgba(0, 0, 0, 0.25) 0.1em 0.1em 0.2em;
}
.select .input-clear-button {
  background-color: transparent;
}
.select .input-clear-button:hover {
  background-color: transparent;
}
.select .select-input {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  cursor: pointer;
  width: calc(100% - 0.1rem);
  height: calc(var(--select-height, 36px) - 2px);
  font-size: var(--select-font-size);
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select .select-input .icon {
  margin: 0 4px;
  width: var(--select-font-size);
  height: var(--select-font-size);
  font-size: var(--select-font-size);
  display: flex;
  object-fit: cover;
}
.select .select-input .icon * {
  object-fit: cover;
  font-size: inherit;
}
.select .select-input:focus {
  box-shadow: none;
}
.select select[multiple] ~ .select-input {
  padding-left: 0;
}
.select:hover input {
  border-color: transparent;
}
.select:hover .button:focus,
.select:hover .button:active,
.select:hover .button:hover {
  border: none !important;
  box-shadow: none !important;
}
.select .drop-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(100% + 2px);
  height: auto;
  border: 1px solid var(--border-color);
  padding: 2px;
  margin-left: -1px;
  z-index: 1000;
  background-color: var(--select-options-background);
  color: var(--select-options-color);
  box-shadow: 0 10px 15px -3px var(--shadow-color-medium), 0 4px 6px -4px var(--shadow-color-medium);
}
.select .drop-container .input {
  margin: 4px 2px 6px;
  width: calc(100% - 4px);
}
.select.drop-full-size .drop-container {
  width: max-content;
}
.select.focused {
  box-shadow: 0 0 0 3px var(--select-focus-color);
}
.select .group-title {
  background-color: var(--select-group-title-background);
  color: var(--select-group-title-color);
  font-size: 0.75rem;
  line-height: 0.875rem;
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  border: 0;
  font-weight: bold;
}
.select .group-title:hover {
  background-color: var(--select-group-title-background) !important;
  color: var(--select-group-title-color) !important;
  cursor: default;
}
.select ul {
  right: 0;
  left: 0;
}
.select.multiple {
  flex-wrap: wrap;
  height: auto;
  min-height: var(--select-height, 36px);
}
.select.multiple > .button-group {
  position: absolute;
  top: 0;
  right: 34px;
}
.select.multiple .select-input {
  height: auto;
  min-height: var(--select-height, 36px);
}
.select.multiple .button-group:not(.d-none) ~ .select-input {
  margin-right: 68px;
}
.select .prepend {
  order: 1;
}
.select .append {
  order: 3;
}
.select .select-input {
  order: 2;
}
.select .button-group {
  order: 3;
}
.select .prepend {
  border-top-left-radius: var(--select-border-radius);
  border-bottom-left-radius: var(--select-border-radius);
}
.select[dir=rtl],
.select.rtl {
  flex-direction: row-reverse;
}
.select[dir=rtl] .select-input,
.select.rtl .select-input {
  order: 3;
}
.select[dir=rtl] .prepend,
.select.rtl .prepend {
  order: 4;
}
.select[dir=rtl] .append,
.select.rtl .append {
  order: 1;
}
.select[dir=rtl] .button-group,
.select.rtl .button-group {
  order: 2;
}
.select[dir=rtl] .dropdown-caret,
.select.rtl .dropdown-caret {
  right: auto;
  left: 8px;
}
.select .selected-item__group-name {
  font-size: 0.75rem;
  background-color: var(--select-item-group-title-background);
  color: var(--select-item-group-title-color);
}
.select .tag {
  --tag-height: calc(var(--select-height, 36px) - 4px);
  background-color: var(--select-tag-background);
  color: var(--select-tag-color);
  border: 1px solid var(--border-color);
  height: var(--tag-height);
}
.select .tag .title {
  height: 100%;
  font-size: var(--select-font-size);
}
.select.no-icons .option-list a {
  padding: 0 1rem;
}
.select.no-icons .option-list .icon {
  display: none;
}
.select .unselect-option {
  margin-left: 6px;
}
.select.pill-input {
  --select-border-radius: calc(var(--select-height, 36px) * 0.44);
}
.select.pill-input .button {
  border-radius: 50%;
}
.select.pill-input .tag {
  border-radius: var(--select-border-radius);
}
.select.pill-input .tag .action {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

/* source/components/input/input.less */
:root {
  --input-autocomplete-background: #ffffff;
  --input-autocomplete-color: #191919;
  --input-autocomplete-selected-color: #468cff;
  --input-autocomplete-selected-background: transparent;
  --input-border-radius: 4px;
}
.dark-side {
  --input-autocomplete-background: #2b2d30;
  --input-autocomplete-color: #dbdfe7;
  --input-autocomplete-selected-color: #ffc351;
  --input-autocomplete-selected-background: transparent;
}
.input {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border-radius: var(--input-border-radius);
}
.input:hover input {
  border-color: transparent;
}
.input.focused {
  box-shadow: 0 0 0 3px var(--input-box-shadow);
}
.input input {
  border: none !important;
  order: 1;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  padding: 0 0.75rem;
  background: transparent;
  color: inherit;
}
.input input:focus {
  box-shadow: none;
}
.input .button-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}
.input .button {
  background-color: transparent;
  border-color: transparent;
  color: var(--input-color);
  height: calc(100% - 4px);
  aspect-ratio: 1;
  border: 1px solid var(--input-border-color);
  font-size: calc(var(--input-font-size) * 0.8);
  padding: 0;
}
.input .button:focus,
.input .button:active {
  box-shadow: none !important;
}
.input .input-clear-button,
.input .input-reveal-button,
.input .input-search-button {
  background-color: transparent;
}
.input .input-clear-button:hover,
.input .input-reveal-button:hover,
.input .input-search-button:hover {
  background-color: transparent;
}
.input.disabled .button-group button {
  background-color: transparent;
  color: var(--input-disabled-color);
}
.input .prepend {
  order: 1;
}
.input .prepend-options {
  order: 2;
}
.input input {
  order: 3;
}
.input .append-options {
  order: 4;
}
.input .button-group {
  order: 5;
}
.input .append {
  order: 6;
}
.input .prepend,
.input .append {
  display: flex;
  align-items: center;
  justify-content: center;
}
.input .prepend {
  border-top-left-radius: var(--input-border-radius);
  border-bottom-left-radius: var(--input-border-radius);
}
.input .append {
  border-top-right-radius: var(--input-border-radius);
  border-bottom-right-radius: var(--input-border-radius);
}
.input.pill-input,
input.pill-input {
  --input-border-radius: calc(var(--input-height) * 0.44);
}
.input.pill-input .button,
input.pill-input .button {
  border-radius: 50%;
}
.input .autocomplete-list {
  margin: 0;
  padding: 0;
  list-style: none inside;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--input-autocomplete-background);
  color: var(--input-autocomplete-color);
  height: auto;
  border: 1px solid var(--border-color);
  z-index: 3;
}
.input .autocomplete-list .item {
  display: flex;
  position: relative;
  padding: 0 8px;
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
}
.input .autocomplete-list .item:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.input .autocomplete-list .item + .item {
  border-top: 1px solid var(--border-color);
}
.input .autocomplete-list strong {
  background: var(--input-autocomplete-selected-background);
  color: var(--input-autocomplete-selected-color);
}
.input[dir=rtl],
.input.rtl {
  flex-flow: row-reverse nowrap;
}
.input[dir=rtl] input,
.input.rtl input {
  order: 3;
  direction: rtl;
}
.input[dir=rtl] .button-group,
.input.rtl .button-group {
  order: 2;
}
.input[dir=rtl] .prepend,
.input.rtl .prepend {
  order: 4;
}
.input[dir=rtl] .append,
.input.rtl .append {
  order: 1;
}
.input .badge {
  position: absolute;
  font-size: calc(var(--input-font-size) * 0.64);
  text-transform: uppercase;
  background-color: #0a87c1;
  color: #ffffff;
  border-radius: calc(var(--input-font-size) * 0.16);
  padding: 2px 4px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-weight: 500;
}
.input:hover .badge {
  display: none;
}
.label-for-input {
  font-size: 12px;
  text-transform: uppercase;
}
.label-for-input.rtl {
  text-align: right;
}
.input .prepend-options [aria-hidden=true],
.input .append-options [aria-hidden=true] {
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -0.5rem;
}
.input .prepend-options .options-list,
.input .append-options .options-list {
  border: none;
  border-right: 1px solid var(--input-border-color);
  height: 100%;
  border-radius: var(--input-border-radius) 0 0 var(--input-border-radius);
  font-size: var(--input-font-size);
  padding-right: 1rem;
}
.input .append-options .options-list {
  border-right: none;
  border-left: 1px solid var(--input-border-color);
  border-radius: 0 var(--input-border-radius) var(--input-border-radius) 0;
}

/* source/components/chat/chat.less */
:root {
  --chat-border-color: var(--border-color);
  --chat-background: #ffffff;
  --chat-color: #191919;
  --chat-message-background: #f5f5f5;
  --chat-message-color: #191919;
  --chat-attach-link-background: #ffffff;
}
.dark-side {
  --chat-background: #343637;
  --chat-color: #dbdfe7;
  --chat-message-background: #4a4d51;
  --chat-message-color: #dbdfe7;
  --chat-attach-link-background: #343637;
}
.chat {
  display: flex;
  flex-flow: column;
  border: 1px solid var(--border-color);
  background: var(--chat-background);
  color: var(--chat-color);
  position: relative;
  border-radius: 6px;
}
.chat .title,
.chat .messages,
.chat .message-input {
  display: block;
}
.chat .title {
  font-size: 18px;
  line-height: 1.2;
  padding: 8px;
  border-bottom: 1px solid var(--border-color);
}
.chat .messages {
  padding: 8px;
  border-bottom: 1px solid var(--border-color);
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
.chat .message {
  display: flex;
  flex-flow: row wrap;
}
.chat .message .message-sender {
  font-weight: bold;
  font-size: 12px;
  order: 1;
  position: absolute;
  top: 6px;
  left: 6px;
}
.chat .message .message-time {
  font-size: 11px;
  order: 2;
  opacity: 0.5;
  position: absolute;
  left: 6px;
  bottom: 6px;
}
.chat .message .message-item {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-flow: row nowrap;
  margin: 2px 0 0;
  order: 3;
}
.chat .message .message-item .message-avatar {
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  order: 1;
  font-size: 36px;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.chat .message .message-item .message-text {
  max-width: 50%;
  display: flex;
  align-items: center;
  border: 1px solid var(--chat-border-color);
  margin-left: 8px;
  order: 2;
  font-size: 14px;
  line-height: 1.2;
  padding: 30px 10px;
  min-width: 100px;
  background: var(--chat-message-background);
  color: var(--chat-message-color);
  position: relative;
  border-radius: 4px;
}
.chat .message .message-item .message-text-inner {
  width: 100%;
  overflow: hidden;
}
.chat .message .message-item .message-text::before {
  position: absolute;
  right: 100%;
  top: 14px;
  border: 6px solid transparent;
  border-right-color: inherit;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
}
.chat .message .message-item .message-text.--next {
  padding-top: 10px;
}
.chat .message .message-item .message-text.--next::before {
  display: none;
}
.chat .message.right .message-item {
  justify-content: flex-end;
}
.chat .message.right .message-time {
  order: 1;
  text-align: left;
  left: auto;
  right: 6px;
}
.chat .message.right .message-sender {
  order: 2;
  left: auto;
  right: 6px;
}
.chat .message.right .message-avatar {
  order: 2;
}
.chat .message.right .message-text {
  order: 1;
  margin-left: 0;
  margin-right: 8px;
}
.chat .message.right .message-text::before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: inherit;
}
.chat .message.right .message-text.--next::before {
  display: none;
}
.chat .message-text img,
.chat .message-text video,
.chat .message-text audio {
  max-width: 100%;
}
.chat .attach-link {
  margin-top: 4px;
  padding: 4px 8px;
  background: var(--chat-attach-link-background);
  border-radius: 4px;
}
.chat a.attach {
  color: var(--link-color);
}
.chat .message-input {
  display: flex;
  flex-flow: row nowrap;
  gap: 4px;
  flex-shrink: 0;
  margin-top: auto;
  padding: 8px;
}
.chat .message-input .js-chat-attach-button {
  height: 36px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chat-color);
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
}
.chat .message-input .js-chat-attach-button svg {
  height: 24px !important;
  width: 24px !important;
  fill: var(--chat-color);
}
@media (hover: hover) {
  .chat .message-input .js-chat-attach-button:hover {
    background: var(--button-background-hover);
    border-color: var(--chat-border-color);
  }
}
.chat .message-input.disabled {
  opacity: 0.5;
}
.chat .input-custom-button {
  width: auto;
  padding: 0 10px;
}
.chat .message.left + .message.right {
  margin-top: 10px;
}
.chat .message.right + .message.left {
  margin-top: 10px;
}

/* source/components/checkbox/checkbox.less */
:root {
  --checkbox-height: 36px;
  --checkbox-border-radius: 4px;
  --checkbox-color: #575757;
  --checkbox-color-disabled: #c3c3c3;
  --checkbox-background-disabled: #efefef;
  --checkbox-focus-color: #e8e8e8;
}
.dark-side {
  --checkbox-color: #a6a8a7;
  --checkbox-color-disabled: #505050;
  --checkbox-background-disabled: #323030;
  --checkbox-focus-color: #191919;
}
input[type=checkbox] {
  appearance: none;
  line-height: var(--checkbox-height);
  border-radius: var(--checkbox-border-radius);
  border: 2px solid var(--checkbox-color);
  position: relative;
  cursor: pointer;
  width: 22px;
  height: 22px;
  flex-shrink: 0 !important;
  background-color: var(--default-background);
}
input[type=checkbox]::before {
  content: "";
  display: block;
  opacity: 0;
  width: 8px;
  height: 6px;
  background-color: transparent;
  border-left: 2px solid var(--checkbox-color);
  border-bottom: 2px solid var(--checkbox-color);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
  transition: opacity 0.3s;
}
input[type=checkbox]:checked::before {
  opacity: 1;
}
input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px var(--checkbox-focus-color);
}
input[type=checkbox]:disabled {
  border-color: var(--checkbox-color-disabled);
  background-color: var(--checkbox-background-disabled);
}
input[type=checkbox]:disabled::before {
  border-color: var(--checkbox-color-disabled);
}
input[type=checkbox]:indeterminate::before {
  content: "";
  opacity: 1;
  transform: rotate(0deg);
  border-left: none;
  top: 4px;
  left: 5px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
}
.checkbox input[type=checkbox] {
  order: 2;
}
.checkbox .caption-prepend,
.checkbox .caption-append {
  font-size: 12px;
  margin: 0 8px;
  position: relative;
  white-space: nowrap;
  user-select: none;
}
.checkbox .caption-prepend {
  order: 1;
}
.checkbox .caption-append {
  order: 3;
}
.checkbox > input[type=checkbox]:disabled ~ .caption-prepend,
.checkbox > input[type=checkbox]:disabled ~ .caption-append {
  color: var(--checkbox-color-disabled);
}
input[type=checkbox].checkbox-lime {
  border-color: #AEFD6C;
}
input[type=checkbox].checkbox-lime::before {
  border-color: #AEFD6C;
}
input[type=checkbox].checkbox-green {
  border-color: #00b500;
}
input[type=checkbox].checkbox-green::before {
  border-color: #00b500;
}
input[type=checkbox].checkbox-emerald {
  border-color: #50c878;
}
input[type=checkbox].checkbox-emerald::before {
  border-color: #50c878;
}
input[type=checkbox].checkbox-blue {
  border-color: #5e87ff;
}
input[type=checkbox].checkbox-blue::before {
  border-color: #5e87ff;
}
input[type=checkbox].checkbox-teal {
  border-color: #1ac5c5;
}
input[type=checkbox].checkbox-teal::before {
  border-color: #1ac5c5;
}
input[type=checkbox].checkbox-cyan {
  border-color: #94b6ff;
}
input[type=checkbox].checkbox-cyan::before {
  border-color: #94b6ff;
}
input[type=checkbox].checkbox-cobalt {
  border-color: #0047ab;
}
input[type=checkbox].checkbox-cobalt::before {
  border-color: #0047ab;
}
input[type=checkbox].checkbox-indigo {
  border-color: #6400a8;
}
input[type=checkbox].checkbox-indigo::before {
  border-color: #6400a8;
}
input[type=checkbox].checkbox-almost {
  border-color: #6a2ded;
}
input[type=checkbox].checkbox-almost::before {
  border-color: #6a2ded;
}
input[type=checkbox].checkbox-violet {
  border-color: #ee82ee;
}
input[type=checkbox].checkbox-violet::before {
  border-color: #ee82ee;
}
input[type=checkbox].checkbox-pink {
  border-color: #ffc0cb;
}
input[type=checkbox].checkbox-pink::before {
  border-color: #ffc0cb;
}
input[type=checkbox].checkbox-magenta {
  border-color: #ff00ff;
}
input[type=checkbox].checkbox-magenta::before {
  border-color: #ff00ff;
}
input[type=checkbox].checkbox-crimson {
  border-color: #df0e38;
}
input[type=checkbox].checkbox-crimson::before {
  border-color: #df0e38;
}
input[type=checkbox].checkbox-red {
  border-color: #ff0000;
}
input[type=checkbox].checkbox-red::before {
  border-color: #ff0000;
}
input[type=checkbox].checkbox-orange {
  border-color: #ffa500;
}
input[type=checkbox].checkbox-orange::before {
  border-color: #ffa500;
}
input[type=checkbox].checkbox-amber {
  border-color: #ffca2a;
}
input[type=checkbox].checkbox-amber::before {
  border-color: #ffca2a;
}
input[type=checkbox].checkbox-yellow {
  border-color: #ffe95e;
}
input[type=checkbox].checkbox-yellow::before {
  border-color: #ffe95e;
}
input[type=checkbox].checkbox-brown {
  border-color: #ca773c;
}
input[type=checkbox].checkbox-brown::before {
  border-color: #ca773c;
}
input[type=checkbox].checkbox-olive {
  border-color: #a1a100;
}
input[type=checkbox].checkbox-olive::before {
  border-color: #a1a100;
}
input[type=checkbox].checkbox-steel {
  border-color: #7b91a6;
}
input[type=checkbox].checkbox-steel::before {
  border-color: #7b91a6;
}
input[type=checkbox].checkbox-mauve {
  border-color: #e0afff;
}
input[type=checkbox].checkbox-mauve::before {
  border-color: #e0afff;
}
input[type=checkbox].checkbox-taupe {
  border-color: #977e67;
}
input[type=checkbox].checkbox-taupe::before {
  border-color: #977e67;
}
input[type=checkbox].checkbox-champagne {
  border-color: #f7e6ca;
}
input[type=checkbox].checkbox-champagne::before {
  border-color: #f7e6ca;
}
input[type=checkbox].checkbox-khaki {
  border-color: #d5c58a;
}
input[type=checkbox].checkbox-khaki::before {
  border-color: #d5c58a;
}
input[type=checkbox].checkbox-charcoal {
  border-color: #989898;
}
input[type=checkbox].checkbox-charcoal::before {
  border-color: #989898;
}
input[type=checkbox].checkbox-bronze {
  border-color: #e48d3e;
}
input[type=checkbox].checkbox-bronze::before {
  border-color: #e48d3e;
}
input[type=checkbox].checkbox-windstorm {
  border-color: #799ed6;
}
input[type=checkbox].checkbox-windstorm::before {
  border-color: #799ed6;
}
input[type=checkbox].checkbox-nude {
  border-color: #f7d9bc;
}
input[type=checkbox].checkbox-nude::before {
  border-color: #f7d9bc;
}
input[type=checkbox].checkbox-terracotta {
  border-color: #e35336;
}
input[type=checkbox].checkbox-terracotta::before {
  border-color: #e35336;
}
input[type=checkbox].checkbox-coral {
  border-color: #ff8559;
}
input[type=checkbox].checkbox-coral::before {
  border-color: #ff8559;
}
input[type=checkbox].checkbox-army {
  border-color: #5d6532;
}
input[type=checkbox].checkbox-army::before {
  border-color: #5d6532;
}
input[type=checkbox].checkbox-seashell {
  border-color: #fff1e7;
}
input[type=checkbox].checkbox-seashell::before {
  border-color: #fff1e7;
}
input[type=checkbox].checkbox-sand {
  border-color: #f1e0ae;
}
input[type=checkbox].checkbox-sand::before {
  border-color: #f1e0ae;
}

/* source/components/chips/chips.less */
:root {
  --chip-background: #F4F4F4;
  --chip-color: #191919;
  --chip-background-hover: #dadada;
  --chip-color-hover: #191919;
  --chip-action-background: #c1c1c1;
  --chip-action-color: #191919;
}
.dark-side {
  --chip-background: #2b2d30;
  --chip-color: #f3fcff;
  --chip-background-hover: #333439;
  --chip-color-hover: #f3fcff;
  --chip-action-background: #43444a;
  --chip-action-color: #f3fcff;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 32px;
  font-size: 14px;
  padding: 0 8px;
  line-height: 32px;
  background: var(--chip-background);
  color: var(--chip-color);
  cursor: default;
  border-radius: 4px;
  position: relative;
}
.chip .label {
  white-space: nowrap;
  order: 2;
  margin: 0 1rem 0 0.5rem;
}
.chip .icon {
  order: 1;
  width: 32px;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  font-size: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip .icon img {
  width: 24px;
  max-height: 24px;
  vertical-align: initial;
}
.chip .action {
  order: 3;
  display: block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: auto;
  background: var(--chip-action-background);
  color: var(--chip-action-color);
  border-radius: 4px;
}
.chip .action:before {
  content: "\2716";
  line-height: 24px;
  text-align: center;
  display: block;
}
.chip.pill-chip {
  border-radius: 1rem;
}
.chip.pill-chip .action {
  border-radius: 50%;
}
.chip:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.chip.readonly .action,
.chip.disabled .action {
  display: none;
}
.chip + .chip {
  margin-left: 8px;
}
.primary .action {
  background: #f52522;
  color: #ffffff;
}
.secondary .action {
  background: #451806;
  color: #ffffff;
}
.tertiary .action {
  background: #ff8c8a;
  color: #ffffff;
}
.success .action {
  background: #37ae5f;
  color: #ffffff;
}
.alert .action {
  background: #af0b2c;
  color: #ffffff;
}
.warning .action {
  background: #cc8400;
  color: #ffffff;
}
.info .action {
  background: #136cff;
  color: #ffffff;
}
.dark .action {
  background: #373737;
  color: #ffffff;
}
.light .action {
  background: #dfdfdf;
  color: #ffffff;
}
.lime {
  background: #AEFD6C;
  color: #ffffff;
}
.lime .action {
  background: #557f32;
  color: #ffffff;
}
@media (hover: hover) {
  .lime:hover {
    background: #92fc3a;
  }
}
@media (hover: none) {
  .lime:active {
    background: #92fc3a;
  }
}
.green {
  background: #00b500;
  color: #ffffff;
}
.green .action {
  background: #003d00;
  color: #ffffff;
}
@media (hover: hover) {
  .green:hover {
    background: #008200;
  }
}
@media (hover: none) {
  .green:active {
    background: #008200;
  }
}
.emerald {
  background: #50c878;
  color: #ffffff;
}
.emerald .action {
  background: #246339;
  color: #ffffff;
}
@media (hover: hover) {
  .emerald:hover {
    background: #37ae5f;
  }
}
@media (hover: none) {
  .emerald:active {
    background: #37ae5f;
  }
}
.blue {
  background: #5e87ff;
  color: #ffffff;
}
.blue .action {
  background: #132a6f;
  color: #ffffff;
}
@media (hover: hover) {
  .blue:hover {
    background: #2b61ff;
  }
}
@media (hover: none) {
  .blue:active {
    background: #2b61ff;
  }
}
.teal {
  background: #1ac5c5;
  color: #ffffff;
}
.teal .action {
  background: #014848;
  color: #ffffff;
}
@media (hover: hover) {
  .teal:hover {
    background: #149898;
  }
}
@media (hover: none) {
  .teal:active {
    background: #149898;
  }
}
.cyan {
  background: #94b6ff;
  color: #ffffff;
}
.cyan .action {
  background: #456c7e;
  color: #ffffff;
}
@media (hover: hover) {
  .cyan:hover {
    background: #6193ff;
  }
}
@media (hover: none) {
  .cyan:active {
    background: #6193ff;
  }
}
.cobalt {
  background: #0047ab;
  color: #ffffff;
}
.cobalt .action {
  background: #001f54;
  color: #ffffff;
}
@media (hover: hover) {
  .cobalt:hover {
    background: #003278;
  }
}
@media (hover: none) {
  .cobalt:active {
    background: #003278;
  }
}
.indigo {
  background: #6400a8;
  color: #ffffff;
}
.indigo .action {
  background: #21003e;
  color: #ffffff;
}
@media (hover: hover) {
  .indigo:hover {
    background: #460075;
  }
}
@media (hover: none) {
  .indigo:active {
    background: #460075;
  }
}
.almost {
  background: #6a2ded;
  color: #ffffff;
}
.almost .action {
  background: #2f0687;
  color: #ffffff;
}
@media (hover: hover) {
  .almost:hover {
    background: #5012d5;
  }
}
@media (hover: none) {
  .almost:active {
    background: #5012d5;
  }
}
.violet {
  background: #ee82ee;
  color: #ffffff;
}
.violet .action {
  background: #773e77;
  color: #ffffff;
}
@media (hover: hover) {
  .violet:hover {
    background: #e855e8;
  }
}
@media (hover: none) {
  .violet:active {
    background: #e855e8;
  }
}
.pink {
  background: #ffc0cb;
  color: #ffffff;
}
.pink .action {
  background: #805f65;
  color: #ffffff;
}
@media (hover: hover) {
  .pink:hover {
    background: #ff8da1;
  }
}
@media (hover: none) {
  .pink:active {
    background: #ff8da1;
  }
}
.magenta {
  background: #ff00ff;
  color: #ffffff;
}
.magenta .action {
  background: #800080;
  color: #ffffff;
}
@media (hover: hover) {
  .magenta:hover {
    background: #cc00cc;
  }
}
@media (hover: none) {
  .magenta:active {
    background: #cc00cc;
  }
}
.crimson {
  background: #df0e38;
  color: #ffffff;
}
.crimson .action {
  background: #6e0519;
  color: #ffffff;
}
@media (hover: hover) {
  .crimson:hover {
    background: #af0b2c;
  }
}
@media (hover: none) {
  .crimson:active {
    background: #af0b2c;
  }
}
.red {
  background: #ff0000;
  color: #ffffff;
}
.red .action {
  background: #800000;
  color: #ffffff;
}
@media (hover: hover) {
  .red:hover {
    background: #cc0000;
  }
}
@media (hover: none) {
  .red:active {
    background: #cc0000;
  }
}
.orange {
  background: #ffa500;
  color: #ffffff;
}
.orange .action {
  background: #805100;
  color: #ffffff;
}
@media (hover: hover) {
  .orange:hover {
    background: #cc8400;
  }
}
@media (hover: none) {
  .orange:active {
    background: #cc8400;
  }
}
.amber {
  background: #ffca2a;
  color: #ffffff;
}
.amber .action {
  background: #805e00;
  color: #ffffff;
}
@media (hover: hover) {
  .amber:hover {
    background: #f6b900;
  }
}
@media (hover: none) {
  .amber:active {
    background: #f6b900;
  }
}
.yellow {
  background: #ffe95e;
  color: #ffffff;
}
.yellow .action {
  background: #bca826;
  color: #ffffff;
}
@media (hover: hover) {
  .yellow:hover {
    background: #ffe22b;
  }
}
@media (hover: none) {
  .yellow:active {
    background: #ffe22b;
  }
}
.brown {
  background: #ca773c;
  color: #ffffff;
}
.brown .action {
  background: #42240f;
  color: #ffffff;
}
@media (hover: hover) {
  .brown:hover {
    background: #a65f2d;
  }
}
@media (hover: none) {
  .brown:active {
    background: #a65f2d;
  }
}
.olive {
  background: #a1a100;
  color: #ffffff;
}
.olive .action {
  background: #3d3d00;
  color: #ffffff;
}
@media (hover: hover) {
  .olive:hover {
    background: #6e6e00;
  }
}
@media (hover: none) {
  .olive:active {
    background: #6e6e00;
  }
}
.steel {
  background: #7b91a6;
  color: #ffffff;
}
.steel .action {
  background: #2e3841;
  color: #ffffff;
}
@media (hover: hover) {
  .steel:hover {
    background: #60788e;
  }
}
@media (hover: none) {
  .steel:active {
    background: #60788e;
  }
}
.mauve {
  background: #e0afff;
  color: #ffffff;
}
.mauve .action {
  background: #705680;
  color: #ffffff;
}
@media (hover: hover) {
  .mauve:hover {
    background: #cc7cff;
  }
}
@media (hover: none) {
  .mauve:active {
    background: #cc7cff;
  }
}
.taupe {
  background: #977e67;
  color: #ffffff;
}
.taupe .action {
  background: #261e18;
  color: #ffffff;
}
@media (hover: hover) {
  .taupe:hover {
    background: #796552;
  }
}
@media (hover: none) {
  .taupe:active {
    background: #796552;
  }
}
.champagne {
  background: #f7e6ca;
  color: #ffffff;
}
.champagne .action {
  background: #7c7364;
  color: #ffffff;
}
@media (hover: hover) {
  .champagne:hover {
    background: #f0d19e;
  }
}
@media (hover: none) {
  .champagne:active {
    background: #f0d19e;
  }
}
.khaki {
  background: #d5c58a;
  color: #ffffff;
}
.khaki .action {
  background: #6a6142;
  color: #ffffff;
}
@media (hover: hover) {
  .khaki:hover {
    background: #c8b264;
  }
}
@media (hover: none) {
  .khaki:active {
    background: #c8b264;
  }
}
.charcoal {
  background: #989898;
  color: #ffffff;
}
.charcoal .action {
  background: #202020;
  color: #ffffff;
}
@media (hover: hover) {
  .charcoal:hover {
    background: #7f7f7f;
  }
}
@media (hover: none) {
  .charcoal:active {
    background: #7f7f7f;
  }
}
.bronze {
  background: #e48d3e;
  color: #ffffff;
}
.bronze .action {
  background: #693c13;
  color: #ffffff;
}
@media (hover: hover) {
  .bronze:hover {
    background: #d2731d;
  }
}
@media (hover: none) {
  .bronze:active {
    background: #d2731d;
  }
}
.windstorm {
  background: #799ed6;
  color: #ffffff;
}
.windstorm .action {
  background: #304462;
  color: #ffffff;
}
@media (hover: hover) {
  .windstorm:hover {
    background: #5282ca;
  }
}
@media (hover: none) {
  .windstorm:active {
    background: #5282ca;
  }
}
.nude {
  background: #f7d9bc;
  color: #ffffff;
}
.nude .action {
  background: #7c6c5d;
  color: #ffffff;
}
@media (hover: hover) {
  .nude:hover {
    background: #f2bf8e;
  }
}
@media (hover: none) {
  .nude:active {
    background: #f2bf8e;
  }
}
.terracotta {
  background: #e35336;
  color: #ffffff;
}
.terracotta .action {
  background: #712516;
  color: #ffffff;
}
@media (hover: hover) {
  .terracotta:hover {
    background: #ca391c;
  }
}
@media (hover: none) {
  .terracotta:active {
    background: #ca391c;
  }
}
.coral {
  background: #ff8559;
  color: #ffffff;
}
.coral .action {
  background: #804028;
  color: #ffffff;
}
@media (hover: hover) {
  .coral:hover {
    background: #ff6026;
  }
}
@media (hover: none) {
  .coral:active {
    background: #ff6026;
  }
}
.army {
  background: #5d6532;
  color: #ffffff;
}
.army .action {
  background: #2a2f14;
  color: #ffffff;
}
@media (hover: hover) {
  .army:hover {
    background: #3e4321;
  }
}
@media (hover: none) {
  .army:active {
    background: #3e4321;
  }
}
.seashell {
  background: #fff1e7;
  color: #ffffff;
}
.seashell .action {
  background: #bfa89a;
  color: #ffffff;
}
@media (hover: hover) {
  .seashell:hover {
    background: #ffd3b4;
  }
}
@media (hover: none) {
  .seashell:active {
    background: #ffd3b4;
  }
}
.sand {
  background: #f1e0ae;
  color: #ffffff;
}
.sand .action {
  background: #8f8975;
  color: #ffffff;
}
@media (hover: hover) {
  .sand:hover {
    background: #e9cf83;
  }
}
@media (hover: none) {
  .sand:active {
    background: #e9cf83;
  }
}
.soft-lime {
  background: #f2ffe7;
  color: #557f32;
}
.soft-lime .action {
  background: #557f32;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-lime:hover {
    background: #92fc3a;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-lime:active {
    background: #92fc3a;
    color: #ffffff;
  }
}
.soft-green {
  background: #e7f6e6;
  color: #003d00;
}
.soft-green .action {
  background: #003d00;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-green:hover {
    background: #008200;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-green:active {
    background: #008200;
    color: #ffffff;
  }
}
.soft-emerald {
  background: #d1e6cc;
  color: #246339;
}
.soft-emerald .action {
  background: #246339;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-emerald:hover {
    background: #37ae5f;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-emerald:active {
    background: #37ae5f;
    color: #ffffff;
  }
}
.soft-blue {
  background: #e7eaff;
  color: #132a6f;
}
.soft-blue .action {
  background: #132a6f;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-blue:hover {
    background: #2b61ff;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-blue:active {
    background: #2b61ff;
    color: #ffffff;
  }
}
.soft-teal {
  background: #e1f2f3;
  color: #014848;
}
.soft-teal .action {
  background: #014848;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-teal:hover {
    background: #149898;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-teal:active {
    background: #149898;
    color: #ffffff;
  }
}
.soft-cyan {
  background: #e3edff;
  color: #456c7e;
}
.soft-cyan .action {
  background: #456c7e;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-cyan:hover {
    background: #6193ff;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-cyan:active {
    background: #6193ff;
    color: #ffffff;
  }
}
.soft-cobalt {
  background: #d1ecff;
  color: #001f54;
}
.soft-cobalt .action {
  background: #001f54;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-cobalt:hover {
    background: #003278;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-cobalt:active {
    background: #003278;
    color: #ffffff;
  }
}
.soft-indigo {
  background: #f3dcf3;
  color: #21003e;
}
.soft-indigo .action {
  background: #21003e;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-indigo:hover {
    background: #460075;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-indigo:active {
    background: #460075;
    color: #ffffff;
  }
}
.soft-almost {
  background: #eee5ff;
  color: #2f0687;
}
.soft-almost .action {
  background: #2f0687;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-almost:hover {
    background: #5012d5;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-almost:active {
    background: #5012d5;
    color: #ffffff;
  }
}
.soft-violet {
  background: #fce2fb;
  color: #773e77;
}
.soft-violet .action {
  background: #773e77;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-violet:hover {
    background: #e855e8;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-violet:active {
    background: #e855e8;
    color: #ffffff;
  }
}
.soft-pink {
  background: #ffeef1;
  color: #805f65;
}
.soft-pink .action {
  background: #805f65;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-pink:hover {
    background: #ff8da1;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-pink:active {
    background: #ff8da1;
    color: #ffffff;
  }
}
.soft-magenta {
  background: #ffe2ff;
  color: #800080;
}
.soft-magenta .action {
  background: #800080;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-magenta:hover {
    background: #cc00cc;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-magenta:active {
    background: #cc00cc;
    color: #ffffff;
  }
}
.soft-crimson {
  background: #ffd1da;
  color: #6e0519;
}
.soft-crimson .action {
  background: #6e0519;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-crimson:hover {
    background: #af0b2c;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-crimson:active {
    background: #af0b2c;
    color: #ffffff;
  }
}
.soft-red {
  background: #ffe1e1;
  color: #800000;
}
.soft-red .action {
  background: #800000;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-red:hover {
    background: #cc0000;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-red:active {
    background: #cc0000;
    color: #ffffff;
  }
}
.soft-orange {
  background: #fff3de;
  color: #805100;
}
.soft-orange .action {
  background: #805100;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-orange:hover {
    background: #cc8400;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-orange:active {
    background: #cc8400;
    color: #ffffff;
  }
}
.soft-amber {
  background: #fff8e1;
  color: #805e00;
}
.soft-amber .action {
  background: #805e00;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-amber:hover {
    background: #f6b900;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-amber:active {
    background: #f6b900;
    color: #ffffff;
  }
}
.soft-yellow {
  background: #ffffc6;
  color: #bca826;
}
.soft-yellow .action {
  background: #bca826;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-yellow:hover {
    background: #ffe22b;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-yellow:active {
    background: #ffe22b;
    color: #ffffff;
  }
}
.soft-brown {
  background: #ffeed9;
  color: #42240f;
}
.soft-brown .action {
  background: #42240f;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-brown:hover {
    background: #a65f2d;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-brown:active {
    background: #a65f2d;
    color: #ffffff;
  }
}
.soft-olive {
  background: #f8fde7;
  color: #3d3d00;
}
.soft-olive .action {
  background: #3d3d00;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-olive:hover {
    background: #6e6e00;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-olive:active {
    background: #6e6e00;
    color: #ffffff;
  }
}
.soft-steel {
  background: #edeeee;
  color: #2e3841;
}
.soft-steel .action {
  background: #2e3841;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-steel:hover {
    background: #60788e;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-steel:active {
    background: #60788e;
    color: #ffffff;
  }
}
.soft-mauve {
  background: #f7ecfe;
  color: #705680;
}
.soft-mauve .action {
  background: #705680;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-mauve:hover {
    background: #cc7cff;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-mauve:active {
    background: #cc7cff;
    color: #ffffff;
  }
}
.soft-taupe {
  background: #eadccf;
  color: #261e18;
}
.soft-taupe .action {
  background: #261e18;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-taupe:hover {
    background: #796552;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-taupe:active {
    background: #796552;
    color: #ffffff;
  }
}
.soft-champagne {
  background: #fff9f2;
  color: #7c7364;
}
.soft-champagne .action {
  background: #7c7364;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-champagne:hover {
    background: #f0d19e;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-champagne:active {
    background: #f0d19e;
    color: #ffffff;
  }
}
.soft-khaki {
  background: #f6f1dd;
  color: #6a6142;
}
.soft-khaki .action {
  background: #6a6142;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-khaki:hover {
    background: #c8b264;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-khaki:active {
    background: #c8b264;
    color: #ffffff;
  }
}
.soft-charcoal {
  background: #e8e8e8;
  color: #202020;
}
.soft-charcoal .action {
  background: #202020;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-charcoal:hover {
    background: #7f7f7f;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-charcoal:active {
    background: #7f7f7f;
    color: #ffffff;
  }
}
.soft-bronze {
  background: #ffecdc;
  color: #693c13;
}
.soft-bronze .action {
  background: #693c13;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-bronze:hover {
    background: #d2731d;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-bronze:active {
    background: #d2731d;
    color: #ffffff;
  }
}
.soft-windstorm {
  background: #e6ebf5;
  color: #304462;
}
.soft-windstorm .action {
  background: #304462;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-windstorm:hover {
    background: #5282ca;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-windstorm:active {
    background: #5282ca;
    color: #ffffff;
  }
}
.soft-nude {
  background: #fcf0e4;
  color: #7c6c5d;
}
.soft-nude .action {
  background: #7c6c5d;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-nude:hover {
    background: #f2bf8e;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-nude:active {
    background: #f2bf8e;
    color: #ffffff;
  }
}
.soft-terracotta {
  background: #ffe5df;
  color: #712516;
}
.soft-terracotta .action {
  background: #712516;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-terracotta:hover {
    background: #ca391c;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-terracotta:active {
    background: #ca391c;
    color: #ffffff;
  }
}
.soft-coral {
  background: #ffd8c8;
  color: #804028;
}
.soft-coral .action {
  background: #804028;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-coral:hover {
    background: #ff6026;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-coral:active {
    background: #ff6026;
    color: #ffffff;
  }
}
.soft-army {
  background: #eceacb;
  color: #2a2f14;
}
.soft-army .action {
  background: #2a2f14;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-army:hover {
    background: #3e4321;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-army:active {
    background: #3e4321;
    color: #ffffff;
  }
}
.soft-seashell {
  background: #fff9f8;
  color: #bfa89a;
}
.soft-seashell .action {
  background: #bfa89a;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-seashell:hover {
    background: #ffd3b4;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-seashell:active {
    background: #ffd3b4;
    color: #ffffff;
  }
}
.soft-sand {
  background: #f8f3e0;
  color: #8f8975;
}
.soft-sand .action {
  background: #8f8975;
  color: #ffffff;
}
@media (hover: hover) {
  .soft-sand:hover {
    background: #e9cf83;
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-sand:active {
    background: #e9cf83;
    color: #ffffff;
  }
}

/* source/components/cloak/cloak.less */
.cloak,
.m4-cloak {
  opacity: 0 !important;
}
.remove-cloak {
  animation: kf-fadeIn 1s linear forwards;
}
.add-cloak {
  animation: kf-fadeOut 1s linear forwards;
}
@keyframes kf-fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes kf-fadeOut {
  100% {
    opacity: 0;
  }
}

/* source/components/clock/clock.less */
:root {
  --clock-background: transparent;
  --clock-color: #191919;
  --clock-font-size: 14px;
}
.dark-side {
  --clock-background: transparent;
  --clock-color: #dbdfe7;
}
.clock {
  font-size: var(--clock-font-size);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  background: var(--clock-background);
  color: var(--clock-color);
}
.clock.show-column {
  align-items: flex-end !important;
  flex-direction: column;
  gap: 0;
}
.clock .clock-time,
.clock .clock-date {
  white-space: nowrap;
}

/* source/components/radio/radio.less */
:root {
  --radio-height: 36px;
  --radio-color: #575757;
  --radio-color-disabled: #c3c3c3;
  --radio-background-disabled: #efefef;
  --radio-focus-color: #e8e8e8;
}
.dark-side {
  --radio-color: #a6a8a7;
  --radio-color-disabled: #505050;
  --radio-background-disabled: #323030;
  --radio-focus-color: #191919;
}
input[type=radio] {
  appearance: none;
  width: 22px;
  height: 22px;
  line-height: var(--radio-height);
  border-radius: 50%;
  border: 2px solid var(--radio-color);
  position: relative;
  cursor: pointer;
  flex-shrink: 0 !important;
}
input[type=radio]::before {
  content: "";
  display: block;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--radio-color);
  border: 1px solid var(--radio-color);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
input[type=radio]:checked::before {
  opacity: 1;
}
input[type=radio]:focus {
  box-shadow: 0 0 0 3px var(--radio-focus-color);
}
input[type=radio]:disabled {
  border-color: var(--radio-color-disabled);
  background-color: var(--radio-background-disabled);
}
input[type=radio]:disabled::before {
  background-color: var(--radio-color-disabled);
  border: none;
}
.radio {
  display: inline-flex;
  align-items: center;
}
.radio input[type=radio] {
  order: 2;
}
.radio .caption-prepend,
.radio .caption-append {
  font-size: 12px;
  margin: 0 8px;
  position: relative;
  white-space: nowrap;
  user-select: none;
}
.radio .caption-prepend {
  order: 1;
}
.radio .caption-append {
  order: 3;
}
.radio > input[type=radio]:disabled ~ .caption-prepend,
.radio > input[type=radio]:disabled ~ .caption-append {
  color: var(--radio-color-disabled);
}
input[type=radio].radio-lime {
  border-color: #AEFD6C;
}
input[type=radio].radio-lime::before {
  background-color: #AEFD6C;
  border-color: #AEFD6C;
}
input[type=radio].radio-green {
  border-color: #00b500;
}
input[type=radio].radio-green::before {
  background-color: #00b500;
  border-color: #00b500;
}
input[type=radio].radio-emerald {
  border-color: #50c878;
}
input[type=radio].radio-emerald::before {
  background-color: #50c878;
  border-color: #50c878;
}
input[type=radio].radio-blue {
  border-color: #5e87ff;
}
input[type=radio].radio-blue::before {
  background-color: #5e87ff;
  border-color: #5e87ff;
}
input[type=radio].radio-teal {
  border-color: #1ac5c5;
}
input[type=radio].radio-teal::before {
  background-color: #1ac5c5;
  border-color: #1ac5c5;
}
input[type=radio].radio-cyan {
  border-color: #94b6ff;
}
input[type=radio].radio-cyan::before {
  background-color: #94b6ff;
  border-color: #94b6ff;
}
input[type=radio].radio-cobalt {
  border-color: #0047ab;
}
input[type=radio].radio-cobalt::before {
  background-color: #0047ab;
  border-color: #0047ab;
}
input[type=radio].radio-indigo {
  border-color: #6400a8;
}
input[type=radio].radio-indigo::before {
  background-color: #6400a8;
  border-color: #6400a8;
}
input[type=radio].radio-almost {
  border-color: #6a2ded;
}
input[type=radio].radio-almost::before {
  background-color: #6a2ded;
  border-color: #6a2ded;
}
input[type=radio].radio-violet {
  border-color: #ee82ee;
}
input[type=radio].radio-violet::before {
  background-color: #ee82ee;
  border-color: #ee82ee;
}
input[type=radio].radio-pink {
  border-color: #ffc0cb;
}
input[type=radio].radio-pink::before {
  background-color: #ffc0cb;
  border-color: #ffc0cb;
}
input[type=radio].radio-magenta {
  border-color: #ff00ff;
}
input[type=radio].radio-magenta::before {
  background-color: #ff00ff;
  border-color: #ff00ff;
}
input[type=radio].radio-crimson {
  border-color: #df0e38;
}
input[type=radio].radio-crimson::before {
  background-color: #df0e38;
  border-color: #df0e38;
}
input[type=radio].radio-red {
  border-color: #ff0000;
}
input[type=radio].radio-red::before {
  background-color: #ff0000;
  border-color: #ff0000;
}
input[type=radio].radio-orange {
  border-color: #ffa500;
}
input[type=radio].radio-orange::before {
  background-color: #ffa500;
  border-color: #ffa500;
}
input[type=radio].radio-amber {
  border-color: #ffca2a;
}
input[type=radio].radio-amber::before {
  background-color: #ffca2a;
  border-color: #ffca2a;
}
input[type=radio].radio-yellow {
  border-color: #ffe95e;
}
input[type=radio].radio-yellow::before {
  background-color: #ffe95e;
  border-color: #ffe95e;
}
input[type=radio].radio-brown {
  border-color: #ca773c;
}
input[type=radio].radio-brown::before {
  background-color: #ca773c;
  border-color: #ca773c;
}
input[type=radio].radio-olive {
  border-color: #a1a100;
}
input[type=radio].radio-olive::before {
  background-color: #a1a100;
  border-color: #a1a100;
}
input[type=radio].radio-steel {
  border-color: #7b91a6;
}
input[type=radio].radio-steel::before {
  background-color: #7b91a6;
  border-color: #7b91a6;
}
input[type=radio].radio-mauve {
  border-color: #e0afff;
}
input[type=radio].radio-mauve::before {
  background-color: #e0afff;
  border-color: #e0afff;
}
input[type=radio].radio-taupe {
  border-color: #977e67;
}
input[type=radio].radio-taupe::before {
  background-color: #977e67;
  border-color: #977e67;
}
input[type=radio].radio-champagne {
  border-color: #f7e6ca;
}
input[type=radio].radio-champagne::before {
  background-color: #f7e6ca;
  border-color: #f7e6ca;
}
input[type=radio].radio-khaki {
  border-color: #d5c58a;
}
input[type=radio].radio-khaki::before {
  background-color: #d5c58a;
  border-color: #d5c58a;
}
input[type=radio].radio-charcoal {
  border-color: #989898;
}
input[type=radio].radio-charcoal::before {
  background-color: #989898;
  border-color: #989898;
}
input[type=radio].radio-bronze {
  border-color: #e48d3e;
}
input[type=radio].radio-bronze::before {
  background-color: #e48d3e;
  border-color: #e48d3e;
}
input[type=radio].radio-windstorm {
  border-color: #799ed6;
}
input[type=radio].radio-windstorm::before {
  background-color: #799ed6;
  border-color: #799ed6;
}
input[type=radio].radio-nude {
  border-color: #f7d9bc;
}
input[type=radio].radio-nude::before {
  background-color: #f7d9bc;
  border-color: #f7d9bc;
}
input[type=radio].radio-terracotta {
  border-color: #e35336;
}
input[type=radio].radio-terracotta::before {
  background-color: #e35336;
  border-color: #e35336;
}
input[type=radio].radio-coral {
  border-color: #ff8559;
}
input[type=radio].radio-coral::before {
  background-color: #ff8559;
  border-color: #ff8559;
}
input[type=radio].radio-army {
  border-color: #5d6532;
}
input[type=radio].radio-army::before {
  background-color: #5d6532;
  border-color: #5d6532;
}
input[type=radio].radio-seashell {
  border-color: #fff1e7;
}
input[type=radio].radio-seashell::before {
  background-color: #fff1e7;
  border-color: #fff1e7;
}
input[type=radio].radio-sand {
  border-color: #f1e0ae;
}
input[type=radio].radio-sand::before {
  background-color: #f1e0ae;
  border-color: #f1e0ae;
}

/* source/components/color-selector/color-selector.less */
:root {
  --color-selector-background: var(--default-background);
}
.dark-side {
  --color-selector-background: var(--default-background);
}
.color-selector {
  width: 306px;
  background-color: var(--color-selector-background);
  flex-shrink: 0;
  display: block;
  position: relative;
}
.color-selector .color-box {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
}
.color-selector .row {
  margin: 10px 0 0;
  display: block;
}
.color-selector .row:nth-child(1) {
  margin-top: 0;
}
.color-selector .user-colors-title {
  padding: 4px 10px;
  text-align: center;
  font-size: 11px;
}
.color-selector .default-swatches,
.color-selector .user-colors,
.color-selector .user-colors-actions {
  display: block;
  width: auto;
  max-width: initial;
}
.color-selector .default-swatches .swatch,
.color-selector .user-colors .swatch,
.color-selector .user-colors-actions .swatch,
.color-selector .default-swatches .user-swatch,
.color-selector .user-colors .user-swatch,
.color-selector .user-colors-actions .user-swatch {
  display: inline-flex;
  width: 24px !important;
  height: 24px !important;
  background: #ccc;
  margin: 2px;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
}
.color-selector .user-colors {
  padding: 4px;
}
.color-selector .user-colors-actions {
  margin-top: 8px;
  text-align: center;
}
.color-selector .user-colors-actions .user-swatch {
  margin: 0;
}
.color-selector .cursor {
  border-radius: 100%;
  background: #ccc;
  box-sizing: border-box;
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border: 2px solid #fff;
  transition: all 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.37) 0 1px 4px 0;
  cursor: grab !important;
}
.color-selector .cursor.dragging {
  transition: none;
}
.color-selector canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
}
.color-selector .color-map {
  position: relative;
  width: 212px;
  height: 200px;
  overflow: hidden;
}
.color-selector .color-map .color-cursor {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  top: 0;
  left: 0;
}
.color-selector .hue-map {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 40px;
  width: 10px;
}
.color-selector .hue-map .hue-cursor {
  top: 0;
  left: 50%;
  height: 20px !important;
  width: 20px !important;
  margin-top: -10px;
  margin-left: -10px;
  pointer-events: none;
  min-width: 0;
  padding: 0;
}
.color-selector .hue-map canvas {
  border-radius: 8px;
}
.color-selector .alpha-map {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 10px;
  width: 10px;
}
.color-selector .alpha-map .alpha-cursor {
  top: 0;
  left: 50%;
  height: 20px !important;
  width: 20px !important;
  margin-top: -10px;
  margin-left: -10px;
  pointer-events: none;
  min-width: 0;
  padding: 0;
}
.color-selector .alpha-map canvas {
  border-radius: 8px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==) center center;
}
.color-selector.no-alpha-channel .hue-map {
  right: 25px;
}
.color-selector.no-alpha-channel .alpha-map {
  display: none !important;
}
.color-selector .color-value-hex,
.color-selector .color-value-rgb,
.color-selector .color-value-rgba,
.color-selector .color-value-hsl,
.color-selector .color-value-hsla,
.color-selector .color-value-hsv,
.color-selector .color-value-cmyk {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-top: -1px;
}
.color-selector .color-value-hex input,
.color-selector .color-value-rgb input,
.color-selector .color-value-rgba input,
.color-selector .color-value-hsl input,
.color-selector .color-value-hsla input,
.color-selector .color-value-hsv input,
.color-selector .color-value-cmyk input {
  flex-shrink: 1;
  min-width: 0;
  font-size: 11px !important;
  font-weight: bold;
  text-align: center;
}
.color-selector .color-value-hex .prepend,
.color-selector .color-value-rgb .prepend,
.color-selector .color-value-rgba .prepend,
.color-selector .color-value-hsl .prepend,
.color-selector .color-value-hsla .prepend,
.color-selector .color-value-hsv .prepend,
.color-selector .color-value-cmyk .prepend {
  font-size: 11px !important;
  border-right: 1px solid var(--border-color);
  width: 26px !important;
  text-align: center;
  padding: 0 4px !important;
}
.color-selector .color-value-hex .radio,
.color-selector .color-value-rgb .radio,
.color-selector .color-value-rgba .radio,
.color-selector .color-value-hsl .radio,
.color-selector .color-value-hsla .radio,
.color-selector .color-value-hsv .radio,
.color-selector .color-value-cmyk .radio {
  height: 28px !important;
  width: 28px !important;
}
.color-selector .color-block {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  margin-left: 4px;
}
.color-selector .color-block .input {
  border-radius: 0;
}
.color-selector .color-block input {
  padding: 0;
}
.color-selector .color-block.as-string .prepend {
  width: 40px !important;
}
.color-selector .color-values-block .radio {
  left: -4px;
}
.color-selector .color-values-block .input + .input {
  border-left: none !important;
}
.color-selector .dragging {
  cursor: grab;
}
.color-selector .color-cursor,
.color-selector .alpha-cursor,
.color-selector .hue-cursor {
  user-select: none !important;
}

/* source/components/color-picker/color-picker.less */
.color-picker {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  position: relative;
}
.color-picker:hover input,
.color-picker:active input {
  border-color: transparent;
}
.color-picker.focused {
  box-shadow: 0 0 0 3px var(--input-box-shadow);
}
.color-picker input {
  border: none !important;
  order: 1;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  height: calc(var(--input-height) - 2px);
  padding: 0 0.75rem;
}
.color-picker input:focus {
  box-shadow: none;
}
.color-picker .buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}
.color-picker button,
.color-picker .button {
  background-color: transparent;
  color: var(--input-color);
  height: calc(var(--input-height) - 4px);
  width: calc(var(--input-height) - 4px);
  aspect-ratio: 1;
  border: 1px solid var(--input-border-color);
  font-size: var(--input-font-size);
  padding: 0;
}
.color-picker button:focus,
.color-picker .button:focus,
.color-picker button:active,
.color-picker .button:active {
  box-shadow: none !important;
}
.color-picker .color-picker-button {
  font-family: "Segoe UI Symbol", sans-serif;
}
.color-picker .input-clear-button {
  background-color: transparent;
}
.color-picker .input-clear-button:hover {
  background-color: transparent;
}
.color-picker.disabled .button-group button {
  background-color: transparent;
  color: var(--input-disabled-color);
}
.color-picker .color-example-box {
  display: block;
  height: calc(var(--input-height) - 8px);
  aspect-ratio: 1;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==) top left repeat;
  margin: 4px;
  border: 1px solid var(--border-color);
  position: relative;
}
.color-picker .color-selector-box {
  position: absolute;
  top: 100%;
  left: -1px;
  display: none;
  box-shadow: 2px 2px 10px var(--d-menu-shadow-color);
}
.color-picker .prepend {
  order: 1;
}
.color-picker .color-example-box {
  order: 2;
}
.color-picker input {
  order: 3;
}
.color-picker .append {
  order: 5;
}
.color-picker .buttons {
  order: 4;
}
.color-picker input[placeholder] {
  text-overflow: ellipsis;
}
.color-picker .color-selector-box {
  z-index: 1000;
}
.color-picker .dropdown-caret {
  display: none !important;
}
.color-picker.open .color-selector-box {
  display: block !important;
}
.color-picker.pill-input {
  --input-border-radius: calc(var(--input-height) * 0.44);
}
.color-picker.pill-input .button,
.color-picker.pill-input .color-example-box {
  border-radius: 50%;
}

/* source/components/command-button/command-button.less */
:root {
  --command-button-border-radius: 6px;
  --command-button-background: #F8F8F8;
  --command-button-color: #191919;
  --command-button-background-hover: #eaeaea;
  --command-button-color-hover: #000000;
}
.dark-side {
  --command-button-background: #2e2e2e;
  --command-button-color: #F8F8F8;
  --command-button-background-hover: #4b4b4b;
  --command-button-color-hover: #F8F8F8;
}
.command-button {
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.15s ease-in-out;
  background: var(--command-button-background);
  color: var(--command-button-color);
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--command-button-border-radius);
  outline: none;
  position: relative;
  font-weight: 500;
  margin: 0.5rem;
  height: auto;
}
.command-button:first-child {
  margin-left: 0;
}
.command-button:last-child {
  margin-right: 0;
}
.command-button .icon,
.command-button .caption {
  transition: all 0.3s ease-in-out;
}
.command-button .icon {
  width: 43px;
  height: 43px;
  line-height: 43px;
  font-size: 2rem;
  color: inherit;
  order: 1;
}
.command-button .caption {
  margin-left: 0.5rem;
  text-align: left;
  color: inherit;
  order: 2;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: translateY(-2px);
}
.command-button .caption small {
  display: block;
  font-size: 0.8rem;
}
.command-button.icon-right .icon {
  order: 2;
}
.command-button.icon-right .caption {
  order: 1;
  margin-left: 0;
  margin-right: 0.5rem;
}
.command-button.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--border-color);
}
@media (hover: hover) {
  .command-button:hover {
    background: var(--command-button-background-hover);
    color: var(--command-button-color-hover);
  }
}
@media (hover: none) {
  .command-button:active {
    background: var(--command-button-background-hover);
    color: var(--command-button-color-hover);
  }
}
.command-button.shadow {
  box-shadow: 6px 6px 0 var(--shadow-color-3d);
}
.command-button.shadow:active {
  transform: translate(4px, 4px);
}
.command-button.shift:active {
  transform: translate(2px, 2px);
}

/* source/components/container/container.less */
.container,
.container-fluid,
section,
header,
footer,
aside {
  margin: 0 auto;
  position: relative;
}
.container::after,
.container-fluid::after,
section::after,
header::after,
footer::after,
aside::after {
  display: block;
  clear: both;
  content: "";
}
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  container: container / inline-size;
}
.container-fluid {
  width: 100%;
  max-width: none;
  padding-right: 12px;
  padding-left: 12px;
}
@media (min-width: 360px) and (max-width: 576px) {
  .container {
    max-width: 98%;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .container {
    max-width: 95%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 80%;
  }
}
.container-fs {
  max-width: 0;
}
.container-xs {
  max-width: 360px;
}
.container-sm {
  max-width: 576px;
}
.container-ld {
  max-width: 640px;
}
.container-md {
  max-width: 768px;
}
.container-lg {
  max-width: 992px;
}
.container-xl {
  max-width: 1200px;
}
.container-xxl {
  max-width: 1400px;
}
.container-xxxl {
  max-width: 2000px;
}
.container-max {
  width: 100%;
}
.container-query,
.responsive-container {
  container-name: container-query;
  container-type: inline-size;
}

/* source/components/d-menu/d-menu.less */
:root {
  --d-menu-border-color: #e9e9e9;
  --d-menu-divider-color: #e9e9e9;
  --d-menu-background: #ffffff;
  --d-menu-color: #191919;
  --d-menu-item-color: #191919;
  --d-menu-item-color-disabled: #ccc;
  --d-menu-item-color-hover: #000000;
  --d-menu-item-background-hover: #e8e8e8;
  --d-menu-dropdown-toogle-color: #191919;
  --d-menu-shadow-color: #e1e1e1;
  --d-menu-border-radius: 4px;
}
.dark-side {
  --d-menu-border-color: #404959;
  --d-menu-divider-color: #404959;
  --d-menu-background: #2b2d30;
  --d-menu-color: #ffffff;
  --d-menu-item-color: #dbdfe7;
  --d-menu-item-color-disabled: #a8a8a8;
  --d-menu-item-color-hover: #ffffff;
  --d-menu-item-background-hover: #1e1f22;
  --d-menu-dropdown-toogle-color: #ffffff;
  --d-menu-shadow-color: #191919;
  --d-menu-border-radius: 4px;
}
.d-menu {
  position: absolute;
  float: left;
  width: auto;
  margin: 0;
  list-style: none inside none;
  background-color: var(--d-menu-background);
  color: var(--d-menu-color);
  border-radius: 6px;
  padding: 4px 0;
  border: 1px solid var(--d-menu-border-color);
  z-index: 1030;
  box-shadow: 2px 2px 10px var(--d-menu-shadow-color);
}
.d-menu.open {
  display: block !important;
}
.d-menu.place-right {
  left: auto;
  right: 0;
}
.d-menu li {
  display: block;
  margin: 0 4px;
  position: relative;
}
.d-menu a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--d-menu-item-color);
  text-decoration: none;
  padding: 4px 10px 4px 32px;
  border-radius: var(--d-menu-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
}
@media (hover: hover) {
  .d-menu a:hover {
    color: var(--d-menu-item-color-hover);
    text-decoration: none;
    background-color: var(--d-menu-item-background-hover);
  }
}
@media (hover: none) {
  .d-menu a:active {
    color: var(--d-menu-item-color-hover);
    text-decoration: none;
    background-color: var(--d-menu-item-background-hover);
  }
}
.d-menu .caption {
  margin-right: 1rem;
  white-space: nowrap;
}
.d-menu .hotkey {
  margin-left: auto;
  margin-right: 1rem;
}
.d-menu .icon {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.d-menu .divider {
  padding: 0;
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  background-color: var(--d-menu-divider-color);
  cursor: default;
  pointer-events: none;
}
.d-menu .divider:hover {
  background-color: var(--d-menu-divider-color);
}
.d-menu .disabled {
  cursor: default;
  pointer-events: none;
}
.d-menu .disabled a {
  color: var(--d-menu-item-color-disabled) !important;
}
.d-menu .d-menu {
  left: calc(100% + 4px);
  top: 0;
}
.d-menu .d-menu.open-left {
  left: auto;
  right: calc(100% + 4px);
}
.d-menu.place-right .d-menu {
  left: auto;
  right: calc(100% + 4px);
}
.d-menu .d-menu.place-right {
  left: auto;
  right: calc(100% + 4px);
  top: 0;
}
@media screen and (min-width: 0) {
  .d-menu.place-right-fs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 360px) {
  .d-menu.place-right-xs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 576px) {
  .d-menu.place-right-sm {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 640px) {
  .d-menu.place-right-ld {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .d-menu.place-right-md {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .d-menu.place-right-lg {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .d-menu.place-right-xl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .d-menu.place-right-xxl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 2000px) {
  .d-menu.place-right-xxxl {
    left: auto;
    right: 0;
  }
}
.d-menu.no-icon a {
  padding: 4px 10px;
}

/* source/components/context-menu/context-menu.less */
.context-menu {
  display: none;
  z-index: 1031;
}

/* source/components/cookie-disclaimer/cookie-disclaimer.less */
:root {
  --disclaimer-background: #f5f5f5;
  --disclaimer-color: #191919;
}
.dark-side {
  --disclaimer-background: #343637;
  --disclaimer-color: #dbdfe7;
}
.cookie-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 1030;
  background: var(--disclaimer-background);
  color: var(--disclaimer-color);
  padding: 10px;
}
.cookie-disclaimer .disclaimer-actions {
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 10px;
  gap: 6px;
}
.cookie-disclaimer .disclaimer-message {
  padding: 10px;
}
.cookie-disclaimer .disclaimer-message .disclaimer-title {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.cookie-disclaimer .disclaimer-message .disclaimer-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}

/* source/components/countdown/countdown.less */
.countdown {
  font-family: digital, sans-serif;
  display: flex !important;
  flex-flow: row nowrap;
  position: relative;
  width: 100%;
  justify-content: center;
  font-size: 1.5rem;
}
.countdown .part {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0.5rem 0.5rem 0.5em;
  flex-shrink: 0;
  flex-grow: 0;
}
.countdown .digit {
  display: block;
  position: relative;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}
.countdown .digit .digit-placeholder {
  visibility: hidden;
}
.countdown .digit .digit-value {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font: inherit;
}
.countdown .part + .part::before {
  top: 10px;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 8px);
  width: 1px;
  background:
    radial-gradient(
      at left,
      var(--border-color),
      transparent);
}
.countdown .part.d-none + .part::before {
  display: none;
}
.countdown .part.no-divider::before {
  display: none;
}
.countdown .part.days::after,
.countdown .part.hours::after,
.countdown .part.minutes::after,
.countdown .part.seconds::after {
  position: absolute;
  content: attr(data-label);
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.3em;
  color: inherit;
  background-color: inherit;
  z-index: 1;
}
.countdown .days {
  order: 1;
}
.countdown .hours {
  order: 2;
}
.countdown .minutes {
  order: 3;
}
.countdown .seconds {
  order: 4;
}
.countdown.animate-slide .digit {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin: 0 1px;
  padding: 0 4px;
}
.countdown.animate-slide .digit .digit-value {
  width: 100%;
  text-align: center;
}
.countdown.animate-slide .-old-digit .digit-value {
  border-top: 1px solid var(--border-color);
}

/* source/components/cube/cube.less */
.cube {
  display: block;
  position: relative;
  width: 320px;
  height: 310px;
  margin: 0 auto 30px;
  transform: rotateY(30deg);
}
.cube .side {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: absolute;
  overflow: hidden;
  width: 162px;
  height: 162px;
  bottom: 38px;
  left: 0;
}
.cube .side.left-side {
  transform: skewY(23deg) rotateX(10deg);
}
.cube .side.right-side {
  left: 160px;
  transform: skewY(-23deg) rotateY(10deg);
}
.cube .side.top-side {
  left: 80px;
  bottom: 154px;
  top: auto;
  transform: rotate(45deg) rotateZ(0) skew(-22deg, -22deg);
}
.cube .side .cube-cell {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 8px;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: #231F20;
  border: 1px solid #303030;
  box-shadow: 0 0 5px rgba(118, 118, 118, 0.8);
  transition: all 0.3s ease-in-out;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}
.cube .side .cube-cell.light {
  animation: pulsar-cell 2.5s 0s ease-out infinite;
  background-color: #c4122f;
  border-color: #c4122f;
  color: #1d1d1d;
  box-shadow:
    0 0 10px #c4122f,
    0 0 10px #c4122f,
    0 0 10px #c4122f;
}
@keyframes pulsar-cell {
  0%, 100% {
    box-shadow:
      0 0 10px #c4122f,
      0 0 10px #c4122f,
      0 0 10px #c4122f;
  }
  50% {
    box-shadow:
      0 0 10px rgba(196, 18, 47, 0.3),
      0 0 10px rgba(196, 18, 47, 0.3),
      0 0 10px rgba(196, 18, 47, 0.3);
  }
}
.cube .axis {
  height: 2px;
  width: 200px;
  position: absolute;
  background-color: #c4122f;
  bottom: 162px;
  left: 162px;
  transform-origin: 0 0 0;
}
.cube .axis::before,
.cube .axis::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: inherit;
  display: block;
}
.cube .axis.arrow::before,
.cube .axis.arrow::after {
  width: 16px;
  top: 0;
  right: 0;
  transform-origin: 100% 100% 0;
}
.cube .axis.arrow::before {
  transform: rotate(35deg);
}
.cube .axis.arrow::after {
  transform: rotate(-35deg);
  right: -1px;
}
.cube .axis.line::before,
.cube .axis.line::after {
  width: 16px;
  top: 0;
  right: 0;
  transform-origin: 100% 100% 0;
}
.cube .axis.line::before {
  transform: rotate(90deg);
}
.cube .axis.line::after {
  transform: rotate(-90deg);
  right: -1px;
}
.cube .axis.line.axis-y::before {
  transform: rotate(113deg);
}
.cube .axis.line.axis-y::after {
  transform: rotate(-67deg);
}
.cube .axis.line.axis-x::before {
  transform: rotate(67deg);
}
.cube .axis.line.axis-x::after {
  transform: rotate(-113deg);
}
.cube .axis.no-style::before,
.cube .axis.no-style::after {
  display: none;
}
.cube .axis.axis-x {
  transform: rotate(203deg);
}
.cube .axis.axis-y {
  bottom: 166px;
  transform: rotate(-23deg);
}
.cube .axis.axis-z {
  width: 190px;
  transform: rotate(90deg);
}

/* source/components/custom-checkbox/custom-checkbox.less */
:root {
  --custom-checkbox-size: 36px;
  --custom-checkbox-icon-size: 16px;
  --custom-checkbox-color: #575757;
  --custom-checkbox-background: transparent;
  --custom-checkbox-caption-color: #191919;
  --custom-checkbox-background-disabled: #e8e8e8;
  --custom-checkbox-color-disabled: #c3c3c3;
}
.dark-side {
  --custom-checkbox-color: #a6a6a6;
  --custom-checkbox-background: transparent;
  --custom-checkbox-caption-color: #e8e8e8;
  --custom-checkbox-background-disabled: #353535;
  --custom-checkbox-color-disabled: #6c6c6c;
}
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: var(--custom-checkbox-size);
  flex-flow: row nowrap;
  padding: 0 calc(var(--custom-checkbox-size)/4);
  line-height: var(--custom-checkbox-size);
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--border-color);
}
.custom-checkbox input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.custom-checkbox .icon {
  font-size: var(--custom-checkbox-icon-size);
  width: var(--custom-checkbox-icon-size);
  height: var(--custom-checkbox-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  order: 1;
}
.custom-checkbox .icon * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-checkbox .state-on,
.custom-checkbox .caption-state-on {
  display: none;
}
.custom-checkbox .state-off,
.custom-checkbox .caption-state-off {
  display: flex;
}
.custom-checkbox input:checked ~ .icon .state-on,
.custom-checkbox input:checked ~ .caption .caption-state-on {
  display: flex;
}
.custom-checkbox input:checked ~ .icon .state-off,
.custom-checkbox input:checked ~ .caption .caption-state-off {
  display: none;
}
.custom-checkbox .caption {
  height: var(--custom-checkbox-size);
  display: flex;
  align-items: center;
  margin: 0 6px;
  order: 2;
  white-space: nowrap;
  font-size: calc(var(--custom-checkbox-icon-size) * 0.75);
}
.custom-checkbox.caption-left .icon {
  order: 2;
}
.custom-checkbox.caption-left .caption {
  order: 1;
}
.custom-checkbox input:disabled ~ .icon,
.custom-checkbox input:disabled ~ .caption {
  border-color: var(--custom-checkbox-background-disabled);
  color: var(--custom-checkbox-color-disabled);
}

/* source/components/cutter/cutter.less */
:root {
  --cutter-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMCAxMUw4IDVMMTYgMTEiIHN0cm9rZT0iIzMwMzYzZCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIC8+Cjwvc3ZnPgo=);
  --cutter-border-color: #3a3b3d;
}
.dark-side {
  --cutter-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMCAxMUw4IDVMMTYgMTEiIHN0cm9rZT0iI2UxZTRlOCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIC8+Cjwvc3ZnPgo=);
  --cutter-border-color: #e4e5e9;
}
.cutter {
  background-image: var(--cutter-image);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 16px 16px;
  min-height: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cutter .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  font-size: 12px;
  min-height: 32px;
  background: var(--default-background);
  border: 1px solid var(--cutter-border-color);
  border-radius: 6px;
  padding: 8px 24px;
}

/* source/components/wheelpicker/wheelpicker.less */
:root {
  --wheel-picker-border-radius: 4px;
  --wheel-picker-color: #191919;
  --wheel-picker-selected-background: rgba(175, 175, 175, 0.5);
}
.dark-side {
  --wheel-picker-color: #dbdfe7;
  --wheel-picker-selected-background: rgba(78, 81, 88, 0.5);
}
.wheel-picker {
  --picker-height: var(--control-height, 36px);
  --picker-font-size: 16px;
  display: block;
  position: relative;
  width: 100%;
  min-width: calc(var(--picker-height) * 6);
  cursor: default;
  background: var(--input-background);
  color: var(--wheel-picker-color);
  height: var(--picker-height);
  user-select: none;
  border-radius: var(--wheel-picker-border-radius);
}
.wheel-picker.small {
  --picker-height: var(--control-height-small);
  --picker-font-size: 12px;
}
.wheel-picker.medium {
  --picker-height: var(--control-height-medium);
  --picker-font-size: 14px;
}
.wheel-picker.large {
  --picker-height: var(--control-height-large);
  --picker-font-size: 20px;
}
.wheel-picker .select-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  height: auto;
  z-index: 3;
  width: 100%;
  background: var(--input-background);
  border-radius: var(--wheel-picker-border-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px 0 var(--shadow-color-normal), 0 1px 2px -1px var(--shadow-color-normal);
}
.wheel-picker .select-block {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  flex-shrink: 0;
  background: transparent;
}
.wheel-picker .select-block::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  height: 40px;
  background: var(--wheel-picker-selected-background);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.wheel-picker .select-block ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
  display: block;
  text-align: center;
  height: 100%;
  z-index: 1;
  flex: 1;
  border: 1px solid var(--border-color);
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.wheel-picker .select-block ul::-webkit-scrollbar {
  display: none !important;
}
.wheel-picker .select-block ul li {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 0.9em;
}
.wheel-picker .select-block ul li.active {
  font-weight: bold;
}
.wheel-picker .action-block {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  width: 100%;
  background: transparent;
}
.wheel-picker .action-block > * {
  flex: 1;
}
.wheel-picker.drop-up-select .select-wrapper {
  transform: translate3d(0, -100%, 0);
}

/* source/components/datepicker/datepicker.less */
.date-picker input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.date-picker input:focus ~ .time-wrapper {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.date-picker .date-wrapper {
  display: inline-flex;
  flex-flow: row nowrap;
  position: relative;
  border: 1px solid var(--border-color);
  width: 100%;
  overflow: hidden;
  height: 100%;
  border-radius: var(--wheel-picker-border-radius);
}
.date-picker .month,
.date-picker .day,
.date-picker .year {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  font-size: var(--picker-font-size);
}
.date-picker .month {
  flex-grow: 2;
}
.date-picker .sel-month {
  flex-grow: 2 !important;
}
.date-picker .action-block {
  border: 1px solid var(--border-color);
  border-radius: var(--datepicker-border-radius);
}
.date-picker .button {
  margin: 2px;
}
.date-picker li {
  cursor: pointer;
}
.date-picker.pill-input {
  --picker-border-radius: calc(var(--picker-height) * 0.44);
}
.date-picker.pill-input .date-wrapper {
  border-radius: var(--picker-border-radius);
}
.date-picker.pill-input .date-wrapper div:first-child {
  border-top-left-radius: var(--picker-border-radius);
  border-bottom-left-radius: var(--picker-border-radius);
}
.date-picker.pill-input .date-wrapper div:last-child {
  border-top-right-radius: var(--picker-border-radius);
  border-bottom-right-radius: var(--picker-border-radius);
}

/* source/components/directive/directive.less */
:root {
  --directive-background: #f9f9f9;
  --directive-color: #191919;
  --directive-border-color: #3c3c3c1a;
  --directive-title-color: #3c3c3c;
  --directive-border-radius: 10px;
  --directive-code-background: #f5f5f5;
  --directive-icon-background: #f5f5f5;
  --directive-icon-color: #7a7a7a;
  --directive-icon-size: 3rem;
}
.dark-side {
  --directive-color: #ffffff !important;
}
.dark-side .directive-note {
  --directive-background: #292e37 !important;
  --directive-border-color: #5454547a !important;
  --directive-title-color: #ffffff !important;
}
.dark-side .directive-tip,
.dark-side .directive-success {
  --directive-background: #079c701a !important;
  --directive-border-color: #079c7033 !important;
  --directive-title-color: #3ec480 !important;
}
.dark-side .directive-info {
  --directive-background: #0095ff33 !important;
  --directive-border-color: #0095ff33 !important;
  --directive-title-color: #66c2ff !important;
}
.dark-side .directive-warning {
  --directive-background: #ffc5171f !important;
  --directive-border-color: #ffc51740 !important;
  --directive-title-color: #fbb451 !important;
}
.dark-side .directive-fuck {
  --directive-background: rgba(250, 250, 250, 0.06) !important;
}
.dark-side .directive-caution,
.dark-side .directive-alert,
.dark-side .directive-error {
  --directive-background: #ed3c501f !important;
  --directive-border-color: #ed3c504d !important;
  --directive-title-color: #f76e85 !important;
}
.dark-side .directive-bug {
  --directive-background: #7C7C7C19 !important;
  --directive-border-color: #5454547a !important;
  --directive-title-color: #d53934 !important;
}
.dark-side .directive-shit {
  --directive-background: #7a493c19 !important;
  --directive-border-color: #7a493c !important;
  --directive-title-color: #8f3f06 !important;
}
.directive {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--directive-background);
  color: var(--directive-color);
  border: 1px solid var(--directive-border-color);
  border-left-width: 4px;
  margin: 1rem 0;
  font-size: 14px;
  line-height: 1.75;
  position: relative;
  padding: 0.8rem 1rem 1rem 1.2rem;
}
.directive .directive-title {
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  color: var(--directive-title-color);
  font-size: 20px;
  line-height: 1.2;
}
.directive .icon {
  position: absolute;
  right: 0;
  top: 8px;
  width: var(--directive-icon-size);
  height: var(--directive-icon-size);
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.3;
  z-index: 0;
}
.directive .icon::before {
  font-size: var(--directive-icon-size);
}
.directive .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--directive-icon-color);
  stroke: var(--directive-icon-color);
}
.directive [data-role-directive] {
  line-height: 1.3;
}
.directive.directive-info {
  --directive-background: #0095ff0f;
  --directive-border-color: #0095ff;
  --directive-title-color: #0095ff;
  --directive-icon-color: #0095ff;
  --code-background: #0095ff1a;
  --code-color: #07f;
}
.directive.directive-tip,
.directive.directive-success {
  --directive-background: #079c700f;
  --directive-border-color: #079c7033;
  --directive-title-color: #278359;
  --directive-icon-color: #278359;
  --code-background: #079c701a;
  --code-color: #278359;
}
.directive.directive-success {
  --directive-border-color: #079c70;
}
.directive.directive-warning {
  --directive-background: #ffc5171a;
  --directive-border-color: #ffc51766;
  --directive-title-color: #ffc517;
  --directive-icon-color: #ffc517;
  --code-background: #ffc5171a;
  --code-color: #887233;
}
.directive.directive-fuck {
  --directive-background: #fafafa;
  --directive-border-color: var(--border-color);
  --directive-title-color: var(--default-color);
}
.directive.directive-fuck .icon::before {
  content: "\1f595";
}
.directive.directive-caution,
.directive.directive-alert,
.directive.directive-error {
  --directive-background: #ed3c5014;
  --directive-border-color: #ed3c50;
  --directive-title-color: #ff1f1f;
  --directive-icon-color: #ff1f1f;
  --code-background: #ed3c501a;
  --code-color: #ab2131;
}
.directive.directive-important {
  --directive-background: #ff6d2914;
  --directive-border-color: #ff6d29;
  --directive-title-color: #ff6d29;
  --code-background: #ff6d2914;
  --code-color: #ff6d29;
}
.directive.directive-important .icon::before {
  content: "\1f525";
}
.directive.directive-bug {
  --directive-background: #7C7C7C19;
  --directive-border-color: #1C1C1C66;
  --directive-title-color: #191919;
  --directive-icon-color: #ff1f1f;
}
.directive.directive-bug .icon::before {
  content: "\1f41e";
}
.directive.directive-shit {
  --directive-background: #7a493c19;
  --directive-border-color: #7a493c;
  --directive-title-color: #7a493c;
  --directive-icon-color: #7a493c;
}
.directive.directive-shit .icon::before {
  content: "\1f4a9";
}
.directive.directive-air {
  --directive-background: #d5d9dc19;
  --directive-border-color: #d5d9dc;
  --directive-title-color: #8c8f91;
  --directive-icon-color: #80dbff;
}
.directive.directive-air .icon::before {
  content: "\1f4a8";
}
.directive-style-2 {
  border: solid var(--directive-border-color);
  border-width: 0 0 0 10px;
}
.directive-style-2 .icon {
  position: absolute;
  width: 32px;
  height: 32px;
  font-size: 24px;
  transform: rotate(0);
  left: -21px;
  top: 10px;
  border: 1px solid var(--directive-border-color);
  background: var(--default-background);
  padding: 6px;
  z-index: 1;
  opacity: 1;
}
.directive-style-2 .icon::before {
  font-size: 20px !important;
  position: relative;
  margin-top: -3px;
}
.directive-style-3 {
  padding-left: 4.5rem !important;
}
.directive-style-3 .icon {
  right: auto;
  left: 10px;
  top: 20px;
}

/* source/components/donut/donut.less */
.donut {
  display: block;
  position: relative;
  border-radius: 50%;
}
.donut > svg {
  width: 100%;
  height: 100%;
}
.donut > svg * {
  transition: all 1s;
}
.donut-lime svg .donut-back {
  stroke: #d6ffb4;
}
.donut-lime svg .donut-fill {
  stroke: #AEFD6C;
}
.donut-lime svg .donut-title {
  fill: #557f32;
}
.donut-green svg .donut-back {
  stroke: #c3e9c1;
}
.donut-green svg .donut-fill {
  stroke: #00b500;
}
.donut-green svg .donut-title {
  fill: #003d00;
}
.donut-emerald svg .donut-back {
  stroke: #b2d5aa;
}
.donut-emerald svg .donut-fill {
  stroke: #50c878;
}
.donut-emerald svg .donut-title {
  fill: #246339;
}
.donut-blue svg .donut-back {
  stroke: #b4bdff;
}
.donut-blue svg .donut-fill {
  stroke: #5e87ff;
}
.donut-blue svg .donut-title {
  fill: #132a6f;
}
.donut-teal svg .donut-back {
  stroke: #bde2e4;
}
.donut-teal svg .donut-fill {
  stroke: #1ac5c5;
}
.donut-teal svg .donut-title {
  fill: #014848;
}
.donut-cyan svg .donut-back {
  stroke: #b0ccff;
}
.donut-cyan svg .donut-fill {
  stroke: #94b6ff;
}
.donut-cyan svg .donut-title {
  fill: #456c7e;
}
.donut-cobalt svg .donut-back {
  stroke: #9ed7ff;
}
.donut-cobalt svg .donut-fill {
  stroke: #0047ab;
}
.donut-cobalt svg .donut-title {
  fill: #001f54;
}
.donut-indigo svg .donut-back {
  stroke: #e6b6e6;
}
.donut-indigo svg .donut-fill {
  stroke: #6400a8;
}
.donut-indigo svg .donut-title {
  fill: #21003e;
}
.donut-almost svg .donut-back {
  stroke: #cdb2ff;
}
.donut-almost svg .donut-fill {
  stroke: #6a2ded;
}
.donut-almost svg .donut-title {
  fill: #2f0687;
}
.donut-violet svg .donut-back {
  stroke: #f7b4f5;
}
.donut-violet svg .donut-fill {
  stroke: #ee82ee;
}
.donut-violet svg .donut-title {
  fill: #773e77;
}
.donut-pink svg .donut-back {
  stroke: #ffbbc7;
}
.donut-pink svg .donut-fill {
  stroke: #ffc0cb;
}
.donut-pink svg .donut-title {
  fill: #805f65;
}
.donut-magenta svg .donut-back {
  stroke: #ffafff;
}
.donut-magenta svg .donut-fill {
  stroke: #ff00ff;
}
.donut-magenta svg .donut-title {
  fill: #800080;
}
.donut-crimson svg .donut-back {
  stroke: #ff9eb1;
}
.donut-crimson svg .donut-fill {
  stroke: #df0e38;
}
.donut-crimson svg .donut-title {
  fill: #6e0519;
}
.donut-red svg .donut-back {
  stroke: #ffaeae;
}
.donut-red svg .donut-fill {
  stroke: #ff0000;
}
.donut-red svg .donut-title {
  fill: #800000;
}
.donut-orange svg .donut-back {
  stroke: #ffe0ab;
}
.donut-orange svg .donut-fill {
  stroke: #ffa500;
}
.donut-orange svg .donut-title {
  fill: #805100;
}
.donut-amber svg .donut-back {
  stroke: #ffecae;
}
.donut-amber svg .donut-fill {
  stroke: #ffca2a;
}
.donut-amber svg .donut-title {
  fill: #805e00;
}
.donut-yellow svg .donut-back {
  stroke: #ffff93;
}
.donut-yellow svg .donut-fill {
  stroke: #ffe95e;
}
.donut-yellow svg .donut-title {
  fill: #bca826;
}
.donut-brown svg .donut-back {
  stroke: #ffd7a6;
}
.donut-brown svg .donut-fill {
  stroke: #ca773c;
}
.donut-brown svg .donut-title {
  fill: #42240f;
}
.donut-olive svg .donut-back {
  stroke: #eaf9b8;
}
.donut-olive svg .donut-fill {
  stroke: #a1a100;
}
.donut-olive svg .donut-title {
  fill: #3d3d00;
}
.donut-steel svg .donut-back {
  stroke: #d3d5d5;
}
.donut-steel svg .donut-fill {
  stroke: #7b91a6;
}
.donut-steel svg .donut-title {
  fill: #2e3841;
}
.donut-mauve svg .donut-back {
  stroke: #e3bcfb;
}
.donut-mauve svg .donut-fill {
  stroke: #e0afff;
}
.donut-mauve svg .donut-title {
  fill: #705680;
}
.donut-taupe svg .donut-back {
  stroke: #dac2ac;
}
.donut-taupe svg .donut-fill {
  stroke: #977e67;
}
.donut-taupe svg .donut-title {
  fill: #261e18;
}
.donut-champagne svg .donut-back {
  stroke: #ffe1bf;
}
.donut-champagne svg .donut-fill {
  stroke: #f7e6ca;
}
.donut-champagne svg .donut-title {
  fill: #7c7364;
}
.donut-khaki svg .donut-back {
  stroke: #ebe0b5;
}
.donut-khaki svg .donut-fill {
  stroke: #d5c58a;
}
.donut-khaki svg .donut-title {
  fill: #6a6142;
}
.donut-charcoal svg .donut-back {
  stroke: #cfcfcf;
}
.donut-charcoal svg .donut-fill {
  stroke: #989898;
}
.donut-charcoal svg .donut-title {
  fill: #202020;
}
.donut-bronze svg .donut-back {
  stroke: #ffd0a9;
}
.donut-bronze svg .donut-fill {
  stroke: #e48d3e;
}
.donut-bronze svg .donut-title {
  fill: #693c13;
}
.donut-windstorm svg .donut-back {
  stroke: #c2cee6;
}
.donut-windstorm svg .donut-fill {
  stroke: #799ed6;
}
.donut-windstorm svg .donut-title {
  fill: #304462;
}
.donut-nude svg .donut-back {
  stroke: #f7d6b6;
}
.donut-nude svg .donut-fill {
  stroke: #f7d9bc;
}
.donut-nude svg .donut-title {
  fill: #7c6c5d;
}
.donut-terracotta svg .donut-back {
  stroke: #ffbcac;
}
.donut-terracotta svg .donut-fill {
  stroke: #e35336;
}
.donut-terracotta svg .donut-title {
  fill: #712516;
}
.donut-coral svg .donut-back {
  stroke: #ffb495;
}
.donut-coral svg .donut-fill {
  stroke: #ff8559;
}
.donut-coral svg .donut-title {
  fill: #804028;
}
.donut-army svg .donut-back {
  stroke: #dedba6;
}
.donut-army svg .donut-fill {
  stroke: #5d6532;
}
.donut-army svg .donut-title {
  fill: #2a2f14;
}
.donut-seashell svg .donut-back {
  stroke: #ffcdc5;
}
.donut-seashell svg .donut-fill {
  stroke: #fff1e7;
}
.donut-seashell svg .donut-title {
  fill: #bfa89a;
}
.donut-sand svg .donut-back {
  stroke: #efe3b6;
}
.donut-sand svg .donut-fill {
  stroke: #f1e0ae;
}
.donut-sand svg .donut-title {
  fill: #8f8975;
}
.donut-primary svg .donut-back {
  stroke: #fee6e5;
}
.donut-primary svg .donut-fill {
  stroke: #f75553;
}
.donut-primary svg .donut-title {
  fill: #f75553;
}
.donut-secondary svg .donut-back {
  stroke: #ed632a;
}
.donut-secondary svg .donut-fill {
  stroke: #74290a;
}
.donut-secondary svg .donut-title {
  fill: #74290a;
}
.donut-tertiary svg .donut-back {
  stroke: #ffffff;
}
.donut-tertiary svg .donut-fill {
  stroke: #ffbebd;
}
.donut-tertiary svg .donut-title {
  fill: #ffbebd;
}
.donut-success svg .donut-back {
  stroke: #c4edd2;
}
.donut-success svg .donut-fill {
  stroke: #50c878;
}
.donut-success svg .donut-title {
  fill: #50c878;
}
.donut-alert svg .donut-back {
  stroke: #f88ea3;
}
.donut-alert svg .donut-fill {
  stroke: #df0e38;
}
.donut-alert svg .donut-title {
  fill: #df0e38;
}
.donut-warning svg .donut-back {
  stroke: #ffdb99;
}
.donut-warning svg .donut-fill {
  stroke: #ffa500;
}
.donut-warning svg .donut-title {
  fill: #ffa500;
}
.donut-info svg .donut-back {
  stroke: #dfebff;
}
.donut-info svg .donut-fill {
  stroke: #468cff;
}
.donut-info svg .donut-title {
  fill: #468cff;
}
.donut-dark svg .donut-back {
  stroke: #9d9d9d;
}
.donut-dark svg .donut-fill {
  stroke: #505050;
}
.donut-dark svg .donut-title {
  fill: #505050;
}
.donut-light svg .donut-back {
  stroke: #ffffff;
}
.donut-light svg .donut-fill {
  stroke: #f8f8f8;
}
.donut-light svg .donut-title {
  fill: #f8f8f8;
}

/* source/components/double-select-box/double-select-box.less */
:root {
  --double-select-border-radius: 4px;
  --double-select-border-color: var(--border-color);
  --double-select-item-background-active: #e6e6e6;
  --double-select-item-color-active: #191919;
  --double-select-item-background-hover: #e6e6e6;
  --double-select-item-color-hover: #191919;
}
.dark-side {
  --double-select-border-color: var(--border-color);
  --double-select-item-background-active: #2c2d30;
  --double-select-item-color-active: #efefef;
  --double-select-item-background-hover: #2c2d30;
  --double-select-item-color-hover: #efefef;
}
.double-select-box {
  display: flex;
  flex-flow: row nowrap;
}
.double-select-box select {
  display: none;
}
.double-select-box .controls {
  padding: 10px;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.double-select-box .controls .button {
  margin: 1px;
  font-size: 22px;
  vertical-align: middle;
}
.double-select-box .controls .button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-2px);
}
.double-select-box ul {
  display: block;
  position: relative;
  border: 1px solid var(--double-select-border-color);
  flex: 1 1 100%;
  margin: 0;
  overflow-y: auto;
  padding: 2px;
  border-radius: var(--double-select-border-radius);
}
.double-select-box ul li {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  cursor: default;
  padding: 4px 10px;
  font-size: 14px;
  user-select: none;
  border-radius: 4px;
  align-items: center;
  justify-content: flex-start;
}
.double-select-box ul li .icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.double-select-box ul li .icon * {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
}
.double-select-box ul li.active {
  background: var(--double-select-item-background-active);
  color: var(--double-select-item-color-active);
}
.double-select-box ul li:hover {
  background: var(--double-select-item-background-hover);
  color: var(--double-select-item-color-hover);
}

/* source/components/drag-items/drag-items.less */
.dragged-item {
  opacity: 0.3;
}
.drag-item-marker {
  position: absolute;
  top: 8px;
  left: 4px;
  height: 20px;
  width: 24px;
  background-color: transparent;
  cursor: move;
  border-top: 4px solid #ffffff;
}
.drag-item-marker::before,
.drag-item-marker::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
}
.drag-item-marker::before {
  top: 4px;
}
.drag-item-marker::after {
  top: 12px;
}
.drag-marker-dark .drag-item-marker {
  border-top-color: #1d1d1d;
}
.drag-marker-dark::before,
.drag-marker-dark::after {
  background-color: #1d1d1d;
}
.dragged-item-avatar {
  cursor: move;
  display: block;
  position: absolute;
  background-color: #5e87ff;
  opacity: 0.3;
  z-index: 500;
  box-shadow: inset -1px 0px 10px -4px #f75553;
}

/* source/components/draggable/draggable.less */
.draggable {
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px !important;
}

/* source/components/dropdown-button/dropdown-button.less */
:root {
  --dropdown-button-toggle-color: #000;
}
.dark-side {
  --dropdown-button-toggle-color: #fff;
}
.dropdown-button {
  display: inline-block;
  position: relative;
  width: auto;
  height: 36px;
  line-height: 1;
}
.dropdown-button .dropdown-toggle::before {
  border-color: var(--dropdown-button-toggle-color);
}

/* source/components/file/file.less */
:root {
  --file-height: 36px;
  --file-button-background: #ebebeb;
  --file-button-background-hover: #dadada;
  --file-button-color: #191919;
  --file-drop-zone-border-size: 4px;
  --file-drop-zone-border-type: dashed;
  --file-drop-zone-border-color: #858585;
  --file-drop-zone-background: #f5f5f5;
  --file-drop-zone-color: #191919;
  --file-drop-zone-hover-color: #070707;
  --file-drop-zone-drop-color: #94ff6a;
}
.dark-side {
  --file-button-background: #3a3b40;
  --file-button-background-hover: #484850;
  --file-button-color: #f3fcff;
  --file-drop-zone-border-size: 4px;
  --file-drop-zone-border-type: dashed;
  --file-drop-zone-border-color: #858585;
  --file-drop-zone-background: #2b2d30;
  --file-drop-zone-color: #dbdfe7;
  --file-drop-zone-hover-color: #dbdfe7;
  --file-drop-zone-drop-color: #94ff6a;
}
.file input,
.drop-zone input,
.file-button input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.file {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
}
.file .button {
  border: none;
  height: calc(100% - 4px);
  margin: 2px 2px 2px auto;
  background: var(--file-button-background);
  color: var(--file-button-color);
}
.file .button > * {
  height: 20px;
  line-height: 20px !important;
}
.file .button .icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.file .button:hover {
  background: var(--file-button-background-hover);
}
.file .caption {
  height: calc(100% - 4px);
  display: block;
  padding: 0 0.5rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.file.disabled .button {
  pointer-events: none;
  opacity: 0.45;
  background: transparent;
}
.file .prepend {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.file .prepend {
  order: 1;
}
.file .append {
  order: 4;
}
.file .caption {
  order: 2;
}
.file .button {
  order: 3;
}
.file.pill-input {
  --input-border-radius: calc(var(--input-height) * 0.44);
}
.file.pill-input .button {
  border-radius: var(--input-border-radius);
}
.drop-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
  height: auto;
  padding: 40px 0;
  outline: var(--file-drop-zone-border-size) var(--file-drop-zone-border-type) var(--file-drop-zone-border-color);
  outline-offset: -12px;
  background: var(--file-drop-zone-background);
  color: var(--file-drop-zone-color);
  transition: all 0.5s;
  position: relative;
}
.drop-zone .icon {
  font-family: "Segoe UI Symbol", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 64px;
  object-fit: cover;
}
.drop-zone .caption {
  margin-top: 10px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.drop-zone.focused,
.drop-zone:hover {
  outline-color: var(--file-drop-zone-hover-color) !important;
}
.drop-zone.drop-on {
  outline-color: #00b300;
}
.drop-zone .clear-button {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Segoe UI Symbol", serif;
  transform: scale(0);
  opacity: 0;
}
.drop-zone:hover .clear-button {
  opacity: 1;
  transform: scale(1);
}
.file[dir=rtl] .append,
.file.rtl .append {
  order: 1;
}
.file[dir=rtl] .prepend,
.file.rtl .prepend {
  order: 4;
}
.file[dir=rtl] .caption,
.file.rtl .caption {
  order: 3;
  text-align: right;
}
.file[dir=rtl] .button,
.file.rtl .button {
  order: 2;
  margin-left: 0;
  margin-right: auto;
}
.file.input-small {
  line-height: 28px;
  height: 28px;
}
.file.input-small .caption {
  font-size: 12px;
  line-height: 28px;
  height: 28px;
}
.file.input-small .button {
  height: 24px;
  margin: 1px 1px 1px auto;
}

/* source/components/flip-card/flip-card.less */
.flip-card .front,
.flip-card .back {
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  position: absolute;
  transition: transform 0.3s linear;
  top: 0;
  left: 0;
}
.flip-card .front {
  transform: perspective(600px) rotateY(0deg);
}
.flip-card .back {
  transform: perspective(600px) rotateY(180deg);
}
.flip-card.flip-horizontal .front {
  transform: perspective(600px) rotateX(0deg);
}
.flip-card.flip-horizontal .back {
  transform: perspective(600px) rotateX(180deg);
}
.flip-card.effect-on-hover:hover > .front,
.flip-card.effect-on-active.active > .front {
  transform: perspective(600px) rotateY(-180deg);
}
.flip-card.effect-on-hover:hover > .back,
.flip-card.effect-on-active.active > .back {
  transform: perspective(600px) rotateY(0deg);
}
.flip-card.effect-on-hover:hover.flip-horizontal > .front,
.flip-card.effect-on-active.active.flip-horizontal > .front {
  transform: perspective(600px) rotateX(-180deg);
}
.flip-card.effect-on-hover:hover.flip-horizontal > .back,
.flip-card.effect-on-active.active.flip-horizontal > .back {
  transform: perspective(600px) rotateX(0deg);
}

/* source/components/form/form.less */
form,
.form {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
}
.form-actions {
  margin: 1rem 0;
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}
.form-actions *:not(:last-child) {
  margin-right: 0.25rem;
}
.form-group {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.form-group + .form-group {
  margin-top: 1rem;
}
.inline-form {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: flex-start;
}
.inline-form > * {
  width: auto !important;
  margin: 0 0.5rem !important;
  flex-shrink: 1;
}
.inline-form > *:first-child {
  margin-left: 0 !important;
}
.inline-form .form-actions {
  border-top: none;
  padding-top: 0;
}
:root {
  --form-column-min-width: 200px;
  --form-gap-size: 1rem;
}
.grid-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--form-column-min-width), 1fr));
  grid-gap: var(--form-gap-size);
}
.grid-form .form-group {
  margin: 0;
}
.grid-form .form-actions {
  border-top: none;
  padding-top: 0;
}
label:has(input) {
  cursor: pointer;
}

/* source/components/gauge/gauge.less */
:root {
  --analog-gauge-start-angle: 235deg;
  --analog-gauge-range: 250deg;
  --analog-gauge-needle-height: 10cqi;
  --analog-gauge-needle-color: #4b4b4b;
  --analog-gauge-segment-color: #ddd;
  --analog-gauge-marks-color: #191919;
  --analog-gauge-value-color: #191919;
  --analog-gauge-label-color: #191919;
  --analog-gauge-values-bg: transparent;
  --analog-gauge-bdw: 10cqi;
  --analog-gauge-value-mark-w: 6ch;
  --analog-gauge-segments-w: 1deg;
  --analog-gauge-segments: 10;
}
.dark-side {
  --analog-gauge-needle-color: #e3e3e3;
  --analog-gauge-segment-color: #222;
  --analog-gauge-marks-color: #cfcfcf;
  --analog-gauge-value-color: #FFF;
  --analog-gauge-label-color: #FFF;
}
.analog-gauge {
  --_m: calc(100cqi/6);
  --_w: calc(100cqi / 3 * 2);
  --analog-gauge-bg:
    #009,
    #69f,
    #ff0,
    #f90,
    #f00 var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
  --analog-gauge-mask-circle:
    radial-gradient(
      circle at 50% 50%,
      #0000 calc(50cqi - var(--analog-gauge-bdw, 10cqi)),
      #000 0);
  --analog-gauge-mask-segment:
    repeating-conic-gradient(
      from var(--analog-gauge-start-angle, 235deg) at 50% 50%,
      #000 0 var(--analog-gauge-segments-w, 1deg),
      #0000 0 calc(var(--analog-gauge-range, 250deg) / var(--analog-gauge-segments, 5)));
  position: relative;
  display: grid;
  grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  inline-size: 100%;
  aspect-ratio: 1 / 1;
  container-type: inline-size;
  width: 100%;
}
.analog-gauge .gauge {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 50%;
  grid-area: 1 / 1 / 4 / 4;
  background: conic-gradient(from var(--analog-gauge-start-angle, 235deg), var(--analog-gauge-bg));
  mask: var(--analog-gauge-mask-circle), var(--analog-gauge-mask-segment, none);
  mask-composite: var(--analog-gauge-mask-composite, subtract);
  transition: background 0.5s ease-in-out, mask 0.5s ease-in-out;
}
.analog-gauge .needle {
  align-self: center;
  background: var(--analog-gauge-needle-color);
  clip-path: var(--analog-gauge-needle-cp, polygon(7.5% 50%, 78% 0%, 83% 35%, 83% 65%, 78% 100%));
  grid-area: 2 / 1 / 3 / 3;
  height: var(--analog-gauge-needle-height);
  isolation: isolate;
  mask:
    radial-gradient(
      circle at calc(100% - var(--_m)) 50%,
      #0000 0 2.5cqi,
      #FFF 2.5cqi);
  rotate: var(--_d, 0deg);
  transform-origin: calc(100% - var(--_m)) 50%;
  width: var(--_w);
  transition: rotate 0.5s ease-in-out;
}
.analog-gauge .value-marks {
  --_vw: calc(100cqi - (2 * var(--analog-gauge-bdw, 10cqi)));
  all: unset;
  aspect-ratio: 1;
  background: var(--analog-gauge-values-bg, #0000);
  border-radius: 50%;
  box-sizing: border-box;
  grid-area: 1 / 1 / 4 / 4;
  list-style: none;
  place-self: center;
  position: relative;
  width: var(--_vw);
}
.analog-gauge .value-marks .mark {
  --_r: calc((var(--_vw) - var(--analog-gauge-value-mark-w)) / 2);
  --_x: calc(var(--_r) + (var(--_r) * cos(var(--_d))));
  --_y: calc(var(--_r) + (var(--_r) * sin(var(--_d))));
  aspect-ratio: var(--analog-gauge-value-mark-asr, 1);
  color: var(--analog-gauge-marks-color);
  display: grid;
  font-size: var(--analog-gauge-value-mark-fs, 3cqi);
  font-weight: var(--analog-gauge-value-mark-fw, 400);
  left: var(--_x);
  place-content: center;
  position: absolute;
  top: var(--_y);
  width: var(--analog-gauge-value-mark-w);
}
.analog-gauge .value {
  grid-area: 3 / 2 / 4 / 3;
  isolation: isolate;
  place-self: start center;
  text-box: cap alphabetic;
  font-size: 15cqi;
  font-weight: 200;
  z-index: 1;
  color: var(--analog-gauge-value-color);
}
.analog-gauge .label,
.analog-gauge .label-min,
.analog-gauge .label-max {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5cqi;
  z-index: 1;
  color: var(--analog-gauge-label-color);
}
.analog-gauge .label {
  grid-area: 3 / 3 / 4 / 2;
  font-size: 7.5cqi;
  font-weight: 500;
  text-box: ex alphabetic;
}
.analog-gauge .label-min,
.analog-gauge .label-max {
  place-self: center;
}
.analog-gauge .label-min {
  grid-area: 3 / 1 / 4 / 2;
}
.analog-gauge .label-max {
  grid-area: 3 / 3 / 4 / 4;
}
.analog-gauge.theme-load {
  --analog-gauge-bg:
    #55AF33,
    #A0C61B,
    #F7E98E,
    #F6E301,
    #FAB60D,
    #F88D2F,
    #F76D00,
    #E53015,
    #D90E21,
    #D80010 var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
}
.analog-gauge.theme-sky {
  --analog-gauge-bg:
    #8CF,
    #6BF,
    #46E,
    #24C var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
}
.analog-gauge.theme-temp {
  --analog-gauge-bdw: 5cqi;
  --analog-gauge-bg:
    #69f,
    #f00 var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
}
.analog-gauge.theme-speed {
  --analog-gauge-bg:
    #12C2FC,
    #6CFFD4,
    #78FF80 var(--analog-gauge-value, 0%),
    var(--analog-gauge-segment-color) 0 var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
}
.analog-gauge.theme-battery {
  --analog-gauge-bdw: 7.5cqi;
  --analog-gauge-bg:
    red,
    orange,
    yellow,
    lightgreen,
    green var(--analog-gauge-range),
    #0000 0 var(--analog-gauge-range);
  --analog-gauge-label-ps: end center;
}
.analog-gauge.theme-rainbow {
  --_dg: calc(var(--analog-gauge-range) / var(--analog-gauge-segments));
  --analog-gauge-bdw: 25cqi;
  --analog-gauge-bg:
    #55AF33 var(--_dg),
    #A0C61B 0 calc(2 * var(--_dg)),
    #F7E98E 0 calc(3 * var(--_dg)),
    #F6E301 0 calc(4 * var(--_dg)),
    #FAB60D 0 calc(5 * var(--_dg)),
    #F88D2F 0 calc(6 * var(--_dg)),
    #F76D00 0 calc(7 * var(--_dg)),
    #E53015 0 calc(8 * var(--_dg)),
    #D90E21 0 calc(9 * var(--_dg)),
    #D80010 0 calc(10 * var(--_dg)),
    #0000 0 var(--analog-gauge-range);
}

/* source/components/github-box/github-box.less */
:root {
  --github-box-border-radius: 6px;
  --github-box-border-color: #d1d9e0;
  --github-box-background: #ffffff;
  --github-box-color: #191919;
  --github-box-header-background: #f7f8fa;
  --github-box-header-color: #191919;
}
.github-box {
  display: flex;
  flex-flow: column wrap;
  border-radius: var(--github-box-border-radius);
  border: 1px solid var(--github-box-border-color);
  font-size: 14px;
}
.github-box .box-header {
  background: var(--github-box-header-background);
  color: var(--github-box-header-color);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 8px 16px;
  gap: 6px;
  border-bottom: 1px solid;
  border-color: inherit;
  width: 100%;
  border-top-left-radius: var(--github-box-border-radius);
  border-top-right-radius: var(--github-box-border-radius);
}
.github-box .box-header .author {
  font-weight: 600;
}
.github-box .box-header .time {
  font-size: 12px;
}
.github-box .box-header .actions {
  display: flex;
  flex-flow: row nowrap;
  gap: 2px;
  align-items: center;
}
.github-box .box-header .actions .more-button .dropdown-caret {
  display: none;
}
.github-box .box-header .prc {
  display: flex;
  margin-left: auto;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 12px;
  border: 1px solid;
}
.github-box .box-content {
  padding: 1rem;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  width: calc(100% - 1rem);
}
.github-box.-default {
  border-color: #54aeff66;
}
.github-box.-default .prc {
  border-color: #54aeff;
}
.github-box.-default .ticket-box__header {
  background: #def3fe;
  color: #191919;
}
.github-box.-default .button {
  background: #54aeff;
  color: #fff;
}
.box-lime {
  border-color: #AEFD6C;
}
.box-lime .box-header {
  background: #f2ffe7;
  color: #557f32;
}
.box-lime .prc {
  border-color: #AEFD6C;
}
.box-green {
  border-color: #00b500;
}
.box-green .box-header {
  background: #e7f6e6;
  color: #003d00;
}
.box-green .prc {
  border-color: #00b500;
}
.box-emerald {
  border-color: #50c878;
}
.box-emerald .box-header {
  background: #d1e6cc;
  color: #246339;
}
.box-emerald .prc {
  border-color: #50c878;
}
.box-blue {
  border-color: #5e87ff;
}
.box-blue .box-header {
  background: #e7eaff;
  color: #132a6f;
}
.box-blue .prc {
  border-color: #5e87ff;
}
.box-teal {
  border-color: #1ac5c5;
}
.box-teal .box-header {
  background: #e1f2f3;
  color: #014848;
}
.box-teal .prc {
  border-color: #1ac5c5;
}
.box-cyan {
  border-color: #94b6ff;
}
.box-cyan .box-header {
  background: #e3edff;
  color: #456c7e;
}
.box-cyan .prc {
  border-color: #94b6ff;
}
.box-cobalt {
  border-color: #0047ab;
}
.box-cobalt .box-header {
  background: #d1ecff;
  color: #001f54;
}
.box-cobalt .prc {
  border-color: #0047ab;
}
.box-indigo {
  border-color: #6400a8;
}
.box-indigo .box-header {
  background: #f3dcf3;
  color: #21003e;
}
.box-indigo .prc {
  border-color: #6400a8;
}
.box-almost {
  border-color: #6a2ded;
}
.box-almost .box-header {
  background: #eee5ff;
  color: #2f0687;
}
.box-almost .prc {
  border-color: #6a2ded;
}
.box-violet {
  border-color: #ee82ee;
}
.box-violet .box-header {
  background: #fce2fb;
  color: #773e77;
}
.box-violet .prc {
  border-color: #ee82ee;
}
.box-pink {
  border-color: #ffc0cb;
}
.box-pink .box-header {
  background: #ffeef1;
  color: #805f65;
}
.box-pink .prc {
  border-color: #ffc0cb;
}
.box-magenta {
  border-color: #ff00ff;
}
.box-magenta .box-header {
  background: #ffe2ff;
  color: #800080;
}
.box-magenta .prc {
  border-color: #ff00ff;
}
.box-crimson {
  border-color: #df0e38;
}
.box-crimson .box-header {
  background: #ffd1da;
  color: #6e0519;
}
.box-crimson .prc {
  border-color: #df0e38;
}
.box-red {
  border-color: #ff0000;
}
.box-red .box-header {
  background: #ffe1e1;
  color: #800000;
}
.box-red .prc {
  border-color: #ff0000;
}
.box-orange {
  border-color: #ffa500;
}
.box-orange .box-header {
  background: #fff3de;
  color: #805100;
}
.box-orange .prc {
  border-color: #ffa500;
}
.box-amber {
  border-color: #ffca2a;
}
.box-amber .box-header {
  background: #fff8e1;
  color: #805e00;
}
.box-amber .prc {
  border-color: #ffca2a;
}
.box-yellow {
  border-color: #ffe95e;
}
.box-yellow .box-header {
  background: #ffffc6;
  color: #bca826;
}
.box-yellow .prc {
  border-color: #ffe95e;
}
.box-brown {
  border-color: #ca773c;
}
.box-brown .box-header {
  background: #ffeed9;
  color: #42240f;
}
.box-brown .prc {
  border-color: #ca773c;
}
.box-olive {
  border-color: #a1a100;
}
.box-olive .box-header {
  background: #f8fde7;
  color: #3d3d00;
}
.box-olive .prc {
  border-color: #a1a100;
}
.box-steel {
  border-color: #7b91a6;
}
.box-steel .box-header {
  background: #edeeee;
  color: #2e3841;
}
.box-steel .prc {
  border-color: #7b91a6;
}
.box-mauve {
  border-color: #e0afff;
}
.box-mauve .box-header {
  background: #f7ecfe;
  color: #705680;
}
.box-mauve .prc {
  border-color: #e0afff;
}
.box-taupe {
  border-color: #977e67;
}
.box-taupe .box-header {
  background: #eadccf;
  color: #261e18;
}
.box-taupe .prc {
  border-color: #977e67;
}
.box-champagne {
  border-color: #f7e6ca;
}
.box-champagne .box-header {
  background: #fff9f2;
  color: #7c7364;
}
.box-champagne .prc {
  border-color: #f7e6ca;
}
.box-khaki {
  border-color: #d5c58a;
}
.box-khaki .box-header {
  background: #f6f1dd;
  color: #6a6142;
}
.box-khaki .prc {
  border-color: #d5c58a;
}
.box-charcoal {
  border-color: #989898;
}
.box-charcoal .box-header {
  background: #e8e8e8;
  color: #202020;
}
.box-charcoal .prc {
  border-color: #989898;
}
.box-bronze {
  border-color: #e48d3e;
}
.box-bronze .box-header {
  background: #ffecdc;
  color: #693c13;
}
.box-bronze .prc {
  border-color: #e48d3e;
}
.box-windstorm {
  border-color: #799ed6;
}
.box-windstorm .box-header {
  background: #e6ebf5;
  color: #304462;
}
.box-windstorm .prc {
  border-color: #799ed6;
}
.box-nude {
  border-color: #f7d9bc;
}
.box-nude .box-header {
  background: #fcf0e4;
  color: #7c6c5d;
}
.box-nude .prc {
  border-color: #f7d9bc;
}
.box-terracotta {
  border-color: #e35336;
}
.box-terracotta .box-header {
  background: #ffe5df;
  color: #712516;
}
.box-terracotta .prc {
  border-color: #e35336;
}
.box-coral {
  border-color: #ff8559;
}
.box-coral .box-header {
  background: #ffd8c8;
  color: #804028;
}
.box-coral .prc {
  border-color: #ff8559;
}
.box-army {
  border-color: #5d6532;
}
.box-army .box-header {
  background: #eceacb;
  color: #2a2f14;
}
.box-army .prc {
  border-color: #5d6532;
}
.box-seashell {
  border-color: #fff1e7;
}
.box-seashell .box-header {
  background: #fff9f8;
  color: #bfa89a;
}
.box-seashell .prc {
  border-color: #fff1e7;
}
.box-sand {
  border-color: #f1e0ae;
}
.box-sand .box-header {
  background: #f8f3e0;
  color: #8f8975;
}
.box-sand .prc {
  border-color: #f1e0ae;
}

/* source/components/grid/grid.less */
:root {
  --grid-gap: 16px;
}
.grid {
  display: flex;
  flex-flow: column;
  position: relative;
}
.row.gap-1 {
  --grid-gap: 4px;
}
.row.gap-2 {
  --grid-gap: 8px;
}
.row.gap-3 {
  --grid-gap: 12px;
}
.row.gap-4 {
  --grid-gap: 16px;
}
.row.gap-5 {
  --grid-gap: 20px;
}
.row.gap-6 {
  --grid-gap: 24px;
}
.row.gap-7 {
  --grid-gap: 28px;
}
.row.gap-8 {
  --grid-gap: 32px;
}
.row.gap-9 {
  --grid-gap: 36px;
}
.row.gap-10 {
  --grid-gap: 40px;
}
.row.gap-11 {
  --grid-gap: 44px;
}
.row.gap-12 {
  --grid-gap: 48px;
}
.row {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: var(--grid-gap);
  justify-content: flex-start;
  margin-right: calc(-1 * var(--grid-gap));
  container-type: inline-size;
  container-name: row;
  min-width: 100%;
}
.row + .row {
  margin-top: var(--grid-gap);
}
.row > * {
  position: relative;
  display: block;
  padding: 0;
  min-height: 1px;
  flex: 0 0 100%;
  max-width: calc(100% - var(--grid-gap));
}
.cell-auto,
.col-auto,
.v-cell-auto,
.v-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.cell-0,
.col-0 {
  flex: 0 0 calc(8.333335% * 0 - var(--grid-gap));
  max-width: calc(8.333335% * 0 - var(--grid-gap));
}
.offset-0 {
  margin-left: calc(8.333335% * 0);
}
.cell-1,
.col-1 {
  flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
  max-width: calc(8.333335% * 1 - var(--grid-gap));
}
.offset-1 {
  margin-left: calc(8.333335% * 1);
}
.cell-2,
.col-2 {
  flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
  max-width: calc(8.333335% * 2 - var(--grid-gap));
}
.offset-2 {
  margin-left: calc(8.333335% * 2);
}
.cell-3,
.col-3 {
  flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
  max-width: calc(8.333335% * 3 - var(--grid-gap));
}
.offset-3 {
  margin-left: calc(8.333335% * 3);
}
.cell-4,
.col-4 {
  flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
  max-width: calc(8.333335% * 4 - var(--grid-gap));
}
.offset-4 {
  margin-left: calc(8.333335% * 4);
}
.cell-5,
.col-5 {
  flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
  max-width: calc(8.333335% * 5 - var(--grid-gap));
}
.offset-5 {
  margin-left: calc(8.333335% * 5);
}
.cell-6,
.col-6 {
  flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
  max-width: calc(8.333335% * 6 - var(--grid-gap));
}
.offset-6 {
  margin-left: calc(8.333335% * 6);
}
.cell-7,
.col-7 {
  flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
  max-width: calc(8.333335% * 7 - var(--grid-gap));
}
.offset-7 {
  margin-left: calc(8.333335% * 7);
}
.cell-8,
.col-8 {
  flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
  max-width: calc(8.333335% * 8 - var(--grid-gap));
}
.offset-8 {
  margin-left: calc(8.333335% * 8);
}
.cell-9,
.col-9 {
  flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
  max-width: calc(8.333335% * 9 - var(--grid-gap));
}
.offset-9 {
  margin-left: calc(8.333335% * 9);
}
.cell-10,
.col-10 {
  flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
  max-width: calc(8.333335% * 10 - var(--grid-gap));
}
.offset-10 {
  margin-left: calc(8.333335% * 10);
}
.cell-11,
.col-11 {
  flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
  max-width: calc(8.333335% * 11 - var(--grid-gap));
}
.offset-11 {
  margin-left: calc(8.333335% * 11);
}
.cell-12,
.col-12 {
  flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
  max-width: calc(8.333335% * 12 - var(--grid-gap));
}
.offset-12 {
  margin-left: calc(8.333335% * 12);
}
@container (min-width: 0) {
  .cell-fs-half,
  .col-fs-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-fs-one-fifth,
  .col-fs-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-fs-two-fifth,
  .col-fs-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-fs-three-fifth,
  .col-fs-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-fs-four-fifth,
  .col-fs-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-fs,
  .col-fs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-fs-auto,
  .col-fs-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-fs-1,
  .col-fs-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-fs-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-fs-2,
  .col-fs-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-fs-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-fs-3,
  .col-fs-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-fs-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-fs-4,
  .col-fs-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-fs-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-fs-5,
  .col-fs-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-fs-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-fs-6,
  .col-fs-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-fs-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-fs-7,
  .col-fs-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-fs-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-fs-8,
  .col-fs-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-fs-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-fs-9,
  .col-fs-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-fs-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-fs-10,
  .col-fs-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-fs-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-fs-11,
  .col-fs-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-fs-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-fs-12,
  .col-fs-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-fs-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 360px) {
  .cell-xs-half,
  .col-xs-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-xs-one-fifth,
  .col-xs-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-xs-two-fifth,
  .col-xs-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-xs-three-fifth,
  .col-xs-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-xs-four-fifth,
  .col-xs-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-xs,
  .col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-xs-auto,
  .col-xs-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-xs-1,
  .col-xs-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-xs-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-xs-2,
  .col-xs-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-xs-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-xs-3,
  .col-xs-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-xs-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-xs-4,
  .col-xs-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-xs-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-xs-5,
  .col-xs-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-xs-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-xs-6,
  .col-xs-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-xs-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-xs-7,
  .col-xs-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-xs-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-xs-8,
  .col-xs-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-xs-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-xs-9,
  .col-xs-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-xs-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-xs-10,
  .col-xs-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-xs-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-xs-11,
  .col-xs-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-xs-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-xs-12,
  .col-xs-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-xs-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 576px) {
  .cell-sm-half,
  .col-sm-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-sm-one-fifth,
  .col-sm-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-sm-two-fifth,
  .col-sm-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-sm-three-fifth,
  .col-sm-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-sm-four-fifth,
  .col-sm-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-sm,
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-sm-auto,
  .col-sm-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-sm-1,
  .col-sm-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-sm-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-sm-2,
  .col-sm-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-sm-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-sm-3,
  .col-sm-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-sm-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-sm-4,
  .col-sm-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-sm-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-sm-5,
  .col-sm-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-sm-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-sm-6,
  .col-sm-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-sm-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-sm-7,
  .col-sm-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-sm-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-sm-8,
  .col-sm-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-sm-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-sm-9,
  .col-sm-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-sm-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-sm-10,
  .col-sm-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-sm-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-sm-11,
  .col-sm-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-sm-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-sm-12,
  .col-sm-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-sm-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 640px) {
  .cell-ld-half,
  .col-ld-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-ld-one-fifth,
  .col-ld-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-ld-two-fifth,
  .col-ld-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-ld-three-fifth,
  .col-ld-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-ld-four-fifth,
  .col-ld-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-ld,
  .col-ld {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-ld-auto,
  .col-ld-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-ld-1,
  .col-ld-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-ld-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-ld-2,
  .col-ld-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-ld-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-ld-3,
  .col-ld-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-ld-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-ld-4,
  .col-ld-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-ld-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-ld-5,
  .col-ld-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-ld-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-ld-6,
  .col-ld-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-ld-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-ld-7,
  .col-ld-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-ld-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-ld-8,
  .col-ld-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-ld-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-ld-9,
  .col-ld-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-ld-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-ld-10,
  .col-ld-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-ld-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-ld-11,
  .col-ld-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-ld-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-ld-12,
  .col-ld-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-ld-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 768px) {
  .cell-md-half,
  .col-md-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-md-one-fifth,
  .col-md-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-md-two-fifth,
  .col-md-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-md-three-fifth,
  .col-md-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-md-four-fifth,
  .col-md-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-md,
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-md-auto,
  .col-md-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-md-1,
  .col-md-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-md-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-md-2,
  .col-md-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-md-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-md-3,
  .col-md-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-md-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-md-4,
  .col-md-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-md-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-md-5,
  .col-md-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-md-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-md-6,
  .col-md-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-md-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-md-7,
  .col-md-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-md-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-md-8,
  .col-md-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-md-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-md-9,
  .col-md-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-md-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-md-10,
  .col-md-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-md-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-md-11,
  .col-md-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-md-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-md-12,
  .col-md-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-md-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 992px) {
  .cell-lg-half,
  .col-lg-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-lg-one-fifth,
  .col-lg-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-lg-two-fifth,
  .col-lg-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-lg-three-fifth,
  .col-lg-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-lg-four-fifth,
  .col-lg-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-lg,
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-lg-auto,
  .col-lg-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-lg-1,
  .col-lg-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-lg-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-lg-2,
  .col-lg-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-lg-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-lg-3,
  .col-lg-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-lg-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-lg-4,
  .col-lg-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-lg-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-lg-5,
  .col-lg-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-lg-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-lg-6,
  .col-lg-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-lg-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-lg-7,
  .col-lg-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-lg-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-lg-8,
  .col-lg-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-lg-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-lg-9,
  .col-lg-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-lg-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-lg-10,
  .col-lg-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-lg-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-lg-11,
  .col-lg-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-lg-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-lg-12,
  .col-lg-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-lg-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 1200px) {
  .cell-xl-half,
  .col-xl-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-xl-one-fifth,
  .col-xl-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-xl-two-fifth,
  .col-xl-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-xl-three-fifth,
  .col-xl-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-xl-four-fifth,
  .col-xl-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-xl,
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-xl-auto,
  .col-xl-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-xl-1,
  .col-xl-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-xl-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-xl-2,
  .col-xl-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-xl-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-xl-3,
  .col-xl-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-xl-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-xl-4,
  .col-xl-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-xl-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-xl-5,
  .col-xl-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-xl-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-xl-6,
  .col-xl-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-xl-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-xl-7,
  .col-xl-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-xl-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-xl-8,
  .col-xl-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-xl-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-xl-9,
  .col-xl-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-xl-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-xl-10,
  .col-xl-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-xl-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-xl-11,
  .col-xl-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-xl-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-xl-12,
  .col-xl-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-xl-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 1400px) {
  .cell-xxl-half,
  .col-xxl-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-xxl-one-fifth,
  .col-xxl-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-xxl-two-fifth,
  .col-xxl-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-xxl-three-fifth,
  .col-xxl-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-xxl-four-fifth,
  .col-xxl-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-xxl,
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-xxl-auto,
  .col-xxl-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-xxl-1,
  .col-xxl-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-xxl-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-xxl-2,
  .col-xxl-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-xxl-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-xxl-3,
  .col-xxl-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-xxl-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-xxl-4,
  .col-xxl-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-xxl-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-xxl-5,
  .col-xxl-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-xxl-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-xxl-6,
  .col-xxl-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-xxl-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-xxl-7,
  .col-xxl-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-xxl-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-xxl-8,
  .col-xxl-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-xxl-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-xxl-9,
  .col-xxl-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-xxl-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-xxl-10,
  .col-xxl-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-xxl-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-xxl-11,
  .col-xxl-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-xxl-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-xxl-12,
  .col-xxl-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-xxl-12 {
    margin-left: calc(8.333335% * 12);
  }
}
@container (min-width: 2000px) {
  .cell-xxxl-half,
  .col-xxxl-half {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cell-xxxl-one-fifth,
  .col-xxxl-one-fifth {
    flex: 0 0 calc(20% - (var(--grid-gap)));
    max-width: calc(20% - (var(--grid-gap)));
  }
  .cell-xxxl-two-fifth,
  .col-xxxl-two-fifth {
    flex: 0 0 calc(40% - (var(--grid-gap)));
    max-width: calc(40% - (var(--grid-gap)));
  }
  .cell-xxxl-three-fifth,
  .col-xxxl-three-fifth {
    flex: 0 0 calc(60% - (var(--grid-gap)));
    max-width: calc(60% - (var(--grid-gap)));
  }
  .cell-xxxl-four-fifth,
  .col-xxxl-four-fifth {
    flex: 0 0 calc(80% - (var(--grid-gap)));
    max-width: calc(80% - (var(--grid-gap)));
  }
  .cell-xxxl,
  .col-xxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .cell-xxxl-auto,
  .col-xxxl-auto {
    flex: 0 0 auto;
    max-width: none;
  }
  .cell-xxxl-1,
  .col-xxxl-1 {
    flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
    max-width: calc(8.333335% * 1 - var(--grid-gap));
  }
  .offset-xxxl-1 {
    margin-left: calc(8.333335% * 1);
  }
  .cell-xxxl-2,
  .col-xxxl-2 {
    flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
    max-width: calc(8.333335% * 2 - var(--grid-gap));
  }
  .offset-xxxl-2 {
    margin-left: calc(8.333335% * 2);
  }
  .cell-xxxl-3,
  .col-xxxl-3 {
    flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
    max-width: calc(8.333335% * 3 - var(--grid-gap));
  }
  .offset-xxxl-3 {
    margin-left: calc(8.333335% * 3);
  }
  .cell-xxxl-4,
  .col-xxxl-4 {
    flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
    max-width: calc(8.333335% * 4 - var(--grid-gap));
  }
  .offset-xxxl-4 {
    margin-left: calc(8.333335% * 4);
  }
  .cell-xxxl-5,
  .col-xxxl-5 {
    flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
    max-width: calc(8.333335% * 5 - var(--grid-gap));
  }
  .offset-xxxl-5 {
    margin-left: calc(8.333335% * 5);
  }
  .cell-xxxl-6,
  .col-xxxl-6 {
    flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
    max-width: calc(8.333335% * 6 - var(--grid-gap));
  }
  .offset-xxxl-6 {
    margin-left: calc(8.333335% * 6);
  }
  .cell-xxxl-7,
  .col-xxxl-7 {
    flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
    max-width: calc(8.333335% * 7 - var(--grid-gap));
  }
  .offset-xxxl-7 {
    margin-left: calc(8.333335% * 7);
  }
  .cell-xxxl-8,
  .col-xxxl-8 {
    flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
    max-width: calc(8.333335% * 8 - var(--grid-gap));
  }
  .offset-xxxl-8 {
    margin-left: calc(8.333335% * 8);
  }
  .cell-xxxl-9,
  .col-xxxl-9 {
    flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
    max-width: calc(8.333335% * 9 - var(--grid-gap));
  }
  .offset-xxxl-9 {
    margin-left: calc(8.333335% * 9);
  }
  .cell-xxxl-10,
  .col-xxxl-10 {
    flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
    max-width: calc(8.333335% * 10 - var(--grid-gap));
  }
  .offset-xxxl-10 {
    margin-left: calc(8.333335% * 10);
  }
  .cell-xxxl-11,
  .col-xxxl-11 {
    flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
    max-width: calc(8.333335% * 11 - var(--grid-gap));
  }
  .offset-xxxl-11 {
    margin-left: calc(8.333335% * 11);
  }
  .cell-xxxl-12,
  .col-xxxl-12 {
    flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
    max-width: calc(8.333335% * 12 - var(--grid-gap));
  }
  .offset-xxxl-12 {
    margin-left: calc(8.333335% * 12);
  }
}
.no-gap {
  --grid-gap: 0px;
}

/* source/components/h-menu/h-menu.less */
.h-menu {
  list-style: none inside;
  display: block;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1d1d1d;
}
.h-menu::after {
  display: block;
  clear: both;
  content: "";
}
.h-menu > li,
.h-menu > li > a {
  display: block;
  position: relative;
}
.h-menu > li {
  background-color: inherit;
  color: inherit;
  float: left;
}
.h-menu > li:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.h-menu > li:hover > a,
.h-menu > li:hover .icon {
  color: inherit;
}
.h-menu > li > a {
  font-weight: normal;
  color: inherit;
  font-size: 1rem;
  outline: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: none;
  background-color: inherit;
  white-space: nowrap;
}
.h-menu > li > a:hover {
  text-decoration: none;
}
.h-menu > li > a.dropdown-toggle {
  padding-right: 2rem !important;
}
.h-menu > li > a.dropdown-toggle::before {
  margin-left: -1.25rem;
}
.h-menu.no-hover > li > a {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: #6a6a6a;
}
.h-menu.no-hover > li:hover,
.h-menu.no-hover > li > a:hover {
  background-color: transparent;
  color: #1d1d1d;
}
.h-menu.large > li > a {
  padding: 1.125rem 1.625rem;
  font-size: 2rem;
}
.h-menu.large > li > a.dropdown-toggle {
  padding-right: 2.5rem !important;
}
.h-menu.large > li > a.dropdown-toggle::before {
  height: 0.625rem;
  width: 0.625rem;
  margin-left: -1.75rem;
}
.h-menu > .divider {
  display: none;
}
.h-menu.mega {
  position: relative;
}
.h-menu.mega > li {
  position: static;
}
.h-menu.mega > li.active-container {
  background-color: inherit;
}
.h-menu.mega > li.active-container a {
  background-color: inherit;
}
.h-menu.mega .mega-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  background-color: inherit;
  display: none;
  color: inherit;
  z-index: 1000;
  box-shadow: 2px 2px 2px 0 rgba(29, 29, 29, 0.4);
}
.h-menu.mega .mega-container * {
  color: inherit;
}

/* source/components/hero/hero.less */
:root {
  --hero-background: #ffffff;
  --hero-color: #191919;
}
.dark-side {
  --hero-background: #1e1f22;
  --hero-color: #dbdfe7;
}
.hero {
  padding: 40px 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: var(--hero-background);
  color: var(--hero-color);
}
@media all and (min-width: 768px) {
  .hero {
    padding: 160px 80px;
  }
}

/* source/components/hint/hint.less */
:root {
  --hint-z-index: 1070;
  --hint-border-radius: 6px;
  --hint-background: #FFFCC0;
  --hint-color: #1d1d1d;
}
.dark-side {
  --hint-background: #26282e;
  --hint-color: #ffffff;
}
.hint {
  display: block;
  position: fixed;
  z-index: var(--hint-z-index);
  background-color: var(--hint-background);
  color: var(--hint-color);
  font-size: 14px;
  padding: 10px;
  border-radius: var(--hint-border-radius);
  box-shadow: 2px 2px 5px 0 var(--shadow-color);
}

/* source/components/hover-box/hover-box.less */
:root {
  --hover-box-effect-color: hsla(0, 0%, 80%, 0.56);
}
.dark-side {
  --hover-box-effect-color: hsla(234, 78%, 62%, 0.26);
}
.hover-box {
  --x: 0;
  --y: 0;
  --size: 0;
  position: relative;
  overflow: hidden;
  border-color: var(--hover-box-effect-color);
  transition: border-color 0.5s ease;
}
@media (hover: hover) {
  .hover-box:hover {
    border-color: var(--hover-box-effect-color);
  }
  .hover-box:hover::before {
    content: "";
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: calc(4 * var(--size));
    height: calc(4 * var(--size));
    background: radial-gradient(var(--hover-box-effect-color), transparent 40%);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease;
    pointer-events: none;
  }
}

/* source/components/icon-box/icon-box.less */
:root {
  --icon-box-border-radius: 6px;
  --icon-box-background: var(--default-background);
  --icon-box-color: var(--default-color);
  --icon-box-border-color: var(--border-color);
  --icon-box-icon-background: #f4f4f4;
  --icon-box-icon-color: var(--default-color);
}
.dark-side {
  --icon-box-background: var(--default-background);
  --icon-box-color: #dbdfe7;
  --icon-box-border-color: var(--border-color);
  --icon-box-icon-background: #515151;
  --icon-box-icon-color: var(--default-color);
}
.icon-box,
.icon-box2,
.icon-box3 {
  height: 90px;
  display: flex;
  flex-flow: row nowrap;
  background: var(--icon-box-background);
  color: var(--icon-box-color);
  border: 1px solid var(--icon-box-border-color);
  border-radius: var(--icon-box-border-radius);
  overflow: hidden;
  position: relative;
}
.icon-box .icon,
.icon-box2 .icon,
.icon-box3 .icon,
.icon-box .content,
.icon-box2 .content,
.icon-box3 .content {
  position: relative;
}
.icon-box .title,
.icon-box2 .title,
.icon-box3 .title {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.icon-box .subtitle,
.icon-box2 .subtitle,
.icon-box3 .subtitle {
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid var(--icon-box-border-color);
  white-space: nowrap;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.icon-box .value,
.icon-box2 .value,
.icon-box3 .value {
  font-size: 24px;
  font-weight: 700;
  margin: 4px 0 10px 0;
  white-space: nowrap;
}
.icon-box .icon {
  height: 90px;
  width: 90px;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--icon-box-icon-background);
}
.icon-box .icon > * {
  font-size: 45px;
  width: 45px;
  height: 45px;
  line-height: 1;
}
.icon-box .content {
  line-height: 1.2;
  display: block;
  width: 100%;
  background-color: inherit;
  padding: 1rem;
}
.icon-box .title {
  text-transform: uppercase;
}
.icon-box2,
.icon-box3 {
  height: auto;
}
.icon-box2 .icon,
.icon-box3 .icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--icon-box-icon-background);
  color: var(--icon-box-icon-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}
.icon-box2 .icon *,
.icon-box3 .icon * {
  font-size: 24px;
  width: 24px;
  height: 24px;
}
.icon-box2 .content,
.icon-box3 .content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  width: 100%;
}
.icon-box2 .title,
.icon-box3 .title {
  order: 1;
}
.icon-box2 .value,
.icon-box3 .value {
  order: 2;
  margin: 0;
}
.icon-box2 .subtitle,
.icon-box3 .subtitle {
  order: 3;
  margin-top: 1rem;
}
.icon-box3 .icon {
  right: auto;
  left: 1rem;
  border-radius: 6px;
}
.icon-box3 .title,
.icon-box3 .value {
  text-align: right;
  margin-left: 60px;
}
.icon-box3 .value {
  order: 1;
}
.icon-box3 .title {
  order: 2;
}
.icon-box3 .subtitle {
  order: 3;
}
.icon-box4 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  border-radius: var(--icon-box-border-radius);
  border: 1px solid var(--icon-box-border-color);
  background: var(--icon-box-background);
  color: var(--icon-box-color);
  padding: 1rem;
}
.icon-box4 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--icon-box-border-color);
  background: var(--icon-box-icon-background);
  color: var(--icon-box-icon-color);
  margin-right: 1rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.icon-box4 .icon * {
  font-size: 60px;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
.icon-box4 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon-box4 .content .title {
  font-size: 12px;
  font-weight: 400;
}
.icon-box4 .content .value {
  font-size: 16px;
  font-weight: 700;
}

/* source/components/image-button/image-button.less */
:root {
  --image-button-font-size: 14px;
  --image-button-border-radius: 4px;
  --image-button-background: #f4f4f4;
  --image-button-color: var(--default-color);
  --image-button-icon-background: #929fa6;
  --image-button-icon-color: #ffffff;
  --image-button-icon-background-hover: #7da0b3;
  --image-button-icon-color-hover: #ffffff;
}
.dark-side {
  --image-button-background: #4a4a4a;
  --image-button-color: var(--default-color);
  --image-button-icon-background: #2e2e2e;
  --image-button-icon-color: #ffffff;
  --image-button-icon-background-hover: #373737;
  --image-button-icon-color-hover: #ffffff;
}
.image-button {
  --control-height: var(--control-height-normal);
  display: inline-flex;
  transition: all 0.15s ease-in-out;
  background: var(--image-button-background);
  color: var(--image-button-color);
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  outline: none;
  position: relative;
  font-size: var(--image-button-font-size);
  padding: 0 0.5rem 0 0;
  align-items: center;
  height: var(--control-height);
  font-weight: 400;
  border-radius: var(--image-button-border-radius);
  overflow: hidden;
  gap: 0;
}
.image-button:hover .icon {
  background: var(--image-button-icon-background-hover);
  color: var(--image-button-icon-color-hover);
}
.image-button .icon,
.image-button .caption {
  transition: all 0.3s ease-in-out;
}
.image-button .icon {
  width: var(--control-height);
  height: var(--control-height);
  line-height: var(--control-height);
  font-size: inherit;
  background: var(--image-button-icon-background);
  color: var(--image-button-icon-color);
  order: 1;
  text-align: center;
}
.image-button .caption {
  margin-left: 0.5rem;
  text-align: left;
  color: inherit;
  order: 2;
  font-weight: 400;
}
.image-button .caption small {
  display: block;
  font-size: 0.8rem;
}
.image-button.icon-right {
  padding: 0 0 0 0.5rem;
}
.image-button.icon-right .icon {
  order: 2;
}
.image-button.icon-right .caption {
  order: 1;
  margin-left: 0;
  margin-right: 0.5rem;
}
.image-button:focus,
.image-button:hover,
.image-button.focus {
  text-decoration: none;
}
.image-button:active {
  box-shadow: none;
  outline: 0;
}
.image-button.disabled,
.image-button:disabled {
  opacity: 0.65;
}
.image-button.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--border-color);
}
.image-button.primary {
  background: #fa9d9c !important;
}
.image-button.primary .icon {
  background: #f75553 !important;
  color: #ffffff !important;
}
.image-button.primary:hover .icon {
  background: #f63d3b !important;
}
.image-button.secondary {
  background: #ba4210 !important;
}
.image-button.secondary .icon {
  background: #74290a !important;
  color: #ffffff !important;
}
.image-button.secondary:hover .icon {
  background: #5d2108 !important;
}
.image-button.tertiary {
  background: #ffffff !important;
}
.image-button.tertiary .icon {
  background: #ffbebd !important;
  color: #ffffff !important;
}
.image-button.tertiary:hover .icon {
  background: #fcbfbe !important;
}
.image-button.success {
  background: #8adaa5 !important;
}
.image-button.success .icon {
  background: #50c878 !important;
  color: #ffffff !important;
}
.image-button.success:hover .icon {
  background: #3dc269 !important;
}
.image-button.alert {
  background: #f34669 !important;
}
.image-button.alert .icon {
  background: #df0e38 !important;
  color: #ffffff !important;
}
.image-button.alert:hover .icon {
  background: #c70c32 !important;
}
.image-button.warning {
  background: #ffc04d !important;
}
.image-button.warning .icon {
  background: #ffa500 !important;
  color: #ffffff !important;
}
.image-button.warning:hover .icon {
  background: #e69500 !important;
}
.image-button.info {
  background: #93bcff !important;
}
.image-button.info .icon {
  background: #468cff !important;
  color: #ffffff !important;
}
.image-button.info:hover .icon {
  background: #2c7cff !important;
}
.image-button.dark {
  background: #767676 !important;
}
.image-button.dark .icon {
  background: #505050 !important;
  color: #ffffff !important;
}
.image-button.dark:hover .icon {
  background: #434343 !important;
}
.image-button.light {
  background: #ffffff !important;
}
.image-button.light .icon {
  background: #f8f8f8 !important;
  color: #ffffff !important;
}
.image-button.light:hover .icon {
  background: #ebebeb !important;
}
.image-button.mini {
  --control-height: var(--control-height-mini);
  --image-button-font-size: 10px;
}
.image-button.small {
  --control-height: var(--control-height-small);
  --image-button-font-size: 12px;
}
.image-button.medium {
  --control-height: var(--control-height-medium);
  --image-button-font-size: 14px;
}
.image-button.large {
  --control-height: var(--control-height-large);
  --image-button-font-size: 24px;
}

/* source/components/image-compare/image-compare.less */
.image-compare {
  position: relative;
  display: block;
}
.image-compare img {
  display: none;
}
.image-compare .image-container,
.image-compare .image-container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.image-compare .image-container.image-container-overlay,
.image-compare .image-container-overlay.image-container-overlay {
  z-index: 2;
}
.image-compare .image-container .image-wrapper,
.image-compare .image-container-overlay .image-wrapper {
  background-size: cover;
}
.image-compare .image-slider {
  z-index: 3;
  position: absolute;
  cursor: ew-resize;
  width: 32px;
  height: 32px;
  background-color: #ffa500;
  opacity: 0.7;
  border-radius: 0.25rem;
  transform: rotate(45deg);
}

/* source/components/image-grid/image-grid.less */
.image-grid {
  display: flex;
  flex-flow: row wrap;
}
.image-grid__item {
  display: block;
  overflow: hidden;
}
.image-grid__item-landscape {
  width: 320px;
  height: 180px;
}
.image-grid__item-portrait {
  width: 160px;
  height: 180px;
}
.image-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
}
.image-grid.half-size .image-grid__item-landscape {
  width: 160px;
  height: 90px;
}
.image-grid.half-size .image-grid__item-portrait {
  width: 80px;
  height: 90px;
}

/* source/components/image-magnifier/image-magnifier.less */
.image-magnifier {
  position: relative;
  display: block;
  cursor: none;
  height: auto;
}
.image-magnifier img {
  vertical-align: middle;
  width: 100%;
  height: auto;
  max-height: 100%;
}
.image-magnifier .image-magnifier-glass {
  position: absolute;
  border-radius: 0;
  cursor: none;
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  z-index: 2;
}

/* source/components/info-box/info-box.less */
:root {
  --info-box-border-radius: 6px;
  --info-box-background: var(--default-background);
  --info-box-color: var(--default-color);
  --info-box-border-color: var(--border-color);
}
.dark-side {
  --info-box-background: var(--default-background);
  --info-box-color: var(--default-color);
  --info-box-border-color: var(--border-color);
}
.info-box {
  position: fixed;
  background: var(--info-box-background);
  color: var(--info-box-color);
  border: 1px solid var(--info-box-border-color);
  border-radius: var(--info-box-border-radius);
  display: block;
  z-index: 1050;
  max-width: calc(100vw - 100px);
  max-height: calc(100vh - 100px);
}
.info-box .closer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: inherit;
  color: inherit;
  z-index: 100;
  border: none;
}
.info-box .closer::before {
  display: block;
  content: "\d7";
  font-size: 24px;
}
.info-box .info-box-content {
  padding: 20px;
  z-index: 0;
}
.info-box2 {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--info-box-border-radius);
  border: 1px solid var(--info-box-border-color);
  background: var(--info-box-background);
  color: var(--info-box-color);
  padding: 4px 8px;
}
.info-box2 .title {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 400;
}
.info-box2 .value {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  align-items: flex-end;
  justify-content: space-between;
}
.info-box2 .value .primary-value {
  font-size: 1em;
}
.info-box2 .value .secondary-value {
  font-size: 0.8em;
  margin-left: auto;
}
:root {
  --more-info-box-border-radius: 6px;
  --more-info-box-background: var(--default-background);
  --more-info-box-color: var(--default-color);
  --more-info-box-icon-color: rgba(0, 0, 0, 0.15);
  --more-info-box-more-background: rgba(0, 0, 0, 0.1);
  --more-info-box-more-color: rgba(255, 255, 255, 0.8);
  --more-info-box-border-color: var(--border-color);
}
.dark-side {
  --more-info-box-background:
    linear-gradient(
      to right,
      rgba(255, 238, 238, 0.15),
      rgba(255, 252, 252, 0.1));
  --more-info-box-color: var(--default-color);
  --more-info-box-icon-color: rgba(0, 0, 0, 0.15);
  --more-info-box-more-background: rgba(0, 0, 0, 0.1);
  --more-info-box-more-color: rgba(255, 255, 255, 0.8);
  --more-info-box-border-color: var(--border-color);
}
.more-info-box {
  height: 128px;
  display: flex;
  flex-flow: row wrap;
  background: var(--more-info-box-background);
  color: var(--more-info-box-color);
  border-radius: var(--more-info-box-border-radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--more-info-box-border-color);
}
.more-info-box .icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 64px;
  width: 64px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  color: var(--more-info-box-icon-color);
}
.more-info-box .icon * {
  font-size: 64px;
  width: 64px;
  height: 64px;
  line-height: 1;
}
.more-info-box .content {
  position: relative;
  line-height: 1.2;
  display: block;
  padding: 8px 16px;
  max-width: calc(100% - 106px);
}
.more-info-box .title {
  font-size: 16px;
  font-weight: 500;
}
.more-info-box .value {
  font-size: 38px;
  font-weight: 700;
}
.more-info-box .more {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--more-info-box-more-background);
  text-decoration: none;
  position: relative;
  padding: 4px 8px;
  margin: 0;
  font-size: 12px;
  color: inherit;
}
.more-info-box:hover .icon {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* source/components/info-button/info-button.less */
:root {
  --info-button-font-size: 14px;
  --info-button-border-radius: 4px;
  --info-button-border-color: var(--border-color);
  --info-button-background: #F8F8F8;
  --info-button-color: #191919;
  --info-button-background-secondary: #ffffff;
  --info-button-color-secondary: #000000;
  --info-button-background-hover: #dcdcdc;
  --info-button-color-hover: #474747;
}
.dark-side {
  --info-button-background: #2e2e2e;
  --info-button-color: #F8F8F8;
  --info-button-background-secondary: var(--default-background);
  --info-button-color-secondary: var(--default-color);
  --info-button-background-hover: #373737;
  --info-button-color-hover: #bfbfbf;
}
.info-button {
  --control-height: var(--control-height-normal);
  border: 1px solid var(--border-color);
  border-radius: var(--info-button-border-radius);
  background: var(--info-button-background);
  color: var(--info-button-color);
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: var(--control-height);
  font-size: var(--info-button-font-size);
  text-decoration: none;
  line-height: 1;
  transition: all 0.15s ease-in-out;
  padding: 0;
  cursor: pointer;
  gap: 0;
}
.info-button .title,
.info-button .value {
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
  height: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--control-height) / 3 + 0px);
  margin: 0;
  color: inherit;
  transition: 0.3s;
}
.info-button .value {
  background: var(--info-button-background-secondary);
  color: var(--info-button-color-secondary);
  font-size: calc(var(--info-button-font-size) * 0.9);
  font-weight: 500;
}
@media (hover: hover) {
  .info-button:hover {
    background: var(--info-button-background-hover);
    color: var(--info-button-color-hover);
  }
}
@media (hover: none) {
  .info-button:active {
    background: var(--info-button-background-hover);
    color: var(--info-button-color-hover);
  }
}
.info-button.primary .title {
  background: #f75553;
  color: #ffffff;
}
.info-button.primary:hover .title {
  background: #f63d3b !important;
}
.info-button.secondary .title {
  background: #74290a;
  color: #ffffff;
}
.info-button.secondary:hover .title {
  background: #5d2108 !important;
}
.info-button.tertiary .title {
  background: #ffbebd;
  color: #ffffff;
}
.info-button.tertiary:hover .title {
  background: #fcbfbe !important;
}
.info-button.success .title {
  background: #50c878;
  color: #ffffff;
}
.info-button.success:hover .title {
  background: #3dc269 !important;
}
.info-button.alert .title {
  background: #df0e38;
  color: #ffffff;
}
.info-button.alert:hover .title {
  background: #c70c32 !important;
}
.info-button.warning .title {
  background: #ffa500;
  color: #ffffff;
}
.info-button.warning:hover .title {
  background: #e69500 !important;
}
.info-button.info .title {
  background: #468cff;
  color: #ffffff;
}
.info-button.info:hover .title {
  background: #2c7cff !important;
}
.info-button.dark .title {
  background: #505050;
  color: #ffffff;
}
.info-button.dark:hover .title {
  background: #434343 !important;
}
.info-button.light .title {
  background: #f8f8f8;
  color: #ffffff;
}
.info-button.light:hover .title {
  background: #ebebeb !important;
}
.info-button.mini {
  --control-height: var(--control-height-mini);
  --info-button-font-size: 10px;
}
.info-button.small {
  --control-height: var(--control-height-small);
  --info-button-font-size: 12px;
}
.info-button.medium {
  --control-height: var(--control-height-medium);
  --info-button-font-size: 14px;
}
.info-button.large {
  --control-height: var(--control-height-large);
  --info-button-font-size: 24px;
}

/* source/components/info-panel/info-panel.less */
.info-panel {
  display: block;
  background-color: #ffffff;
  color: #1d1d1d;
  text-align: center;
}
.info-panel-header {
  padding: 30px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
  white-space: nowrap;
}
.info-panel-content {
  padding: 20px 40px;
}
.info-panel-footer {
  padding: 40px;
}

/* source/components/input-material/input-material.less */
:root {
  --material-input-border-color: var(--border-color);
  --material-input-border-color-hover: #cacaca;
  --material-input-color: #191919;
  --material-input-placeholder-color: #bdbdbd;
}
.dark-side {
  --material-input-border-color: var(--border-color);
  --material-input-border-color-hover: #686c71;
  --material-input-color: #dbdfe7;
  --material-input-placeholder-color: #dbdfe7;
}
.input-material {
  position: relative;
  min-width: 196px;
  height: 48px;
  display: flex;
  margin: 0;
  width: 100%;
  border: none;
}
.input-material input {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  bottom: 8px;
  border: 0;
  border-bottom: 2px var(--material-input-border-color) solid;
  background-color: transparent;
  outline: none;
  font-size: 16px;
  padding-bottom: 4px;
  padding-left: 0;
  width: 100%;
  z-index: 2;
  height: 28px;
  box-shadow: none !important;
  color: var(--material-input-color);
  transition: linear all 0.3s;
}
.input-material input::-ms-clear {
  display: none;
}
.input-material input::-ms-reveal {
  display: none;
}
.input-material input::-webkit-clear-button {
  display: none;
}
.input-material input::-webkit-inner-spin-button {
  height: 100%;
}
.input-material hr {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  opacity: 0;
  height: 3px;
  background-color: var(--material-input-border-color-hover);
  bottom: 4px;
  z-index: 2;
  transition: linear all 0.3s;
}
.input-material .label,
.input-material .informer {
  position: absolute;
  display: block;
  z-index: 1;
  color: inherit;
}
.input-material .label {
  opacity: 0;
  top: 12px;
  left: 0;
  transition: linear all 0.3s;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.input-material .informer {
  opacity: 0;
  bottom: 12px;
  font-size: 10px;
  transition: linear all 0.3s;
}
.input-material input::-webkit-input-placeholder {
  font-size: 1rem;
  position: absolute;
  left: 0;
  z-index: 1;
  opacity: 1;
  color: var(--material-input-placeholder-color);
  transition: linear all 0.3s;
}
.input-material .helper-button {
  top: 8px;
}
.input-material.full-size {
  width: 100%;
}
.input-material .buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  margin-left: auto;
  z-index: 3;
}
.input-material .button {
  background-color: transparent;
  border-color: transparent;
  color: var(--input-color);
  height: 30px;
  width: 30px;
  border: 1px solid var(--input-border-color);
  font-size: var(--input-font-size);
  padding: 0;
}
.input-material .button:focus,
.input-material .button:active {
  box-shadow: none !important;
}
.input-material .input-clear-button,
.input-material .input-reveal-button,
.input-material .input-search-button {
  font-family: "Segoe UI Symbol", serif;
  background-color: transparent;
  font-size: var(--input-font-size);
  transform: scale(0);
  opacity: 0;
}
.input-material:focus input,
.input-material.focused input,
.input-material:hover input {
  border-color: var(--material-input-border-color-hover);
}
.input-material:focus .input-clear-button,
.input-material.focused .input-clear-button,
.input-material:hover .input-clear-button,
.input-material:focus .input-reveal-button,
.input-material.focused .input-reveal-button,
.input-material:hover .input-reveal-button {
  opacity: 1;
  transform: scale(1);
}
.input-material.disabled .buttons button {
  background-color: transparent;
  color: var(--input-disabled-color);
}
.input-material.invalid hr {
  background-color: var(--input-invalid-color);
}
.input-material.invalid input {
  border-color: var(--input-invalid-color);
}
.input-material.invalid .informer,
.input-material.invalid .label,
.input-material.invalid .icon {
  color: var(--input-invalid-color);
}
.input-material.valid hr {
  background-color: var(--input-valid-color);
}
.input-material.valid input {
  border-color: var(--input-valid-color);
}
.input-material.valid .informer,
.input-material.valid .label,
.input-material.valid .icon {
  color: var(--input-valid-color);
}
.input-material.with-icon {
  margin-left: 32px;
  width: calc(100% - 32px);
}
.input-material.with-icon .icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  left: -32px;
  top: 50%;
  margin-top: -8px;
  display: block;
  opacity: 0.2;
  transition: linear all 0.3s;
}
.input-material.with-icon .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.input-material.with-icon.full-size {
  width: calc(100% - 32px) !important;
}
.input-material hr ~ input:focus {
  border-bottom: 0;
}
.input-material input:focus ~ hr {
  opacity: 1;
  width: 100%;
  transition: linear all 0.3s;
}
.input-material input:focus::-webkit-input-placeholder {
  opacity: 0;
  transform: translateX(100%);
  transition: linear all 0.2s;
}
.input-material input:focus ~ .informer {
  opacity: 1;
  bottom: -0.75rem;
  transition: linear all 0.3s;
}
.input-material input:focus ~ .icon {
  opacity: 1;
  transition: linear all 0.3s;
}
.input-material input:focus ~ .label,
.input-material input:not(:placeholder-shown) ~ .label {
  opacity: 1;
  top: -2px;
  transition: linear all 0.3s;
}
.input-material.permanent-label input:not(:placeholder-shown) ~ .label {
  top: 0;
  opacity: 1;
}
.input-material input:-webkit-autofill,
.input-material input:-webkit-autofill:hover,
.input-material input:-webkit-autofill:focus,
.input-material input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}

/* source/components/keypad/keypad.less */
:root {
  --keypad-background: var(--input-background);
  --keypad-color: var(--input-color);
  --keypad-border-color: #E8E8E8;
}
.dark-side {
  --keypad-background: var(--input-background);
  --keypad-color: var(--input-color);
  --keypad-border-color: #4A4D51;
}
.keypad {
  background: var(--keypad-background);
  color: var(--keypad-color);
  border: 1px solid var(--keypad-border-color);
  border-radius: var(--input-border-radius);
  position: relative;
}
.keypad input {
  border: 0;
}
.keypad .button-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  height: calc(100% - 4px);
}
.keypad .button {
  background-color: transparent;
  border-color: transparent;
  color: var(--input-color);
  height: calc(100% - 0px);
  aspect-ratio: 1;
  border: 1px solid var(--input-border-color);
  font-size: var(--input-font-size);
  padding: 0;
  cursor: pointer;
  z-index: 1;
}
.keypad .button:focus,
.keypad .button:active {
  box-shadow: none !important;
}
.keypad .keys {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  float: left;
  background-color: inherit;
  color: inherit;
  border: none;
  padding: 0;
  user-select: none;
  z-index: 1000;
  flex-wrap: wrap;
  justify-content: flex-start;
  box-shadow: 0 1px 3px 0 var(--shadow-color-normal), 0 1px 2px -1px var(--shadow-color-normal);
}
.keypad .keys::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 10px;
  height: 10px;
  border: 1px solid var(--keypad-border-color);
  z-index: 2;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -5px;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}
.keypad .keys.open {
  display: flex;
}
.keypad .key {
  display: block;
  position: relative;
  float: left;
  background-color: inherit;
  color: inherit;
  margin: 0;
  text-align: center;
  border: 1px solid var(--keypad-border-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  flex-shrink: 0;
}
.keypad .key:hover {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
  transform: scale(1.1);
  z-index: 2;
}
.keypad .keys.right {
  left: 100%;
  transform: translateY(-50%);
  top: 50%;
  margin-left: -1px;
}
.keypad .keys.bottom {
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: -1px;
}
.keypad .keys.bottom::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transform: rotate(135deg);
}
.keypad .keys.top {
  top: 0;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  margin-top: 1px;
}
.keypad .keys.top::before {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transform: rotate(-45deg);
}
.keypad .keys.left {
  left: 0;
  transform: translateY(-50%) translateX(-100%);
  top: 50%;
  margin-left: 1px;
}
.keypad .keys.left::before {
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: -5px;
  transform: rotate(225deg);
}
.keypad .keys.bottom-left {
  top: 100%;
  left: 0;
  margin-top: -1px;
}
.keypad .keys.bottom-left::before {
  top: 0;
  left: 0.625rem;
  transform: rotate(135deg);
}
.keypad .keys.bottom-right {
  top: 100%;
  left: 100%;
  transform: translateX(-100%);
  margin-top: -1px;
}
.keypad .keys.bottom-right::before {
  top: 0;
  left: 100%;
  margin-left: -1rem;
  transform: rotate(135deg);
}
.keypad .keys.top-left {
  top: 0;
  left: 0;
  transform: translateY(-100%);
  margin-top: 1px;
}
.keypad .keys.top-left::before {
  top: 100%;
  left: 0.625rem;
  transform: rotate(-45deg);
}
.keypad .keys.top-right {
  top: 0;
  left: 100%;
  transform: translateY(-100%) translateX(-100%);
  margin-top: 1px;
}
.keypad .keys.top-right::before {
  top: 100%;
  left: 100%;
  margin-left: -1rem;
  transform: rotate(-45deg);
}
.keypad.pill-input {
  --input-border-radius: calc(var(--input-height) * 0.44);
}
.keypad.pill-input .button {
  border-radius: 50%;
}

/* source/components/lightbox/lightbox.less */
.lightbox-overlay {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}
.lightbox {
  z-index: 2001;
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.lightbox__closer {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(248, 248, 248, 0.5);
  color: #1d1d1d;
  font-family: "Segoe UI Symbol", serif;
  border-radius: 4px;
}
.lightbox__closer * {
  line-height: 32px;
  font-size: 20px;
  height: 20px;
  width: 20px;
}
.lightbox__prev,
.lightbox__next {
  font-family: "Segoe UI Symbol", serif;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 248, 248, 0.5);
  color: #1d1d1d;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  left: 20px;
  font-size: 36px;
}
.lightbox__prev *,
.lightbox__next * {
  line-height: 40px;
  font-size: 36px;
  height: 40px;
  width: 40px;
  object-fit: cover;
}
.lightbox__next {
  left: auto;
  right: 20px;
}
.lightbox__prev,
.lightbox__next,
.lightbox__closer {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.lightbox__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lightbox__image-wrapper {
  display: block;
  width: auto;
  max-height: calc(100vh - 80px);
  max-width: calc(100vw - 20px);
}
.lightbox__image-wrapper::before {
  content: attr(data-title);
  position: absolute;
  color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.lightbox__image-wrapper.no-title::before {
  display: none;
}
.lightbox__image-wrapper img {
  display: block;
  width: auto;
  max-height: calc(100vh - 80px);
  max-width: calc(100vw - 20px);
}

/* source/components/list/list.less */

/* source/components/listview/listview.less */
:root {
  --listview-item-border-radius: 4px;
  --listview-item-width: 220px;
  --listview-background: #ffffff;
  --listview-color: #191919;
  --listview-color-secondary: #919191;
  --listview-item-background-hover: #d4e2ff;
  --listview-item-background-active: #d4e2ff;
  --listview-badge-background: transparent;
  --listview-badge-color: #191919;
}
.dark-side {
  --listview-background: #1e1f22;
  --listview-color: #dbdfe7;
  --listview-color-secondary: #bcbcbc;
  --listview-item-background-hover: #2d2d32;
  --listview-item-background-active: #28282c;
  --listview-badge-background: transparent;
  --listview-badge-color: #dbdfe7;
}
.listview {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--listview-background);
  color: var(--listview-color);
  list-style: none inside;
  display: flex;
}
.listview.view-list,
.listview.view-content {
  flex-flow: column wrap;
}
.listview.view-icons-medium,
.listview.view-icons-large,
.listview.view-icons,
.listview.view-tiles {
  flex-flow: row wrap;
}
.listview.view-icons-medium.vertical-layout,
.listview.view-icons-large.vertical-layout,
.listview.view-icons.vertical-layout {
  flex-flow: column wrap;
}
.listview .node {
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  border: 1px solid transparent;
  background-color: inherit;
  overflow: hidden;
  border-radius: var(--listview-item-border-radius);
  padding: 4px 8px;
}
@media (hover: hover) {
  .listview .node:hover {
    background-color: var(--listview-item-background-hover);
  }
}
@media (hover: none) {
  .listview .node:active {
    background-color: var(--listview-item-background-hover);
  }
}
.listview .node .icon {
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  stroke: var(--listview-color);
}
.listview .node .icon > * {
  width: 100%;
  height: 100%;
}
.listview ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none inside;
}
.listview .node > :is(.content, .desc, .date) {
  display: none;
}
.listview:not(.selectable) .checkbox {
  display: none !important;
}
.listview .caption {
  line-height: 1.2;
  font-size: 12px;
}
.listview .node-group > .caption {
  font-size: 14px;
}
.listview .content {
  order: 100;
}
.listview .checkbox input:focus {
  box-shadow: none;
}
.listview.view-list {
  display: flex;
  flex-flow: column wrap;
}
.listview.view-list .node {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: var(--listview-item-width);
}
.listview.view-table {
  display: flex;
  flex-flow: column nowrap;
}
.listview.view-table .node {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.listview.view-table .node:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.listview.view-table .caption {
  width: 160px;
}
.listview.view-table .desc {
  width: 50%;
  margin-left: auto;
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
  color: var(--listview-color-secondary);
}
.listview.view-table .date {
  width: 100px;
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listview.view-content {
  display: flex;
  flex-flow: column nowrap;
}
.listview.view-content .node {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 8px;
}
.listview.view-content .node:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.listview.view-content .node .desc {
  width: 50%;
  margin-left: auto;
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
  color: var(--listview-color-secondary);
}
.listview.view-content .node .date {
  width: 100px;
  border-left: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listview.view-content .node .content {
  display: block !important;
  width: 100%;
  flex-shrink: 0;
  order: 100;
}
.listview.view-content .node .content:has(*) {
  padding: 8px 0;
}
.listview.view-tiles {
  display: flex;
  flex-flow: row wrap;
}
.listview.view-tiles .node {
  width: var(--listview-item-width);
  padding: 4px 8px;
  align-items: center;
  border-radius: 4px;
}
.listview.view-tiles .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 34px;
  margin: 0;
}
.listview.view-tiles .caption {
  font-size: 13px;
  margin-left: 0;
}
.listview.view-tiles .date {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 10px;
  line-height: 1;
}
.listview.view-tiles .checkbox {
  position: absolute;
  top: 2px;
  left: 2px;
}
@media (hover: hover) {
  .listview.view-tiles .node:hover .date {
    display: flex;
  }
}
@media (hover: none) {
  .listview.view-tiles .node:active .date {
    display: flex;
  }
}
.listview.view-icons,
.listview.view-icons-medium,
.listview.view-icons-large {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.listview.view-icons .node,
.listview.view-icons-medium .node,
.listview.view-icons-large .node {
  width: 92px;
  height: 92px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.listview.view-icons .node .icon,
.listview.view-icons-medium .node .icon,
.listview.view-icons-large .node .icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  margin: 6px 0;
}
.listview.view-icons .node .checkbox,
.listview.view-icons-medium .node .checkbox,
.listview.view-icons-large .node .checkbox {
  position: absolute;
  top: 2px;
  left: 2px;
}
.listview.view-icons .node .desc,
.listview.view-icons-medium .node .desc,
.listview.view-icons-large .node .desc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}
.listview.view-icons-medium .node {
  width: 124px;
  height: 124px;
  margin: 1px;
}
.listview.view-icons-medium .node > .icon {
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 54px;
}
.listview.view-icons-large .node {
  width: 200px;
  height: 200px;
  margin: 2px;
  padding: 30px;
}
.listview.view-icons-large .node > .icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  font-size: 90px;
}
.listview .node.current-select {
  background-color: var(--listview-item-background-active);
  border-color: var(--border-color) !important;
}
.listview .node-group {
  display: block;
  width: 100%;
  position: relative;
  line-height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}
.listview .node-group .node-toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  fill: var(--listview-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}
.listview .node-group.expanded > .node-toggle {
  transform-origin: center;
  transform: rotate(90deg);
}
.listview .node-group + .node-group {
  margin-top: 1rem;
}
.listview .node-group > .listview {
  margin-top: 0.5rem;
}
.listview li:has(.node-toggle) > .caption {
  margin-left: 24px;
  margin-top: 3px;
}

/* source/components/marquee/marquee.less */
.marquee {
  display: block;
  position: relative;
  overflow: hidden;
}
.marquee .marquee__item {
  display: block;
  position: absolute;
  white-space: nowrap;
  color: inherit;
}
.marquee .marquee__item.moveLeftRight {
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 20px);
}
.marquee .marquee__item.moveUpDown {
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 20px);
}

/* source/components/master/master.less */
:root {
  --master-background: var(--default-background);
  --master-color: var(--default-color);
}
.master {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  color: var(--master-color);
  background-color: var(--master-background);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
}
.master .controls,
.master .pages,
.master .page {
  background-color: transparent;
  color: inherit;
}
.master .controls {
  display: flex;
  line-height: 40px;
  font-size: 20px;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 20px 0 20px;
}
.master .controls .prev,
.master .controls .next,
.master .controls .title {
  display: block;
  position: relative;
  line-height: 40px;
  text-align: center;
  user-select: none;
}
.master .controls .prev,
.master .controls .next {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.master .controls .prev.disabled,
.master .controls .next.disabled {
  color: #ccc;
}
.master .controls .title {
  width: 100%;
}
.master .controls .prev {
  order: 1;
}
.master .controls .next {
  order: 3;
}
.master .controls .title {
  order: 2;
}
.master .pages {
  position: relative;
  display: block;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  height: auto;
  min-width: 1rem;
}
.master .page {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  padding: 2rem;
}
.master .controls-top {
  order: 1;
}
.master .controls-bottom {
  order: 3;
}
.master .pages {
  order: 2;
}

/* source/components/navview/navview.less */
:root {
  --navview-pane-width: 280px;
  --navview-pane-width-compact: 50px;
  --navview-item-border-radius: 4px;
  --navview-background: #f8f8f8;
  --navview-color: #191919;
  --navview-pane-background: #ececec;
  --navview-pane-color: #191919;
  --navview-item-background: transparent;
  --navview-item-color: #191919;
  --navview-item-background-hover: #cecece;
  --navview-item-color-hover: #0a0a0a;
  --navview-item-background-active: #cecece;
  --navview-item-color-active: #0a0a0a;
  --navview-item-color-disabled: #ccc;
  --navview-item-marker-color: #468cff;
  --navview-dropdown-toggle-color: #191919;
  --navview-item-header-color: #191919;
  --navview-item-header-border-color: #cccccc;
  --navview-scrollbar-width: 6px;
  --navview-scrollbar-thumb-color: #cccccc;
  --navview-scrollbar-background-color: #ececec;
  --navview-icon-color: #191919;
  --navview-icon-color-hover: #191919;
  --navview-icon-color-active: #191919;
}
.dark-side {
  --navview-background: #1e1f22;
  --navview-color: #dbdfe7;
  --navview-pane-background: #2b2d30;
  --navview-pane-color: #dfe1e5;
  --navview-item-background: transparent;
  --navview-item-color: #dfe1e5;
  --navview-item-background-hover: #43454a;
  --navview-item-color-hover: #ffffff;
  --navview-item-background-active: #43454a;
  --navview-item-color-active: #ffffff;
  --navview-item-color-disabled: #43454a;
  --navview-item-marker-color: #468cff;
  --navview-dropdown-toggle-color: #ffffff;
  --navview-item-header-color: #dfe1e5;
  --navview-item-header-border-color: #5d5e60;
  --navview-scrollbar-thumb-color: #5d5e60;
  --navview-scrollbar-background-color: #2b2d30;
  --navview-icon-color: #dfe1e5;
  --navview-icon-color-hover: #dfe1e5;
  --navview-icon-color-active: #dfe1e5;
}
.navview {
  height: 100vh;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  background-color: var(--navview-background);
  color: var(--navview-color);
}
.navview * {
  scrollbar-width: thin;
  scrollbar-color: var(--navview-scrollbar-thumb-color) var(--navview-scrollbar-background-color);
}
.navview ::-webkit-scrollbar {
  width: var(--navview-scrollbar-width);
  height: var(--navview-scrollbar-width);
}
.navview-pane,
.navview-content {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  isolation: isolate;
  z-index: 0;
}
.navview-pane {
  display: flex;
  flex-flow: column;
  width: var(--navview-pane-width-compact);
  background-color: var(--navview-pane-background);
  color: var(--navview-pane-color);
  z-index: 1029;
  overflow: hidden;
}
.navview-pane .pull-button,
.navview-pane .holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--navview-item-background);
  color: var(--navview-item-color);
  border: 2px solid transparent;
  outline: none;
  cursor: pointer;
}
.navview-pane .suggest-box {
  display: block;
  padding: 8px 0;
}
.navview-pane .suggest-box .input,
.navview-pane .suggest-box .select,
.navview-pane .suggest-box .textarea {
  display: none;
  width: calc(100% - 24px) !important;
  margin: 0 12px;
}
.navview-pane .navview-menu-container {
  height: 100%;
}
.navview-pane .navview-menu-container .navview-menu {
  height: 100%;
}
.navview-pane .navview-menu {
  overflow: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
  padding: 4px;
  flex-flow: column nowrap;
}
.navview-pane .navview-menu .navview-menu {
  padding-left: 0;
}
.navview-pane li {
  display: block;
  position: relative;
}
.navview-pane a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  color: var(--navview-item-color);
  background: var(--navview-item-background);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--navview-item-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
  height: 32px;
  border: 2px solid transparent;
  position: relative;
}
.navview-pane a:hover {
  background-color: var(--navview-item-background-hover);
  color: var(--navview-item-color-hover);
  text-decoration: none;
}
.navview-pane a:hover > .caption {
  background-color: var(--navview-item-background-hover);
  color: var(--navview-item-color-hover);
  position: fixed;
  left: 100%;
  top: -2px;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 0 10px 0 20px;
  height: 32px;
  border-top-right-radius: var(--navview-item-border-radius);
  border-bottom-right-radius: var(--navview-item-border-radius);
}
.navview-pane a.dropdown-toggle {
  padding-right: 10px !important;
}
.navview-pane li.disabled a {
  color: var(--navview-item-color-disabled);
}
.navview-pane li.active::before {
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  top: 4px;
  left: 0;
  width: 4px;
  background-color: var(--navview-item-marker-color);
  z-index: 1;
  border-radius: 4px;
}
.navview-pane .caption {
  margin-right: 1rem;
  white-space: nowrap;
}
.navview-pane .hotkey {
  margin-left: auto;
  margin-right: 1rem;
  font-size: 0.9em;
}
.navview-pane .icon {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
  color: var(--navview-icon-color);
}
.navview-pane .icon.icon-replacer {
  font-size: 14px;
}
.navview-pane .badges {
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.navview-pane .badge {
  display: block;
  margin-right: 4px;
  font-size: 10px;
}
.navview-pane .item-header {
  font-size: 10px;
  font-weight: bold;
  cursor: default;
  background-color: transparent;
  white-space: nowrap;
  margin: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--navview-item-header-color);
}
.navview-pane .item-header::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--navview-item-header-border-color);
  margin-left: 10px;
}
.navview-pane .caption,
.navview-pane .hotkey,
.navview-pane .item-header,
.navview-pane .badges {
  display: none;
}
.navview-pane .dropdown-toggle {
  padding-right: 0 !important;
}
.navview-pane .dropdown-toggle::before {
  display: none;
}
.navview-pane .dropdown-toggle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent var(--navview-dropdown-toggle-color) transparent;
  z-index: 1;
  transform: rotate(-90deg);
  transition: all 0.3s;
}
.navview-pane .dropdown-toggle.active-toggle::after {
  border-width: 0 0 8px 8px;
  border-color: transparent transparent var(--navview-dropdown-toggle-color) transparent;
  transform: rotate(0);
  bottom: 0;
  top: auto;
}
.navview-pane ul {
  margin: 0;
  padding: 0;
}
.navview-content {
  display: block;
  flex-shrink: 1;
  width: 100%;
  background-color: inherit;
  color: inherit;
  height: 100%;
  overflow-y: auto;
}
.navview.compacted .navview-menu-container > .navview-menu {
  width: calc(100% + 16px);
}
.navview.compacted .navview-menu a {
  width: calc(var(--navview-pane-width-compact) - 8px);
}
.navview.expanded .navview-pane {
  width: var(--navview-pane-width);
}
.navview.expanded .navview-menu a {
  padding: 4px 10px 4px 38px;
}
.navview.expanded .navview-menu .badges,
.navview.expanded .navview-menu .hotkey,
.navview.expanded .navview-menu .caption {
  display: inline-flex;
}
.navview.expanded .navview-menu .caption {
  position: relative;
  left: auto;
  top: auto;
  padding: 0;
}
.navview.expanded .navview-menu .item-header {
  display: flex;
}
.navview.expanded .navview-menu.pad-second-level .navview-menu {
  margin-right: -4px;
}
.navview.expanded .navview-menu.pad-second-level .navview-menu li a {
  padding-left: calc(38px + 1.5rem);
}
.navview.expanded .navview-menu.pad-second-level .navview-menu li a .icon {
  left: calc(10px + 1.5rem);
}
.navview.expanded .suggest-box > .input {
  display: flex;
}
.navview.expanded .holder {
  display: none;
}
@media screen and (max-width: 640px) {
  .navview.expanded .navview-content {
    margin-left: var(--navview-pane-width);
  }
}

/* source/components/notify/notify.less */
:root {
  --notify-container-background: transparent;
  --notify-border-radius: 4px;
  --notify-border-color: #e8e8e8;
  --notify-background: #ffffff;
  --notify-color: #191919;
}
.dark-side {
  --notify-container-background: transparent;
  --notify-border-color: #4a4d51;
  --notify-background: #26282e;
  --notify-color: #dbdfe7;
}
.notify-container {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 1081;
  width: auto;
}
.notify-container.position-left {
  right: auto;
  left: 0;
}
.notify-container.position-top,
.notify-container.position-bottom {
  width: 100% !important;
  flex-direction: row;
}
.notify-container.position-bottom {
  top: auto;
  bottom: 0;
}
.notify {
  display: flex;
  flex-direction: column;
  background-color: var(--notify-background);
  color: var(--notify-color);
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: var(--notify-border-radius);
  box-shadow: 0 1px 3px 0 var(--shadow-color-normal), 0 1px 2px -1px var(--shadow-color-normal);
}
.notify-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.notify-message {
  font-size: 0.9rem;
  font-weight: normal;
}

/* source/components/overlay/overlay.less */
:root {
  --overlay-color: rgba(255, 255, 255, 0.5);
  --splash-color: #ffffff;
}
.dark-side {
  --overlay-color: rgba(0, 0, 0, 0.5);
  --splash-color: #000000;
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  z-index: 1040;
}
.overlay.transparent {
  background-color: rgba(255, 255, 255, 0) !important;
}
.global-overlay {
  z-index: 2000 !important;
}
.global-dialog {
  z-index: 2001 !important;
}
.splashscreen {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  z-index: 2147483647;
  background: var(--splash-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* source/components/tabs/tabs.less */
:root {
  --tabs-border-radius: 6px;
  --tabs-border-radius-pills: 16px;
  --tabs-background: var(--default-background);
  --tabs-color: var(--default-color);
  --tabs-hamburger-background: transparent;
  --tabs-hamburger-color: #000000;
  --tabs-item-background: var(--default-background);
  --tabs-item-color: var(--default-color);
  --tabs-item-background-hover: #f5f8fe;
  --tabs-item-color-hover: var(--default-color);
  --tabs-item-background-active: #eaeaea;
  --tabs-item-color-active: var(--default-color);
  --tabs-item-marker-active: #2bcc19;
  --tabs-item-icon-background: #ffffff;
  --tabs-item-icon-color: #000000;
}
.dark-side {
  --tabs-background: var(--default-background);
  --tabs-color: var(--default-color);
  --tabs-hamburger-background: transparent;
  --tabs-hamburger-color: #ffffff;
  --tabs-item-background: var(--default-background);
  --tabs-item-color: var(--default-color);
  --tabs-item-background-hover: #26282e;
  --tabs-item-color-hover: var(--default-color);
  --tabs-item-background-active: #4a4d51;
  --tabs-item-color-active: var(--default-color);
  --tabs-item-marker-active: #4fff39;
  --tabs-item-icon-background: #343637;
  --tabs-item-icon-color: #ffffff;
}
.tabs {
  position: relative;
  border: 1px solid var(--border-color);
  background-color: var(--tabs-background);
  color: var(--tabs-color);
}
.tabs .hamburger,
.tabs .expand-title {
  cursor: pointer;
}
.tabs .hamburger {
  position: absolute;
  top: 2px;
  right: 10px;
  display: block;
  background: var(--tabs-hamburger-background);
}
.tabs .expand-title {
  display: block;
  padding: 0.65rem 1rem 0;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
}
.tabs > ul.tabs-list {
  list-style: none inside;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: inherit;
  width: 100%;
  position: relative;
  padding: 10px 4px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.tabs > ul.tabs-list > li,
.tabs > ul.tabs-list a {
  position: relative;
}
.tabs > ul.tabs-list > li {
  display: block;
  background-color: var(--tabs-item-background);
  color: var(--tabs-item-color);
  margin: 0;
}
.tabs > ul.tabs-list > li:last-child {
  margin-bottom: 4px;
}
.tabs > ul.tabs-list:not(.expand) > li {
  border-top-left-radius: var(--tabs-border-radius);
  border-top-right-radius: var(--tabs-border-radius);
}
.tabs > ul.tabs-list.expand > li {
  border-radius: var(--tabs-border-radius) !important;
}
.tabs > ul.tabs-list > li > a {
  padding: 4px 1rem;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tabs > ul.tabs-list > li > a:hover {
  text-decoration: none;
}
.tabs > ul.tabs-list > li > a > [class*=mif-] {
  margin: 0 4px;
}
.tabs > ul.tabs-list > li > a .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  margin-right: 8px;
  display: inline-flex;
}
.tabs > ul.tabs-list > li > a .icon * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs > ul.tabs-list > li > a.dropdown-toggle::before {
  border-color: var(--tabs-item-color) !important;
}
.tabs > ul.tabs-list > li:hover {
  background-color: var(--tabs-item-background-hover);
  color: var(--tabs-item-color-hover);
}
.tabs > ul.tabs-list > li.active {
  background-color: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
}
.tabs > ul.tabs-list .d-menu {
  left: auto;
  right: 0;
}
.tabs.tabs-bottom > ul.tabs-list {
  border: none;
}
.tabs.tabs-bottom > ul.tabs-list:not(.expand) > li {
  margin: -1px 0 0 0;
  border-radius: 0 0 var(--tabs-border-radius) var(--tabs-border-radius);
}
.tabs-expand {
  border: none;
}
.tabs-expand > ul.tabs-list {
  border: 0;
  border-bottom: 2px solid var(--border-color);
  flex-direction: row;
  display: flex !important;
  margin-top: 0;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0 0 0 0;
}
.tabs-expand > ul.tabs-list > li {
  border-bottom: 1px solid var(--border-color);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: -1px;
}
.tabs-expand > ul.tabs-list > li:last-child {
  margin-bottom: -1px;
}
.tabs-expand > ul.tabs-list > li.active {
  border: 1px solid var(--border-color);
  border-bottom: none;
  background-color: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
}
.tabs-expand > ul.tabs-list > li.active::before {
  display: block;
  position: absolute;
  content: "";
  background-color: var(--tabs-item-marker-active);
  height: 4px;
  width: 100%;
  z-index: 1;
  bottom: 0;
}
.tabs-expand > ul.tabs-list .d-menu {
  position: absolute;
  width: auto;
}
.tabs-expand.tabs-bottom > ul.tabs-list {
  border: none;
  border-top: 1px solid var(--border-color);
}
.tabs-expand.tabs-bottom > ul.tabs-list > li {
  border: none;
  border-top: 1px solid var(--border-color);
}
.tabs-expand.tabs-bottom > ul.tabs-list > li.active {
  border: 1px solid var(--border-color);
  border-top: none;
}
.tabs-expand.tabs-bottom > ul.tabs-list > li.active::before {
  bottom: auto;
  top: 0;
}
.tabs-expand .hamburger,
.tabs-expand .expand-title {
  display: none;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text,
.tabs-expand:not(.tabs-bottom) ul.tabs-pills,
.tabs-expand:not(.tabs-bottom) ul.tabs-group {
  border-bottom: none;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li {
  display: flex;
  align-items: flex-end;
  border: none;
  margin-bottom: 0;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li a {
  line-height: 2em;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li a .icon {
  display: none;
}
@media (hover: hover) {
  .tabs-expand:not(.tabs-bottom) ul.tabs-text > li:hover {
    background: transparent;
  }
}
@media (hover: none) {
  .tabs-expand:not(.tabs-bottom) ul.tabs-text > li:hover {
    background: transparent;
  }
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li.active {
  background-color: transparent;
  font-size: 2rem;
  margin-bottom: -2px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li > a {
  height: 100%;
  padding: 0.5rem 0.5rem 0;
  align-items: flex-end;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li:not(.active) a {
  padding-bottom: 10px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group {
  justify-content: space-between;
  border-collapse: collapse;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li a {
  justify-content: center;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li.active {
  background: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
  font-weight: 500;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li.active::before {
  content: "";
  width: 4px;
  aspect-ratio: 1/1;
  background-color: var(--tabs-item-marker-active);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  z-index: 1;
  border-radius: 50%;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li:first-child {
  border-top-left-radius: var(--tabs-border-radius);
  border-bottom-left-radius: var(--tabs-border-radius);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li:last-child {
  border-top-right-radius: var(--tabs-border-radius);
  border-bottom-right-radius: var(--tabs-border-radius);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li {
  border: 1px solid transparent;
  overflow: hidden;
  border-radius: var(--tabs-border-radius-pills);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li .icon {
  border-radius: 50%;
  border: 1px solid var(--border-color);
  margin-left: -8px;
  background-color: var(--tabs-item-icon-background);
  color: var(--tabs-item-icon-color);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li.active {
  font-weight: 500;
  border-color: var(--border-color);
  background: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
  padding-left: 8px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li.active::before {
  content: "";
  width: 4px;
  aspect-ratio: 1/1;
  background-color: var(--tabs-item-marker-active);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  z-index: 1;
  border-radius: 50%;
}
.tabs .tabs-text .active::before {
  display: none !important;
}
.tabs .tabs-list:not(.tabs-group).align-left {
  justify-content: flex-start;
}
.tabs .tabs-list:not(.tabs-group).align-center {
  justify-content: center;
}
.tabs .tabs-list:not(.tabs-group).align-right {
  justify-content: flex-end;
}
.tabs-black {
  --tabs-item-marker-active: #000000;
}
.tabs-white {
  --tabs-item-marker-active: #ffffff;
}
.tabs-dark {
  --tabs-item-marker-active: #1d1d1d;
}
.tabs-light {
  --tabs-item-marker-active: #f8f8f8;
}
.tabs-gray {
  --tabs-item-marker-active: #ccc;
}
.tabs-gray-blue {
  --tabs-item-marker-active: #6a89a7;
}
.tabs-gray-white {
  --tabs-item-marker-active: #f5f5f5;
}
.tabs-gray-mouse {
  --tabs-item-marker-active: #566b75;
}
.tabs-lime {
  --tabs-item-marker-active: #AEFD6C;
}
.tabs-green {
  --tabs-item-marker-active: #00b500;
}
.tabs-emerald {
  --tabs-item-marker-active: #50c878;
}
.tabs-blue {
  --tabs-item-marker-active: #5e87ff;
}
.tabs-teal {
  --tabs-item-marker-active: #1ac5c5;
}
.tabs-cyan {
  --tabs-item-marker-active: #94b6ff;
}
.tabs-cobalt {
  --tabs-item-marker-active: #0047ab;
}
.tabs-indigo {
  --tabs-item-marker-active: #6400a8;
}
.tabs-almost {
  --tabs-item-marker-active: #6a2ded;
}
.tabs-violet {
  --tabs-item-marker-active: #ee82ee;
}
.tabs-pink {
  --tabs-item-marker-active: #ffc0cb;
}
.tabs-magenta {
  --tabs-item-marker-active: #ff00ff;
}
.tabs-crimson {
  --tabs-item-marker-active: #df0e38;
}
.tabs-red {
  --tabs-item-marker-active: #ff0000;
}
.tabs-clown {
  --tabs-item-marker-active: #ff6d66;
}
.tabs-orange {
  --tabs-item-marker-active: #ffa500;
}
.tabs-amber {
  --tabs-item-marker-active: #ffca2a;
}
.tabs-yellow {
  --tabs-item-marker-active: #ffe95e;
}
.tabs-brown {
  --tabs-item-marker-active: #ca773c;
}
.tabs-olive {
  --tabs-item-marker-active: #a1a100;
}
.tabs-steel {
  --tabs-item-marker-active: #7b91a6;
}
.tabs-mauve {
  --tabs-item-marker-active: #e0afff;
}
.tabs-taupe {
  --tabs-item-marker-active: #977e67;
}
.tabs-champagne {
  --tabs-item-marker-active: #f7e6ca;
}
.tabs-khaki {
  --tabs-item-marker-active: #d5c58a;
}
.tabs-charcoal {
  --tabs-item-marker-active: #989898;
}
.tabs-bronze {
  --tabs-item-marker-active: #e48d3e;
}
.tabs-windstorm {
  --tabs-item-marker-active: #799ed6;
}
.tabs-nude {
  --tabs-item-marker-active: #f7d9bc;
}
.tabs-terracotta {
  --tabs-item-marker-active: #e35336;
}
.tabs-coral {
  --tabs-item-marker-active: #ff8559;
}
.tabs-army {
  --tabs-item-marker-active: #5d6532;
}
.tabs-seashell {
  --tabs-item-marker-active: #fff1e7;
}
.tabs-sand {
  --tabs-item-marker-active: #f1e0ae;
}
.tabs-light-lime {
  --tabs-item-marker-active: #f2ffe7;
}
.tabs-light-green {
  --tabs-item-marker-active: #e7f6e6;
}
.tabs-light-emerald {
  --tabs-item-marker-active: #d1e6cc;
}
.tabs-light-blue {
  --tabs-item-marker-active: #e7eaff;
}
.tabs-light-teal {
  --tabs-item-marker-active: #e1f2f3;
}
.tabs-light-cyan {
  --tabs-item-marker-active: #e3edff;
}
.tabs-light-cobalt {
  --tabs-item-marker-active: #d1ecff;
}
.tabs-light-indigo {
  --tabs-item-marker-active: #f3dcf3;
}
.tabs-light-almost {
  --tabs-item-marker-active: #eee5ff;
}
.tabs-light-violet {
  --tabs-item-marker-active: #fce2fb;
}
.tabs-light-pink {
  --tabs-item-marker-active: #ffeef1;
}
.tabs-light-magenta {
  --tabs-item-marker-active: #ffe2ff;
}
.tabs-light-crimson {
  --tabs-item-marker-active: #ffd1da;
}
.tabs-light-red {
  --tabs-item-marker-active: #ffe1e1;
}
.tabs-light-clown {
  --tabs-item-marker-active: #ffdede;
}
.tabs-light-orange {
  --tabs-item-marker-active: #fff3de;
}
.tabs-light-amber {
  --tabs-item-marker-active: #fff8e1;
}
.tabs-light-yellow {
  --tabs-item-marker-active: #ffffc6;
}
.tabs-light-brown {
  --tabs-item-marker-active: #ffeed9;
}
.tabs-light-olive {
  --tabs-item-marker-active: #f8fde7;
}
.tabs-light-steel {
  --tabs-item-marker-active: #edeeee;
}
.tabs-light-mauve {
  --tabs-item-marker-active: #f7ecfe;
}
.tabs-light-taupe {
  --tabs-item-marker-active: #eadccf;
}
.tabs-light-gray {
  --tabs-item-marker-active: #f4f4f4;
}
.tabs-light-gray-blue {
  --tabs-item-marker-active: #bee2f4;
}
.tabs-light-gray-mouse {
  --tabs-item-marker-active: #8ab4c8;
}
.tabs-light-champagne {
  --tabs-item-marker-active: #fff9f2;
}
.tabs-light-khaki {
  --tabs-item-marker-active: #f6f1dd;
}
.tabs-light-charcoal {
  --tabs-item-marker-active: #e8e8e8;
}
.tabs-light-bronze {
  --tabs-item-marker-active: #ffecdc;
}
.tabs-light-windstorm {
  --tabs-item-marker-active: #e6ebf5;
}
.tabs-light-nude {
  --tabs-item-marker-active: #fcf0e4;
}
.tabs-light-terracotta {
  --tabs-item-marker-active: #ffe5df;
}
.tabs-light-coral {
  --tabs-item-marker-active: #ffd8c8;
}
.tabs-light-army {
  --tabs-item-marker-active: #eceacb;
}
.tabs-light-seashell {
  --tabs-item-marker-active: #fff9f8;
}
.tabs-light-sand {
  --tabs-item-marker-active: #f8f3e0;
}
.tabs-dark-lime {
  --tabs-item-marker-active: #557f32;
}
.tabs-dark-green {
  --tabs-item-marker-active: #003d00;
}
.tabs-dark-emerald {
  --tabs-item-marker-active: #246339;
}
.tabs-dark-blue {
  --tabs-item-marker-active: #132a6f;
}
.tabs-dark-teal {
  --tabs-item-marker-active: #014848;
}
.tabs-dark-cyan {
  --tabs-item-marker-active: #456c7e;
}
.tabs-dark-cobalt {
  --tabs-item-marker-active: #001f54;
}
.tabs-dark-indigo {
  --tabs-item-marker-active: #21003e;
}
.tabs-dark-almost {
  --tabs-item-marker-active: #2f0687;
}
.tabs-dark-violet {
  --tabs-item-marker-active: #773e77;
}
.tabs-dark-pink {
  --tabs-item-marker-active: #805f65;
}
.tabs-dark-magenta {
  --tabs-item-marker-active: #800080;
}
.tabs-dark-crimson {
  --tabs-item-marker-active: #6e0519;
}
.tabs-dark-red {
  --tabs-item-marker-active: #800000;
}
.tabs-dark-clown {
  --tabs-item-marker-active: #aa2824;
}
.tabs-dark-orange {
  --tabs-item-marker-active: #805100;
}
.tabs-dark-amber {
  --tabs-item-marker-active: #805e00;
}
.tabs-dark-yellow {
  --tabs-item-marker-active: #bca826;
}
.tabs-dark-brown {
  --tabs-item-marker-active: #42240f;
}
.tabs-dark-olive {
  --tabs-item-marker-active: #3d3d00;
}
.tabs-dark-steel {
  --tabs-item-marker-active: #2e3841;
}
.tabs-dark-mauve {
  --tabs-item-marker-active: #705680;
}
.tabs-dark-taupe {
  --tabs-item-marker-active: #261e18;
}
.tabs-dark-gray {
  --tabs-item-marker-active: #515151;
}
.tabs-dark-gray-blue {
  --tabs-item-marker-active: #36464e;
}
.tabs-dark-gray-mouse {
  --tabs-item-marker-active: #2e3c42;
}
.tabs-dark-champagne {
  --tabs-item-marker-active: #7c7364;
}
.tabs-dark-khaki {
  --tabs-item-marker-active: #6a6142;
}
.tabs-dark-charcoal {
  --tabs-item-marker-active: #202020;
}
.tabs-dark-bronze {
  --tabs-item-marker-active: #693c13;
}
.tabs-dark-windstorm {
  --tabs-item-marker-active: #304462;
}
.tabs-dark-nude {
  --tabs-item-marker-active: #7c6c5d;
}
.tabs-dark-terracotta {
  --tabs-item-marker-active: #712516;
}
.tabs-dark-coral {
  --tabs-item-marker-active: #804028;
}
.tabs-dark-army {
  --tabs-item-marker-active: #2a2f14;
}
.tabs-dark-seashell {
  --tabs-item-marker-active: #bfa89a;
}
.tabs-dark-sand {
  --tabs-item-marker-active: #8f8975;
}
.tabs-sat-lime {
  --tabs-item-marker-active: #7dba4a;
}
.tabs-sat-green {
  --tabs-item-marker-active: #008f00;
}
.tabs-sat-emerald {
  --tabs-item-marker-active: #3ca15d;
}
.tabs-sat-blue {
  --tabs-item-marker-active: #1f43ae;
}
.tabs-sat-teal {
  --tabs-item-marker-active: #008a8a;
}
.tabs-sat-cyan {
  --tabs-item-marker-active: #659db6;
}
.tabs-sat-cobalt {
  --tabs-item-marker-active: #003391;
}
.tabs-sat-indigo {
  --tabs-item-marker-active: #430080;
}
.tabs-sat-almost {
  --tabs-item-marker-active: #4e18c1;
}
.tabs-sat-violet {
  --tabs-item-marker-active: #b65fb6;
}
.tabs-sat-pink {
  --tabs-item-marker-active: #cc7296;
}
.tabs-sat-magenta {
  --tabs-item-marker-active: #c500c5;
}
.tabs-sat-crimson {
  --tabs-item-marker-active: #980824;
}
.tabs-sat-red {
  --tabs-item-marker-active: #b80000;
}
.tabs-sat-clown {
  --tabs-item-marker-active: #d64f48;
}
.tabs-sat-orange {
  --tabs-item-marker-active: #bc7700;
}
.tabs-sat-amber {
  --tabs-item-marker-active: #d19b00;
}
.tabs-sat-yellow {
  --tabs-item-marker-active: #e4ce43;
}
.tabs-sat-brown {
  --tabs-item-marker-active: #884b20;
}
.tabs-sat-olive {
  --tabs-item-marker-active: #838300;
}
.tabs-sat-steel {
  --tabs-item-marker-active: #5c7081;
}
.tabs-sat-mauve {
  --tabs-item-marker-active: #a982c1;
}
.tabs-sat-taupe {
  --tabs-item-marker-active: #5e4a3c;
}
.tabs-sat-gray {
  --tabs-item-marker-active: #9c9c9c;
}
.tabs-sat-gray-blue {
  --tabs-item-marker-active: #5f7a88;
}
.tabs-sat-gray-mouse {
  --tabs-item-marker-active: #3f535c;
}
.tabs-sat-champagne {
  --tabs-item-marker-active: #ccbca5;
}
.tabs-sat-khaki {
  --tabs-item-marker-active: #aa9c6b;
}
.tabs-sat-charcoal {
  --tabs-item-marker-active: #5e5e5e;
}
.tabs-sat-bronze {
  --tabs-item-marker-active: #aa621f;
}
.tabs-sat-windstorm {
  --tabs-item-marker-active: #5071a3;
}
.tabs-sat-nude {
  --tabs-item-marker-active: #baa28b;
}
.tabs-sat-terracotta {
  --tabs-item-marker-active: #af3a23;
}
.tabs-sat-coral {
  --tabs-item-marker-active: #b65c39;
}
.tabs-sat-army {
  --tabs-item-marker-active: #647030;
}
.tabs-sat-seashell {
  --tabs-item-marker-active: #e1cbbd;
}
.tabs-sat-sand {
  --tabs-item-marker-active: #d1c5a1;
}

/* source/components/package-manager/package-manager.less */
.package-manager .pm-command {
  padding: 0.5rem;
  font-size: 14px;
  background: var(--code-background);
  color: var(--code-color);
  position: relative;
}
.package-manager .pm-command code {
  background: transparent;
}
.package-manager .pm-command button {
  position: absolute;
  right: 8px;
  top: 6px;
}
.package-manager svg {
  fill: var(--code-color);
  width: 16px;
  height: 16px;
}
.package-manager li a {
  background: var(--code-background);
}
.package-manager li a > svg {
  margin-right: 6px;
}

/* source/components/page-control/pagecontrol.less */
:root {
  --page-control-background: #ffffff;
  --page-control-background-hover: rgba(137, 137, 137, 0.1);
  --page-control-closer-hover-background: #e1e1e1;
  --page-control-border-color: #e0e0e0;
  --page-control-border-radius: 6px;
}
.dark-side {
  --page-control-background: #222222;
  --page-control-background-hover: rgba(137, 137, 137, 0.1);
  --page-control-closer-hover-background: #444444;
  --page-control-border-color: #444444;
}
.page-control {
  position: relative;
  display: block;
  user-select: none;
  z-index: 10;
}
.page-control__tabs {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none inside;
  min-height: 32px;
  margin: 1rem 0 0;
}
.page-control__tabs::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-bottom: 1px solid var(--page-control-border-color);
}
.page-control__tabs.tabs-position-left {
  justify-content: start;
}
.page-control__tabs.tabs-position-center {
  justify-content: center;
}
.page-control__tabs.tabs-position-right {
  justify-content: end;
}
.page-control__tabs.wrap-items {
  flex-wrap: wrap;
}
.page-control__tabs [aria-hidden=true] {
  display: none;
}
.page-control__tab {
  display: flex;
  position: relative;
  padding: 4px 8px 4px 8px;
  border: 1px solid transparent;
  cursor: default;
  z-index: 1;
  align-items: center;
  user-select: none;
}
.page-control__tab.active {
  border: 1px solid var(--page-control-border-color);
  border-bottom-color: var(--page-control-background);
  border-top-left-radius: var(--page-control-border-radius);
  border-top-right-radius: var(--page-control-border-radius);
}
.page-control__tab:not(:first-child)::before {
  content: "";
  border-right: 1px solid var(--page-control-border-color);
  position: absolute;
  width: 1px;
  height: 20px;
  left: -1px;
}
.page-control__tab.active {
  z-index: 2;
}
.page-control__tab.active::before {
  display: none;
}
.page-control__tab.active + .page-control__tab::before {
  display: none;
}
@media (hover: hover) {
  .page-control__tab:not(.active):hover {
    background: var(--page-control-background-hover);
  }
}
@media (hover: none) {
  .page-control__tab:not(.active):active {
    background: var(--page-control-background-hover);
  }
}
.page-control__tab__icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  margin-right: 8px;
}
.page-control__tab__icon * {
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.page-control__tab__caption {
  font-size: 12px;
  white-space: nowrap;
}
.page-control__tab__closer {
  display: inline-flex;
  position: relative;
  margin-left: 8px;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
.page-control__tab__closer:hover {
  background: var(--page-control-closer-hover-background);
}
.page-control__tab__menu {
  border: 1px solid var(--page-control-border-color);
  left: -6px;
  top: calc(100% + 4px);
}
.page-control__tab__menu__holder {
  cursor: pointer;
  margin-right: 10px;
}
.page-control__tab.active .page-control__tab__closer,
.page-control__tab:hover .page-control__tab__closer,
.page-control__tab.active .page-control__tab__menu__holder,
.page-control__tab:hover .page-control__tab__menu__holder {
  visibility: visible;
}
.page-control__tab__service {
  height: 32px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  z-index: 3;
  background: var(--page-control-background);
  padding-top: 4px;
}
.page-control__tab__service.invisible-tabs {
  right: 24px;
}
.page-control__tab__service ul {
  top: 100%;
  left: auto;
  right: 0;
  border: 1px solid var(--page-control-border-color);
}
.page-control__tab__append {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-control__tab__append::before {
  content: "";
  border-right: 1px solid var(--page-control-border-color);
  position: absolute;
  width: 1px;
  height: 20px;
  left: -1px;
}
.page-control__tab__append span.toggle {
  display: inline-flex;
  position: relative;
  font-size: 14px;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-control__tab__append span.toggle:hover {
  border-color: var(--page-control-border-color);
}
.page-control__tab__append ul {
  top: calc(100% + 1px);
  left: 0;
  border: 1px solid var(--page-control-border-color);
}
.page-control__service-button {
  cursor: pointer;
  user-select: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-control__service-button span.toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-control__service-button:hover {
  border: 1px solid var(--page-control-border-color);
}
.page-control__invisible_tabs_holder .page-control__tab {
  display: flex;
  cursor: default;
  border: none;
  padding-right: 4px;
}
.page-control__invisible_tabs_holder .page-control__tab .page-control__tab__closer {
  margin-left: auto;
}
.page-control__invisible_tabs_holder .page-control__tab .page-control__tab__caption {
  margin-right: 4px;
}
.page-control__invisible_tabs_holder .page-control__tab::after {
  display: none;
}
.page-control__invisible_tabs_holder .page-control__tab.active {
  border: none;
  background: var(--page-control-border-color);
}
.page-control__invisible_tabs_holder .page-control__tab__menu {
  left: auto;
  right: calc(100% + 8px);
  z-index: 1001;
}

/* source/components/pagination/pagination.less */
:root {
  --pagination-page-item-background: var(--default-background);
  --pagination-page-item-color: var(--default-color);
  --pagination-page-item-background-hover: #e4e4e4;
  --pagination-page-item-color-hover: var(--default-color);
  --pagination-page-item-background-disabled: var(--default-background-disabled);
  --pagination-page-item-color-disabled: var(--default-color-disabled);
  --pagination-page-item-background-active: rgba(217, 217, 217, 0.44);
  --pagination-page-item-color-active: var(--default-color);
  --pagination-page-item-border-color: var(--border-color);
  --pagination-page-item-border-radius: 4px;
}
.dark-side {
  --pagination-page-item-background: var(--default-background);
  --pagination-page-item-color: var(--default-color);
  --pagination-page-item-background-hover: rgba(106, 106, 106, 0.44);
  --pagination-page-item-color-hover: var(--default-color);
  --pagination-page-item-background-disabled: var(--default-background-disabled);
  --pagination-page-item-color-disabled: var(--default-color-disabled);
  --pagination-page-item-background-active: rgba(106, 106, 106, 0.44);
  --pagination-page-item-color-active: var(--default-color);
  --pagination-page-item-border-color: var(--border-color);
  --pagination-page-item-border-radius: 6px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  list-style: none inside;
  margin: 0 -0.25rem 1rem -0.25rem;
  padding: 0;
  user-select: none;
}
.pagination {
  gap: 6px;
}
.pagination .page-item {
  cursor: pointer;
  display: list-item;
  background-color: var(--pagination-page-item-background);
  color: var(--pagination-page-item-color);
  border: 1px solid var(--pagination-page-item-border-color);
  border-radius: var(--pagination-page-item-border-radius);
  transition: all 0.15s ease-in-out;
  overflow: hidden;
}
.pagination .page-link {
  display: block;
  position: relative;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
}
@media (hover: hover) {
  .pagination .page-item:hover,
  .pagination .page-item.service:hover {
    background-color: var(--pagination-page-item-background-hover);
    color: var(--pagination-page-item-color-hover);
  }
}
@media (hover: hover) {
  .pagination .page-item:active,
  .pagination .page-item.service:active {
    background-color: var(--pagination-page-item-background-hover);
    color: var(--pagination-page-item-color-hover);
  }
}
.pagination .page-item.no-link {
  pointer-events: none;
  cursor: default;
  border-color: transparent;
}
@media (hover: hover) {
  .pagination .page-item.no-link:hover {
    background-color: var(--pagination-page-item-background);
    color: var(--pagination-page-item-color);
    border-color: transparent;
  }
}
@media (hover: none) {
  .pagination .page-item.no-link:active {
    background-color: var(--pagination-page-item-background);
    color: var(--pagination-page-item-color);
    border-color: transparent;
  }
}
.pagination .page-item.disabled {
  pointer-events: none;
  background-color: var(--pagination-page-item-background-disabled);
  color: var(--pagination-page-item-color-disabled);
}
.pagination .page-item.active {
  background-color: var(--pagination-page-item-background-active);
  color: var(--pagination-page-item-color-active);
}
.pagination.rounded .page-item {
  border-radius: var(--pagination-page-item-border-radius);
}
.pagination.no-gap {
  gap: 0;
}
.pagination.no-gap .page-item {
  margin: -1px;
}
.pagination.no-gap .no-link {
  margin: -1px 1px;
}
.pagination.no-gap.rounded .page-item {
  border-radius: 0;
}
.pagination.no-gap.rounded .page-item:first-child {
  border-top-left-radius: var(--pagination-page-item-border-radius);
  border-bottom-left-radius: var(--pagination-page-item-border-radius);
}
.pagination.no-gap.rounded .page-item:last-child {
  border-top-right-radius: var(--pagination-page-item-border-radius);
  border-bottom-right-radius: var(--pagination-page-item-border-radius);
}
.pagination.size-large .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination.size-small .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.short-pagination {
  display: flex;
  gap: 6px;
}
.pagination.lime {
  background: transparent;
}
.pagination.lime .page-item {
  --pagination-page-item-background: #f2ffe7;
  --pagination-page-item-color: #7dba4a;
  --pagination-page-item-border-color: #7dba4a;
}
@media (hover: hover) {
  .pagination.lime .page-item:hover {
    --pagination-page-item-background-hover: #7dba4a;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.lime .page-item:active {
    --pagination-page-item-background-hover: #7dba4a;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.lime .page-item.active {
  --pagination-page-item-background-active: #7dba4a;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.green {
  background: transparent;
}
.pagination.green .page-item {
  --pagination-page-item-background: #e7f6e6;
  --pagination-page-item-color: #008f00;
  --pagination-page-item-border-color: #008f00;
}
@media (hover: hover) {
  .pagination.green .page-item:hover {
    --pagination-page-item-background-hover: #008f00;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.green .page-item:active {
    --pagination-page-item-background-hover: #008f00;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.green .page-item.active {
  --pagination-page-item-background-active: #008f00;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.emerald {
  background: transparent;
}
.pagination.emerald .page-item {
  --pagination-page-item-background: #d1e6cc;
  --pagination-page-item-color: #3ca15d;
  --pagination-page-item-border-color: #3ca15d;
}
@media (hover: hover) {
  .pagination.emerald .page-item:hover {
    --pagination-page-item-background-hover: #3ca15d;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.emerald .page-item:active {
    --pagination-page-item-background-hover: #3ca15d;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.emerald .page-item.active {
  --pagination-page-item-background-active: #3ca15d;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.blue {
  background: transparent;
}
.pagination.blue .page-item {
  --pagination-page-item-background: #e7eaff;
  --pagination-page-item-color: #1f43ae;
  --pagination-page-item-border-color: #1f43ae;
}
@media (hover: hover) {
  .pagination.blue .page-item:hover {
    --pagination-page-item-background-hover: #1f43ae;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.blue .page-item:active {
    --pagination-page-item-background-hover: #1f43ae;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.blue .page-item.active {
  --pagination-page-item-background-active: #1f43ae;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.teal {
  background: transparent;
}
.pagination.teal .page-item {
  --pagination-page-item-background: #e1f2f3;
  --pagination-page-item-color: #008a8a;
  --pagination-page-item-border-color: #008a8a;
}
@media (hover: hover) {
  .pagination.teal .page-item:hover {
    --pagination-page-item-background-hover: #008a8a;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.teal .page-item:active {
    --pagination-page-item-background-hover: #008a8a;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.teal .page-item.active {
  --pagination-page-item-background-active: #008a8a;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.cyan {
  background: transparent;
}
.pagination.cyan .page-item {
  --pagination-page-item-background: #e3edff;
  --pagination-page-item-color: #659db6;
  --pagination-page-item-border-color: #659db6;
}
@media (hover: hover) {
  .pagination.cyan .page-item:hover {
    --pagination-page-item-background-hover: #659db6;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.cyan .page-item:active {
    --pagination-page-item-background-hover: #659db6;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.cyan .page-item.active {
  --pagination-page-item-background-active: #659db6;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.cobalt {
  background: transparent;
}
.pagination.cobalt .page-item {
  --pagination-page-item-background: #d1ecff;
  --pagination-page-item-color: #003391;
  --pagination-page-item-border-color: #003391;
}
@media (hover: hover) {
  .pagination.cobalt .page-item:hover {
    --pagination-page-item-background-hover: #003391;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.cobalt .page-item:active {
    --pagination-page-item-background-hover: #003391;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.cobalt .page-item.active {
  --pagination-page-item-background-active: #003391;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.indigo {
  background: transparent;
}
.pagination.indigo .page-item {
  --pagination-page-item-background: #f3dcf3;
  --pagination-page-item-color: #430080;
  --pagination-page-item-border-color: #430080;
}
@media (hover: hover) {
  .pagination.indigo .page-item:hover {
    --pagination-page-item-background-hover: #430080;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.indigo .page-item:active {
    --pagination-page-item-background-hover: #430080;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.indigo .page-item.active {
  --pagination-page-item-background-active: #430080;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.almost {
  background: transparent;
}
.pagination.almost .page-item {
  --pagination-page-item-background: #eee5ff;
  --pagination-page-item-color: #4e18c1;
  --pagination-page-item-border-color: #4e18c1;
}
@media (hover: hover) {
  .pagination.almost .page-item:hover {
    --pagination-page-item-background-hover: #4e18c1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.almost .page-item:active {
    --pagination-page-item-background-hover: #4e18c1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.almost .page-item.active {
  --pagination-page-item-background-active: #4e18c1;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.violet {
  background: transparent;
}
.pagination.violet .page-item {
  --pagination-page-item-background: #fce2fb;
  --pagination-page-item-color: #b65fb6;
  --pagination-page-item-border-color: #b65fb6;
}
@media (hover: hover) {
  .pagination.violet .page-item:hover {
    --pagination-page-item-background-hover: #b65fb6;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.violet .page-item:active {
    --pagination-page-item-background-hover: #b65fb6;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.violet .page-item.active {
  --pagination-page-item-background-active: #b65fb6;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.pink {
  background: transparent;
}
.pagination.pink .page-item {
  --pagination-page-item-background: #ffeef1;
  --pagination-page-item-color: #cc7296;
  --pagination-page-item-border-color: #cc7296;
}
@media (hover: hover) {
  .pagination.pink .page-item:hover {
    --pagination-page-item-background-hover: #cc7296;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.pink .page-item:active {
    --pagination-page-item-background-hover: #cc7296;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.pink .page-item.active {
  --pagination-page-item-background-active: #cc7296;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.magenta {
  background: transparent;
}
.pagination.magenta .page-item {
  --pagination-page-item-background: #ffe2ff;
  --pagination-page-item-color: #c500c5;
  --pagination-page-item-border-color: #c500c5;
}
@media (hover: hover) {
  .pagination.magenta .page-item:hover {
    --pagination-page-item-background-hover: #c500c5;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.magenta .page-item:active {
    --pagination-page-item-background-hover: #c500c5;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.magenta .page-item.active {
  --pagination-page-item-background-active: #c500c5;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.crimson {
  background: transparent;
}
.pagination.crimson .page-item {
  --pagination-page-item-background: #ffd1da;
  --pagination-page-item-color: #980824;
  --pagination-page-item-border-color: #980824;
}
@media (hover: hover) {
  .pagination.crimson .page-item:hover {
    --pagination-page-item-background-hover: #980824;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.crimson .page-item:active {
    --pagination-page-item-background-hover: #980824;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.crimson .page-item.active {
  --pagination-page-item-background-active: #980824;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.red {
  background: transparent;
}
.pagination.red .page-item {
  --pagination-page-item-background: #ffe1e1;
  --pagination-page-item-color: #b80000;
  --pagination-page-item-border-color: #b80000;
}
@media (hover: hover) {
  .pagination.red .page-item:hover {
    --pagination-page-item-background-hover: #b80000;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.red .page-item:active {
    --pagination-page-item-background-hover: #b80000;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.red .page-item.active {
  --pagination-page-item-background-active: #b80000;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.orange {
  background: transparent;
}
.pagination.orange .page-item {
  --pagination-page-item-background: #fff3de;
  --pagination-page-item-color: #bc7700;
  --pagination-page-item-border-color: #bc7700;
}
@media (hover: hover) {
  .pagination.orange .page-item:hover {
    --pagination-page-item-background-hover: #bc7700;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.orange .page-item:active {
    --pagination-page-item-background-hover: #bc7700;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.orange .page-item.active {
  --pagination-page-item-background-active: #bc7700;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.amber {
  background: transparent;
}
.pagination.amber .page-item {
  --pagination-page-item-background: #fff8e1;
  --pagination-page-item-color: #d19b00;
  --pagination-page-item-border-color: #d19b00;
}
@media (hover: hover) {
  .pagination.amber .page-item:hover {
    --pagination-page-item-background-hover: #d19b00;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.amber .page-item:active {
    --pagination-page-item-background-hover: #d19b00;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.amber .page-item.active {
  --pagination-page-item-background-active: #d19b00;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.yellow {
  background: transparent;
}
.pagination.yellow .page-item {
  --pagination-page-item-background: #ffffc6;
  --pagination-page-item-color: #e4ce43;
  --pagination-page-item-border-color: #e4ce43;
}
@media (hover: hover) {
  .pagination.yellow .page-item:hover {
    --pagination-page-item-background-hover: #e4ce43;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.yellow .page-item:active {
    --pagination-page-item-background-hover: #e4ce43;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.yellow .page-item.active {
  --pagination-page-item-background-active: #e4ce43;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.brown {
  background: transparent;
}
.pagination.brown .page-item {
  --pagination-page-item-background: #ffeed9;
  --pagination-page-item-color: #884b20;
  --pagination-page-item-border-color: #884b20;
}
@media (hover: hover) {
  .pagination.brown .page-item:hover {
    --pagination-page-item-background-hover: #884b20;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.brown .page-item:active {
    --pagination-page-item-background-hover: #884b20;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.brown .page-item.active {
  --pagination-page-item-background-active: #884b20;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.olive {
  background: transparent;
}
.pagination.olive .page-item {
  --pagination-page-item-background: #f8fde7;
  --pagination-page-item-color: #838300;
  --pagination-page-item-border-color: #838300;
}
@media (hover: hover) {
  .pagination.olive .page-item:hover {
    --pagination-page-item-background-hover: #838300;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.olive .page-item:active {
    --pagination-page-item-background-hover: #838300;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.olive .page-item.active {
  --pagination-page-item-background-active: #838300;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.steel {
  background: transparent;
}
.pagination.steel .page-item {
  --pagination-page-item-background: #edeeee;
  --pagination-page-item-color: #5c7081;
  --pagination-page-item-border-color: #5c7081;
}
@media (hover: hover) {
  .pagination.steel .page-item:hover {
    --pagination-page-item-background-hover: #5c7081;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.steel .page-item:active {
    --pagination-page-item-background-hover: #5c7081;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.steel .page-item.active {
  --pagination-page-item-background-active: #5c7081;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.mauve {
  background: transparent;
}
.pagination.mauve .page-item {
  --pagination-page-item-background: #f7ecfe;
  --pagination-page-item-color: #a982c1;
  --pagination-page-item-border-color: #a982c1;
}
@media (hover: hover) {
  .pagination.mauve .page-item:hover {
    --pagination-page-item-background-hover: #a982c1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.mauve .page-item:active {
    --pagination-page-item-background-hover: #a982c1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.mauve .page-item.active {
  --pagination-page-item-background-active: #a982c1;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.taupe {
  background: transparent;
}
.pagination.taupe .page-item {
  --pagination-page-item-background: #eadccf;
  --pagination-page-item-color: #5e4a3c;
  --pagination-page-item-border-color: #5e4a3c;
}
@media (hover: hover) {
  .pagination.taupe .page-item:hover {
    --pagination-page-item-background-hover: #5e4a3c;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.taupe .page-item:active {
    --pagination-page-item-background-hover: #5e4a3c;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.taupe .page-item.active {
  --pagination-page-item-background-active: #5e4a3c;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.champagne {
  background: transparent;
}
.pagination.champagne .page-item {
  --pagination-page-item-background: #fff9f2;
  --pagination-page-item-color: #ccbca5;
  --pagination-page-item-border-color: #ccbca5;
}
@media (hover: hover) {
  .pagination.champagne .page-item:hover {
    --pagination-page-item-background-hover: #ccbca5;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.champagne .page-item:active {
    --pagination-page-item-background-hover: #ccbca5;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.champagne .page-item.active {
  --pagination-page-item-background-active: #ccbca5;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.khaki {
  background: transparent;
}
.pagination.khaki .page-item {
  --pagination-page-item-background: #f6f1dd;
  --pagination-page-item-color: #aa9c6b;
  --pagination-page-item-border-color: #aa9c6b;
}
@media (hover: hover) {
  .pagination.khaki .page-item:hover {
    --pagination-page-item-background-hover: #aa9c6b;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.khaki .page-item:active {
    --pagination-page-item-background-hover: #aa9c6b;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.khaki .page-item.active {
  --pagination-page-item-background-active: #aa9c6b;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.charcoal {
  background: transparent;
}
.pagination.charcoal .page-item {
  --pagination-page-item-background: #e8e8e8;
  --pagination-page-item-color: #5e5e5e;
  --pagination-page-item-border-color: #5e5e5e;
}
@media (hover: hover) {
  .pagination.charcoal .page-item:hover {
    --pagination-page-item-background-hover: #5e5e5e;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.charcoal .page-item:active {
    --pagination-page-item-background-hover: #5e5e5e;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.charcoal .page-item.active {
  --pagination-page-item-background-active: #5e5e5e;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.bronze {
  background: transparent;
}
.pagination.bronze .page-item {
  --pagination-page-item-background: #ffecdc;
  --pagination-page-item-color: #aa621f;
  --pagination-page-item-border-color: #aa621f;
}
@media (hover: hover) {
  .pagination.bronze .page-item:hover {
    --pagination-page-item-background-hover: #aa621f;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.bronze .page-item:active {
    --pagination-page-item-background-hover: #aa621f;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.bronze .page-item.active {
  --pagination-page-item-background-active: #aa621f;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.windstorm {
  background: transparent;
}
.pagination.windstorm .page-item {
  --pagination-page-item-background: #e6ebf5;
  --pagination-page-item-color: #5071a3;
  --pagination-page-item-border-color: #5071a3;
}
@media (hover: hover) {
  .pagination.windstorm .page-item:hover {
    --pagination-page-item-background-hover: #5071a3;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.windstorm .page-item:active {
    --pagination-page-item-background-hover: #5071a3;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.windstorm .page-item.active {
  --pagination-page-item-background-active: #5071a3;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.nude {
  background: transparent;
}
.pagination.nude .page-item {
  --pagination-page-item-background: #fcf0e4;
  --pagination-page-item-color: #baa28b;
  --pagination-page-item-border-color: #baa28b;
}
@media (hover: hover) {
  .pagination.nude .page-item:hover {
    --pagination-page-item-background-hover: #baa28b;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.nude .page-item:active {
    --pagination-page-item-background-hover: #baa28b;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.nude .page-item.active {
  --pagination-page-item-background-active: #baa28b;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.terracotta {
  background: transparent;
}
.pagination.terracotta .page-item {
  --pagination-page-item-background: #ffe5df;
  --pagination-page-item-color: #af3a23;
  --pagination-page-item-border-color: #af3a23;
}
@media (hover: hover) {
  .pagination.terracotta .page-item:hover {
    --pagination-page-item-background-hover: #af3a23;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.terracotta .page-item:active {
    --pagination-page-item-background-hover: #af3a23;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.terracotta .page-item.active {
  --pagination-page-item-background-active: #af3a23;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.coral {
  background: transparent;
}
.pagination.coral .page-item {
  --pagination-page-item-background: #ffd8c8;
  --pagination-page-item-color: #b65c39;
  --pagination-page-item-border-color: #b65c39;
}
@media (hover: hover) {
  .pagination.coral .page-item:hover {
    --pagination-page-item-background-hover: #b65c39;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.coral .page-item:active {
    --pagination-page-item-background-hover: #b65c39;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.coral .page-item.active {
  --pagination-page-item-background-active: #b65c39;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.army {
  background: transparent;
}
.pagination.army .page-item {
  --pagination-page-item-background: #eceacb;
  --pagination-page-item-color: #647030;
  --pagination-page-item-border-color: #647030;
}
@media (hover: hover) {
  .pagination.army .page-item:hover {
    --pagination-page-item-background-hover: #647030;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.army .page-item:active {
    --pagination-page-item-background-hover: #647030;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.army .page-item.active {
  --pagination-page-item-background-active: #647030;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.seashell {
  background: transparent;
}
.pagination.seashell .page-item {
  --pagination-page-item-background: #fff9f8;
  --pagination-page-item-color: #e1cbbd;
  --pagination-page-item-border-color: #e1cbbd;
}
@media (hover: hover) {
  .pagination.seashell .page-item:hover {
    --pagination-page-item-background-hover: #e1cbbd;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.seashell .page-item:active {
    --pagination-page-item-background-hover: #e1cbbd;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.seashell .page-item.active {
  --pagination-page-item-background-active: #e1cbbd;
  --pagination-page-item-color-active: #ffffff;
}
.pagination.sand {
  background: transparent;
}
.pagination.sand .page-item {
  --pagination-page-item-background: #f8f3e0;
  --pagination-page-item-color: #d1c5a1;
  --pagination-page-item-border-color: #d1c5a1;
}
@media (hover: hover) {
  .pagination.sand .page-item:hover {
    --pagination-page-item-background-hover: #d1c5a1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.sand .page-item:active {
    --pagination-page-item-background-hover: #d1c5a1;
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.sand .page-item.active {
  --pagination-page-item-background-active: #d1c5a1;
  --pagination-page-item-color-active: #ffffff;
}

/* source/components/panel/panel.less */
:root {
  --panel-header-background: #fbfbfb;
  --panel-header-color: #191919;
  --panel-header-icon-background: #fbfbfb;
  --panel-header-icon-color: #191919;
  --panel-background: #ffffff;
  --panel-color: #191919;
  --panel-border-color: #e8e8e8;
  --panel-border-radius: 6px;
  --panel-dropdown-toogle-color: #191919;
}
.dark-side {
  --panel-header-background: #282c35;
  --panel-header-color: #fbfbfb;
  --panel-header-icon-background: #282c35;
  --panel-header-icon-color: #fbfbfb;
  --panel-background: #2b2d30;
  --panel-color: #dbdfe7;
  --panel-border-color: #4a4d51;
  --panel-dropdown-toogle-color: #ffffff;
}
.panel {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  background: var(--panel-background);
  color: var(--panel-color);
  border: 1px solid var(--panel-border-color);
  border-radius: var(--panel-border-radius);
}
.panel .dropdown-toggle::before {
  border-color: var(--panel-dropdown-toogle-color) !important;
}
.panel .panel-title,
.panel .panel-content {
  position: relative;
}
.panel .panel-title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  order: 1;
  height: 2.625rem;
  border-bottom: 1px solid var(--panel-border-color);
  line-height: 2.625rem;
  cursor: default;
  flex-shrink: 0;
  font-size: 16px;
  background: var(--panel-header-background);
  color: var(--panel-header-color);
  border-top-left-radius: var(--panel-border-radius);
  border-top-right-radius: var(--panel-border-radius);
  overflow: hidden;
  user-select: none;
}
.panel .panel-title .icon {
  order: 1;
  height: 2.625rem;
  line-height: 2.625rem;
  width: 2.625rem;
  border-right: 1px solid var(--panel-border-color);
  flex-shrink: 0;
  text-align: center;
  background: var(--panel-header-icon-background);
  color: var(--panel-header-icon-color);
}
.panel .panel-title img.icon {
  padding: 0.625rem;
}
.panel .panel-title .caption {
  order: 2;
  width: 100%;
  padding: 0 0.8125rem;
  color: inherit;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.panel .panel-title .dropdown-toggle {
  order: 4;
  height: 100%;
  width: 2.625rem;
  border-left: 1px solid var(--panel-border-color);
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.panel .panel-title .dropdown-toggle svg {
  margin: 0;
}
.panel .panel-title .custom-buttons {
  order: 3;
  display: flex;
  flex-flow: row nowrap;
  margin-right: 0.5rem;
}
.panel .panel-title .btn-custom {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid var(--card-button-border-color);
  padding: 0;
  margin-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel .panel-title .btn-custom:last-child {
  margin-right: 0;
}
.panel .panel-content {
  display: block;
  order: 2;
  height: auto;
  padding: 0.5rem;
  font-size: 14px;
}

/* source/components/popover/popover.less */
:root {
  --popover-border-radius: 6px;
  --popover-background: #ffffff;
  --popover-color: #191919;
  --popover-border-color: #e8e8e8;
}
.dark-side {
  --popover-background: #1e1f22;
  --popover-color: #dbdfe7;
  --popover-border-color: #4a4d51;
}
.popover {
  display: block;
  min-width: 12.5rem;
  height: auto;
  position: fixed;
  background-color: var(--popover-background);
  color: var(--popover-color);
  z-index: 1060;
  border: 1px solid var(--popover-border-color);
  border-radius: var(--popover-border-radius);
  cursor: default;
  padding: 1rem;
  max-width: calc(100% - 32px);
}
.popover > * {
  max-width: 100%;
}
.popover .popover-content {
  display: block;
  position: relative;
  z-index: 50;
}
.popover .popover-close-button {
  z-index: 100;
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 26px;
  background: var(--color-red);
  color: #fff;
}

/* source/components/progress/progress.less */
:root {
  --progress-bar-height: 12px;
  --progress-bar-height-ani: -24px;
  --progress-bar-radius: 8px;
  --progress-bar-back-color: #eeeeee;
  --progress-bar-color: #60A917;
  --progress-bar-buffer-color: #CE352C;
  --progress-bar-line-color: #b3d4fc;
  --progress-bar-line-back-color: #004D6F;
  --progress-bar-load-color:
    radial-gradient(
      #a9c0e9 0%,
      #a9c0e9 16%,
      transparent 42%);
  --progress-bar-value-color: #191919;
}
.dark-side {
  --progress-bar-back-color: #363942;
  --progress-bar-bar-color: #60A917;
  --progress-bar-buffer-color: #CE352C;
  --progress-bar-line-color: #b3d4fc;
  --progress-bar-line-back-color: #004D6F;
  --progress-bar-load-color:
    radial-gradient(
      #a9c0e9 0%,
      #a9c0e9 16%,
      transparent 42%);
  --progress-bar-value-color: #ffffff;
}
.progress-component {
  position: relative;
  display: block;
  width: 100%;
}
.progress-component .progress {
  display: block;
  position: relative;
  width: 100%;
  height: var(--progress-bar-height);
  background-color: var(--progress-bar-back-color);
  overflow: hidden;
  border-radius: var(--progress-bar-radius);
}
.progress-component .progress.with-load {
  background: transparent;
}
.progress-component .progress-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress-component .progress-data .progress-label {
  order: 1;
  font-size: 14px;
  font-weight: 400;
}
.progress-component .progress-data .progress-value {
  margin-left: auto;
  order: 2;
  font-weight: 600;
}
.progress-component .bar,
.progress-component .buffer,
.progress-component .load {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.progress-component .load {
  width: 100%;
  animation: progress-loading 3s infinite linear;
  background: var(--progress-bar-load-color);
  background-size: var(--progress-bar-height) var(--progress-bar-height);
  z-index: 1;
  margin-top: -1px;
}
.progress-component .buffer {
  z-index: 2;
  background-color: var(--progress-bar-buffer-color);
}
.progress-component .bar {
  z-index: 3;
  background: var(--progress-bar-color);
}
.progress-component .line {
  background-color: var(--progress-bar-line-color);
  display: flex;
}
.progress-component .line::before {
  height: 100%;
  width: 100%;
  background-color: var(--progress-bar-line-back-color);
  content: "";
  animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.progress-component .segments {
  background: var(--progress-bar-back-color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.progress-component .segments .bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--progress-bar-color);
  z-index: 1;
}
.progress-component .segments .segment {
  background: transparent;
  border: 1px solid var(--progress-bar-back-color);
  height: 100%;
  z-index: 2;
}
.progress-component .segments .segment:first-child {
  border-radius: 8px 0 0 8px;
}
.progress-component .segments .segment:last-child {
  border-radius: 0 4px 4px 0;
}
.progress-component .progress.small {
  --progress-bar-height: 6px;
  --progress-bar-radius: 4px;
}
@keyframes progress-loading {
  0% {
    opacity: 1;
    background-position: 0 var(--progress-bar-height-ani);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    background-position: -200px var(--progress-bar-height-ani);
  }
}
@keyframes running-progress {
  0% {
    margin-left: 0;
    margin-right: 100%;
  }
  50% {
    margin-left: 25%;
    margin-right: 0;
  }
  100% {
    margin-left: 100%;
    margin-right: 0;
  }
}
.bar-lime {
  --progress-bar-color: #AEFD6C;
}
.progress-lime {
  --progress-bar-color: #AEFD6C;
  --progress-bar-back-color: #f2ffe7;
}
.bar-green {
  --progress-bar-color: #00b500;
}
.progress-green {
  --progress-bar-color: #00b500;
  --progress-bar-back-color: #e7f6e6;
}
.bar-emerald {
  --progress-bar-color: #50c878;
}
.progress-emerald {
  --progress-bar-color: #50c878;
  --progress-bar-back-color: #d1e6cc;
}
.bar-blue {
  --progress-bar-color: #5e87ff;
}
.progress-blue {
  --progress-bar-color: #5e87ff;
  --progress-bar-back-color: #e7eaff;
}
.bar-teal {
  --progress-bar-color: #1ac5c5;
}
.progress-teal {
  --progress-bar-color: #1ac5c5;
  --progress-bar-back-color: #e1f2f3;
}
.bar-cyan {
  --progress-bar-color: #94b6ff;
}
.progress-cyan {
  --progress-bar-color: #94b6ff;
  --progress-bar-back-color: #e3edff;
}
.bar-cobalt {
  --progress-bar-color: #0047ab;
}
.progress-cobalt {
  --progress-bar-color: #0047ab;
  --progress-bar-back-color: #d1ecff;
}
.bar-indigo {
  --progress-bar-color: #6400a8;
}
.progress-indigo {
  --progress-bar-color: #6400a8;
  --progress-bar-back-color: #f3dcf3;
}
.bar-almost {
  --progress-bar-color: #6a2ded;
}
.progress-almost {
  --progress-bar-color: #6a2ded;
  --progress-bar-back-color: #eee5ff;
}
.bar-violet {
  --progress-bar-color: #ee82ee;
}
.progress-violet {
  --progress-bar-color: #ee82ee;
  --progress-bar-back-color: #fce2fb;
}
.bar-pink {
  --progress-bar-color: #ffc0cb;
}
.progress-pink {
  --progress-bar-color: #ffc0cb;
  --progress-bar-back-color: #ffeef1;
}
.bar-magenta {
  --progress-bar-color: #ff00ff;
}
.progress-magenta {
  --progress-bar-color: #ff00ff;
  --progress-bar-back-color: #ffe2ff;
}
.bar-crimson {
  --progress-bar-color: #df0e38;
}
.progress-crimson {
  --progress-bar-color: #df0e38;
  --progress-bar-back-color: #ffd1da;
}
.bar-red {
  --progress-bar-color: #ff0000;
}
.progress-red {
  --progress-bar-color: #ff0000;
  --progress-bar-back-color: #ffe1e1;
}
.bar-orange {
  --progress-bar-color: #ffa500;
}
.progress-orange {
  --progress-bar-color: #ffa500;
  --progress-bar-back-color: #fff3de;
}
.bar-amber {
  --progress-bar-color: #ffca2a;
}
.progress-amber {
  --progress-bar-color: #ffca2a;
  --progress-bar-back-color: #fff8e1;
}
.bar-yellow {
  --progress-bar-color: #ffe95e;
}
.progress-yellow {
  --progress-bar-color: #ffe95e;
  --progress-bar-back-color: #ffffc6;
}
.bar-brown {
  --progress-bar-color: #ca773c;
}
.progress-brown {
  --progress-bar-color: #ca773c;
  --progress-bar-back-color: #ffeed9;
}
.bar-olive {
  --progress-bar-color: #a1a100;
}
.progress-olive {
  --progress-bar-color: #a1a100;
  --progress-bar-back-color: #f8fde7;
}
.bar-steel {
  --progress-bar-color: #7b91a6;
}
.progress-steel {
  --progress-bar-color: #7b91a6;
  --progress-bar-back-color: #edeeee;
}
.bar-mauve {
  --progress-bar-color: #e0afff;
}
.progress-mauve {
  --progress-bar-color: #e0afff;
  --progress-bar-back-color: #f7ecfe;
}
.bar-taupe {
  --progress-bar-color: #977e67;
}
.progress-taupe {
  --progress-bar-color: #977e67;
  --progress-bar-back-color: #eadccf;
}
.bar-champagne {
  --progress-bar-color: #f7e6ca;
}
.progress-champagne {
  --progress-bar-color: #f7e6ca;
  --progress-bar-back-color: #fff9f2;
}
.bar-khaki {
  --progress-bar-color: #d5c58a;
}
.progress-khaki {
  --progress-bar-color: #d5c58a;
  --progress-bar-back-color: #f6f1dd;
}
.bar-charcoal {
  --progress-bar-color: #989898;
}
.progress-charcoal {
  --progress-bar-color: #989898;
  --progress-bar-back-color: #e8e8e8;
}
.bar-bronze {
  --progress-bar-color: #e48d3e;
}
.progress-bronze {
  --progress-bar-color: #e48d3e;
  --progress-bar-back-color: #ffecdc;
}
.bar-windstorm {
  --progress-bar-color: #799ed6;
}
.progress-windstorm {
  --progress-bar-color: #799ed6;
  --progress-bar-back-color: #e6ebf5;
}
.bar-nude {
  --progress-bar-color: #f7d9bc;
}
.progress-nude {
  --progress-bar-color: #f7d9bc;
  --progress-bar-back-color: #fcf0e4;
}
.bar-terracotta {
  --progress-bar-color: #e35336;
}
.progress-terracotta {
  --progress-bar-color: #e35336;
  --progress-bar-back-color: #ffe5df;
}
.bar-coral {
  --progress-bar-color: #ff8559;
}
.progress-coral {
  --progress-bar-color: #ff8559;
  --progress-bar-back-color: #ffd8c8;
}
.bar-army {
  --progress-bar-color: #5d6532;
}
.progress-army {
  --progress-bar-color: #5d6532;
  --progress-bar-back-color: #eceacb;
}
.bar-seashell {
  --progress-bar-color: #fff1e7;
}
.progress-seashell {
  --progress-bar-color: #fff1e7;
  --progress-bar-back-color: #fff9f8;
}
.bar-sand {
  --progress-bar-color: #f1e0ae;
}
.progress-sand {
  --progress-bar-color: #f1e0ae;
  --progress-bar-back-color: #f8f3e0;
}
.progress-primary {
  --progress-bar-color: #f75553;
}
.progress-secondary {
  --progress-bar-color: #74290a;
}
.progress-tertiary {
  --progress-bar-color: #ffbebd;
}
.progress-success {
  --progress-bar-color: #50c878;
}
.progress-alert {
  --progress-bar-color: #df0e38;
}
.progress-warning {
  --progress-bar-color: #ffa500;
}
.progress-info {
  --progress-bar-color: #468cff;
}
.progress-dark {
  --progress-bar-color: #505050;
}
.progress-light {
  --progress-bar-color: #f8f8f8;
}

/* source/components/rating/rating.less */
:root {
  --rating-star-size: 24px;
  --rating-off-color: var(--color-light-blue);
  --rating-on-color: var(--color-blue);
  --rating-background: transparent;
}
.rating {
  display: inline-flex;
  flex-flow: row;
  align-items: center;
  position: relative;
  background: transparent;
  cursor: default;
  font-size: 16px;
}
.rating input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.rating .stars,
.rating .result,
.rating .title {
  display: block;
  position: relative;
}
.rating .stars {
  margin: 0;
  padding: 0;
  list-style: none inside;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.rating .stars li {
  display: block;
  position: relative;
  color: var(--rating-off-color);
  width: var(--rating-star-size);
  height: var(--rating-star-size);
  line-height: var(--rating-star-size);
  font-size: var(--rating-star-size);
  transition: color 0.3s linear;
}
.rating .stars li::before {
  position: absolute;
  content: attr(data-symbol);
  display: block;
  z-index: 1;
  left: 0;
}
.rating .stars li.half::after {
  left: 0;
  display: block;
  position: absolute;
  content: attr(data-symbol);
  width: 0.42em;
  z-index: 2;
  overflow: hidden;
}
.rating .stars li.half.half-10::after {
  width: 0.1em;
}
.rating .stars li.half.half-20::after {
  width: 0.2em;
}
.rating .stars li.half.half-30::after {
  width: 0.3em;
}
.rating .stars li.half.half-40::after {
  width: 0.4em;
}
.rating .stars li.half.half-50::after {
  width: 0.42em;
}
.rating .stars li.half.half-60::after {
  width: 0.49em;
}
.rating .stars li.half.half-70::after {
  width: 0.6em;
}
.rating .stars li.half.half-80::after {
  width: 0.7em;
}
.rating .stars li.half.half-90::after {
  width: 0.8em;
}
.rating .result {
  font-size: 0.8em;
  margin-left: 10px;
}
.rating .title {
  margin-right: 10px;
}
.rating .stars {
  cursor: default;
}
.rating .stars li.on,
.rating .stars li.half::after {
  color: var(--rating-on-color);
}
.rating:not(.static) .stars {
  cursor: pointer;
}
.rating:not(.static) .stars:hover li {
  color: var(--rating-on-color);
}
.rating:not(.static) .stars li:hover ~ li {
  color: var(--rating-off-color) !important;
}
.rating:not(.static) .stars li.scale {
  animation: star-scale 0.3s ease-in-out;
}
@keyframes star-scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

/* source/components/remark/remark.less */
:root {
  --remark-border-radius: 6px;
  --remark-border-color: var(--border-color);
  --remark-background: #ffffff;
  --remark-color: #191919;
}
.dark-side {
  --remark-border-color: var(--border-color);
  --remark-background: #26282e;
  --remark-color: #dbdfe7;
}
.remark {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  border: 1px solid;
  border-left: 4px solid;
  border-color: var(--remark-border-color);
  border-radius: var(--remark-border-radius);
  color: var(--remark-color);
  background: var(--remark-background);
  padding: 1rem 2rem 1rem 1rem;
  font-size: 14px;
  margin: 1rem 0;
  cursor: default;
  overflow: hidden;
}
.remark .icon {
  margin-right: 1rem;
  font-size: 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: 10px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remark::before {
  font-family: serif;
  content: "\201d";
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 48px;
  font-feature-settings: "onum";
  font-variant-numeric: oldstyle-nums;
}
.remark:has(.icon) {
  min-height: 40px;
  padding-left: 50px;
  padding-right: 50px;
}
.remark.lime {
  border-color: #AEFD6C;
  color: #191919;
  background: #f2ffe7;
}
.remark.lime .icon {
  color: #AEFD6C;
}
.remark.lime::before {
  color: #AEFD6C;
}
.remark.green {
  border-color: #00b500;
  color: #191919;
  background: #e7f6e6;
}
.remark.green .icon {
  color: #00b500;
}
.remark.green::before {
  color: #00b500;
}
.remark.emerald {
  border-color: #50c878;
  color: #191919;
  background: #d1e6cc;
}
.remark.emerald .icon {
  color: #50c878;
}
.remark.emerald::before {
  color: #50c878;
}
.remark.blue {
  border-color: #5e87ff;
  color: #191919;
  background: #e7eaff;
}
.remark.blue .icon {
  color: #5e87ff;
}
.remark.blue::before {
  color: #5e87ff;
}
.remark.teal {
  border-color: #1ac5c5;
  color: #191919;
  background: #e1f2f3;
}
.remark.teal .icon {
  color: #1ac5c5;
}
.remark.teal::before {
  color: #1ac5c5;
}
.remark.cyan {
  border-color: #94b6ff;
  color: #191919;
  background: #e3edff;
}
.remark.cyan .icon {
  color: #94b6ff;
}
.remark.cyan::before {
  color: #94b6ff;
}
.remark.cobalt {
  border-color: #0047ab;
  color: #191919;
  background: #d1ecff;
}
.remark.cobalt .icon {
  color: #0047ab;
}
.remark.cobalt::before {
  color: #0047ab;
}
.remark.indigo {
  border-color: #6400a8;
  color: #191919;
  background: #f3dcf3;
}
.remark.indigo .icon {
  color: #6400a8;
}
.remark.indigo::before {
  color: #6400a8;
}
.remark.almost {
  border-color: #6a2ded;
  color: #191919;
  background: #eee5ff;
}
.remark.almost .icon {
  color: #6a2ded;
}
.remark.almost::before {
  color: #6a2ded;
}
.remark.violet {
  border-color: #ee82ee;
  color: #191919;
  background: #fce2fb;
}
.remark.violet .icon {
  color: #ee82ee;
}
.remark.violet::before {
  color: #ee82ee;
}
.remark.pink {
  border-color: #ffc0cb;
  color: #191919;
  background: #ffeef1;
}
.remark.pink .icon {
  color: #ffc0cb;
}
.remark.pink::before {
  color: #ffc0cb;
}
.remark.magenta {
  border-color: #ff00ff;
  color: #191919;
  background: #ffe2ff;
}
.remark.magenta .icon {
  color: #ff00ff;
}
.remark.magenta::before {
  color: #ff00ff;
}
.remark.crimson {
  border-color: #df0e38;
  color: #191919;
  background: #ffd1da;
}
.remark.crimson .icon {
  color: #df0e38;
}
.remark.crimson::before {
  color: #df0e38;
}
.remark.red {
  border-color: #ff0000;
  color: #191919;
  background: #ffe1e1;
}
.remark.red .icon {
  color: #ff0000;
}
.remark.red::before {
  color: #ff0000;
}
.remark.orange {
  border-color: #ffa500;
  color: #191919;
  background: #fff3de;
}
.remark.orange .icon {
  color: #ffa500;
}
.remark.orange::before {
  color: #ffa500;
}
.remark.amber {
  border-color: #ffca2a;
  color: #191919;
  background: #fff8e1;
}
.remark.amber .icon {
  color: #ffca2a;
}
.remark.amber::before {
  color: #ffca2a;
}
.remark.yellow {
  border-color: #ffe95e;
  color: #191919;
  background: #ffffc6;
}
.remark.yellow .icon {
  color: #ffe95e;
}
.remark.yellow::before {
  color: #ffe95e;
}
.remark.brown {
  border-color: #ca773c;
  color: #191919;
  background: #ffeed9;
}
.remark.brown .icon {
  color: #ca773c;
}
.remark.brown::before {
  color: #ca773c;
}
.remark.olive {
  border-color: #a1a100;
  color: #191919;
  background: #f8fde7;
}
.remark.olive .icon {
  color: #a1a100;
}
.remark.olive::before {
  color: #a1a100;
}
.remark.steel {
  border-color: #7b91a6;
  color: #191919;
  background: #edeeee;
}
.remark.steel .icon {
  color: #7b91a6;
}
.remark.steel::before {
  color: #7b91a6;
}
.remark.mauve {
  border-color: #e0afff;
  color: #191919;
  background: #f7ecfe;
}
.remark.mauve .icon {
  color: #e0afff;
}
.remark.mauve::before {
  color: #e0afff;
}
.remark.taupe {
  border-color: #977e67;
  color: #191919;
  background: #eadccf;
}
.remark.taupe .icon {
  color: #977e67;
}
.remark.taupe::before {
  color: #977e67;
}
.remark.champagne {
  border-color: #f7e6ca;
  color: #191919;
  background: #fff9f2;
}
.remark.champagne .icon {
  color: #f7e6ca;
}
.remark.champagne::before {
  color: #f7e6ca;
}
.remark.khaki {
  border-color: #d5c58a;
  color: #191919;
  background: #f6f1dd;
}
.remark.khaki .icon {
  color: #d5c58a;
}
.remark.khaki::before {
  color: #d5c58a;
}
.remark.charcoal {
  border-color: #989898;
  color: #191919;
  background: #e8e8e8;
}
.remark.charcoal .icon {
  color: #989898;
}
.remark.charcoal::before {
  color: #989898;
}
.remark.bronze {
  border-color: #e48d3e;
  color: #191919;
  background: #ffecdc;
}
.remark.bronze .icon {
  color: #e48d3e;
}
.remark.bronze::before {
  color: #e48d3e;
}
.remark.windstorm {
  border-color: #799ed6;
  color: #191919;
  background: #e6ebf5;
}
.remark.windstorm .icon {
  color: #799ed6;
}
.remark.windstorm::before {
  color: #799ed6;
}
.remark.nude {
  border-color: #f7d9bc;
  color: #191919;
  background: #fcf0e4;
}
.remark.nude .icon {
  color: #f7d9bc;
}
.remark.nude::before {
  color: #f7d9bc;
}
.remark.terracotta {
  border-color: #e35336;
  color: #191919;
  background: #ffe5df;
}
.remark.terracotta .icon {
  color: #e35336;
}
.remark.terracotta::before {
  color: #e35336;
}
.remark.coral {
  border-color: #ff8559;
  color: #191919;
  background: #ffd8c8;
}
.remark.coral .icon {
  color: #ff8559;
}
.remark.coral::before {
  color: #ff8559;
}
.remark.army {
  border-color: #5d6532;
  color: #191919;
  background: #eceacb;
}
.remark.army .icon {
  color: #5d6532;
}
.remark.army::before {
  color: #5d6532;
}
.remark.seashell {
  border-color: #fff1e7;
  color: #191919;
  background: #fff9f8;
}
.remark.seashell .icon {
  color: #fff1e7;
}
.remark.seashell::before {
  color: #fff1e7;
}
.remark.sand {
  border-color: #f1e0ae;
  color: #191919;
  background: #f8f3e0;
}
.remark.sand .icon {
  color: #f1e0ae;
}
.remark.sand::before {
  color: #f1e0ae;
}
.remark.alert,
.remark.error {
  border-color: var(--color-red);
  background: var(--color-light-red) !important;
  color: #191919 !important;
}
.remark.alert .icon,
.remark.error .icon,
.remark.alert::before,
.remark.error::before {
  color: var(--color-red);
}
.remark.warning,
.remark.caution {
  border-color: var(--color-orange);
  background: var(--color-light-orange) !important;
  color: #191919 !important;
}
.remark.warning .icon,
.remark.caution .icon,
.remark.warning::before,
.remark.caution::before {
  color: var(--color-orange);
}
.remark.info {
  border-color: var(--color-blue);
  background: var(--color-light-blue) !important;
  color: #191919 !important;
}
.remark.info .icon,
.remark.info::before {
  color: var(--color-blue);
}
.remark.success {
  border-color: var(--color-green);
  background: var(--color-light-green) !important;
  color: #191919 !important;
}
.remark.success .icon,
.remark.success::before {
  color: var(--color-green);
}
.remark.dark {
  border-color: var(--color-dark);
  background: #dddddd !important;
  color: #191919 !important;
}
.remark.dark .icon {
  color: var(--color-dark);
}

/* source/components/remote-dataset/remote-dataset.less */
:root {
  --remote-dataset-gap: 10px;
}
.remote-dataset .dataset-body {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.remote-dataset .dataset-actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.remote-dataset .dataset-load-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
.remote-dataset .dataset-load-more .button {
  text-decoration: none !important;
}
.remote-dataset .dataset-load-more .icon {
  font-size: 64px;
}
.remote-dataset .service-block {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.remote-dataset .service-block .search-block {
  flex-basis: 100%;
  flex-shrink: 1;
  flex-grow: 1;
}
.remote-dataset .service-block .order-block {
  flex-basis: 220px;
  flex-shrink: 0;
  flex-grow: 0;
}
.remote-dataset .service-block .count-block {
  flex-basis: 100px;
  flex-shrink: 0;
  flex-grow: 0;
}
.remote-dataset .service-block .count-block .option-list li a {
  justify-content: flex-end;
  padding-right: 32px;
}
.remote-dataset .hide-block {
  display: none;
}

/* source/components/table/table.less */
:root {
  --table-inspector-border-radius: 10px;
  --table-head-font-size: 14px;
  --table-caption-font-size: 16px;
  --table-footer-font-size: 14px;
  --table-body-font-size: 16px;
  --table-border-radius: 6px;
  --table-border-color: #e8e8e8;
  --table-color: #191919;
  --table-background: transparent;
  --table-header-background: #fafafa;
  --table-header-color: #191919;
  --table-sortable-background: #e8e8e8;
  --table-sortable-color: #000000;
  --table-selected-background: #d4e2ff;
  --table-selected-color: #000000;
  --table-striped-background: #f8f8f8;
  --table-hover-background: #eaeaea;
  --table-hover-color: #191919;
  --table-inspector-background: #ffffff;
  --table-inspector-border-color: #e8e8e8;
  --table-inspector-color: #191919;
}
.dark-side {
  --table-border-color: #4a4d51;
  --table-color: #dbdfe7;
  --table-background: transparent;
  --table-header-background: #1b1b1e;
  --table-header-color: #efefef;
  --table-sortable-background: #26282e;
  --table-sortable-color: #ffffff;
  --table-selected-background: #2e436e;
  --table-selected-color: #ffffff;
  --table-striped-background: #26282e;
  --table-hover-background: #323437;
  --table-hover-color: #ffffff;
  --table-inspector-background: #26282e;
  --table-inspector-border-color: #4a4d51;
  --table-inspector-color: #dbdfe7;
}
.table-container {
  display: block;
  position: relative;
}
.table {
  display: table;
}
.thead {
  display: table-header-group;
}
.tfoot {
  display: table-footer-group;
}
.tbody {
  display: table-row-group;
}
.tr {
  display: table-row;
}
.th,
.td {
  display: table-cell;
}
.table {
  width: 100%;
}
.table caption {
  font-size: var(--table-caption-font-size);
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid var(--table-border-color);
}
.table thead :is(th, td) {
  font-size: var(--table-head-font-size);
}
.table tfoot :is(th, td) {
  font-size: var(--table-head-font-size);
}
.table tbody td {
  font-size: var(--table-body-font-size);
}
.table th,
.table .th,
.table td,
.table .td {
  padding: 0.625rem;
}
.table.fixed-layout {
  table-layout: fixed;
}
.table.fixed-layout th,
.table.fixed-layout .th,
.table.fixed-layout td,
.table.fixed-layout .td {
  white-space: nowrap;
  overflow: hidden;
}
.table thead,
.table tfoot,
.table .thead,
.table .tfoot {
  border-bottom: 4px solid var(--table-border-color);
  background: var(--table-header-background);
  color: var(--table-header-color);
}
.table thead th,
.table tfoot th,
.table .thead th,
.table .tfoot th,
.table thead td,
.table tfoot td,
.table .thead td,
.table .tfoot td,
.table thead .th,
.table tfoot .th,
.table .thead .th,
.table .tfoot .th,
.table thead .td,
.table tfoot .td,
.table .thead .td,
.table .tfoot .td {
  cursor: default;
  color: var(--table-color);
  border-color: transparent;
  text-align: left;
  font-weight: bold;
  line-height: 1.2;
}
.table tfoot,
.table .tfoot {
  border-top: 4px solid var(--table-border-color);
}
.table tbody td,
.table .tbody td,
.table tbody .td,
.table .tbody .td {
  padding: 0.625rem;
  vertical-align: middle;
}
.table .sortable-column,
.table .sorting {
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}
.table .sortable-column:after,
.table .sorting:after {
  position: absolute;
  content: "\21c5";
  width: 1rem;
  height: 1rem;
  left: 100%;
  margin-left: -1.25rem;
  top: 50%;
  margin-top: -0.3rem;
  color: inherit;
  font-size: 0.8em;
  font-weight: 100;
  line-height: 1;
  opacity: 0.7;
}
.table .sortable-column.sort-asc,
.table .sorting.sort-asc,
.table .sortable-column.sort-desc,
.table .sorting.sort-desc,
.table .sortable-column.sorting_asc,
.table .sorting.sorting_asc,
.table .sortable-column.sorting_desc,
.table .sorting.sorting_desc {
  background-color: var(--table-sortable-background);
  color: var(--table-sortable-color);
}
.table .sortable-column.sort-asc:after,
.table .sorting.sort-asc:after,
.table .sortable-column.sort-desc:after,
.table .sorting.sort-desc:after,
.table .sortable-column.sorting_asc:after,
.table .sorting.sorting_asc:after,
.table .sortable-column.sorting_desc:after,
.table .sorting.sorting_desc:after {
  opacity: 1;
  font-weight: 700;
  font-size: 1em;
  margin-top: -0.5rem;
}
.table .sortable-column.sort-asc:after,
.table .sorting.sort-asc:after,
.table .sortable-column.sorting_asc:after,
.table .sorting.sorting_asc:after {
  content: "\2191";
}
.table .sortable-column.sort-desc:after,
.table .sorting.sort-desc:after,
.table .sortable-column.sorting_desc:after,
.table .sorting.sorting_desc:after {
  content: "\2193";
}
.table.sortable-markers-on-left .sortable-column,
.table.sortable-markers-on-left .sorting {
  padding-left: 30px;
  padding-right: 10px;
}
.table.sortable-markers-on-left .sortable-column:before,
.table.sortable-markers-on-left .sorting:before,
.table.sortable-markers-on-left .sortable-column:after,
.table.sortable-markers-on-left .sorting:after {
  left: 0;
  margin-left: 0.625rem;
}
.table tr.selected td,
.table .tr.selected td,
.table tr.selected .td,
.table .tr.selected .td {
  background-color: var(--table-selected-background);
  color: var(--table-selected-color);
}
.table td.selected,
.table .td.selected {
  background-color: var(--table-selected-background);
  color: var(--table-selected-color);
}
.table.striped tbody tr:nth-child(odd),
.table.striped .tbody .tr:nth-child(odd) {
  background: var(--table-striped-background);
}
.table.inverse-striped tbody tr:nth-child(even),
.table.inverse-striped .tbody .tr:nth-child(even) {
  background: var(--table-striped-background);
}
.table.row-hover tbody tr:hover,
.table.row-hover .tbody tr:hover,
.table.row-hover tbody .tr:hover,
.table.row-hover .tbody .tr:hover {
  background-color: var(--table-hover-background);
  color: var(--table-hover-color);
}
.table.cell-hover tbody td:hover,
.table.cell-hover .tbody td:hover,
.table.cell-hover tbody .td:hover,
.table.cell-hover .tbody .td:hover {
  background-color: var(--table-hover-background);
  color: var(--table-hover-color);
}
.table.table-border {
  border: 1px var(--border-color) solid;
}
.table.cell-border th,
.table.cell-border td,
.table.cell-border .th,
.table.cell-border .td {
  border: 1px var(--border-color) solid;
}
.table.cell-border thead tr:first-child th,
.table.cell-border .thead tr:first-child th,
.table.cell-border thead .tr:first-child th,
.table.cell-border .thead .tr:first-child th,
.table.cell-border thead tr:first-child td,
.table.cell-border .thead tr:first-child td,
.table.cell-border thead .tr:first-child td,
.table.cell-border .thead .tr:first-child td,
.table.cell-border thead tr:first-child .th,
.table.cell-border .thead tr:first-child .th,
.table.cell-border thead .tr:first-child .th,
.table.cell-border .thead .tr:first-child .th,
.table.cell-border thead tr:first-child .td,
.table.cell-border .thead tr:first-child .td,
.table.cell-border thead .tr:first-child .td,
.table.cell-border .thead .tr:first-child .td {
  border-top: none;
}
.table.cell-border thead tr:first-child th:first-child,
.table.cell-border .thead tr:first-child th:first-child,
.table.cell-border thead .tr:first-child th:first-child,
.table.cell-border .thead .tr:first-child th:first-child,
.table.cell-border thead tr:first-child td:first-child,
.table.cell-border .thead tr:first-child td:first-child,
.table.cell-border thead .tr:first-child td:first-child,
.table.cell-border .thead .tr:first-child td:first-child,
.table.cell-border thead tr:first-child .th:first-child,
.table.cell-border .thead tr:first-child .th:first-child,
.table.cell-border thead .tr:first-child .th:first-child,
.table.cell-border .thead .tr:first-child .th:first-child,
.table.cell-border thead tr:first-child .td:first-child,
.table.cell-border .thead tr:first-child .td:first-child,
.table.cell-border thead .tr:first-child .td:first-child,
.table.cell-border .thead .tr:first-child .td:first-child {
  border-left: none;
}
.table.cell-border thead tr:first-child th:last-child,
.table.cell-border .thead tr:first-child th:last-child,
.table.cell-border thead .tr:first-child th:last-child,
.table.cell-border .thead .tr:first-child th:last-child,
.table.cell-border thead tr:first-child td:last-child,
.table.cell-border .thead tr:first-child td:last-child,
.table.cell-border thead .tr:first-child td:last-child,
.table.cell-border .thead .tr:first-child td:last-child,
.table.cell-border thead tr:first-child .th:last-child,
.table.cell-border .thead tr:first-child .th:last-child,
.table.cell-border thead .tr:first-child .th:last-child,
.table.cell-border .thead .tr:first-child .th:last-child,
.table.cell-border thead tr:first-child .td:last-child,
.table.cell-border .thead tr:first-child .td:last-child,
.table.cell-border thead .tr:first-child .td:last-child,
.table.cell-border .thead .tr:first-child .td:last-child {
  border-right: none;
}
.table.cell-border tbody tr:first-child td,
.table.cell-border .tbody tr:first-child td,
.table.cell-border tbody .tr:first-child td,
.table.cell-border .tbody .tr:first-child td,
.table.cell-border tbody tr:first-child .td,
.table.cell-border .tbody tr:first-child .td,
.table.cell-border tbody .tr:first-child .td,
.table.cell-border .tbody .tr:first-child .td {
  border-top: none;
}
.table.cell-border tbody tr td:first-child,
.table.cell-border .tbody tr td:first-child,
.table.cell-border tbody .tr td:first-child,
.table.cell-border .tbody .tr td:first-child,
.table.cell-border tbody tr .td:first-child,
.table.cell-border .tbody tr .td:first-child,
.table.cell-border tbody .tr .td:first-child,
.table.cell-border .tbody .tr .td:first-child {
  border-left: none;
}
.table.cell-border tbody tr td:last-child,
.table.cell-border .tbody tr td:last-child,
.table.cell-border tbody .tr td:last-child,
.table.cell-border .tbody .tr td:last-child,
.table.cell-border tbody tr .td:last-child,
.table.cell-border .tbody tr .td:last-child,
.table.cell-border tbody .tr .td:last-child,
.table.cell-border .tbody .tr .td:last-child {
  border-right: none;
}
.table.cell-border tbody tr:last-child td,
.table.cell-border .tbody tr:last-child td,
.table.cell-border tbody .tr:last-child td,
.table.cell-border .tbody .tr:last-child td,
.table.cell-border tbody tr:last-child .td,
.table.cell-border .tbody tr:last-child .td,
.table.cell-border tbody .tr:last-child .td,
.table.cell-border .tbody .tr:last-child .td {
  border-bottom: none;
}
.table.row-border tr + tr,
.table.row-border .tr + .tr {
  border-top: 1px var(--table-border-color) solid;
}
.table.subcompact th,
.table.subcompact td,
.table.subcompact .th,
.table.subcompact .td {
  padding: 3px 8px;
  font-size: 80%;
}
.table.compact th,
.table.compact td,
.table.compact .th,
.table.compact .td {
  padding: 7px 8px;
  font-size: 80%;
}
.table .check-cell,
.table .rownum-cell {
  width: 36px;
  text-align: center;
}
.table thead td.hidden,
.table tbody td.hidden,
.table .thead td.hidden,
.table .tbody td.hidden,
.table thead th.hidden,
.table tbody th.hidden,
.table .thead th.hidden,
.table .tbody th.hidden,
.table thead .th.hidden,
.table tbody .th.hidden,
.table .thead .th.hidden,
.table .tbody .th.hidden,
.table thead .td.hidden,
.table tbody .td.hidden,
.table .thead .td.hidden,
.table .tbody .td.hidden {
  display: none !important;
}
.table .data-wrapper {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table .checkbox,
.table .radio,
.table .switch {
  height: initial;
}
.table-component {
  display: block;
  position: relative;
  container: table-component / inline-size;
}
.table-component .inspector-button {
  font-family: "Segoe UI Symbol", serif;
}
.table-top {
  display: flex;
  flex-flow: row wrap;
  gap: 6px;
}
.table-bottom {
  margin-left: 0;
  margin-right: 0;
}
.table-info,
.table-pagination,
.table-skip {
  flex-basis: auto;
}
.table-info {
  margin-bottom: 10px;
}
.table-progress {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
}
.table-progress [class*=activity-] {
  margin: 0 auto;
}
.table-inspector {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--table-inspector-background);
  color: var(--table-inspector-color);
  z-index: 500;
  border: 1px double var(--table-inspector-border-color);
  border-radius: var(--table-inspector-border-radius);
  width: auto;
  padding: 10px;
  max-height: calc(100vh - 40px);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.table-inspector .table-inspector-header {
  display: block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5rem 0.5rem;
  border-bottom: 1px solid var(--table-border-color);
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.table-inspector .table-wrap {
  display: block;
  height: calc(100% - 110px);
  overflow-x: hidden;
  overflow-y: auto;
}
.table-inspector .table-inspector-actions {
  display: block;
  position: relative;
  border-top: 1px solid var(--table-border-color);
  padding: 0.5rem 0.5rem 0;
  margin-top: 0.5rem;
}
.table-inspector table,
.table-inspector .table {
  margin-bottom: 0;
}
.table-inspector table td,
.table-inspector .table td,
.table-inspector table .td,
.table-inspector .table .td {
  vertical-align: middle;
}
.table-inspector table tr.flash,
.table-inspector .table tr.flash,
.table-inspector table .tr.flash,
.table-inspector .table .tr.flash {
  animation: flash-bg 1s ease-out;
  animation-iteration-count: 1;
}
.table-inspector .spinner {
  width: 120px;
}
.table-inspector .spinner input {
  font-size: 14px;
}
.table-inspector.open {
  display: block;
}
.table-form {
  display: block;
  position: absolute;
  z-index: 500;
  height: auto;
  max-height: calc(100vh - 40px);
  width: auto;
  max-width: calc(100vw - 40px);
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
@keyframes flash-bg {
  0% {
    background-color: var(--table-background);
  }
  30% {
    background-color: var(--table-hover-background);
  }
  100% {
    background-color: var(--table-background);
  }
}
@container (min-width: 0) {
  .table.normal-fs th,
  .table.normal-fs td,
  .table.normal-fs .th,
  .table.normal-fs .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-fs th,
  .table.compact-fs td,
  .table.compact-fs .th,
  .table.compact-fs .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-fs th,
  .table.subcompact-fs td,
  .table.subcompact-fs .th,
  .table.subcompact-fs .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 360px) {
  .table.normal-xs th,
  .table.normal-xs td,
  .table.normal-xs .th,
  .table.normal-xs .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xs th,
  .table.compact-xs td,
  .table.compact-xs .th,
  .table.compact-xs .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xs th,
  .table.subcompact-xs td,
  .table.subcompact-xs .th,
  .table.subcompact-xs .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 576px) {
  .table.normal-sm th,
  .table.normal-sm td,
  .table.normal-sm .th,
  .table.normal-sm .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-sm th,
  .table.compact-sm td,
  .table.compact-sm .th,
  .table.compact-sm .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-sm th,
  .table.subcompact-sm td,
  .table.subcompact-sm .th,
  .table.subcompact-sm .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 640px) {
  .table.normal-ld th,
  .table.normal-ld td,
  .table.normal-ld .th,
  .table.normal-ld .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-ld th,
  .table.compact-ld td,
  .table.compact-ld .th,
  .table.compact-ld .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-ld th,
  .table.subcompact-ld td,
  .table.subcompact-ld .th,
  .table.subcompact-ld .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 768px) {
  .table.normal-md th,
  .table.normal-md td,
  .table.normal-md .th,
  .table.normal-md .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-md th,
  .table.compact-md td,
  .table.compact-md .th,
  .table.compact-md .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-md th,
  .table.subcompact-md td,
  .table.subcompact-md .th,
  .table.subcompact-md .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 992px) {
  .table.normal-lg th,
  .table.normal-lg td,
  .table.normal-lg .th,
  .table.normal-lg .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-lg th,
  .table.compact-lg td,
  .table.compact-lg .th,
  .table.compact-lg .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-lg th,
  .table.subcompact-lg td,
  .table.subcompact-lg .th,
  .table.subcompact-lg .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 1200px) {
  .table.normal-xl th,
  .table.normal-xl td,
  .table.normal-xl .th,
  .table.normal-xl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xl th,
  .table.compact-xl td,
  .table.compact-xl .th,
  .table.compact-xl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xl th,
  .table.subcompact-xl td,
  .table.subcompact-xl .th,
  .table.subcompact-xl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 1400px) {
  .table.normal-xxl th,
  .table.normal-xxl td,
  .table.normal-xxl .th,
  .table.normal-xxl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xxl th,
  .table.compact-xxl td,
  .table.compact-xxl .th,
  .table.compact-xxl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xxl th,
  .table.subcompact-xxl td,
  .table.subcompact-xxl .th,
  .table.subcompact-xxl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 2000px) {
  .table.normal-xxxl th,
  .table.normal-xxxl td,
  .table.normal-xxxl .th,
  .table.normal-xxxl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xxxl th,
  .table.compact-xxxl td,
  .table.compact-xxxl .th,
  .table.compact-xxxl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xxxl th,
  .table.subcompact-xxxl td,
  .table.subcompact-xxxl .th,
  .table.subcompact-xxxl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
.table-load-data-activity {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 500;
}
.table-skip {
  display: flex;
  justify-content: flex-end;
  position: relative;
  flex-flow: row nowrap;
  gap: 6px;
}
.table-skip .input {
  width: 200px;
}
.table-component .table-top,
.table-component .table-rows-block,
.table-component .table-search-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
.table-component .table-search-block {
  flex-shrink: 1;
}
.table-component .table-rows-block {
  width: min(100%, 220px);
}
@media screen and (min-width: 768px) {
  .table-component .table-top {
    flex-flow: row nowrap;
  }
}
.table-component .table-container {
  border: 1px solid var(--border-color);
  margin: 10px 0;
  overflow: hidden;
  position: relative;
}
.table-component .table-container.horizontal-scroll {
  overflow-x: auto;
}
.table-component .table-container.horizontal-scroll .table {
  width: auto;
  min-width: 100%;
}
.table-scrollable {
  overflow-x: auto;
}
.table-scrollable .table {
  width: auto;
  min-width: 100%;
}
@container table-component (max-width: 359px) {
  .table.responsive-xs {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xs caption {
    margin-bottom: 6px;
  }
  .table.responsive-xs thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xs tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xs tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xs td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xs td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 575px) {
  .table.responsive-sm {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-sm caption {
    margin-bottom: 6px;
  }
  .table.responsive-sm thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-sm tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-sm tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-sm td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-sm td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 639px) {
  .table.responsive-ld {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-ld caption {
    margin-bottom: 6px;
  }
  .table.responsive-ld thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-ld tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-ld tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-ld td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-ld td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 767px) {
  .table.responsive-md {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-md caption {
    margin-bottom: 6px;
  }
  .table.responsive-md thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-md tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-md tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-md td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-md td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 991px) {
  .table.responsive-lg {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-lg caption {
    margin-bottom: 6px;
  }
  .table.responsive-lg thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-lg tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-lg tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-lg td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-lg td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1199px) {
  .table.responsive-xl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1399px) {
  .table.responsive-xxl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xxl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xxl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xxl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xxl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xxl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1999px) {
  .table.responsive-xxxl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xxxl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xxxl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xxxl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xxxl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxxl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xxxl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
.table-container {
  scroll-snap-type: y mandatory;
}
.table.fixed-header tr {
  scroll-snap-align: start;
}
.table.fixed-header thead {
  position: sticky;
  top: 0;
}

/* source/components/remote-table/remote-table.less */
.remote-table .search-block {
  margin-bottom: 10px;
}

/* source/components/resizable/resizeable.less */
.resize-element {
  display: block;
  position: absolute;
  right: -1px;
  bottom: -1px;
  z-index: 101;
  cursor: nwse-resize;
  width: 12px;
  height: 12px;
}
.resize-element::after {
  position: absolute;
  display: block;
  border-bottom: 12px solid #00b500;
  border-left: 12px solid transparent;
  content: "";
  right: -2px;
  bottom: -2px;
}
.resize-element.resize-element-disabled {
  cursor: default;
}
.resize-element.resize-element-disabled::after {
  border-bottom-color: #ccc;
}

/* source/components/ribbon/ribbon.less */
:root {
  --ribbon-background: #757575;
  --ribbon-color: #ffffff;
}
.dark-side {
  --ribbon-background: rgba(117, 117, 117, 0.32);
  --ribbon-color: #ffffff;
}
.ribbon {
  display: flex;
  align-items: center;
  box-shadow: 2px 5px 10px rgba(50, 58, 70, 0.15);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  position: absolute;
  border-radius: 0 4px 4px 0;
  top: 20px;
  left: -10px;
  background: var(--ribbon-background);
  color: var(--ribbon-color);
  overflow: visible;
  z-index: 1029;
}
.ribbon .icon {
  font-size: 16px;
  height: 16px;
  width: 16px;
  margin-right: 4px;
}
.ribbon::before {
  bottom: -12px;
  content: "\25e5";
  display: block;
  left: 0;
  position: absolute;
  color: var(--ribbon-background);
}
.ribbon.right {
  left: auto;
  right: -10px;
  border-radius: 4px 0 0 4px;
}
.ribbon.right::before {
  content: "\25e4";
  left: auto;
  right: 0;
}
.ribbon-lime {
  background: #AEFD6C;
  color: #ffffff;
}
.ribbon-lime::before {
  color: #557f32;
}
.ribbon-green {
  background: #00b500;
  color: #ffffff;
}
.ribbon-green::before {
  color: #003d00;
}
.ribbon-emerald {
  background: #50c878;
  color: #ffffff;
}
.ribbon-emerald::before {
  color: #246339;
}
.ribbon-blue {
  background: #5e87ff;
  color: #ffffff;
}
.ribbon-blue::before {
  color: #132a6f;
}
.ribbon-teal {
  background: #1ac5c5;
  color: #ffffff;
}
.ribbon-teal::before {
  color: #014848;
}
.ribbon-cyan {
  background: #94b6ff;
  color: #ffffff;
}
.ribbon-cyan::before {
  color: #456c7e;
}
.ribbon-cobalt {
  background: #0047ab;
  color: #ffffff;
}
.ribbon-cobalt::before {
  color: #001f54;
}
.ribbon-indigo {
  background: #6400a8;
  color: #ffffff;
}
.ribbon-indigo::before {
  color: #21003e;
}
.ribbon-almost {
  background: #6a2ded;
  color: #ffffff;
}
.ribbon-almost::before {
  color: #2f0687;
}
.ribbon-violet {
  background: #ee82ee;
  color: #ffffff;
}
.ribbon-violet::before {
  color: #773e77;
}
.ribbon-pink {
  background: #ffc0cb;
  color: #ffffff;
}
.ribbon-pink::before {
  color: #805f65;
}
.ribbon-magenta {
  background: #ff00ff;
  color: #ffffff;
}
.ribbon-magenta::before {
  color: #800080;
}
.ribbon-crimson {
  background: #df0e38;
  color: #ffffff;
}
.ribbon-crimson::before {
  color: #6e0519;
}
.ribbon-red {
  background: #ff0000;
  color: #ffffff;
}
.ribbon-red::before {
  color: #800000;
}
.ribbon-orange {
  background: #ffa500;
  color: #ffffff;
}
.ribbon-orange::before {
  color: #805100;
}
.ribbon-amber {
  background: #ffca2a;
  color: #ffffff;
}
.ribbon-amber::before {
  color: #805e00;
}
.ribbon-yellow {
  background: #ffe95e;
  color: #ffffff;
}
.ribbon-yellow::before {
  color: #bca826;
}
.ribbon-brown {
  background: #ca773c;
  color: #ffffff;
}
.ribbon-brown::before {
  color: #42240f;
}
.ribbon-olive {
  background: #a1a100;
  color: #ffffff;
}
.ribbon-olive::before {
  color: #3d3d00;
}
.ribbon-steel {
  background: #7b91a6;
  color: #ffffff;
}
.ribbon-steel::before {
  color: #2e3841;
}
.ribbon-mauve {
  background: #e0afff;
  color: #ffffff;
}
.ribbon-mauve::before {
  color: #705680;
}
.ribbon-taupe {
  background: #977e67;
  color: #ffffff;
}
.ribbon-taupe::before {
  color: #261e18;
}
.ribbon-champagne {
  background: #f7e6ca;
  color: #ffffff;
}
.ribbon-champagne::before {
  color: #7c7364;
}
.ribbon-khaki {
  background: #d5c58a;
  color: #ffffff;
}
.ribbon-khaki::before {
  color: #6a6142;
}
.ribbon-charcoal {
  background: #989898;
  color: #ffffff;
}
.ribbon-charcoal::before {
  color: #202020;
}
.ribbon-bronze {
  background: #e48d3e;
  color: #ffffff;
}
.ribbon-bronze::before {
  color: #693c13;
}
.ribbon-windstorm {
  background: #799ed6;
  color: #ffffff;
}
.ribbon-windstorm::before {
  color: #304462;
}
.ribbon-nude {
  background: #f7d9bc;
  color: #ffffff;
}
.ribbon-nude::before {
  color: #7c6c5d;
}
.ribbon-terracotta {
  background: #e35336;
  color: #ffffff;
}
.ribbon-terracotta::before {
  color: #712516;
}
.ribbon-coral {
  background: #ff8559;
  color: #ffffff;
}
.ribbon-coral::before {
  color: #804028;
}
.ribbon-army {
  background: #5d6532;
  color: #ffffff;
}
.ribbon-army::before {
  color: #2a2f14;
}
.ribbon-seashell {
  background: #fff1e7;
  color: #ffffff;
}
.ribbon-seashell::before {
  color: #bfa89a;
}
.ribbon-sand {
  background: #f1e0ae;
  color: #ffffff;
}
.ribbon-sand::before {
  color: #8f8975;
}

/* source/components/ribbon-menu/ribbon-menu.less */
:root {
  --ribbon-menu-border-color: #dadbdc;
  --ribbon-menu-background: #ffffff;
  --ribbon-menu-color: #191919;
  --ribbon-menu-tab-background: #f5f6f7;
  --ribbon-menu-tab-color: #191919;
  --ribbon-menu-tab-background-active: #f5f6f7;
  --ribbon-menu-tab-color-active: #191919;
  --ribbon-menu-tab-background-static: #1979ca;
  --ribbon-menu-tab-color-static: #ffffff;
  --ribbon-menu-button-background: #f5f6f7;
  --ribbon-menu-button-color: #191919;
  --ribbon-menu-button-background-hover: rgba(164, 206, 249, 0.2);
  --ribbon-menu-button-background-active: rgba(164, 206, 249, 0.8);
}
.dark-side {
  --ribbon-menu-border-color: #4a4d51;
  --ribbon-menu-background: #1e1f22;
  --ribbon-menu-color: #dbdfe7;
  --ribbon-menu-tab-background: #343637;
  --ribbon-menu-tab-color: #ffffff;
  --ribbon-menu-tab-background-active: #26282e;
  --ribbon-menu-tab-color-active: #ffffff;
  --ribbon-menu-tab-background-static: #1979ca;
  --ribbon-menu-tab-color-static: #ffffff;
  --ribbon-menu-button-background: #26282e;
  --ribbon-menu-button-color: #dbdfe7;
  --ribbon-menu-button-background-hover: rgba(164, 206, 249, 0.2);
  --ribbon-menu-button-background-active: rgba(164, 206, 249, 0.8);
}
.ribbon-menu {
  display: block;
  position: relative;
  background-color: var(--ribbon-menu-background);
}
.ribbon-menu div {
  position: relative;
}
.ribbon-menu .tabs-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none inside;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--ribbon-menu-border-color);
}
.ribbon-menu .tabs-holder li,
.ribbon-menu .tabs-holder a {
  display: block;
  height: 24px;
  line-height: 24px;
}
.ribbon-menu .tabs-holder li {
  color: var(--ribbon-menu-color);
  background-color: var(--ribbon-menu-tab-background);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid var(--ribbon-menu-border-color);
}
.ribbon-menu .tabs-holder li:hover {
  border-left-color: var(--ribbon-menu-border-color);
  border-right-color: var(--ribbon-menu-border-color);
}
.ribbon-menu .tabs-holder li + li {
  margin-left: 3px;
}
.ribbon-menu .tabs-holder a {
  text-decoration: none;
  padding: 0 14px;
  font-size: 12px;
  background-color: inherit;
  color: inherit;
}
.ribbon-menu .tabs-holder .active {
  background-color: var(--ribbon-menu-tab-background-active);
  color: var(--ribbon-menu-tab-color-active);
  border: 1px solid var(--ribbon-menu-border-color);
  border-bottom-color: transparent;
}
.ribbon-menu .tabs-holder .static {
  background-color: var(--ribbon-menu-tab-background-static);
  color: var(--ribbon-menu-tab-color-static);
}
.ribbon-menu .content-holder {
  background-color: var(--ribbon-menu-tab-background-active);
  border-left: none;
  border-right: none;
  overflow-x: auto;
  display: flex;
  position: relative;
}
.ribbon-menu .content-holder .section {
  display: flex;
  padding: 4px 4px;
  justify-content: flex-start;
  flex-flow: row nowrap;
}
.ribbon-menu .content-holder .section.active {
  display: flex;
}
.ribbon-menu .content-holder .section.non-active {
  display: none;
}
.ribbon-menu .content-holder .section .title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  height: 22px;
  border: 1px solid var(--ribbon-menu-border-color);
  white-space: nowrap;
}
.ribbon-menu .content-holder .group {
  padding: 0 4px 24px;
  display: flex;
  cursor: default;
  background-color: inherit;
  position: relative;
  align-items: flex-start;
  align-content: flex-start;
}
.ribbon-menu .content-holder .group:nth-child(1):last-child {
  flex-basis: 100%;
}
.ribbon-menu .content-holder .group > .title {
  bottom: -4px;
}
.ribbon-menu .content-holder .group .group-divider {
  display: block;
  position: relative;
  height: 100%;
  margin: 0 4px;
  width: 1px;
  background-color: var(--ribbon-menu-border-color);
}
.ribbon-menu .content-holder .group > *:not(.title),
.ribbon-menu .content-holder .group > *:not(.group-divider) {
  margin: 2px;
}
.ribbon-menu .content-holder .group + .group {
  border-left: 1px solid var(--ribbon-menu-border-color);
}
.ribbon-button,
.ribbon-tool-button,
.ribbon-button-dropdown,
.ribbon-icon-button {
  cursor: pointer;
  min-width: 0;
  text-align: center;
  border: 1px solid transparent;
  background-color: var(--ribbon-menu-button-background);
  color: var(--ribbon-menu-button-color);
  outline: none;
  position: relative;
  border-radius: 2px;
}
.ribbon-button [aria-hidden=true],
.ribbon-tool-button [aria-hidden=true],
.ribbon-button-dropdown [aria-hidden=true],
.ribbon-icon-button [aria-hidden=true] {
  display: none;
}
.ribbon-button {
  height: auto;
  min-height: 64px;
  width: auto;
  padding: 4px;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  border-radius: 4px;
}
.ribbon-button .caption,
.ribbon-button .icon {
  display: block;
  text-align: center;
}
.ribbon-button .caption {
  font-size: 12px;
}
.ribbon-button .icon * {
  height: 32px;
  max-width: 32px;
  font-size: 26px;
  line-height: 32px;
}
.ribbon-button .icon + .caption {
  margin-top: 8px;
}
.ribbon-button.dropdown-toggle {
  padding-right: 4px !important;
}
.ribbon-button.dropdown-toggle::before {
  margin-left: -0.65rem;
}
.ribbon-icon-button {
  height: 24px;
  width: auto;
  margin: 0;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
  flex-wrap: nowrap;
  gap: 8px;
}
.ribbon-icon-button .caption {
  font-size: 12px;
  white-space: nowrap;
}
.ribbon-icon-button .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16px;
}
.ribbon-icon-button .icon * {
  width: 100%;
  height: 100%;
  font-size: 14px;
}
.ribbon-icon-button [class*=mif-] {
  vertical-align: inherit;
}
.ribbon-tool-button {
  width: 24px;
  height: 24px;
  padding: 0 2px;
  margin: 0;
}
.ribbon-tool-button * {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 14px;
}
.ribbon-icon-button.dropdown-toggle,
.ribbon-tool-button.dropdown-toggle {
  padding-right: 2px !important;
}
.ribbon-icon-button.dropdown-toggle::before,
.ribbon-tool-button.dropdown-toggle::before {
  display: none;
}
.ribbon-icon-button.dropdown-toggle::after,
.ribbon-tool-button.dropdown-toggle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 4px 4px;
  border-color: transparent transparent var(--ribbon-menu-button-color) transparent;
  z-index: 1;
}
.ribbon-icon-button.dropdown-toggle {
  padding-right: 4px !important;
}
.ribbon-split-button {
  text-align: center;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}
.ribbon-split-button:not([disabled]):hover,
.ribbon-split-button:not(.disabled):hover {
  border-color: var(--ribbon-menu-border-color);
}
.ribbon-split-button:not([disabled]):hover .ribbon-split,
.ribbon-split-button:not(.disabled):hover .ribbon-split {
  border-color: var(--ribbon-menu-border-color);
}
.ribbon-split-button .ribbon-main,
.ribbon-split-button .ribbon-split {
  display: block;
  text-align: center;
  min-width: 0;
  padding: 2px 4px;
  width: 100%;
  cursor: pointer;
}
.ribbon-split-button .ribbon-main:hover,
.ribbon-split-button .ribbon-split:hover {
  background-color: var(--ribbon-menu-button-background-hover);
}
.ribbon-split-button .ribbon-main {
  background-color: inherit;
  outline: none;
  position: relative;
  border: none;
}
.ribbon-split-button .icon * {
  height: 32px;
  max-width: 32px;
  font-size: 26px;
  line-height: 32px;
}
.ribbon-split-button .icon + .caption {
  margin-top: 8px;
}
.ribbon-split-button .ribbon-split {
  font-size: 12px;
  border-top: 1px solid transparent;
  padding-bottom: 4px;
  color: var(--ribbon-menu-button-color);
}
.ribbon-split-button .ribbon-split.dropdown-toggle {
  padding-right: 4px !important;
}
.ribbon-split-button .ribbon-split.dropdown-toggle::before {
  display: none;
}
.ribbon-split-button .ribbon-split.dropdown-toggle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 4px 4px;
  border-color: transparent transparent var(--ribbon-menu-button-color) transparent;
  z-index: 1;
}
.ribbon-split-button [aria-hidden=true] {
  display: none;
}
.ribbon-dropdown {
  list-style: none inside;
  margin: 0;
  padding: 0;
  position: relative;
  width: auto;
  float: left;
  display: block;
  position: absolute;
  background-color: var(--ribbon-menu-background);
  color: var(--ribbon-menu-color);
  padding: 2px;
  border: 1px solid var(--ribbon-menu-border-color);
  font-size: 12px;
  box-shadow: 0 10px 15px -3px var(--shadow-color-medium), 0 4px 6px -4px var(--shadow-color-medium);
  z-index: 1000;
  top: 100%;
  left: 0;
}
.ribbon-dropdown li,
.ribbon-dropdown a {
  display: block;
  position: relative;
  background-color: inherit;
  color: inherit;
}
.ribbon-dropdown li {
  border: 1px solid transparent;
  padding-left: 24px;
}
.ribbon-dropdown li:not([disabled]):hover,
.ribbon-dropdown li:not(.disabled):hover {
  border-color: var(--ribbon-menu-border-color);
  background-color: var(--ribbon-menu-button-background);
}
.ribbon-dropdown a {
  line-height: 22px;
  text-decoration: none;
  padding: 0 8px;
  border-left: 1px solid var(--ribbon-menu-border-color);
  white-space: nowrap;
}
.ribbon-dropdown .divider {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: var(--ribbon-menu-border-color);
}
.ribbon-dropdown .checked::before,
.ribbon-dropdown .checked-one::before,
.ribbon-dropdown .checked::after,
.ribbon-dropdown .checked-one::after {
  position: absolute;
  display: block;
  content: "";
}
.ribbon-dropdown .checked::before,
.ribbon-dropdown .checked-one::before {
  background-color: transparent;
  border-color: var(--ribbon-menu-border-color);
  border-left: 2px solid;
  border-bottom: 2px solid;
  height: 0.325rem;
  width: 0.5rem;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}
.ribbon-dropdown .checked::after,
.ribbon-dropdown .checked-one::after {
  width: 23px;
  height: 22px;
  top: 0;
  left: 0;
  z-index: 1;
}
.ribbon-dropdown .checked::after {
  border: 1px solid var(--ribbon-menu-border-color);
  background-color: var(--ribbon-menu-button-background);
}
.ribbon-dropdown .checked-one::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--ribbon-menu-button-color);
}
.ribbon-dropdown .ribbon-dropdown {
  top: -4px;
  left: 100%;
}
.ribbon-dropdown .dropdown-toggle::before {
  transform: rotate(-135deg) !important;
}
.ribbon-dropdown .dropdown-toggle.active-toggle::before {
  transform: rotate(45deg) !important;
}
.ribbon-dropdown [aria-hidden=true] {
  display: none;
}
.ribbon-toggle-group {
  background-color: var(--ribbon-menu-background);
  display: flex;
  flex-flow: column wrap;
  max-height: 80px;
  border: 1px solid var(--ribbon-menu-border-color);
  width: auto;
  justify-content: flex-start;
}
.ribbon-toggle-group .ribbon-icon-button {
  height: 20px;
  margin: 1px;
  background-color: inherit;
}
.ribbon-button:hover:enabled,
.ribbon-tool-button:hover:enabled,
.ribbon-icon-button:hover:enabled,
.ribbon-button:not(.disabled):hover,
.ribbon-tool-button:not(.disabled):hover,
.ribbon-icon-button:not(.disabled):hover {
  border-color: var(--ribbon-menu-border-color);
  background-color: var(--ribbon-menu-button-background-hover);
}
.ribbon-button:active,
.ribbon-tool-button:active,
.ribbon-split:active,
.ribbon-main:active,
.ribbon-icon-button:active,
.ribbon-button.active,
.ribbon-tool-button.active,
.ribbon-split.active,
.ribbon-main.active,
.ribbon-icon-button.active {
  border-color: var(--ribbon-menu-button-background-active);
  background-color: var(--ribbon-menu-button-background-active);
}
.ribbon-menu .active-container .ribbon-button,
.ribbon-menu .active-container .ribbon-tool-button,
.ribbon-menu .active-container .ribbon-icon-button {
  border-color: var(--ribbon-menu-button-background-active);
  background-color: var(--ribbon-menu-button-background-active);
}

/* source/components/ripple/ripple.less */
.ripple {
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  position: absolute;
  opacity: 1;
}
.rippleEffect {
  animation: rippleDrop 0.5s linear;
}
@keyframes rippleDrop {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* source/components/scrollbar/scrollbar.less */
.scrollbar-type-1 ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.scrollbar-type-1 ::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}
.scrollbar-type-1 ::-webkit-scrollbar-thumb {
  background-color: rgba(101, 95, 95, 0.71);
}
.scrollbar-type-2 ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.scrollbar-type-2 ::-webkit-scrollbar-track {
  border-radius: 6px;
  background-color: #e8e8e8;
}
.scrollbar-type-2 ::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(101, 95, 95, 0.71);
}
.scrollbar-type-3 ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.scrollbar-type-3 ::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}
.scrollbar-type-3 ::-webkit-scrollbar-thumb {
  background-color: rgba(101, 95, 95, 0.71);
}
.scrollbar-type-4 ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.scrollbar-type-4 ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e8e8e8;
}
.scrollbar-type-4 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(101, 95, 95, 0.71);
}
[class*=scrollbar-type-] * {
  scrollbar-width: thin;
  scrollbar-color: rgba(101, 95, 95, 0.71) #e8e8e8;
}
.sb-black ::-webkit-scrollbar-thumb {
  background-color: #000000 !important;
}
.sb-black * {
  scrollbar-color: #000000 #e8e8e8 !important;
}
.sb-white ::-webkit-scrollbar-thumb {
  background-color: #ffffff !important;
}
.sb-white * {
  scrollbar-color: #ffffff #e8e8e8 !important;
}
.sb-dark ::-webkit-scrollbar-thumb {
  background-color: #1d1d1d !important;
}
.sb-dark * {
  scrollbar-color: #1d1d1d #e8e8e8 !important;
}
.sb-light ::-webkit-scrollbar-thumb {
  background-color: #f8f8f8 !important;
}
.sb-light * {
  scrollbar-color: #f8f8f8 #e8e8e8 !important;
}
.sb-gray ::-webkit-scrollbar-thumb {
  background-color: #ccc !important;
}
.sb-gray * {
  scrollbar-color: #ccc #e8e8e8 !important;
}
.sb-gray-blue ::-webkit-scrollbar-thumb {
  background-color: #6a89a7 !important;
}
.sb-gray-blue * {
  scrollbar-color: #6a89a7 #e8e8e8 !important;
}
.sb-gray-white ::-webkit-scrollbar-thumb {
  background-color: #f5f5f5 !important;
}
.sb-gray-white * {
  scrollbar-color: #f5f5f5 #e8e8e8 !important;
}
.sb-gray-mouse ::-webkit-scrollbar-thumb {
  background-color: #566b75 !important;
}
.sb-gray-mouse * {
  scrollbar-color: #566b75 #e8e8e8 !important;
}
.sb-lime ::-webkit-scrollbar-thumb {
  background-color: #AEFD6C !important;
}
.sb-lime * {
  scrollbar-color: #AEFD6C #e8e8e8 !important;
}
.sb-green ::-webkit-scrollbar-thumb {
  background-color: #00b500 !important;
}
.sb-green * {
  scrollbar-color: #00b500 #e8e8e8 !important;
}
.sb-emerald ::-webkit-scrollbar-thumb {
  background-color: #50c878 !important;
}
.sb-emerald * {
  scrollbar-color: #50c878 #e8e8e8 !important;
}
.sb-blue ::-webkit-scrollbar-thumb {
  background-color: #5e87ff !important;
}
.sb-blue * {
  scrollbar-color: #5e87ff #e8e8e8 !important;
}
.sb-teal ::-webkit-scrollbar-thumb {
  background-color: #1ac5c5 !important;
}
.sb-teal * {
  scrollbar-color: #1ac5c5 #e8e8e8 !important;
}
.sb-cyan ::-webkit-scrollbar-thumb {
  background-color: #94b6ff !important;
}
.sb-cyan * {
  scrollbar-color: #94b6ff #e8e8e8 !important;
}
.sb-cobalt ::-webkit-scrollbar-thumb {
  background-color: #0047ab !important;
}
.sb-cobalt * {
  scrollbar-color: #0047ab #e8e8e8 !important;
}
.sb-indigo ::-webkit-scrollbar-thumb {
  background-color: #6400a8 !important;
}
.sb-indigo * {
  scrollbar-color: #6400a8 #e8e8e8 !important;
}
.sb-almost ::-webkit-scrollbar-thumb {
  background-color: #6a2ded !important;
}
.sb-almost * {
  scrollbar-color: #6a2ded #e8e8e8 !important;
}
.sb-violet ::-webkit-scrollbar-thumb {
  background-color: #ee82ee !important;
}
.sb-violet * {
  scrollbar-color: #ee82ee #e8e8e8 !important;
}
.sb-pink ::-webkit-scrollbar-thumb {
  background-color: #ffc0cb !important;
}
.sb-pink * {
  scrollbar-color: #ffc0cb #e8e8e8 !important;
}
.sb-magenta ::-webkit-scrollbar-thumb {
  background-color: #ff00ff !important;
}
.sb-magenta * {
  scrollbar-color: #ff00ff #e8e8e8 !important;
}
.sb-crimson ::-webkit-scrollbar-thumb {
  background-color: #df0e38 !important;
}
.sb-crimson * {
  scrollbar-color: #df0e38 #e8e8e8 !important;
}
.sb-red ::-webkit-scrollbar-thumb {
  background-color: #ff0000 !important;
}
.sb-red * {
  scrollbar-color: #ff0000 #e8e8e8 !important;
}
.sb-clown ::-webkit-scrollbar-thumb {
  background-color: #ff6d66 !important;
}
.sb-clown * {
  scrollbar-color: #ff6d66 #e8e8e8 !important;
}
.sb-orange ::-webkit-scrollbar-thumb {
  background-color: #ffa500 !important;
}
.sb-orange * {
  scrollbar-color: #ffa500 #e8e8e8 !important;
}
.sb-amber ::-webkit-scrollbar-thumb {
  background-color: #ffca2a !important;
}
.sb-amber * {
  scrollbar-color: #ffca2a #e8e8e8 !important;
}
.sb-yellow ::-webkit-scrollbar-thumb {
  background-color: #ffe95e !important;
}
.sb-yellow * {
  scrollbar-color: #ffe95e #e8e8e8 !important;
}
.sb-brown ::-webkit-scrollbar-thumb {
  background-color: #ca773c !important;
}
.sb-brown * {
  scrollbar-color: #ca773c #e8e8e8 !important;
}
.sb-olive ::-webkit-scrollbar-thumb {
  background-color: #a1a100 !important;
}
.sb-olive * {
  scrollbar-color: #a1a100 #e8e8e8 !important;
}
.sb-steel ::-webkit-scrollbar-thumb {
  background-color: #7b91a6 !important;
}
.sb-steel * {
  scrollbar-color: #7b91a6 #e8e8e8 !important;
}
.sb-mauve ::-webkit-scrollbar-thumb {
  background-color: #e0afff !important;
}
.sb-mauve * {
  scrollbar-color: #e0afff #e8e8e8 !important;
}
.sb-taupe ::-webkit-scrollbar-thumb {
  background-color: #977e67 !important;
}
.sb-taupe * {
  scrollbar-color: #977e67 #e8e8e8 !important;
}
.sb-champagne ::-webkit-scrollbar-thumb {
  background-color: #f7e6ca !important;
}
.sb-champagne * {
  scrollbar-color: #f7e6ca #e8e8e8 !important;
}
.sb-khaki ::-webkit-scrollbar-thumb {
  background-color: #d5c58a !important;
}
.sb-khaki * {
  scrollbar-color: #d5c58a #e8e8e8 !important;
}
.sb-charcoal ::-webkit-scrollbar-thumb {
  background-color: #989898 !important;
}
.sb-charcoal * {
  scrollbar-color: #989898 #e8e8e8 !important;
}
.sb-bronze ::-webkit-scrollbar-thumb {
  background-color: #e48d3e !important;
}
.sb-bronze * {
  scrollbar-color: #e48d3e #e8e8e8 !important;
}
.sb-windstorm ::-webkit-scrollbar-thumb {
  background-color: #799ed6 !important;
}
.sb-windstorm * {
  scrollbar-color: #799ed6 #e8e8e8 !important;
}
.sb-nude ::-webkit-scrollbar-thumb {
  background-color: #f7d9bc !important;
}
.sb-nude * {
  scrollbar-color: #f7d9bc #e8e8e8 !important;
}
.sb-terracotta ::-webkit-scrollbar-thumb {
  background-color: #e35336 !important;
}
.sb-terracotta * {
  scrollbar-color: #e35336 #e8e8e8 !important;
}
.sb-coral ::-webkit-scrollbar-thumb {
  background-color: #ff8559 !important;
}
.sb-coral * {
  scrollbar-color: #ff8559 #e8e8e8 !important;
}
.sb-army ::-webkit-scrollbar-thumb {
  background-color: #5d6532 !important;
}
.sb-army * {
  scrollbar-color: #5d6532 #e8e8e8 !important;
}
.sb-seashell ::-webkit-scrollbar-thumb {
  background-color: #fff1e7 !important;
}
.sb-seashell * {
  scrollbar-color: #fff1e7 #e8e8e8 !important;
}
.sb-sand ::-webkit-scrollbar-thumb {
  background-color: #f1e0ae !important;
}
.sb-sand * {
  scrollbar-color: #f1e0ae #e8e8e8 !important;
}
.sb-light-lime ::-webkit-scrollbar-thumb {
  background-color: #f2ffe7 !important;
}
.sb-light-lime * {
  scrollbar-color: #f2ffe7 #e8e8e8 !important;
}
.sb-light-green ::-webkit-scrollbar-thumb {
  background-color: #e7f6e6 !important;
}
.sb-light-green * {
  scrollbar-color: #e7f6e6 #e8e8e8 !important;
}
.sb-light-emerald ::-webkit-scrollbar-thumb {
  background-color: #d1e6cc !important;
}
.sb-light-emerald * {
  scrollbar-color: #d1e6cc #e8e8e8 !important;
}
.sb-light-blue ::-webkit-scrollbar-thumb {
  background-color: #e7eaff !important;
}
.sb-light-blue * {
  scrollbar-color: #e7eaff #e8e8e8 !important;
}
.sb-light-teal ::-webkit-scrollbar-thumb {
  background-color: #e1f2f3 !important;
}
.sb-light-teal * {
  scrollbar-color: #e1f2f3 #e8e8e8 !important;
}
.sb-light-cyan ::-webkit-scrollbar-thumb {
  background-color: #e3edff !important;
}
.sb-light-cyan * {
  scrollbar-color: #e3edff #e8e8e8 !important;
}
.sb-light-cobalt ::-webkit-scrollbar-thumb {
  background-color: #d1ecff !important;
}
.sb-light-cobalt * {
  scrollbar-color: #d1ecff #e8e8e8 !important;
}
.sb-light-indigo ::-webkit-scrollbar-thumb {
  background-color: #f3dcf3 !important;
}
.sb-light-indigo * {
  scrollbar-color: #f3dcf3 #e8e8e8 !important;
}
.sb-light-almost ::-webkit-scrollbar-thumb {
  background-color: #eee5ff !important;
}
.sb-light-almost * {
  scrollbar-color: #eee5ff #e8e8e8 !important;
}
.sb-light-violet ::-webkit-scrollbar-thumb {
  background-color: #fce2fb !important;
}
.sb-light-violet * {
  scrollbar-color: #fce2fb #e8e8e8 !important;
}
.sb-light-pink ::-webkit-scrollbar-thumb {
  background-color: #ffeef1 !important;
}
.sb-light-pink * {
  scrollbar-color: #ffeef1 #e8e8e8 !important;
}
.sb-light-magenta ::-webkit-scrollbar-thumb {
  background-color: #ffe2ff !important;
}
.sb-light-magenta * {
  scrollbar-color: #ffe2ff #e8e8e8 !important;
}
.sb-light-crimson ::-webkit-scrollbar-thumb {
  background-color: #ffd1da !important;
}
.sb-light-crimson * {
  scrollbar-color: #ffd1da #e8e8e8 !important;
}
.sb-light-red ::-webkit-scrollbar-thumb {
  background-color: #ffe1e1 !important;
}
.sb-light-red * {
  scrollbar-color: #ffe1e1 #e8e8e8 !important;
}
.sb-light-clown ::-webkit-scrollbar-thumb {
  background-color: #ffdede !important;
}
.sb-light-clown * {
  scrollbar-color: #ffdede #e8e8e8 !important;
}
.sb-light-orange ::-webkit-scrollbar-thumb {
  background-color: #fff3de !important;
}
.sb-light-orange * {
  scrollbar-color: #fff3de #e8e8e8 !important;
}
.sb-light-amber ::-webkit-scrollbar-thumb {
  background-color: #fff8e1 !important;
}
.sb-light-amber * {
  scrollbar-color: #fff8e1 #e8e8e8 !important;
}
.sb-light-yellow ::-webkit-scrollbar-thumb {
  background-color: #ffffc6 !important;
}
.sb-light-yellow * {
  scrollbar-color: #ffffc6 #e8e8e8 !important;
}
.sb-light-brown ::-webkit-scrollbar-thumb {
  background-color: #ffeed9 !important;
}
.sb-light-brown * {
  scrollbar-color: #ffeed9 #e8e8e8 !important;
}
.sb-light-olive ::-webkit-scrollbar-thumb {
  background-color: #f8fde7 !important;
}
.sb-light-olive * {
  scrollbar-color: #f8fde7 #e8e8e8 !important;
}
.sb-light-steel ::-webkit-scrollbar-thumb {
  background-color: #edeeee !important;
}
.sb-light-steel * {
  scrollbar-color: #edeeee #e8e8e8 !important;
}
.sb-light-mauve ::-webkit-scrollbar-thumb {
  background-color: #f7ecfe !important;
}
.sb-light-mauve * {
  scrollbar-color: #f7ecfe #e8e8e8 !important;
}
.sb-light-taupe ::-webkit-scrollbar-thumb {
  background-color: #eadccf !important;
}
.sb-light-taupe * {
  scrollbar-color: #eadccf #e8e8e8 !important;
}
.sb-light-gray ::-webkit-scrollbar-thumb {
  background-color: #f4f4f4 !important;
}
.sb-light-gray * {
  scrollbar-color: #f4f4f4 #e8e8e8 !important;
}
.sb-light-gray-blue ::-webkit-scrollbar-thumb {
  background-color: #bee2f4 !important;
}
.sb-light-gray-blue * {
  scrollbar-color: #bee2f4 #e8e8e8 !important;
}
.sb-light-gray-mouse ::-webkit-scrollbar-thumb {
  background-color: #8ab4c8 !important;
}
.sb-light-gray-mouse * {
  scrollbar-color: #8ab4c8 #e8e8e8 !important;
}
.sb-light-champagne ::-webkit-scrollbar-thumb {
  background-color: #fff9f2 !important;
}
.sb-light-champagne * {
  scrollbar-color: #fff9f2 #e8e8e8 !important;
}
.sb-light-khaki ::-webkit-scrollbar-thumb {
  background-color: #f6f1dd !important;
}
.sb-light-khaki * {
  scrollbar-color: #f6f1dd #e8e8e8 !important;
}
.sb-light-charcoal ::-webkit-scrollbar-thumb {
  background-color: #e8e8e8 !important;
}
.sb-light-charcoal * {
  scrollbar-color: #e8e8e8 #e8e8e8 !important;
}
.sb-light-bronze ::-webkit-scrollbar-thumb {
  background-color: #ffecdc !important;
}
.sb-light-bronze * {
  scrollbar-color: #ffecdc #e8e8e8 !important;
}
.sb-light-windstorm ::-webkit-scrollbar-thumb {
  background-color: #e6ebf5 !important;
}
.sb-light-windstorm * {
  scrollbar-color: #e6ebf5 #e8e8e8 !important;
}
.sb-light-nude ::-webkit-scrollbar-thumb {
  background-color: #fcf0e4 !important;
}
.sb-light-nude * {
  scrollbar-color: #fcf0e4 #e8e8e8 !important;
}
.sb-light-terracotta ::-webkit-scrollbar-thumb {
  background-color: #ffe5df !important;
}
.sb-light-terracotta * {
  scrollbar-color: #ffe5df #e8e8e8 !important;
}
.sb-light-coral ::-webkit-scrollbar-thumb {
  background-color: #ffd8c8 !important;
}
.sb-light-coral * {
  scrollbar-color: #ffd8c8 #e8e8e8 !important;
}
.sb-light-army ::-webkit-scrollbar-thumb {
  background-color: #eceacb !important;
}
.sb-light-army * {
  scrollbar-color: #eceacb #e8e8e8 !important;
}
.sb-light-seashell ::-webkit-scrollbar-thumb {
  background-color: #fff9f8 !important;
}
.sb-light-seashell * {
  scrollbar-color: #fff9f8 #e8e8e8 !important;
}
.sb-light-sand ::-webkit-scrollbar-thumb {
  background-color: #f8f3e0 !important;
}
.sb-light-sand * {
  scrollbar-color: #f8f3e0 #e8e8e8 !important;
}
.sb-dark-lime ::-webkit-scrollbar-thumb {
  background-color: #557f32 !important;
}
.sb-dark-lime * {
  scrollbar-color: #557f32 #e8e8e8 !important;
}
.sb-dark-green ::-webkit-scrollbar-thumb {
  background-color: #003d00 !important;
}
.sb-dark-green * {
  scrollbar-color: #003d00 #e8e8e8 !important;
}
.sb-dark-emerald ::-webkit-scrollbar-thumb {
  background-color: #246339 !important;
}
.sb-dark-emerald * {
  scrollbar-color: #246339 #e8e8e8 !important;
}
.sb-dark-blue ::-webkit-scrollbar-thumb {
  background-color: #132a6f !important;
}
.sb-dark-blue * {
  scrollbar-color: #132a6f #e8e8e8 !important;
}
.sb-dark-teal ::-webkit-scrollbar-thumb {
  background-color: #014848 !important;
}
.sb-dark-teal * {
  scrollbar-color: #014848 #e8e8e8 !important;
}
.sb-dark-cyan ::-webkit-scrollbar-thumb {
  background-color: #456c7e !important;
}
.sb-dark-cyan * {
  scrollbar-color: #456c7e #e8e8e8 !important;
}
.sb-dark-cobalt ::-webkit-scrollbar-thumb {
  background-color: #001f54 !important;
}
.sb-dark-cobalt * {
  scrollbar-color: #001f54 #e8e8e8 !important;
}
.sb-dark-indigo ::-webkit-scrollbar-thumb {
  background-color: #21003e !important;
}
.sb-dark-indigo * {
  scrollbar-color: #21003e #e8e8e8 !important;
}
.sb-dark-almost ::-webkit-scrollbar-thumb {
  background-color: #2f0687 !important;
}
.sb-dark-almost * {
  scrollbar-color: #2f0687 #e8e8e8 !important;
}
.sb-dark-violet ::-webkit-scrollbar-thumb {
  background-color: #773e77 !important;
}
.sb-dark-violet * {
  scrollbar-color: #773e77 #e8e8e8 !important;
}
.sb-dark-pink ::-webkit-scrollbar-thumb {
  background-color: #805f65 !important;
}
.sb-dark-pink * {
  scrollbar-color: #805f65 #e8e8e8 !important;
}
.sb-dark-magenta ::-webkit-scrollbar-thumb {
  background-color: #800080 !important;
}
.sb-dark-magenta * {
  scrollbar-color: #800080 #e8e8e8 !important;
}
.sb-dark-crimson ::-webkit-scrollbar-thumb {
  background-color: #6e0519 !important;
}
.sb-dark-crimson * {
  scrollbar-color: #6e0519 #e8e8e8 !important;
}
.sb-dark-red ::-webkit-scrollbar-thumb {
  background-color: #800000 !important;
}
.sb-dark-red * {
  scrollbar-color: #800000 #e8e8e8 !important;
}
.sb-dark-clown ::-webkit-scrollbar-thumb {
  background-color: #aa2824 !important;
}
.sb-dark-clown * {
  scrollbar-color: #aa2824 #e8e8e8 !important;
}
.sb-dark-orange ::-webkit-scrollbar-thumb {
  background-color: #805100 !important;
}
.sb-dark-orange * {
  scrollbar-color: #805100 #e8e8e8 !important;
}
.sb-dark-amber ::-webkit-scrollbar-thumb {
  background-color: #805e00 !important;
}
.sb-dark-amber * {
  scrollbar-color: #805e00 #e8e8e8 !important;
}
.sb-dark-yellow ::-webkit-scrollbar-thumb {
  background-color: #bca826 !important;
}
.sb-dark-yellow * {
  scrollbar-color: #bca826 #e8e8e8 !important;
}
.sb-dark-brown ::-webkit-scrollbar-thumb {
  background-color: #42240f !important;
}
.sb-dark-brown * {
  scrollbar-color: #42240f #e8e8e8 !important;
}
.sb-dark-olive ::-webkit-scrollbar-thumb {
  background-color: #3d3d00 !important;
}
.sb-dark-olive * {
  scrollbar-color: #3d3d00 #e8e8e8 !important;
}
.sb-dark-steel ::-webkit-scrollbar-thumb {
  background-color: #2e3841 !important;
}
.sb-dark-steel * {
  scrollbar-color: #2e3841 #e8e8e8 !important;
}
.sb-dark-mauve ::-webkit-scrollbar-thumb {
  background-color: #705680 !important;
}
.sb-dark-mauve * {
  scrollbar-color: #705680 #e8e8e8 !important;
}
.sb-dark-taupe ::-webkit-scrollbar-thumb {
  background-color: #261e18 !important;
}
.sb-dark-taupe * {
  scrollbar-color: #261e18 #e8e8e8 !important;
}
.sb-dark-gray ::-webkit-scrollbar-thumb {
  background-color: #515151 !important;
}
.sb-dark-gray * {
  scrollbar-color: #515151 #e8e8e8 !important;
}
.sb-dark-gray-blue ::-webkit-scrollbar-thumb {
  background-color: #36464e !important;
}
.sb-dark-gray-blue * {
  scrollbar-color: #36464e #e8e8e8 !important;
}
.sb-dark-gray-mouse ::-webkit-scrollbar-thumb {
  background-color: #2e3c42 !important;
}
.sb-dark-gray-mouse * {
  scrollbar-color: #2e3c42 #e8e8e8 !important;
}
.sb-dark-champagne ::-webkit-scrollbar-thumb {
  background-color: #7c7364 !important;
}
.sb-dark-champagne * {
  scrollbar-color: #7c7364 #e8e8e8 !important;
}
.sb-dark-khaki ::-webkit-scrollbar-thumb {
  background-color: #6a6142 !important;
}
.sb-dark-khaki * {
  scrollbar-color: #6a6142 #e8e8e8 !important;
}
.sb-dark-charcoal ::-webkit-scrollbar-thumb {
  background-color: #202020 !important;
}
.sb-dark-charcoal * {
  scrollbar-color: #202020 #e8e8e8 !important;
}
.sb-dark-bronze ::-webkit-scrollbar-thumb {
  background-color: #693c13 !important;
}
.sb-dark-bronze * {
  scrollbar-color: #693c13 #e8e8e8 !important;
}
.sb-dark-windstorm ::-webkit-scrollbar-thumb {
  background-color: #304462 !important;
}
.sb-dark-windstorm * {
  scrollbar-color: #304462 #e8e8e8 !important;
}
.sb-dark-nude ::-webkit-scrollbar-thumb {
  background-color: #7c6c5d !important;
}
.sb-dark-nude * {
  scrollbar-color: #7c6c5d #e8e8e8 !important;
}
.sb-dark-terracotta ::-webkit-scrollbar-thumb {
  background-color: #712516 !important;
}
.sb-dark-terracotta * {
  scrollbar-color: #712516 #e8e8e8 !important;
}
.sb-dark-coral ::-webkit-scrollbar-thumb {
  background-color: #804028 !important;
}
.sb-dark-coral * {
  scrollbar-color: #804028 #e8e8e8 !important;
}
.sb-dark-army ::-webkit-scrollbar-thumb {
  background-color: #2a2f14 !important;
}
.sb-dark-army * {
  scrollbar-color: #2a2f14 #e8e8e8 !important;
}
.sb-dark-seashell ::-webkit-scrollbar-thumb {
  background-color: #bfa89a !important;
}
.sb-dark-seashell * {
  scrollbar-color: #bfa89a #e8e8e8 !important;
}
.sb-dark-sand ::-webkit-scrollbar-thumb {
  background-color: #8f8975 !important;
}
.sb-dark-sand * {
  scrollbar-color: #8f8975 #e8e8e8 !important;
}
.sb-sat-lime ::-webkit-scrollbar-thumb {
  background-color: #7dba4a !important;
}
.sb-sat-lime * {
  scrollbar-color: #7dba4a #e8e8e8 !important;
}
.sb-sat-green ::-webkit-scrollbar-thumb {
  background-color: #008f00 !important;
}
.sb-sat-green * {
  scrollbar-color: #008f00 #e8e8e8 !important;
}
.sb-sat-emerald ::-webkit-scrollbar-thumb {
  background-color: #3ca15d !important;
}
.sb-sat-emerald * {
  scrollbar-color: #3ca15d #e8e8e8 !important;
}
.sb-sat-blue ::-webkit-scrollbar-thumb {
  background-color: #1f43ae !important;
}
.sb-sat-blue * {
  scrollbar-color: #1f43ae #e8e8e8 !important;
}
.sb-sat-teal ::-webkit-scrollbar-thumb {
  background-color: #008a8a !important;
}
.sb-sat-teal * {
  scrollbar-color: #008a8a #e8e8e8 !important;
}
.sb-sat-cyan ::-webkit-scrollbar-thumb {
  background-color: #659db6 !important;
}
.sb-sat-cyan * {
  scrollbar-color: #659db6 #e8e8e8 !important;
}
.sb-sat-cobalt ::-webkit-scrollbar-thumb {
  background-color: #003391 !important;
}
.sb-sat-cobalt * {
  scrollbar-color: #003391 #e8e8e8 !important;
}
.sb-sat-indigo ::-webkit-scrollbar-thumb {
  background-color: #430080 !important;
}
.sb-sat-indigo * {
  scrollbar-color: #430080 #e8e8e8 !important;
}
.sb-sat-almost ::-webkit-scrollbar-thumb {
  background-color: #4e18c1 !important;
}
.sb-sat-almost * {
  scrollbar-color: #4e18c1 #e8e8e8 !important;
}
.sb-sat-violet ::-webkit-scrollbar-thumb {
  background-color: #b65fb6 !important;
}
.sb-sat-violet * {
  scrollbar-color: #b65fb6 #e8e8e8 !important;
}
.sb-sat-pink ::-webkit-scrollbar-thumb {
  background-color: #cc7296 !important;
}
.sb-sat-pink * {
  scrollbar-color: #cc7296 #e8e8e8 !important;
}
.sb-sat-magenta ::-webkit-scrollbar-thumb {
  background-color: #c500c5 !important;
}
.sb-sat-magenta * {
  scrollbar-color: #c500c5 #e8e8e8 !important;
}
.sb-sat-crimson ::-webkit-scrollbar-thumb {
  background-color: #980824 !important;
}
.sb-sat-crimson * {
  scrollbar-color: #980824 #e8e8e8 !important;
}
.sb-sat-red ::-webkit-scrollbar-thumb {
  background-color: #b80000 !important;
}
.sb-sat-red * {
  scrollbar-color: #b80000 #e8e8e8 !important;
}
.sb-sat-clown ::-webkit-scrollbar-thumb {
  background-color: #d64f48 !important;
}
.sb-sat-clown * {
  scrollbar-color: #d64f48 #e8e8e8 !important;
}
.sb-sat-orange ::-webkit-scrollbar-thumb {
  background-color: #bc7700 !important;
}
.sb-sat-orange * {
  scrollbar-color: #bc7700 #e8e8e8 !important;
}
.sb-sat-amber ::-webkit-scrollbar-thumb {
  background-color: #d19b00 !important;
}
.sb-sat-amber * {
  scrollbar-color: #d19b00 #e8e8e8 !important;
}
.sb-sat-yellow ::-webkit-scrollbar-thumb {
  background-color: #e4ce43 !important;
}
.sb-sat-yellow * {
  scrollbar-color: #e4ce43 #e8e8e8 !important;
}
.sb-sat-brown ::-webkit-scrollbar-thumb {
  background-color: #884b20 !important;
}
.sb-sat-brown * {
  scrollbar-color: #884b20 #e8e8e8 !important;
}
.sb-sat-olive ::-webkit-scrollbar-thumb {
  background-color: #838300 !important;
}
.sb-sat-olive * {
  scrollbar-color: #838300 #e8e8e8 !important;
}
.sb-sat-steel ::-webkit-scrollbar-thumb {
  background-color: #5c7081 !important;
}
.sb-sat-steel * {
  scrollbar-color: #5c7081 #e8e8e8 !important;
}
.sb-sat-mauve ::-webkit-scrollbar-thumb {
  background-color: #a982c1 !important;
}
.sb-sat-mauve * {
  scrollbar-color: #a982c1 #e8e8e8 !important;
}
.sb-sat-taupe ::-webkit-scrollbar-thumb {
  background-color: #5e4a3c !important;
}
.sb-sat-taupe * {
  scrollbar-color: #5e4a3c #e8e8e8 !important;
}
.sb-sat-gray ::-webkit-scrollbar-thumb {
  background-color: #9c9c9c !important;
}
.sb-sat-gray * {
  scrollbar-color: #9c9c9c #e8e8e8 !important;
}
.sb-sat-gray-blue ::-webkit-scrollbar-thumb {
  background-color: #5f7a88 !important;
}
.sb-sat-gray-blue * {
  scrollbar-color: #5f7a88 #e8e8e8 !important;
}
.sb-sat-gray-mouse ::-webkit-scrollbar-thumb {
  background-color: #3f535c !important;
}
.sb-sat-gray-mouse * {
  scrollbar-color: #3f535c #e8e8e8 !important;
}
.sb-sat-champagne ::-webkit-scrollbar-thumb {
  background-color: #ccbca5 !important;
}
.sb-sat-champagne * {
  scrollbar-color: #ccbca5 #e8e8e8 !important;
}
.sb-sat-khaki ::-webkit-scrollbar-thumb {
  background-color: #aa9c6b !important;
}
.sb-sat-khaki * {
  scrollbar-color: #aa9c6b #e8e8e8 !important;
}
.sb-sat-charcoal ::-webkit-scrollbar-thumb {
  background-color: #5e5e5e !important;
}
.sb-sat-charcoal * {
  scrollbar-color: #5e5e5e #e8e8e8 !important;
}
.sb-sat-bronze ::-webkit-scrollbar-thumb {
  background-color: #aa621f !important;
}
.sb-sat-bronze * {
  scrollbar-color: #aa621f #e8e8e8 !important;
}
.sb-sat-windstorm ::-webkit-scrollbar-thumb {
  background-color: #5071a3 !important;
}
.sb-sat-windstorm * {
  scrollbar-color: #5071a3 #e8e8e8 !important;
}
.sb-sat-nude ::-webkit-scrollbar-thumb {
  background-color: #baa28b !important;
}
.sb-sat-nude * {
  scrollbar-color: #baa28b #e8e8e8 !important;
}
.sb-sat-terracotta ::-webkit-scrollbar-thumb {
  background-color: #af3a23 !important;
}
.sb-sat-terracotta * {
  scrollbar-color: #af3a23 #e8e8e8 !important;
}
.sb-sat-coral ::-webkit-scrollbar-thumb {
  background-color: #b65c39 !important;
}
.sb-sat-coral * {
  scrollbar-color: #b65c39 #e8e8e8 !important;
}
.sb-sat-army ::-webkit-scrollbar-thumb {
  background-color: #647030 !important;
}
.sb-sat-army * {
  scrollbar-color: #647030 #e8e8e8 !important;
}
.sb-sat-seashell ::-webkit-scrollbar-thumb {
  background-color: #e1cbbd !important;
}
.sb-sat-seashell * {
  scrollbar-color: #e1cbbd #e8e8e8 !important;
}
.sb-sat-sand ::-webkit-scrollbar-thumb {
  background-color: #d1c5a1 !important;
}
.sb-sat-sand * {
  scrollbar-color: #d1c5a1 #e8e8e8 !important;
}
.scroll-container {
  overscroll-behavior: contain;
}

/* source/components/shadows/shadows.less */
:root {
  --shadow-color-small: rgba(0, 0, 0, 0.05);
  --shadow-color-normal: rgba(0, 0, 0, 0.1);
  --shadow-color-medium: rgba(0, 0, 0, 0.1);
  --shadow-color-large: rgba(0, 0, 0, 0.1);
  --shadow-color-large-extra: rgba(0, 0, 0, 0.25);
  --shadow-color-3d: #000000;
  --shadow-color-border1: rgba(9, 30, 66, 0.25);
  --shadow-color-border2: rgba(9, 30, 66, 0.13);
  --shadow-color-solid-1: rgba(9, 30, 66, 0.25);
  --shadow-color-solid-2: rgba(9, 30, 66, 0.08);
  --shadow-color-text: #2e2e2e;
}
.dark-side {
  --shadow-color-small: rgba(0, 0, 0, 0.55);
  --shadow-color-normal: rgba(0, 0, 0, 0.75);
  --shadow-color-medium: rgba(0, 0, 0, 0.75);
  --shadow-color-large: rgba(0, 0, 0, 0.75);
  --shadow-color-large-extra: rgba(0, 0, 0, 0.75);
  --shadow-color-3d: #111215;
  --shadow-color-border1: rgba(0, 0, 0, 0.45);
  --shadow-color-border2: rgba(0, 0, 0, 0.25);
  --shadow-color-solid-1: rgba(0, 0, 0, 0.55);
  --shadow-color-solid-2: rgba(0, 0, 0, 0.25);
  --shadow-color-text: rgba(0, 0, 0, 0.55);
}
.no-shadow-box {
  box-shadow: none !important;
}
.no-shadow-text {
  text-shadow: none !important;
}
.no-shadow {
  text-shadow: none !important;
  box-shadow: none !important;
}
.shadow-small {
  box-shadow: 0 1px 2px 0 var(--shadow-color-small);
}
.shadow-normal {
  box-shadow: 0 1px 3px 0 var(--shadow-color-normal), 0 1px 2px -1px var(--shadow-color-normal);
}
.shadow-medium {
  box-shadow: 0 10px 15px -3px var(--shadow-color-medium), 0 4px 6px -4px var(--shadow-color-medium);
}
.shadow-large {
  box-shadow: 0 20px 25px -5px var(--shadow-color-large), 0 8px 10px -6px var(--shadow-color-large);
}
.shadow-large-extra {
  box-shadow: 0 25px 50px -12px var(--shadow-color-large-extra);
}
.shadow-3d {
  box-shadow: 8px 8px 0 var(--shadow-color-3d);
}
.shadow-3d-border {
  box-shadow: 0 0 0 2px var(--shadow-color-3d), 8px 8px 0 0 var(--shadow-color-3d);
}
.shadow-border {
  box-shadow: 0 1px 1px var(--shadow-color-border1), 0 0 1px 1px var(--shadow-color-border2);
}
.shadow-solid {
  box-shadow: 0 4px 8px -2px var(--shadow-color-solid-1), 0 0 0 1px var(--shadow-color-solid-2);
}
.shadow-3d-lime {
  box-shadow: 8px 8px 0 #AEFD6C;
}
.shadow-3d-border-lime {
  box-shadow: 0 0 0 2px #AEFD6C, 8px 8px 0 0 #AEFD6C;
}
.shadow-glow-lime {
  box-shadow: 0 0px 30px #AEFD6C;
}
.shadow-glow-soft-lime {
  box-shadow: 0 9px 30px #f2ffe7;
}
.shadow-3d-green {
  box-shadow: 8px 8px 0 #00b500;
}
.shadow-3d-border-green {
  box-shadow: 0 0 0 2px #00b500, 8px 8px 0 0 #00b500;
}
.shadow-glow-green {
  box-shadow: 0 0px 30px #00b500;
}
.shadow-glow-soft-green {
  box-shadow: 0 9px 30px #e7f6e6;
}
.shadow-3d-emerald {
  box-shadow: 8px 8px 0 #50c878;
}
.shadow-3d-border-emerald {
  box-shadow: 0 0 0 2px #50c878, 8px 8px 0 0 #50c878;
}
.shadow-glow-emerald {
  box-shadow: 0 0px 30px #50c878;
}
.shadow-glow-soft-emerald {
  box-shadow: 0 9px 30px #d1e6cc;
}
.shadow-3d-blue {
  box-shadow: 8px 8px 0 #5e87ff;
}
.shadow-3d-border-blue {
  box-shadow: 0 0 0 2px #5e87ff, 8px 8px 0 0 #5e87ff;
}
.shadow-glow-blue {
  box-shadow: 0 0px 30px #5e87ff;
}
.shadow-glow-soft-blue {
  box-shadow: 0 9px 30px #e7eaff;
}
.shadow-3d-teal {
  box-shadow: 8px 8px 0 #1ac5c5;
}
.shadow-3d-border-teal {
  box-shadow: 0 0 0 2px #1ac5c5, 8px 8px 0 0 #1ac5c5;
}
.shadow-glow-teal {
  box-shadow: 0 0px 30px #1ac5c5;
}
.shadow-glow-soft-teal {
  box-shadow: 0 9px 30px #e1f2f3;
}
.shadow-3d-cyan {
  box-shadow: 8px 8px 0 #94b6ff;
}
.shadow-3d-border-cyan {
  box-shadow: 0 0 0 2px #94b6ff, 8px 8px 0 0 #94b6ff;
}
.shadow-glow-cyan {
  box-shadow: 0 0px 30px #94b6ff;
}
.shadow-glow-soft-cyan {
  box-shadow: 0 9px 30px #e3edff;
}
.shadow-3d-cobalt {
  box-shadow: 8px 8px 0 #0047ab;
}
.shadow-3d-border-cobalt {
  box-shadow: 0 0 0 2px #0047ab, 8px 8px 0 0 #0047ab;
}
.shadow-glow-cobalt {
  box-shadow: 0 0px 30px #0047ab;
}
.shadow-glow-soft-cobalt {
  box-shadow: 0 9px 30px #d1ecff;
}
.shadow-3d-indigo {
  box-shadow: 8px 8px 0 #6400a8;
}
.shadow-3d-border-indigo {
  box-shadow: 0 0 0 2px #6400a8, 8px 8px 0 0 #6400a8;
}
.shadow-glow-indigo {
  box-shadow: 0 0px 30px #6400a8;
}
.shadow-glow-soft-indigo {
  box-shadow: 0 9px 30px #f3dcf3;
}
.shadow-3d-almost {
  box-shadow: 8px 8px 0 #6a2ded;
}
.shadow-3d-border-almost {
  box-shadow: 0 0 0 2px #6a2ded, 8px 8px 0 0 #6a2ded;
}
.shadow-glow-almost {
  box-shadow: 0 0px 30px #6a2ded;
}
.shadow-glow-soft-almost {
  box-shadow: 0 9px 30px #eee5ff;
}
.shadow-3d-violet {
  box-shadow: 8px 8px 0 #ee82ee;
}
.shadow-3d-border-violet {
  box-shadow: 0 0 0 2px #ee82ee, 8px 8px 0 0 #ee82ee;
}
.shadow-glow-violet {
  box-shadow: 0 0px 30px #ee82ee;
}
.shadow-glow-soft-violet {
  box-shadow: 0 9px 30px #fce2fb;
}
.shadow-3d-pink {
  box-shadow: 8px 8px 0 #ffc0cb;
}
.shadow-3d-border-pink {
  box-shadow: 0 0 0 2px #ffc0cb, 8px 8px 0 0 #ffc0cb;
}
.shadow-glow-pink {
  box-shadow: 0 0px 30px #ffc0cb;
}
.shadow-glow-soft-pink {
  box-shadow: 0 9px 30px #ffeef1;
}
.shadow-3d-magenta {
  box-shadow: 8px 8px 0 #ff00ff;
}
.shadow-3d-border-magenta {
  box-shadow: 0 0 0 2px #ff00ff, 8px 8px 0 0 #ff00ff;
}
.shadow-glow-magenta {
  box-shadow: 0 0px 30px #ff00ff;
}
.shadow-glow-soft-magenta {
  box-shadow: 0 9px 30px #ffe2ff;
}
.shadow-3d-crimson {
  box-shadow: 8px 8px 0 #df0e38;
}
.shadow-3d-border-crimson {
  box-shadow: 0 0 0 2px #df0e38, 8px 8px 0 0 #df0e38;
}
.shadow-glow-crimson {
  box-shadow: 0 0px 30px #df0e38;
}
.shadow-glow-soft-crimson {
  box-shadow: 0 9px 30px #ffd1da;
}
.shadow-3d-red {
  box-shadow: 8px 8px 0 #ff0000;
}
.shadow-3d-border-red {
  box-shadow: 0 0 0 2px #ff0000, 8px 8px 0 0 #ff0000;
}
.shadow-glow-red {
  box-shadow: 0 0px 30px #ff0000;
}
.shadow-glow-soft-red {
  box-shadow: 0 9px 30px #ffe1e1;
}
.shadow-3d-orange {
  box-shadow: 8px 8px 0 #ffa500;
}
.shadow-3d-border-orange {
  box-shadow: 0 0 0 2px #ffa500, 8px 8px 0 0 #ffa500;
}
.shadow-glow-orange {
  box-shadow: 0 0px 30px #ffa500;
}
.shadow-glow-soft-orange {
  box-shadow: 0 9px 30px #fff3de;
}
.shadow-3d-amber {
  box-shadow: 8px 8px 0 #ffca2a;
}
.shadow-3d-border-amber {
  box-shadow: 0 0 0 2px #ffca2a, 8px 8px 0 0 #ffca2a;
}
.shadow-glow-amber {
  box-shadow: 0 0px 30px #ffca2a;
}
.shadow-glow-soft-amber {
  box-shadow: 0 9px 30px #fff8e1;
}
.shadow-3d-yellow {
  box-shadow: 8px 8px 0 #ffe95e;
}
.shadow-3d-border-yellow {
  box-shadow: 0 0 0 2px #ffe95e, 8px 8px 0 0 #ffe95e;
}
.shadow-glow-yellow {
  box-shadow: 0 0px 30px #ffe95e;
}
.shadow-glow-soft-yellow {
  box-shadow: 0 9px 30px #ffffc6;
}
.shadow-3d-brown {
  box-shadow: 8px 8px 0 #ca773c;
}
.shadow-3d-border-brown {
  box-shadow: 0 0 0 2px #ca773c, 8px 8px 0 0 #ca773c;
}
.shadow-glow-brown {
  box-shadow: 0 0px 30px #ca773c;
}
.shadow-glow-soft-brown {
  box-shadow: 0 9px 30px #ffeed9;
}
.shadow-3d-olive {
  box-shadow: 8px 8px 0 #a1a100;
}
.shadow-3d-border-olive {
  box-shadow: 0 0 0 2px #a1a100, 8px 8px 0 0 #a1a100;
}
.shadow-glow-olive {
  box-shadow: 0 0px 30px #a1a100;
}
.shadow-glow-soft-olive {
  box-shadow: 0 9px 30px #f8fde7;
}
.shadow-3d-steel {
  box-shadow: 8px 8px 0 #7b91a6;
}
.shadow-3d-border-steel {
  box-shadow: 0 0 0 2px #7b91a6, 8px 8px 0 0 #7b91a6;
}
.shadow-glow-steel {
  box-shadow: 0 0px 30px #7b91a6;
}
.shadow-glow-soft-steel {
  box-shadow: 0 9px 30px #edeeee;
}
.shadow-3d-mauve {
  box-shadow: 8px 8px 0 #e0afff;
}
.shadow-3d-border-mauve {
  box-shadow: 0 0 0 2px #e0afff, 8px 8px 0 0 #e0afff;
}
.shadow-glow-mauve {
  box-shadow: 0 0px 30px #e0afff;
}
.shadow-glow-soft-mauve {
  box-shadow: 0 9px 30px #f7ecfe;
}
.shadow-3d-taupe {
  box-shadow: 8px 8px 0 #977e67;
}
.shadow-3d-border-taupe {
  box-shadow: 0 0 0 2px #977e67, 8px 8px 0 0 #977e67;
}
.shadow-glow-taupe {
  box-shadow: 0 0px 30px #977e67;
}
.shadow-glow-soft-taupe {
  box-shadow: 0 9px 30px #eadccf;
}
.shadow-3d-champagne {
  box-shadow: 8px 8px 0 #f7e6ca;
}
.shadow-3d-border-champagne {
  box-shadow: 0 0 0 2px #f7e6ca, 8px 8px 0 0 #f7e6ca;
}
.shadow-glow-champagne {
  box-shadow: 0 0px 30px #f7e6ca;
}
.shadow-glow-soft-champagne {
  box-shadow: 0 9px 30px #fff9f2;
}
.shadow-3d-khaki {
  box-shadow: 8px 8px 0 #d5c58a;
}
.shadow-3d-border-khaki {
  box-shadow: 0 0 0 2px #d5c58a, 8px 8px 0 0 #d5c58a;
}
.shadow-glow-khaki {
  box-shadow: 0 0px 30px #d5c58a;
}
.shadow-glow-soft-khaki {
  box-shadow: 0 9px 30px #f6f1dd;
}
.shadow-3d-charcoal {
  box-shadow: 8px 8px 0 #989898;
}
.shadow-3d-border-charcoal {
  box-shadow: 0 0 0 2px #989898, 8px 8px 0 0 #989898;
}
.shadow-glow-charcoal {
  box-shadow: 0 0px 30px #989898;
}
.shadow-glow-soft-charcoal {
  box-shadow: 0 9px 30px #e8e8e8;
}
.shadow-3d-bronze {
  box-shadow: 8px 8px 0 #e48d3e;
}
.shadow-3d-border-bronze {
  box-shadow: 0 0 0 2px #e48d3e, 8px 8px 0 0 #e48d3e;
}
.shadow-glow-bronze {
  box-shadow: 0 0px 30px #e48d3e;
}
.shadow-glow-soft-bronze {
  box-shadow: 0 9px 30px #ffecdc;
}
.shadow-3d-windstorm {
  box-shadow: 8px 8px 0 #799ed6;
}
.shadow-3d-border-windstorm {
  box-shadow: 0 0 0 2px #799ed6, 8px 8px 0 0 #799ed6;
}
.shadow-glow-windstorm {
  box-shadow: 0 0px 30px #799ed6;
}
.shadow-glow-soft-windstorm {
  box-shadow: 0 9px 30px #e6ebf5;
}
.shadow-3d-nude {
  box-shadow: 8px 8px 0 #f7d9bc;
}
.shadow-3d-border-nude {
  box-shadow: 0 0 0 2px #f7d9bc, 8px 8px 0 0 #f7d9bc;
}
.shadow-glow-nude {
  box-shadow: 0 0px 30px #f7d9bc;
}
.shadow-glow-soft-nude {
  box-shadow: 0 9px 30px #fcf0e4;
}
.shadow-3d-terracotta {
  box-shadow: 8px 8px 0 #e35336;
}
.shadow-3d-border-terracotta {
  box-shadow: 0 0 0 2px #e35336, 8px 8px 0 0 #e35336;
}
.shadow-glow-terracotta {
  box-shadow: 0 0px 30px #e35336;
}
.shadow-glow-soft-terracotta {
  box-shadow: 0 9px 30px #ffe5df;
}
.shadow-3d-coral {
  box-shadow: 8px 8px 0 #ff8559;
}
.shadow-3d-border-coral {
  box-shadow: 0 0 0 2px #ff8559, 8px 8px 0 0 #ff8559;
}
.shadow-glow-coral {
  box-shadow: 0 0px 30px #ff8559;
}
.shadow-glow-soft-coral {
  box-shadow: 0 9px 30px #ffd8c8;
}
.shadow-3d-army {
  box-shadow: 8px 8px 0 #5d6532;
}
.shadow-3d-border-army {
  box-shadow: 0 0 0 2px #5d6532, 8px 8px 0 0 #5d6532;
}
.shadow-glow-army {
  box-shadow: 0 0px 30px #5d6532;
}
.shadow-glow-soft-army {
  box-shadow: 0 9px 30px #eceacb;
}
.shadow-3d-seashell {
  box-shadow: 8px 8px 0 #fff1e7;
}
.shadow-3d-border-seashell {
  box-shadow: 0 0 0 2px #fff1e7, 8px 8px 0 0 #fff1e7;
}
.shadow-glow-seashell {
  box-shadow: 0 0px 30px #fff1e7;
}
.shadow-glow-soft-seashell {
  box-shadow: 0 9px 30px #fff9f8;
}
.shadow-3d-sand {
  box-shadow: 8px 8px 0 #f1e0ae;
}
.shadow-3d-border-sand {
  box-shadow: 0 0 0 2px #f1e0ae, 8px 8px 0 0 #f1e0ae;
}
.shadow-glow-sand {
  box-shadow: 0 0px 30px #f1e0ae;
}
.shadow-glow-soft-sand {
  box-shadow: 0 9px 30px #f8f3e0;
}
.text-shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.text-retro {
  text-shadow: 3px 3px 0 #2c2e38, 5px 5px 0 #5c5f72;
  letter-spacing: 0.1em;
}
.text-3d {
  text-shadow:
    0 1px 0 #999,
    0 2px 0 #888,
    0 3px 0 #777,
    0 4px 0 #666,
    0 5px 0 #555,
    0 6px 0 #444,
    0 7px 0 #333,
    0 8px 7px #001135;
}
.text-shadow-glow-lime {
  text-shadow: 0 0 10px #AEFD6C;
}
.text-shadow-glow-green {
  text-shadow: 0 0 10px #00b500;
}
.text-shadow-glow-emerald {
  text-shadow: 0 0 10px #50c878;
}
.text-shadow-glow-blue {
  text-shadow: 0 0 10px #5e87ff;
}
.text-shadow-glow-teal {
  text-shadow: 0 0 10px #1ac5c5;
}
.text-shadow-glow-cyan {
  text-shadow: 0 0 10px #94b6ff;
}
.text-shadow-glow-cobalt {
  text-shadow: 0 0 10px #0047ab;
}
.text-shadow-glow-indigo {
  text-shadow: 0 0 10px #6400a8;
}
.text-shadow-glow-almost {
  text-shadow: 0 0 10px #6a2ded;
}
.text-shadow-glow-violet {
  text-shadow: 0 0 10px #ee82ee;
}
.text-shadow-glow-pink {
  text-shadow: 0 0 10px #ffc0cb;
}
.text-shadow-glow-magenta {
  text-shadow: 0 0 10px #ff00ff;
}
.text-shadow-glow-crimson {
  text-shadow: 0 0 10px #df0e38;
}
.text-shadow-glow-red {
  text-shadow: 0 0 10px #ff0000;
}
.text-shadow-glow-orange {
  text-shadow: 0 0 10px #ffa500;
}
.text-shadow-glow-amber {
  text-shadow: 0 0 10px #ffca2a;
}
.text-shadow-glow-yellow {
  text-shadow: 0 0 10px #ffe95e;
}
.text-shadow-glow-brown {
  text-shadow: 0 0 10px #ca773c;
}
.text-shadow-glow-olive {
  text-shadow: 0 0 10px #a1a100;
}
.text-shadow-glow-steel {
  text-shadow: 0 0 10px #7b91a6;
}
.text-shadow-glow-mauve {
  text-shadow: 0 0 10px #e0afff;
}
.text-shadow-glow-taupe {
  text-shadow: 0 0 10px #977e67;
}
.text-shadow-glow-champagne {
  text-shadow: 0 0 10px #f7e6ca;
}
.text-shadow-glow-khaki {
  text-shadow: 0 0 10px #d5c58a;
}
.text-shadow-glow-charcoal {
  text-shadow: 0 0 10px #989898;
}
.text-shadow-glow-bronze {
  text-shadow: 0 0 10px #e48d3e;
}
.text-shadow-glow-windstorm {
  text-shadow: 0 0 10px #799ed6;
}
.text-shadow-glow-nude {
  text-shadow: 0 0 10px #f7d9bc;
}
.text-shadow-glow-terracotta {
  text-shadow: 0 0 10px #e35336;
}
.text-shadow-glow-coral {
  text-shadow: 0 0 10px #ff8559;
}
.text-shadow-glow-army {
  text-shadow: 0 0 10px #5d6532;
}
.text-shadow-glow-seashell {
  text-shadow: 0 0 10px #fff1e7;
}
.text-shadow-glow-sand {
  text-shadow: 0 0 10px #f1e0ae;
}

/* source/components/shortcut/shortcut.less */
:root {
  --windows-shortcut-icon-size: 40px;
  --windows-shortcut-border-radius: 4px;
  --windows-shortcut-background: transparent;
  --windows-shortcut-background-hover: #efefef;
  --windows-shortcut-color: #191919;
  --shortcut-border-radius: 6px;
  --shortcut-background: #f8f8f8;
  --shortcut-color: #191919;
  --shortcut-background-hover: #dadada;
  --shortcut-color-hover: #474747;
}
.dark-side {
  --windows-shortcut-background: transparent;
  --windows-shortcut-background-hover: #373737;
  --windows-shortcut-color: #F8F8F8;
  --shortcut-background: #2e2e2e;
  --shortcut-color: #F8F8F8;
  --shortcut-background-hover: #373737;
  --shortcut-color-hover: #bfbfbf;
}
.shortcut {
  width: 84px;
  height: 84px;
  display: inline-flex;
  flex-direction: column;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
  background: var(--shortcut-background);
  color: var(--shortcut-color);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  border: 1px solid transparent;
  position: relative;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: var(--shortcut-border-radius);
  gap: 8px;
}
.shortcut .icon,
.shortcut .caption {
  display: block;
  line-height: 1;
}
.shortcut .icon {
  display: block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  font-size: 28px;
  order: 1;
  margin-top: 10px;
}
.shortcut .caption {
  color: inherit;
  order: 2;
  font-size: 12px;
}
.shortcut .badge {
  position: absolute;
  font-size: 0.6875rem;
  top: 0.25rem;
  right: 0.25rem;
  color: inherit;
  transform: none;
  background-color: inherit;
}
@media (hover: hover) {
  .shortcut:hover {
    background: var(--shortcut-background-hover);
    color: var(--shortcut-color-hover);
  }
}
@media (hover: none) {
  .shortcut:active {
    background: var(--shortcut-background-hover);
    color: var(--shortcut-color-hover);
  }
}
.shortcut.focus,
.shortcut:focus {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.shortcut.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--border-color);
}
.shortcut.outline:hover {
  background: var(--shortcut-background-hover);
  color: var(--shortcut-color-hover);
}
.shortcut:focus,
.shortcut:hover,
.shortcut:active {
  text-decoration: none;
}
.shortcut:active {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.45);
}
.shortcut.disabled,
.shortcut:disabled {
  opacity: 0.65;
}
.shortcut:active {
  box-shadow: none;
}
.shortcut:not(:has(.caption)) .icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  margin-top: 0;
}
.windows-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: default;
  border-radius: 4px;
  padding: 4px;
  background: var(--windows-shortcut-background);
  color: var(--windows-shortcut-color);
}
.windows-shortcut .icon {
  width: var(--windows-shortcut-icon-size);
  height: var(--windows-shortcut-icon-size);
  font-size: var(--windows-shortcut-icon-size);
  object-fit: cover;
}
.windows-shortcut .caption {
  font-size: 12px;
  text-align: center;
}
@media (hover: hover) {
  .windows-shortcut:hover {
    background: var(--windows-shortcut-background-hover);
  }
}
@media (hover: none) {
  .windows-shortcut:active {
    background: var(--windows-shortcut-background-hover);
  }
}

/* source/components/sidebar/sidebar.less */
:root {
  --sidebar-width: 240px;
  --sidebar-background: #ffffff;
  --sidebar-color: #191919;
  --sidebar-header-background: #f8f8f8;
  --sidebar-header-color: #191919;
  --sidebar-border-color: #e8e8e8;
  --sidebar-avatar-background: #ffffff;
  --sidebar-avatar-color: #191919;
  --sidebar-avatar-border-color: #fff;
  --sidebar-menu-background: #ffffff;
  --sidebar-menu-color: #191919;
  --sidebar-item-background: inherit;
  --sidebar-item-color: #191919;
  --sidebar-item-background-hover: #cecece;
  --sidebar-item-color-hover: #0a0a0a;
  --sidebar-item-marker-color: #468cff;
  --sidebar-item-color-disabled: #ccc;
}
.dark-side {
  --sidebar-background: #2b2d30;
  --sidebar-color: #dbdfe7;
  --sidebar-header-background: #1e1f22;
  --sidebar-header-color: #dbdfe7;
  --sidebar-border-color: #343538;
  --sidebar-avatar-background: #2b2d30;
  --sidebar-avatar-color: #ffffff;
  --sidebar-avatar-border-color: #fff;
  --sidebar-menu-background: #2b2d30;
  --sidebar-menu-color: #dbdfe7;
  --sidebar-item-background: inherit;
  --sidebar-item-color: #dbdfe7;
  --sidebar-item-background-hover: #1e1f22;
  --sidebar-item-color-hover: #ffffff;
  --sidebar-item-marker-color: #468cff;
  --sidebar-item-color-disabled: #43454a;
}
.sidebar {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: var(--sidebar-width);
  background-color: var(--sidebar-background);
  color: var(--sidebar-color);
  padding: 0;
  z-index: 1031;
  height: 100vh;
}
.sidebar.on-left {
  right: auto !important;
  left: calc(-1 * var(--sidebar-width));
  transition: left 0.3s ease;
  border-right: 1px var(--sidebar-border-color) solid;
}
.sidebar.on-left.open,
.sidebar.on-left.static {
  transition: left 0.3s ease;
  left: 0;
}
.sidebar.on-right {
  transition: right 0.3s ease;
  left: auto !important;
  right: calc(-1 * var(--sidebar-width));
  border-left: 1px var(--sidebar-border-color) solid;
}
.sidebar.on-right.open,
.sidebar.on-right.static {
  transition: right 0.3s ease;
  right: 0;
}
.sidebar-header,
.sidebar-menu,
.sidebar-content {
  display: block;
  position: relative;
  width: 100%;
}
.sidebar-header {
  background: var(--sidebar-header-background) top left no-repeat;
  color: var(--sidebar-header-color);
  background-size: cover;
  height: 160px;
  border-bottom: 1px var(--sidebar-border-color) solid;
}
.sidebar-header > .avatar {
  position: absolute;
  height: 64px;
  width: 64px;
  background: var(--sidebar-avatar-background);
  color: var(--sidebar-avatar-color);
  border-radius: 50%;
  top: 16px;
  left: 16px;
  overflow: hidden;
  text-align: center;
  border: 2px solid var(--sidebar-avatar-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
}
.sidebar-header > .avatar img {
  width: 100%;
  max-height: 100%;
}
.sidebar-header > .title,
.sidebar-header > .subtitle {
  display: block;
  position: absolute;
  left: 16px;
}
.sidebar-header > .title {
  font-size: 18px;
  font-weight: 600;
  top: 96px;
}
.sidebar-header > .subtitle {
  font-size: 12px;
  font-weight: 400;
  top: 116px;
}
.sidebar-header > .action {
  position: absolute;
  top: 10px;
  right: 10px;
  text-decoration: none;
  cursor: pointer;
}
.sidebar-menu {
  background: var(--sidebar-menu-background);
  color: var(--sidebar-menu-color);
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
  padding: 4px;
  flex-flow: column nowrap;
}
.sidebar-menu li {
  display: block;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  color: var(--sidebar-item-color);
  background: var(--sidebar-item-background);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--sidebar-item-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
  height: 32px;
  border: 2px solid transparent;
  position: relative;
}
.sidebar-menu a.dropdown-toggle {
  padding-right: 10px !important;
}
.sidebar-menu li.disabled a {
  color: var(--sidebar-item-color-disabled);
}
.sidebar-menu li.active::before {
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  top: 4px;
  left: 0;
  width: 4px;
  background-color: var(--sidebar-item-marker-color);
  z-index: 1;
  border-radius: 4px;
}
.sidebar-menu .icon {
  position: absolute;
  left: 0.5rem;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  opacity: 0.8;
}
.sidebar-menu li:has(.icon) a {
  padding-left: 40px;
}
.sidebar-menu .hotkey {
  margin-left: auto;
  font-size: 11px;
}
.sidebar-menu .divider {
  padding: 0;
  height: 1px;
  margin: 2px;
  overflow: hidden;
  background-color: var(--sidebar-border-color);
}
.sidebar-menu .divider:hover {
  background-color: var(--sidebar-border-color);
}
.sidebar-menu .group-title {
  line-height: 1;
  height: auto;
  padding: 1rem 1rem 0.5rem;
  color: var(--sidebar-group-title-color);
  font-weight: 500;
  font-size: 11px;
  cursor: default;
  text-transform: uppercase;
}
.sidebar-menu li.content-container {
  cursor: initial;
  padding: 0 10px;
}
.sidebar-menu li:hover {
  background-color: var(--sidebar-item-background-hover);
  color: var(--sidebar-item-color-hover);
}
.sidebar-menu li.group-title:hover {
  background-color: initial;
}
.sidebar-menu li.content-container:hover {
  background-color: initial;
}
.sidebar-menu .d-menu,
.sidebar-menu .v-menu {
  position: relative;
  float: none;
}
.sidebar-header ~ .sidebar-menu {
  height: calc(100% - 160px);
}

/* source/components/sidenav-counter/sidenav.less */
:root {
  --sidenav-counter-background: #f6f6f6;
  --sidenav-counter-color: #191919;
  --sidenav-counter-icon-color: #191919;
  --sidenav-counter-counter-color: #191919;
  --sidenav-counter-background-hover: #cecece;
  --sidenav-counter-color-hover: #0a0a0a;
  --sidenav-counter-background-active: #68a3ff;
  --sidenav-counter-color-active: #ffffff;
}
.dark-side {
  --sidenav-counter-background: #2b2d30;
  --sidenav-counter-color: #dfe1e5;
  --sidenav-counter-icon-color: #dfe1e5;
  --sidenav-counter-counter-color: #dfe1e5;
  --sidenav-counter-background-hover: #43454a;
  --sidenav-counter-color-hover: #ffffff;
  --sidenav-counter-background-active: #468cff;
  --sidenav-counter-color-active: #ffffff;
}
.sidenav-counter {
  display: flex;
  flex-direction: column;
  position: relative;
  list-style: none inside;
  height: 100%;
  width: 52px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  background-color: var(--sidenav-counter-background);
  color: var(--sidenav-counter-color);
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.sidenav-counter::-webkit-scrollbar {
  display: none !important;
}
.sidenav-counter li,
.sidenav-counter a {
  display: block;
  position: relative;
  height: 52px;
  line-height: 52px;
  background-color: inherit;
  color: inherit;
  width: 100%;
}
.sidenav-counter a {
  padding: 0.625rem 0 0.625rem 0;
  line-height: 0.875rem;
  text-decoration: none;
}
.sidenav-counter a:hover {
  text-decoration: none;
}
.sidenav-counter .icon {
  width: 28px;
  height: 28px;
  font-size: 26px;
  line-height: 28px;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  left: 0.625rem;
  top: 0.635rem;
  color: var(--sidenav-counter-icon-color);
}
.sidenav-counter .title,
.sidenav-counter .counter {
  display: block;
  margin: 0;
  white-space: nowrap;
}
.sidenav-counter .title {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: none;
}
.sidenav-counter .counter {
  font-size: 0.7rem;
  font-weight: normal;
  position: absolute;
  top: 0;
  right: 4px;
  color: var(--sidenav-counter-counter-color);
}
.sidenav-counter li:hover {
  background-color: var(--sidenav-counter-background-hover);
  color: var(--sidenav-counter-color-hover);
}
.sidenav-counter li.active {
  background-color: var(--sidenav-counter-background-active);
  color: var(--sidenav-counter-color-active);
}
.sidenav-counter[dir=rtl] .counter {
  right: auto;
  left: 4px;
}
.sidenav-counter[dir=rtl] .icon {
  left: 0.725rem;
}
.sidenav-counter.expanded {
  width: 220px;
}
.sidenav-counter.expanded a {
  padding: 0.625rem 1rem 0.625rem 3.75rem;
}
.sidenav-counter.expanded .title {
  display: block;
}
.sidenav-counter.expanded .counter {
  position: relative;
  top: auto;
  right: auto;
}

/* source/components/sidenav-m3/sidenav-m3.less */
.sidenav-m3 {
  display: block;
  position: relative;
  list-style: none inside;
  height: 100%;
  width: 220px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  background-color: #f8f8f8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.sidenav-m3::-webkit-scrollbar {
  display: none !important;
}
.sidenav-m3 li,
.sidenav-m3 a {
  position: relative;
  display: block;
  color: inherit;
}
.sidenav-m3 > li {
  background: transparent;
}
.sidenav-m3 > li.stick-left::before,
.sidenav-m3 > li.stick-right::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 44px;
  border-radius: 0.25rem 0 0 0.25rem;
  background-color: inherit;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.sidenav-m3 > li.stick-right::before {
  left: 100%;
  border-radius: 0 0.25rem 0.25rem 0;
  transform: translateX(0);
}
.sidenav-m3 a {
  padding: 0.625rem 1rem 0.625rem 3rem;
  text-decoration: none;
  background-color: #f8f8f8;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sidenav-m3 a:hover {
  text-decoration: none;
}
.sidenav-m3 li + li {
  border-top: 1px solid var(--border-color);
}
.sidenav-m3 .icon {
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 24px;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  left: 0.625rem;
  bottom: 12px;
}
.sidenav-m3 .title {
  padding: 20px 20px 10px 20px;
  font-size: 24px;
  border: 0;
}
.sidenav-m3 .d-menu {
  position: relative;
  box-shadow: none;
  background-color: inherit;
  width: 100%;
  float: none;
  border-radius: 0 !important;
  padding: 0;
  margin: 0;
}
.sidenav-m3 .d-menu li:not(:first-child) {
  border-top: 1px solid var(--border-color);
}
.sidenav-m3 .d-menu a {
  border-radius: 0 !important;
}
.sidenav-m3[dir=rtl] a {
  padding-right: 3rem;
  padding-left: 1rem;
}
.sidenav-m3[dir=rtl] .icon {
  left: auto;
  right: 0.625rem;
}
.sidenav-m3[dir=rtl] .dropdown-toggle {
  padding-left: 1.5rem !important;
  padding-right: 3rem !important;
}
.sidenav-m3[dir=rtl] .dropdown-toggle::before {
  left: 1rem;
  margin-left: 0;
}

/* source/components/sidenav-simple/sidenav-simple.less */
.sidenav-simple {
  display: block;
  position: relative;
  list-style: none inside;
  height: 100%;
  width: 52px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  background-color: #f8f8f8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.sidenav-simple::-webkit-scrollbar {
  display: none !important;
}
.sidenav-simple li,
.sidenav-simple a {
  display: block;
  position: relative;
  height: 52px;
  line-height: 52px;
  background-color: inherit;
  color: inherit;
  width: 100%;
}
.sidenav-simple a {
  padding: 0.625rem 0 0.625rem 0;
  line-height: 0.875rem;
  text-decoration: none;
}
.sidenav-simple a:hover {
  text-decoration: none;
}
.sidenav-simple .icon {
  width: 28px;
  height: 28px;
  font-size: 26px;
  line-height: 28px;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  left: 0.625rem;
  top: 0.635rem;
}
.sidenav-simple .title {
  margin: 0;
  white-space: nowrap;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: none;
  line-height: 52px;
}
.sidenav-simple li:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.sidenav-simple li:active {
  background-color: #456c7e;
  color: #ffffff;
}
.sidenav-simple .active,
.sidenav-simple li.active:hover {
  background-color: #94b6ff;
  color: #ffffff;
}
.sidenav-simple[dir=rtl] .icon {
  left: 0.725rem;
}
@media screen and (min-width: 0) {
  .sidenav-simple-expand-fs {
    width: 220px;
  }
  .sidenav-simple-expand-fs a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-fs .title {
    display: block;
  }
  .sidenav-simple-expand-fs[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-fs[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 360px) {
  .sidenav-simple-expand-xs {
    width: 220px;
  }
  .sidenav-simple-expand-xs a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-xs .title {
    display: block;
  }
  .sidenav-simple-expand-xs[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-xs[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 576px) {
  .sidenav-simple-expand-sm {
    width: 220px;
  }
  .sidenav-simple-expand-sm a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-sm .title {
    display: block;
  }
  .sidenav-simple-expand-sm[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-sm[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 640px) {
  .sidenav-simple-expand-ld {
    width: 220px;
  }
  .sidenav-simple-expand-ld a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-ld .title {
    display: block;
  }
  .sidenav-simple-expand-ld[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-ld[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .sidenav-simple-expand-md {
    width: 220px;
  }
  .sidenav-simple-expand-md a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-md .title {
    display: block;
  }
  .sidenav-simple-expand-md[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-md[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 992px) {
  .sidenav-simple-expand-lg {
    width: 220px;
  }
  .sidenav-simple-expand-lg a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-lg .title {
    display: block;
  }
  .sidenav-simple-expand-lg[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-lg[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 1200px) {
  .sidenav-simple-expand-xl {
    width: 220px;
  }
  .sidenav-simple-expand-xl a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-xl .title {
    display: block;
  }
  .sidenav-simple-expand-xl[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-xl[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 1400px) {
  .sidenav-simple-expand-xxl {
    width: 220px;
  }
  .sidenav-simple-expand-xxl a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-xxl .title {
    display: block;
  }
  .sidenav-simple-expand-xxl[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-xxl[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}
@media screen and (min-width: 2000px) {
  .sidenav-simple-expand-xxxl {
    width: 220px;
  }
  .sidenav-simple-expand-xxxl a {
    padding: 0 1rem 0 3.75rem;
  }
  .sidenav-simple-expand-xxxl .title {
    display: block;
  }
  .sidenav-simple-expand-xxxl[dir=rtl] a {
    padding: 0.625rem 3.75rem 0.625rem 1rem;
  }
  .sidenav-simple-expand-xxxl[dir=rtl] .icon {
    left: auto;
    right: 0.625rem;
  }
}

/* source/components/skill-box/skill-box.less */
:root {
  --skill-box-border-radius: 6px;
  --skill-box-border-color: var(--border-color);
  --skill-box-background: #ffffff;
  --skill-box-color: #191919;
  --skill-box-header-background: #fbfbfb;
  --skill-box-header-color: #191919;
  --skill-box-avatar-background: #e6e6e6;
  --skill-box-avatar-color: #191919;
}
.dark-side {
  --skill-box-background: #2b2d30;
  --skill-box-color: #dbdfe7;
  --skill-box-header-background: #282c35;
  --skill-box-header-color: #fbfbfb;
  --skill-box-avatar-background: #3b414e;
  --skill-box-avatar-color: #fbfbfb;
}
.skill-box {
  display: block;
  position: relative;
  background: var(--skill-box-background);
  color: var(--skill-box-color);
  border: 1px solid var(--skill-box-border-color);
  border-radius: var(--skill-box-border-radius);
}
.skill-box .header {
  display: block;
  position: relative;
  padding: 20px;
  background: var(--skill-box-header-background);
  color: var(--skill-box-header-color);
  border-top-left-radius: var(--skill-box-border-radius);
  border-top-right-radius: var(--skill-box-border-radius);
  border-bottom: 1px solid var(--skill-box-border-color);
}
.skill-box .header .avatar {
  float: left;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--skill-box-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--skill-box-avatar-color);
  background-color: var(--skill-box-avatar-background);
}
.skill-box .header .title {
  font-size: 25px;
  line-height: 1.1;
  font-weight: 300;
  margin: 5px 5px 5px 75px;
}
.skill-box .header .subtitle {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 5px 5px 75px;
}
.skill-box .content {
  padding: 0 1rem 1rem;
}
.skill-box .skills {
  margin: 0;
  padding: 0;
  list-style: none inside;
}
.skill-box .skills li {
  padding: 8px 16px;
  font-size: 14px;
}
.skill-box .skills li a {
  text-decoration: none;
  color: inherit;
}
.skill-box .skills li + li {
  border-top: 1px solid var(--border-color);
}
.skill-box .skills .badge {
  position: relative;
  display: inline-block;
  right: auto;
  top: 4px;
  transform: translateY(0) translateX(0);
  float: right;
}

/* source/components/social-box/social-box.less */
:root {
  --social-box-border-radius: 6px;
  --social-box-border-color: var(--border-color);
  --social-box-background: #ffffff;
  --social-box-color: #191919;
  --social-box-header-background: #fbfbfb;
  --social-box-header-color: #191919;
  --social-box-avatar-background: #e6e6e6;
  --social-box-avatar-color: #191919;
}
.dark-side {
  --social-box-background: #2b2d30;
  --social-box-color: #dbdfe7;
  --social-box-header-background: #282c35;
  --social-box-header-color: #fbfbfb;
  --social-box-avatar-background: #3b414e;
  --social-box-avatar-color: #fbfbfb;
}
.social-box {
  display: block;
  position: relative;
  background: var(--social-box-background);
  color: var(--social-box-color);
  border-radius: var(--social-box-border-radius);
  border: 1px solid var(--social-box-border-color);
}
.social-box .header {
  display: block;
  position: relative;
  padding: 20px 20px 40px 20px;
  background: var(--social-box-header-background);
  color: var(--social-box-header-color);
  border-top-left-radius: var(--social-box-border-radius);
  border-top-right-radius: var(--social-box-border-radius);
  border-bottom: 1px solid var(--social-box-border-color);
}
.social-box .header .avatar {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  top: 100%;
  left: 50%;
  margin-top: -45px;
  margin-left: -45px;
  z-index: 2;
  border: 2px solid var(--social-box-border-color);
  background: var(--social-box-background);
  color: var(--social-box-header-color);
  font-size: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-box .header .title {
  font-size: 25px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 5px;
  z-index: 1;
}
.social-box .header .subtitle {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
  z-index: 1;
}
.social-box .content {
  padding: 0.5rem;
}
.social-box .skills {
  margin: 0;
  padding: 40px 0 0 0;
  list-style: none inside;
  display: flex;
  flex-flow: row nowrap;
}
.social-box .skills li {
  padding: 8px 16px;
  font-size: 12px;
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}
.social-box .skills li a {
  text-decoration: none;
  color: inherit;
}
.social-box .skills li + li {
  border-left: 1px solid var(--border-color);
}

/* source/components/split-button/split-button.less */
:root {
  --split-button-font-size: 14px;
  --split-button-border-radius: 4px;
  --split-button-background: #ebebeb;
  --split-button-color: #191919;
  --split-button-background-hover: #dcdcdc;
  --split-button-color-hover: #474747;
  --split-button-border-color: #E8E8E8;
}
.dark-side {
  --split-button-background: #2e2e2e;
  --split-button-color: #F8F8F8;
  --split-button-background-hover: #373737;
  --split-button-color-hover: #bfbfbf;
  --split-button-border-color: #4A4D51;
}
.split-button {
  --control-height: var(--control-height-normal);
  display: inline-flex;
  flex-flow: row nowrap;
  position: relative;
  width: auto;
  height: var(--control-height);
  gap: 4px;
}
.split-button .button,
.split-button .split {
  background: var(--split-button-background);
  color: var(--split-button-color);
  border: 1px var(--button-border-color) solid;
  border-radius: var(--split-button-border-radius);
  cursor: pointer;
  outline: none;
  font-size: var(--split-button-font-size);
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-button .split {
  aspect-ratio: 1;
  padding: 0;
}
.split-button .split .dropdown-caret {
  margin: 0;
}
.split-button .split.light-toggle .dropdown-caret {
  fill: #ffffff;
}
.split-button .split.active-toggle .dropdown-caret {
  transform: rotate(-90deg);
}
@media (hover: hover) {
  .split-button .split:hover {
    background: var(--split-button-background-hover);
    color: var(--split-button-color-hover);
  }
}
@media (hover: none) {
  .split-button .split:active {
    background: var(--split-button-background-hover);
    color: var(--split-button-color-hover);
  }
}
.split-button .split:focus,
.split-button .split:hover {
  text-decoration: none;
}
.split-button .split:active {
  outline: 0;
}
.split-button .split.disabled,
.split-button .split:disabled {
  opacity: 0.65;
}
.split-button .split.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--split-button-border-color);
}
.split-button .split:active {
  box-shadow: none;
}
.split-button [data-role-dropdown],
.split-button [data-role-dropmenu],
.split-button .drop-object {
  right: 0;
  top: 100%;
}
.split-button.no-gap {
  gap: 0;
}
.split-button.no-gap button,
.split-button.no-gap .button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.split-button.no-gap .split {
  border-radius: 0 var(--split-button-border-radius) var(--split-button-border-radius) 0;
  border-left: 1px solid var(--split-button-background-hover);
}
.split-button.mini {
  --control-height: var(--control-height-mini);
  --split-button-font-size: 10px;
}
.split-button.small {
  --control-height: var(--control-height-small);
  --split-button-font-size: 12px;
}
.split-button.medium {
  --control-height: var(--control-height-medium);
  --split-button-font-size: 14px;
}
.split-button.large {
  --control-height: var(--control-height-large);
  --split-button-font-size: 24px;
}

/* source/components/splitter/splitter.less */
:root {
  --splitter-color: #F8F8F8;
  --splitter-color-active: #F8F8F8;
  --splitter-gutter-color: #BEBEBE;
  --splitter-gutter-color-active: #BEBEBE;
}
.dark-side {
  --splitter-color: #1e1f22;
  --splitter-color-active: #26282e;
  --splitter-gutter-color: #4a4d51;
  --splitter-gutter-color-active: #2e436e;
}
.splitter {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  user-select: none;
}
.splitter.vertical {
  flex-direction: row;
}
.splitter.horizontal {
  flex-direction: column;
}
.splitter > .gutter {
  flex-shrink: 0;
  flex-grow: 0;
  background-color: var(--splitter-color);
  z-index: 1;
  position: relative;
}
.splitter > .gutter::before {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  background: var(--splitter-gutter-color);
}
.splitter > .gutter.active {
  background-color: var(--splitter-color-active);
}
.splitter > .gutter.active::before {
  background: var(--splitter-gutter-color-active);
}
.splitter.horizontal > .gutter {
  cursor: row-resize;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.splitter.horizontal > .gutter::before {
  height: 100%;
  width: 24px;
  top: 0;
  left: 50%;
  margin-left: -12px;
  margin-top: 0;
}
.splitter.vertical > .gutter {
  cursor: col-resize;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.splitter.vertical > .gutter::before {
  left: 0;
  width: 100%;
  top: 50%;
  height: 24px;
  margin-top: -12px;
}
.splitter.static-size > .gutter {
  cursor: default;
}
.splitter.static-size > .gutter::before {
  display: none;
}
.splitter > .split-block {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 100%;
  overflow: hidden;
}
.splitter {
  --gutter-dot-size: 2px;
  --gutter-bg-size: 8px;
  --gutter-bg-position: calc(var(--gutter-bg-size) / 2);
  --gutter-dot-color: var(--splitter-color);
  --gutter-dot-color-second: var(--splitter-gutter-color);
}
.splitter.gutter-style-ribbed > .gutter::before {
  background:
    repeating-linear-gradient(
      45deg,
      var(--splitter-color),
      var(--splitter-gutter-color) 4px,
      var(--splitter-color) 4px,
      var(--splitter-gutter-color) 8px);
}
.splitter.gutter-style-dashed.horizontal > .gutter::before {
  background:
    repeating-linear-gradient(
      90deg,
      var(--splitter-color),
      var(--splitter-gutter-color) 4px,
      var(--splitter-color) 4px,
      var(--splitter-gutter-color) 8px);
}
.splitter.gutter-style-dashed.vertical > .gutter::before {
  background:
    repeating-linear-gradient(
      0deg,
      var(--splitter-color),
      var(--splitter-gutter-color) 4px,
      var(--splitter-color) 4px,
      var(--splitter-gutter-color) 8px);
}
.splitter.gutter-style-dotted > .gutter::before {
  background-image:
    radial-gradient(
      circle at center,
      var(--gutter-dot-color) var(--gutter-dot-size),
      var(--gutter-dot-color-second) 0),
    radial-gradient(
      circle at center,
      var(--gutter-dot-color) var(--gutter-dot-size),
      var(--gutter-dot-color-second) 0);
  background-size: var(--gutter-bg-size) var(--gutter-bg-size);
  background-position: 0 0, var(--gutter-bg-position) var(--gutter-bg-position);
}

/* source/components/stepper/stepper.less */
:root {
  --stepper-step-background: #515151;
  --stepper-step-color: #FFFFFF;
  --stepper-step-background-complete: #00B500;
  --stepper-step-color-complete: #FFFFFF;
  --stepper-step-background-current: #94B6FF;
  --stepper-step-color-current: #FFFFFF;
  --stepper-line-color: #e3e3e3;
}
.dark-side {
  --stepper-step-background: #515151;
  --stepper-step-color: #FFFFFF;
  --stepper-step-background-complete: #00B500;
  --stepper-step-color-complete: #FFFFFF;
  --stepper-step-background-current: #94B6FF;
  --stepper-step-color-current: #FFFFFF;
  --stepper-line-color: #2b2d30;
}
.stepper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  margin: 0.5rem 0;
}
.stepper::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: var(--stepper-line-color);
  top: 50%;
  left: 0;
  z-index: 0;
}
.stepper.vertical {
  flex-flow: column nowrap;
}
.stepper .step {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  z-index: 1;
  background-color: var(--stepper-step-background);
  color: var(--stepper-step-color);
  cursor: pointer;
  position: relative;
}
.stepper .step span {
  display: block;
}
.stepper .step.complete {
  background-color: var(--stepper-step-background-complete);
  color: var(--stepper-step-color-complete);
}
.stepper .step.current {
  background-color: var(--stepper-step-background-current);
  color: var(--stepper-step-color-current);
}
.stepper.cycle .step {
  border-radius: 50%;
}
.stepper.diamond .step {
  transform: rotate(45deg);
}
.stepper.diamond .step span {
  transform: rotate(-45deg);
}

/* source/components/streamer/streamer.less */
:root {
  --streamer-item-width: 224px;
  --streamer-background: #ffffff;
  --streamer-color: #191919;
  --streamer-stream-border-color: #fefefe;
  --stream-event-group-background: #f7f8fa;
  --stream-event-group-color: #191919;
  --stream-event-background: #fefefe;
  --stream-event-color: #191919;
  --stream-event-border-color: #fefefe;
  --stream-event-border-color-hover: #fefefe;
  --stream-event-border-radius: 6px;
  --stream-event-shadow-color: #b5b5b5;
  --streamer-scrollbar-size: 10px;
  --streamer-scrollbar-color: #000;
  --streamer-scrollbar-thumb-color: #2e9fff;
}
.dark-side {
  --streamer-background: #343637;
  --streamer-color: #dbdfe7;
  --streamer-stream-border-color: #2b2d30;
  --stream-event-group-background: #272729;
  --stream-event-group-color: #191919;
  --stream-event-background: #343637;
  --stream-event-color: #dbdfe7;
  --stream-event-border-color: #484b4c;
  --stream-event-border-color-hover: #616567;
  --stream-event-border-radius: 6px;
  --stream-event-shadow-color: #191919;
  --streamer-scrollbar-color: #000;
  --streamer-scrollbar-thumb-color: #ff6211;
}
.streamer {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.streamer ::-webkit-scrollbar {
  height: var(--streamer-scrollbar-size);
  width: var(--streamer-scrollbar-size);
}
.streamer ::-webkit-scrollbar-thumb:horizontal {
  background: var(--streamer-scrollbar-thumb-color);
  border-radius: 10px;
}
.streamer .streams {
  width: 40px;
  overflow: visible;
  display: flex;
  flex-flow: column nowrap;
  padding-top: 30px;
  background-color: var(--streamer-background);
  color: var(--streamer-color);
  position: absolute;
  margin-top: 2px;
  left: 0;
  top: 0;
  z-index: 500;
}
.streamer .streamer-actions {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 32px;
  display: none;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: inherit;
  z-index: 101;
  gap: 2px;
  padding: 2px 4px;
}
.streamer .streamer-action {
  width: 26px;
  height: 26px;
}
.streamer .stream {
  position: relative;
  height: 75px;
  width: 40px;
  padding: 4px 8px;
  display: flex;
  flex-flow: column nowrap;
  background-color: inherit;
  color: inherit;
  border: 2px solid var(--streamer-stream-border-color);
  cursor: pointer;
  user-select: none;
  transition: width 0.3s ease;
  border-radius: 4px;
}
.streamer .stream-title,
.streamer .stream-secondary {
  display: none;
  z-index: 2;
}
.streamer .stream-title {
  font-size: 14px;
  text-transform: uppercase;
  height: 100%;
  line-height: 1;
}
.streamer .stream-secondary {
  height: 16px;
  line-height: 16px;
  font-size: 12px;
}
.streamer .stream-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  text-align: center;
}
.streamer .events-area {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  padding-left: 40px;
  z-index: 1;
  position: relative;
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: auto;
}
.streamer .streamer-timeline,
.streamer .streamer-fake-timeline {
  height: 32px;
  width: auto;
  list-style: none inside;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  order: 1;
}
.streamer .streamer-timeline li,
.streamer .streamer-fake-timeline li {
  flex-shrink: 0;
  flex-grow: 0;
  width: var(--streamer-item-width);
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOAAAAATCAYAAACJKwFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWY4NzBhNi0zODU3LWFmNDEtYWMzZS03YzlkOTcxZjMxOTIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEREMzg4NkJBQjkyMTFFN0JDQTVFMzg4RUE0RDc4RkQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEREMzg4NkFBQjkyMTFFN0JDQTVFMzg4RUE0RDc4RkQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzEyZGQ1NjktNmM3YS0yZTQ2LTg2MmQtZWY3OGU5MmQ4NWY2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY5Zjg3MGE2LTM4NTctYWY0MS1hYzNlLTdjOWQ5NzFmMzE5MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv3rUTMAAAIHSURBVHja7Jq/S0JRHMWfpj37oSA8qikIImioIaghaHDrD2hqaG4R6i8paGksh2iIQGhoCYewocChhkDEoAjsx5IGDZV2Ll6huXvoKZwPHHwuh3O/737f03tvpNVqeUKIcIiYBiwUCoe4LhH8FqAadO/oE0BT0AUh0xxUhyqOPklohpRpFvqEbh194tA8dGX9XJi2fteE8S1CN1DD0WcSSpHmpslUhl4dfcahMeiSMTdj9qKYyWR2/uKA5v39dd1OUNebOAKtQtuEQa5Bd9C5o4+pVRbaImRagd6hU4LXJinTMjQMHZEymfn05eizBE1AOUKmDegAeiY8PE0z7xIyZaP2op/0Rk1AaYKPeQP6pEyD9inqyigx05B9ozLG5ttPV5I2FwPf1suVFGlsnUwBwSdt5zmD/qh+hQsRHmpAIdSAQqgBhRBqQCHUgEKIfyBG9jP7SD4pV5KYibFs3EfMZJbWu+0I0oDH24ZI2nq5krD3j5UpTvDxiZnoDWg2Ot8IPmbjfI+UqQo9EXw+vPZJCgYn0HeXNeCjx9vfKtt6uVIjPqhMpjrBx5ykqXRrA1ZJPg3P/RhTh2OSzwu0T/J66MJfQ2dEL1adisRMOZJPyeMcjdN/QCHCRg0ohBpQCDWgECKkBgxUip4k4rVXLiMqRU8SdBowr1r0JE2vvbTeVCl6kvyPAAMASGlSBhr76A8AAAAASUVORK5CYII=) no-repeat;
  vertical-align: bottom;
  height: 100%;
  line-height: 30px;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}
.streamer .streamer-timeline li em,
.streamer .streamer-fake-timeline li em {
  font-size: 10px;
  font-style: normal;
  margin: 4px;
  flex: 1 0 0;
  max-width: 100%;
}
.streamer .streamer-fake-timeline {
  position: absolute;
  height: 1px;
  top: 0;
  left: 0;
  width: 100%;
}
.streamer .streamer-fake-timeline li {
  width: auto;
  line-height: 1px;
  flex-shrink: 0;
  flex-grow: 0;
  overflow: hidden;
  text-align: center;
  color: #fcfcfc;
}
.streamer .streamer-events {
  order: 2;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}
.streamer .event-group {
  display: block;
  background-color: var(--stream-event-group-background);
  color: var(--stream-event-group-color);
  border: 1px solid transparent;
  flex-shrink: 0;
  margin-top: -1px;
}
.streamer .stream-events {
  min-height: 75px;
  height: auto;
  width: auto;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
}
.streamer .stream-events.global-stream {
  min-height: 100%;
}
.streamer .stream-events.global-stream .stream-event {
  min-width: 100%;
}
.streamer .stream-event {
  width: calc(var(--streamer-item-width) - 2);
  height: 72px;
  border: 1px solid var(--stream-event-border-color);
  border-radius: var(--stream-event-border-radius);
  margin: 2px 1px;
  background-color: var(--stream-event-background);
  color: var(--stream-event-color);
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
@media (hover: hover) {
  .streamer .stream-event:hover {
    border-color: var(--stream-event-border-color-hover);
    box-shadow: 0 1px 2px 0 var(--stream-event-shadow-color);
    z-index: 2;
  }
}
@media (hover: none) {
  .streamer .stream-event:active {
    border-color: var(--stream-event-border-color-hover);
    z-index: 2;
  }
}
.streamer .stream-event-slide {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  padding-right: 4px;
}
.streamer .stream-event-slide .slide-logo {
  width: 40px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  padding: 2px;
}
.streamer .stream-event-slide .slide-logo .icon {
  width: 36px;
  height: 36px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.streamer .stream-event-slide .slide-logo .time {
  margin-top: 1px;
  padding: 5px 4px 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.streamer .stream-event-slide .slide-data {
  margin: 0 4px;
  padding: 4px 0;
  display: flex;
  flex-flow: column nowrap;
  width: auto;
  max-width: calc(100% - 48px);
  height: 100%;
}
.streamer .stream-event-slide .slide-data .title,
.streamer .stream-event-slide .slide-data .subtitle,
.streamer .stream-event-slide .slide-data .desc {
  line-height: 1;
}
.streamer .stream-event-slide .slide-data .title {
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
.streamer .stream-event-slide .slide-data .subtitle {
  font-size: 10px;
}
.streamer .stream-event-slide .slide-data .desc {
  font-size: 11px;
  color: #999999;
  margin-top: auto;
  height: 29px;
  white-space: wrap;
  overflow: hidden;
  line-height: 1.2;
}
.streamer .stream-event-slide .slide-data * + .subtitle {
  margin-top: 2px;
}
.streamer .stream-event-slide .state-icon {
  position: absolute;
  z-index: 99;
  top: 4px;
  right: 8px;
  color: #515151;
}
.streamer .stream-event {
  position: relative;
  user-select: none;
}
.streamer .stream-event.selected {
  box-shadow: 0 0 0 1px #e3edff !important;
}
.streamer .stream-events:not(.global-stream) .stream-event.disabled {
  opacity: 0.2;
}
.streamer .size-auto {
  width: auto;
}
.streamer .event-group.size-1x {
  width: calc(var(--streamer-item-width) * 1);
}
.streamer .event-group.size-2x {
  width: calc(var(--streamer-item-width) * 2);
}
.streamer .event-group.size-3x {
  width: calc(var(--streamer-item-width) * 3);
}
.streamer .event-group.size-4x {
  width: calc(var(--streamer-item-width) * 4);
}
.streamer .event-group.size-5x {
  width: calc(var(--streamer-item-width) * 5);
}
.streamer .event-group.size-6x {
  width: calc(var(--streamer-item-width) * 6);
}
.streamer .event-group.size-7x {
  width: calc(var(--streamer-item-width) * 7);
}
.streamer .event-group.size-8x {
  width: calc(var(--streamer-item-width) * 8);
}
.streamer .event-group.size-9x {
  width: calc(var(--streamer-item-width) * 9);
}
.streamer .event-group.size-10x {
  width: calc(var(--streamer-item-width) * 10);
}
.streamer .event-group.size-11x {
  width: calc(var(--streamer-item-width) * 11);
}
.streamer .event-group.size-12x {
  width: calc(var(--streamer-item-width) * 12);
}
.streamer .event-group.size-13x {
  width: calc(var(--streamer-item-width) * 13);
}
.streamer .event-group.size-14x {
  width: calc(var(--streamer-item-width) * 14);
}
.streamer .event-group.size-15x {
  width: calc(var(--streamer-item-width) * 15);
}
.streamer .event-group.size-16x {
  width: calc(var(--streamer-item-width) * 16);
}
.streamer .event-group.size-17x {
  width: calc(var(--streamer-item-width) * 17);
}
.streamer .event-group.size-18x {
  width: calc(var(--streamer-item-width) * 18);
}
.streamer .event-group.size-19x {
  width: calc(var(--streamer-item-width) * 19);
}
.streamer .event-group.size-20x {
  width: calc(var(--streamer-item-width) * 20);
}
.streamer .stream-event.size-1x {
  width: calc(var(--streamer-item-width) * 1 - 2px);
}
.streamer .stream-event.shift-1x {
  margin-left: calc((var(--streamer-item-width) - 2) * 1 + (2 * 1 + 1));
}
.streamer .stream-event.size-2x {
  width: calc(var(--streamer-item-width) * 2 - 2px);
}
.streamer .stream-event.shift-2x {
  margin-left: calc((var(--streamer-item-width) - 2) * 2 + (2 * 2 + 1));
}
.streamer .stream-event.size-3x {
  width: calc(var(--streamer-item-width) * 3 - 2px);
}
.streamer .stream-event.shift-3x {
  margin-left: calc((var(--streamer-item-width) - 2) * 3 + (2 * 3 + 1));
}
.streamer .stream-event.size-4x {
  width: calc(var(--streamer-item-width) * 4 - 2px);
}
.streamer .stream-event.shift-4x {
  margin-left: calc((var(--streamer-item-width) - 2) * 4 + (2 * 4 + 1));
}
.streamer .stream-event.size-5x {
  width: calc(var(--streamer-item-width) * 5 - 2px);
}
.streamer .stream-event.shift-5x {
  margin-left: calc((var(--streamer-item-width) - 2) * 5 + (2 * 5 + 1));
}
.streamer .stream-event.size-6x {
  width: calc(var(--streamer-item-width) * 6 - 2px);
}
.streamer .stream-event.shift-6x {
  margin-left: calc((var(--streamer-item-width) - 2) * 6 + (2 * 6 + 1));
}
.streamer .stream-event.size-7x {
  width: calc(var(--streamer-item-width) * 7 - 2px);
}
.streamer .stream-event.shift-7x {
  margin-left: calc((var(--streamer-item-width) - 2) * 7 + (2 * 7 + 1));
}
.streamer .stream-event.size-8x {
  width: calc(var(--streamer-item-width) * 8 - 2px);
}
.streamer .stream-event.shift-8x {
  margin-left: calc((var(--streamer-item-width) - 2) * 8 + (2 * 8 + 1));
}
.streamer .stream-event.size-9x {
  width: calc(var(--streamer-item-width) * 9 - 2px);
}
.streamer .stream-event.shift-9x {
  margin-left: calc((var(--streamer-item-width) - 2) * 9 + (2 * 9 + 1));
}
.streamer .stream-event.size-10x {
  width: calc(var(--streamer-item-width) * 10 - 2px);
}
.streamer .stream-event.shift-10x {
  margin-left: calc((var(--streamer-item-width) - 2) * 10 + (2 * 10 + 1));
}
.streamer .stream-event.size-11x {
  width: calc(var(--streamer-item-width) * 11 - 2px);
}
.streamer .stream-event.shift-11x {
  margin-left: calc((var(--streamer-item-width) - 2) * 11 + (2 * 11 + 1));
}
.streamer .stream-event.size-12x {
  width: calc(var(--streamer-item-width) * 12 - 2px);
}
.streamer .stream-event.shift-12x {
  margin-left: calc((var(--streamer-item-width) - 2) * 12 + (2 * 12 + 1));
}
.streamer .stream-event.size-13x {
  width: calc(var(--streamer-item-width) * 13 - 2px);
}
.streamer .stream-event.shift-13x {
  margin-left: calc((var(--streamer-item-width) - 2) * 13 + (2 * 13 + 1));
}
.streamer .stream-event.size-14x {
  width: calc(var(--streamer-item-width) * 14 - 2px);
}
.streamer .stream-event.shift-14x {
  margin-left: calc((var(--streamer-item-width) - 2) * 14 + (2 * 14 + 1));
}
.streamer .stream-event.size-15x {
  width: calc(var(--streamer-item-width) * 15 - 2px);
}
.streamer .stream-event.shift-15x {
  margin-left: calc((var(--streamer-item-width) - 2) * 15 + (2 * 15 + 1));
}
.streamer .stream-event.size-16x {
  width: calc(var(--streamer-item-width) * 16 - 2px);
}
.streamer .stream-event.shift-16x {
  margin-left: calc((var(--streamer-item-width) - 2) * 16 + (2 * 16 + 1));
}
.streamer .stream-event.size-17x {
  width: calc(var(--streamer-item-width) * 17 - 2px);
}
.streamer .stream-event.shift-17x {
  margin-left: calc((var(--streamer-item-width) - 2) * 17 + (2 * 17 + 1));
}
.streamer .stream-event.size-18x {
  width: calc(var(--streamer-item-width) * 18 - 2px);
}
.streamer .stream-event.shift-18x {
  margin-left: calc((var(--streamer-item-width) - 2) * 18 + (2 * 18 + 1));
}
.streamer .stream-event.size-19x {
  width: calc(var(--streamer-item-width) * 19 - 2px);
}
.streamer .stream-event.shift-19x {
  margin-left: calc((var(--streamer-item-width) - 2) * 19 + (2 * 19 + 1));
}
.streamer .stream-event.size-20x {
  width: calc(var(--streamer-item-width) * 20 - 2px);
}
.streamer .stream-event.shift-20x {
  margin-left: calc((var(--streamer-item-width) - 2) * 20 + (2 * 20 + 1));
}
.streamer .stream-event.size-half {
  width: calc(var(--streamer-item-width) / 2);
}
.streamer .stream-event.size-one-third {
  width: calc(var(--streamer-item-width) / 3);
}
.streamer .stream-event.offset-half {
  margin-left: calc(var(--streamer-item-width) / 2);
}
.streamer .stream-event.offset-one-third {
  margin-left: calc(var(--streamer-item-width) / 3);
}
html.metro-no-touch-device .streamer .stream:hover {
  transition: width 0.3s ease;
  width: 200px;
}
html.metro-no-touch-device .streamer .stream:hover .stream-title,
html.metro-no-touch-device .streamer .stream:hover .stream-secondary {
  display: block;
}
html.metro-no-touch-device .streamer .stream:hover .stream-icon {
  bottom: 4px;
  right: 4px;
  top: auto;
  left: auto;
}
html.metro-touch-device .streamer .stream.focused {
  transition: width 0.3s ease;
  width: 200px;
}
html.metro-touch-device .streamer .stream.focused .stream-title,
html.metro-touch-device .streamer .stream.focused .stream-secondary {
  display: block;
}
html.metro-touch-device .streamer .stream.focused .stream-icon {
  bottom: 4px;
  right: 4px;
  top: auto;
  left: auto;
}
@container (min-width: 0) {
  .streamer.streamer-expand-fs .streams,
  .streamer.streamer-expand-fs .stream {
    width: 200px;
  }
  .streamer.streamer-expand-fs .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-fs .stream-title,
  .streamer.streamer-expand-fs .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-fs .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-fs .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 360px) {
  .streamer.streamer-expand-xs .streams,
  .streamer.streamer-expand-xs .stream {
    width: 200px;
  }
  .streamer.streamer-expand-xs .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-xs .stream-title,
  .streamer.streamer-expand-xs .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-xs .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-xs .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 576px) {
  .streamer.streamer-expand-sm .streams,
  .streamer.streamer-expand-sm .stream {
    width: 200px;
  }
  .streamer.streamer-expand-sm .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-sm .stream-title,
  .streamer.streamer-expand-sm .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-sm .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-sm .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 640px) {
  .streamer.streamer-expand-ld .streams,
  .streamer.streamer-expand-ld .stream {
    width: 200px;
  }
  .streamer.streamer-expand-ld .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-ld .stream-title,
  .streamer.streamer-expand-ld .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-ld .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-ld .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 768px) {
  .streamer.streamer-expand-md .streams,
  .streamer.streamer-expand-md .stream {
    width: 200px;
  }
  .streamer.streamer-expand-md .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-md .stream-title,
  .streamer.streamer-expand-md .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-md .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-md .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 992px) {
  .streamer.streamer-expand-lg .streams,
  .streamer.streamer-expand-lg .stream {
    width: 200px;
  }
  .streamer.streamer-expand-lg .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-lg .stream-title,
  .streamer.streamer-expand-lg .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-lg .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-lg .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 1200px) {
  .streamer.streamer-expand-xl .streams,
  .streamer.streamer-expand-xl .stream {
    width: 200px;
  }
  .streamer.streamer-expand-xl .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-xl .stream-title,
  .streamer.streamer-expand-xl .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-xl .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-xl .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 1400px) {
  .streamer.streamer-expand-xxl .streams,
  .streamer.streamer-expand-xxl .stream {
    width: 200px;
  }
  .streamer.streamer-expand-xxl .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-xxl .stream-title,
  .streamer.streamer-expand-xxl .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-xxl .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-xxl .events-area {
    padding-left: 200px;
  }
}
@container (min-width: 2000px) {
  .streamer.streamer-expand-xxxl .streams,
  .streamer.streamer-expand-xxxl .stream {
    width: 200px;
  }
  .streamer.streamer-expand-xxxl .streamer-actions {
    display: flex;
    width: 200px;
  }
  .streamer.streamer-expand-xxxl .stream-title,
  .streamer.streamer-expand-xxxl .stream-secondary {
    display: block;
  }
  .streamer.streamer-expand-xxxl .stream-icon {
    bottom: 4px;
    right: 4px;
    top: auto;
    left: auto;
  }
  .streamer.streamer-expand-xxxl .events-area {
    padding-left: 200px;
  }
}

/* source/components/switch/switch.less */
:root {
  --switch-background: #e9e9e9;
  --switch-background-checked: #191919;
  --switch-background-disabled: #e8e8e8;
  --switch-toggle-color: #fff;
  --switch-toggle-disabled: #ccc;
  --switch-text-color: #000;
  --switch-text-color-checked: #fff;
  --switch-focus-color: #e8e8e8;
}
.dark-side {
  --switch-background: #232527;
  --switch-background-checked: #474748;
  --switch-toggle-color: #fff;
  --switch-toggle-disabled: #3e4145;
  --switch-text-color: #efefef;
  --switch-text-color-checked: #fff;
  --switch-focus-color: #191919;
}
.switch {
  height: 36px;
  padding: 8px 0;
  margin: 0 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: auto;
  flex-wrap: nowrap;
}
.switch > input {
  appearance: none;
  position: relative;
  width: 48px;
  height: 20px;
  order: 2;
  background: var(--switch-background);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s background-color;
  margin: 0;
  padding: 0;
  border-color: transparent !important;
}
.switch > input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--switch-toggle-color);
  border-radius: 50%;
  transition: 0.3s;
  opacity: 1;
  border: 1px solid transparent;
  transform: none;
}
.switch > input::after {
  position: absolute;
  content: attr(data-off);
  top: 5px;
  left: 2px;
  transform: translate(20px, 0);
  color: var(--switch-text-color);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 400;
  transition: 0.3s transform;
  line-height: 1;
}
.switch > input:checked {
  background: var(--switch-background-checked);
}
.switch > input:checked::before {
  transform: translateX(28px);
}
.switch > input:checked::after {
  content: attr(data-on);
  transform: translateX(6px);
  color: var(--switch-text-color-checked);
}
.switch > input:disabled {
  background: var(--switch-background-disabled);
}
.switch > input:disabled::before {
  background: var(--switch-toggle-disabled);
}
.switch .caption-prepend,
.switch .caption-append {
  font-size: 12px;
  margin: 0 6px;
  position: relative;
  white-space: nowrap;
}
.switch .caption-prepend {
  order: 1;
}
.switch .caption-append {
  order: 3;
}
.switch > input[type=checkbox]:disabled ~ .caption-prepend,
.switch > input[type=checkbox]:disabled ~ .caption-append {
  color: var(--switch-toggle-disabled);
}
.switch > input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px var(--switch-focus-color);
}
.switch.material > input {
  height: 17px;
}
.switch.material > input::before {
  top: -6px;
  left: -4px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--switch-toggle-color);
  box-shadow: 0 2px 10px #00000029, 0 2px 5px #00000042;
}
.switch.material > input::after {
  top: 4px;
  transform: translateX(22px);
}
.switch.material > input:checked::before {
  transform: translateX(28px);
}
.switch.material > input:checked::after {
  transform: translateX(4px);
}
.switch.material .caption-prepend {
  margin-right: 8px;
}
.switch.material .caption-append {
  margin-left: 8px;
}
.switch:has(input:disabled) {
  cursor: default;
}
.switch-lime {
  --switch-background-checked: #AEFD6C !important;
}
.switch-green {
  --switch-background-checked: #00b500 !important;
}
.switch-emerald {
  --switch-background-checked: #50c878 !important;
}
.switch-blue {
  --switch-background-checked: #5e87ff !important;
}
.switch-teal {
  --switch-background-checked: #1ac5c5 !important;
}
.switch-cyan {
  --switch-background-checked: #94b6ff !important;
}
.switch-cobalt {
  --switch-background-checked: #0047ab !important;
}
.switch-indigo {
  --switch-background-checked: #6400a8 !important;
}
.switch-almost {
  --switch-background-checked: #6a2ded !important;
}
.switch-violet {
  --switch-background-checked: #ee82ee !important;
}
.switch-pink {
  --switch-background-checked: #ffc0cb !important;
}
.switch-magenta {
  --switch-background-checked: #ff00ff !important;
}
.switch-crimson {
  --switch-background-checked: #df0e38 !important;
}
.switch-red {
  --switch-background-checked: #ff0000 !important;
}
.switch-orange {
  --switch-background-checked: #ffa500 !important;
}
.switch-amber {
  --switch-background-checked: #ffca2a !important;
}
.switch-yellow {
  --switch-background-checked: #ffe95e !important;
}
.switch-brown {
  --switch-background-checked: #ca773c !important;
}
.switch-olive {
  --switch-background-checked: #a1a100 !important;
}
.switch-steel {
  --switch-background-checked: #7b91a6 !important;
}
.switch-mauve {
  --switch-background-checked: #e0afff !important;
}
.switch-taupe {
  --switch-background-checked: #977e67 !important;
}
.switch-champagne {
  --switch-background-checked: #f7e6ca !important;
}
.switch-khaki {
  --switch-background-checked: #d5c58a !important;
}
.switch-charcoal {
  --switch-background-checked: #989898 !important;
}
.switch-bronze {
  --switch-background-checked: #e48d3e !important;
}
.switch-windstorm {
  --switch-background-checked: #799ed6 !important;
}
.switch-nude {
  --switch-background-checked: #f7d9bc !important;
}
.switch-terracotta {
  --switch-background-checked: #e35336 !important;
}
.switch-coral {
  --switch-background-checked: #ff8559 !important;
}
.switch-army {
  --switch-background-checked: #5d6532 !important;
}
.switch-seashell {
  --switch-background-checked: #fff1e7 !important;
}
.switch-sand {
  --switch-background-checked: #f1e0ae !important;
}

/* source/components/typer/typer.less */
.typer {
  position: relative;
  text-align: left;
  display: inline-flex;
  justify-content: flex-start;
}
.typer-cursor {
  transition: all 0.1s;
}

/* source/components/t-menu/t-menu.less */
:root {
  --t-menu-border-radius: 6px;
  --t-menu-border-color: #ececec;
  --t-menu-background: #fefefe;
  --t-menu-color: #191919;
}
.dark-side {
  --t-menu-border-color: #484b4c;
  --t-menu-background: #343637;
  --t-menu-color: #dbdfe7;
}
.t-menu {
  list-style: none inside;
  margin: 0;
  padding: 0;
  position: relative;
  width: auto;
  float: left;
  background-color: var(--t-menu-background);
  color: var(--t-menu-color);
  display: none;
  border: 1px var(--t-menu-border-color) solid;
  border-radius: var(--t-menu-border-radius);
}
.t-menu.open {
  display: block;
}
.t-menu > li:first-child,
.t-menu > li:first-child a {
  border-top-left-radius: var(--t-menu-border-radius);
  border-top-right-radius: var(--t-menu-border-radius);
}
.t-menu > li:last-child,
.t-menu > li:last-child a {
  border-bottom-left-radius: var(--t-menu-border-radius);
  border-bottom-right-radius: var(--t-menu-border-radius);
}
.t-menu > li {
  position: relative;
  background-color: inherit;
  color: inherit;
  display: block;
  height: 60px;
  width: 60px;
}
.t-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px var(--t-menu-border-color) solid;
  position: relative;
  color: inherit;
  background-color: inherit;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.t-menu > li > a * {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .t-menu > li:hover {
    background-color: rgba(29, 29, 29, 0.1);
  }
}
@media (hover: none) {
  .t-menu > li:active {
    background-color: rgba(29, 29, 29, 0.1);
  }
}
.t-menu a {
  text-decoration: none !important;
}
.t-menu a:hover {
  text-decoration: none !important;
}
.t-menu.horizontal > li {
  float: left;
}
.t-menu.horizontal > li:first-child a {
  border-radius: var(--t-menu-border-radius) 0 0 var(--t-menu-border-radius);
}
.t-menu.horizontal > li:last-child a {
  border-radius: 0 var(--t-menu-border-radius) var(--t-menu-border-radius) 0;
}
.t-menu .t-menu {
  position: absolute;
  left: 100%;
  margin-left: 0.3125rem;
  top: 0;
  float: none;
}
.t-menu.horizontal .t-menu {
  left: 0;
  top: 100%;
  margin-top: 0.3125rem;
  margin-left: 0;
}
.t-menu .dropdown-toggle {
  padding-right: 0 !important;
}
.t-menu .dropdown-toggle:after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent var(--t-menu-border-color) transparent;
  transform: rotate(0);
}
.t-menu .dropdown-toggle:before {
  display: none;
}
.t-menu.horizontal > li > a {
  border-right: 1px var(--t-menu-border-color) solid;
  border-bottom: 0;
}
.t-menu.horizontal > li:last-child > a {
  border-right: 0;
}
.t-menu.horizontal .t-menu:not(.horizontal) {
  left: 0;
  top: 100%;
  margin-top: 0.3125rem;
  margin-left: 0;
}
.t-menu.horizontal .t-menu:not(.horizontal) .t-menu.horizontal {
  left: 100%;
  margin-left: 0.3125rem;
  top: -0.3rem;
  float: left;
}
.t-menu.compact li {
  width: 40px;
  height: 40px;
}
.t-menu.compact li a * {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}
.t-menu {
  z-index: 1000;
}

/* source/components/tabs-material/tabs-material.less */
:root {
  --tabs-material-background: #ffffff;
  --tabs-material-color: #191919;
  --tabs-material-marker-color: #000000;
}
.dark-side {
  --tabs-material-background: #343637;
  --tabs-material-color: #dbdfe7;
  --tabs-material-marker-color: #ff6211;
}
.tabs-material-wrapper {
  overflow: hidden;
  height: 48px;
  display: block;
  width: 100%;
}
.tabs-material {
  margin: 0;
  padding: 0 52px;
  position: relative;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  overflow: auto;
  overflow-y: hidden;
  width: 100%;
  z-index: 1030;
  background-color: var(--tabs-material-background);
  color: var(--tabs-material-color);
  white-space: nowrap;
  list-style: none inside;
  line-height: 1;
}
.tabs-material li {
  flex-shrink: 0;
  position: relative;
  display: block;
  height: 48px;
  cursor: pointer;
  opacity: 0.6;
  text-align: center;
  margin: 0;
  overflow: hidden;
  max-width: 360px;
  min-width: 90px;
  background-color: inherit;
  color: inherit;
}
.tabs-material li a {
  display: block;
  position: relative;
  padding: 16px 16px;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  width: 100%;
}
.tabs-material li a:hover {
  text-decoration: none;
}
.tabs-material li .icon {
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 22px;
  display: block;
}
.tabs-material::after {
  content: " ";
  min-width: 52px;
}
.tabs-material.with-icons li {
  height: 72px;
}
.tabs-material li.active,
.tabs-material li:hover {
  opacity: 1;
  transition: 0.3s linear;
}
.tabs-material .tab-marker {
  display: block;
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  color: transparent;
  opacity: 1;
  z-index: 1;
  background-color: var(--tabs-material-marker-color);
}
.tabs-material .tab-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px;
}
.tabs-material.deep {
  z-index: 1029;
}
.tabs-material.fixed-tabs {
  overflow-x: hidden;
  padding: 0;
}
.tabs-material.fixed-tabs li {
  flex-basis: 0;
  flex-grow: 1;
}
.tabs-material.fixed-tabs::after {
  content: "";
  min-width: 0;
}
.head-bar ~ .fixed-tabs,
.tabs-material-wrapper.app-bar-present {
  top: 56px;
}
.head-bar.more ~ .fixed-tabs,
.tabs-material-wrapper.app-bar-present-more {
  top: 112px;
}

/* source/components/tag-input/tag-input.less */
:root {
  --taginput-border-radius: 4px;
  --taginput-color: var(--input-color);
}
.dark-side {
  --taginput-color: var(--input-color);
}
.tag-input {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 2px;
  cursor: text;
  position: relative;
  height: auto;
  min-height: var(--input-height, 36px);
  border-radius: var(--taginput-border-radius);
}
.tag-input .original-input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.tag-input .input-wrapper {
  width: auto;
  border: none !important;
  height: calc(var(--input-height) - 6px);
  font-size: 14px;
  padding: 0 4px;
  background: transparent;
  color: var(--taginput-color);
}
.tag-input .input-wrapper:focus {
  box-shadow: none !important;
}
.tag-input .input-clear-button {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  background-color: transparent;
  height: calc(var(--input-height) - 6px);
  width: calc(var(--input-height) - 6px);
}
.tag-input.padding-for-clear {
  padding-right: 48px;
}
.tag-input.static-mode {
  border: none !important;
  cursor: default;
}
.tag-input.static-mode .button,
.tag-input.static-mode input {
  display: none !important;
}
.tag-input .autocomplete-list {
  margin: 0;
  padding: 0;
  list-style: none inside;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  height: auto;
  border: 1px solid var(--border-color);
  z-index: 3;
  display: block;
}
.tag-input .autocomplete-list .item {
  display: block;
  position: relative;
  padding: 4px 8px;
  cursor: pointer;
}
.tag-input .autocomplete-list .item:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.tag-input .autocomplete-list .item + .item {
  border-top: 1px solid var(--border-color);
}

/* source/components/task-bar/task-bar.less */
:root {
  --task-bar-background: #f5f5f5;
  --task-bar-color: #191919;
  --task-bar-task-background: transparent;
  --task-bar-task-color: inherit;
  --task-bar-task-background-hover: #e8e8e8;
  --task-bar-task-color-hover: #000000;
  --task-bar-task-background-active: #e8e8e8;
  --task-bar-task-color-active: #000000;
}
.dark-side {
  --task-bar-background: #2b2d30;
  --task-bar-color: #dbdfe7;
  --task-bar-task-background: transparent;
  --task-bar-task-color: inherit;
  --task-bar-task-background-hover: #37393e;
  --task-bar-task-color-hover: #ffffff;
  --task-bar-task-background-active: #37393e;
  --task-bar-task-color-active: #ffffff;
}
.task-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  height: 50px;
  background-color: var(--task-bar-background);
  color: var(--task-bar-color);
  gap: 1rem;
}
.task-bar .widgets,
.task-bar .tasks,
.task-bar .system-tray {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.task-bar .tasks {
  flex-basis: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.task-bar .system-tray {
  font-size: 14px;
  gap: 0;
}
.task-bar .widgets {
  order: 1;
}
.task-bar .tasks {
  order: 2;
}
.task-bar .system-tray {
  order: 3;
}
.task-bar .task {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}
.task-bar .task > * {
  width: 26px;
  height: 26px;
  object-fit: cover;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.task-bar .task.active {
  background-color: var(--task-bar-task-background-active);
  color: var(--task-bar-task-color-active);
}
.task-bar .task.active::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--selected-color);
  border-radius: 2px;
}
@media (hover: hover) {
  .task-bar .task:hover {
    background-color: var(--task-bar-task-background-hover);
    color: var(--task-bar-task-color-hover);
  }
}
@media (hover: none) {
  .task-bar .task:active {
    background-color: var(--task-bar-task-background-hover);
    color: var(--task-bar-task-color-hover);
  }
}
.task-bar .system-tray-item,
.task-bar .widget {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  width: auto;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  position: relative;
  align-self: flex-end;
}
@media (hover: hover) {
  .task-bar .system-tray-item:hover,
  .task-bar .widget:hover {
    background-color: var(--task-bar-task-background-hover);
    color: var(--task-bar-task-color-hover);
  }
}
@media (hover: none) {
  .task-bar .system-tray-item:active,
  .task-bar .widget:active {
    background-color: var(--task-bar-task-background-hover);
    color: var(--task-bar-task-color-hover);
  }
}

/* source/components/textarea/textarea.less */
:root {
  --textarea-color: #191919;
  --textarea-border-color: var(--border-color);
  --textarea-font-size: 14px;
  --textarea-border-radius: 4px;
}
.dark-side {
  --textarea-color: #dbdfe7;
  --textarea-border-color: #444444;
}
.textarea,
textarea {
  height: auto;
}
textarea {
  line-height: 1.2;
}
.textarea {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: auto;
  padding: 0;
  background: var(--input-background);
  border-radius: var(--textarea-border-radius);
}
.textarea .fake-textarea {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: var(--textarea-font-size);
}
.textarea textarea {
  appearance: none;
  display: block;
  outline: none;
  padding: 0.75rem;
  width: 100%;
  min-height: 100px;
  resize: none;
  border: none !important;
  transition: height 0.1s linear;
  font-size: var(--textarea-font-size);
  background: transparent;
  color: var(--textarea-color);
}
.textarea textarea:focus {
  box-shadow: none;
}
.textarea.no-scroll-vertical textarea {
  overflow-y: hidden !important;
}
.textarea .button {
  width: 30px;
  height: 30px;
  color: var(--textarea-color);
}
.textarea .input-clear-button {
  font-family: "Segoe UI Symbol", serif;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  background-color: transparent;
}
.textarea:not(.no-scroll-vertical) .input-clear-button {
  right: 18px;
}
.textarea.disabled .clear-button {
  display: none;
}
.textarea .prepend {
  order: 1;
}
.textarea .append {
  order: 3;
}
.textarea textarea {
  order: 2;
}
.textarea .input-clear-button ~ textarea {
  padding-right: 48px;
}
.textarea .prepend {
  border-top-left-radius: var(--textarea-border-radius);
  border-bottom-left-radius: var(--textarea-border-radius);
}
.textarea .append {
  border-top-right-radius: var(--textarea-border-radius);
  border-bottom-right-radius: var(--textarea-border-radius);
}
.textarea[dir=rtl],
.textarea.rtl {
  flex-direction: row-reverse;
}
.textarea[dir=rtl] .prepend,
.textarea.rtl .prepend {
  order: 3;
}
.textarea[dir=rtl] .append,
.textarea.rtl .append {
  order: 1;
}
.textarea[dir=rtl] textarea,
.textarea.rtl textarea {
  order: 2;
}
.textarea[dir=rtl] .input-clear-button,
.textarea.rtl .input-clear-button {
  right: auto;
  left: 0.25rem;
}
.textarea[dir=rtl] .input-clear-button ~ textarea,
.textarea.rtl .input-clear-button ~ textarea {
  padding-left: 48px;
  padding-right: 0.75rem;
}

/* source/components/theme-switcher/theme-switcher.less */
:root {
  --theme-switcher-background: #e9e9e9;
  --theme-switcher-background-button: #ffffff;
  --theme-switcher-background-checked: #191919;
  --theme-switcher-background-disabled: #e8e8e8;
  --theme-switcher-toggle-color: #fff;
  --theme-switcher-toggle-disabled: #ccc;
  --theme-switcher-text-color: #000;
  --theme-switcher-text-color-checked: #fff;
  --theme-switcher-focus-color: #e8e8e8;
  --theme-switcher-border-color: #e8e8e8;
}
.dark-side {
  --theme-switcher-background: #232527;
  --theme-switcher-background-button: #232527;
  --theme-switcher-background-checked: #474748;
  --theme-switcher-toggle-color: #232527;
  --theme-switcher-toggle-disabled: #3e4145;
  --theme-switcher-text-color: #efefef;
  --theme-switcher-text-color-checked: #fff;
  --theme-switcher-focus-color: #191919;
  --theme-switcher-border-color: #474748;
}
.theme-switcher {
}
.theme-switcher.mode-switch {
  height: 36px;
  padding: 8px 0;
  margin: 0 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: auto;
  flex-wrap: nowrap;
}
.theme-switcher.mode-switch > input {
  appearance: none;
  position: relative;
  width: 48px;
  height: 20px;
  order: 2;
  background: var(--theme-switcher-background);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s background-color;
  margin: 0;
  padding: 0;
  border-color: transparent !important;
}
.theme-switcher.mode-switch > input::before {
  content: attr(data-light-symbol);
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--theme-switcher-toggle-color);
  border-radius: 50%;
  transition: 0.3s;
  opacity: 1;
  border: 1px solid transparent;
  transform: none;
  line-height: 1;
  font-size: 13px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switcher.mode-switch > input::after {
  position: absolute;
  content: attr(data-off);
  top: 5px;
  left: 2px;
  transform: translate(20px, 0);
  color: var(--theme-switcher-text-color);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 400;
  transition: 0.3s transform;
  line-height: 1;
}
.theme-switcher.mode-switch > input:checked {
  background: var(--theme-switcher-background-checked);
}
.theme-switcher.mode-switch > input:checked::before {
  content: attr(data-dark-symbol);
  transform: translateX(28px);
  color: #191919;
}
.theme-switcher.mode-switch > input:checked::after {
  content: attr(data-on);
  transform: translateX(6px);
  color: var(--theme-switcher-text-color-checked);
}
.theme-switcher.mode-switch > input:disabled {
  background: var(--theme-switcher-background-disabled);
}
.theme-switcher.mode-switch > input:disabled::before {
  background: var(--theme-switcher-toggle-disabled);
}
.theme-switcher.mode-button {
  height: 36px;
  width: 36px;
  border: 2px solid var(--theme-switcher-border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-switcher-background-button);
  transition: background-color 0.5s;
}
.theme-switcher.mode-button > input {
  appearance: none;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switcher.mode-button > input::before {
  color: var(--theme-switcher-text-color);
  content: attr(data-light-symbol);
  border: none;
  transform: none;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  opacity: 1;
  font-size: 1.4rem;
}
.theme-switcher.mode-button > input:checked::before {
  content: attr(data-dark-symbol);
}
.theme-switcher.mode-button > input[type=checkbox]:focus {
  box-shadow: none;
}

/* source/components/tile/tile.less */
:root {
  --tile-background: #ededed;
  --tile-color: #191919;
  --tile-border-color: var(--border-color);
  --tile-border-radius: 6px;
  --tile-badge-background: rgba(29, 29, 29, 0.1);
  --tile-badge-color: #191919;
  --tile-grid-gap: 10px;
}
.dark-side {
  --tile-background: #26282e;
  --tile-color: #ffffff;
  --tile-border-color: var(--border-color);
  --tile-badge-background: rgba(29, 29, 29, 0.1);
  --tile-badge-color: #ffffff;
}
.tile-small,
.tile-medium,
.tile-wide,
.tile-large,
.tile-app {
  display: block;
  background: var(--tile-background);
  color: var(--tile-color);
  width: 150px;
  height: 150px;
  box-shadow: inset 0 0 1px var(--tile-border-color);
  border-radius: var(--tile-border-radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  user-select: none;
  max-width: none !important;
}
.tile-small {
  width: 70px;
  height: 70px;
}
.tile-medium {
  width: 150px;
  height: 150px;
}
.tile-wide {
  width: 310px;
  height: 150px;
}
.tile-large {
  width: 310px;
  height: 310px;
}
.tile-app {
  width: 44px;
  height: 44px;
}
.tile-small .icon,
.tile-medium .icon,
.tile-wide .icon,
.tile-large .icon,
.tile-app .icon {
  max-width: 33%;
  height: 33%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 50px;
  line-height: 50px;
  z-index: 2;
}
.tile-small .branding-bar,
.tile-medium .branding-bar,
.tile-wide .branding-bar,
.tile-large .branding-bar,
.tile-app .branding-bar {
  height: 32px;
  line-height: 32px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 10px 5px;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}
.tile-small .badge-top,
.tile-medium .badge-top,
.tile-wide .badge-top,
.tile-large .badge-top,
.tile-app .badge-top,
.tile-small .badge-bottom,
.tile-medium .badge-bottom,
.tile-wide .badge-bottom,
.tile-large .badge-bottom,
.tile-app .badge-bottom {
  position: absolute;
  display: block;
  padding: 4px 8px;
  font-size: 12px;
  text-align: center;
  background-color: rgba(29, 29, 29, 0.1);
  z-index: 2;
}
.tile-small .badge-bottom,
.tile-medium .badge-bottom,
.tile-wide .badge-bottom,
.tile-large .badge-bottom,
.tile-app .badge-bottom {
  right: 10px;
  bottom: 0;
}
.tile-small .badge-top,
.tile-medium .badge-top,
.tile-wide .badge-top,
.tile-large .badge-top,
.tile-app .badge-top {
  top: 10px;
  right: 10px;
}
.tile-small .icon {
  max-width: 50%;
  height: 50%;
  font-size: 35px;
  line-height: 35px;
}
.tile-large .icon {
  font-size: 102px;
  line-height: 102px;
}
.tile-app .icon {
  max-width: 75%;
  height: 75%;
}
.tile-small.transform-right,
.tile-medium.transform-right,
.tile-wide.transform-right,
.tile-large.transform-right,
.tile-app.transform-right {
  transform-origin: left 50%;
  transform: perspective(500px) rotateY(0.138372rad) !important;
}
.tile-small.transform-right.tile-small,
.tile-medium.transform-right.tile-small,
.tile-wide.transform-right.tile-small,
.tile-large.transform-right.tile-small,
.tile-app.transform-right.tile-small {
  transform: perspective(500px) rotateY(0.276744rad) !important;
}
.tile-small.transform-right.tile-wide,
.tile-medium.transform-right.tile-wide,
.tile-wide.transform-right.tile-wide,
.tile-large.transform-right.tile-wide,
.tile-app.transform-right.tile-wide {
  transform: perspective(500px) rotateY(0.069186rad) !important;
}
.tile-small.transform-right.tile-large,
.tile-medium.transform-right.tile-large,
.tile-wide.transform-right.tile-large,
.tile-large.transform-right.tile-large,
.tile-app.transform-right.tile-large {
  transform: perspective(500px) rotateY(0.046124rad) !important;
}
.tile-small.transform-left,
.tile-medium.transform-left,
.tile-wide.transform-left,
.tile-large.transform-left,
.tile-app.transform-left {
  transform-origin: right 50%;
  transform: perspective(500px) rotateY(-0.138372rad) !important;
}
.tile-small.transform-left.tile-small,
.tile-medium.transform-left.tile-small,
.tile-wide.transform-left.tile-small,
.tile-large.transform-left.tile-small,
.tile-app.transform-left.tile-small {
  transform: perspective(500px) rotateY(-0.276744rad) !important;
}
.tile-small.transform-left.tile-wide,
.tile-medium.transform-left.tile-wide,
.tile-wide.transform-left.tile-wide,
.tile-large.transform-left.tile-wide,
.tile-app.transform-left.tile-wide {
  transform: perspective(500px) rotateY(-0.069186rad) !important;
}
.tile-small.transform-left.tile-large,
.tile-medium.transform-left.tile-large,
.tile-wide.transform-left.tile-large,
.tile-large.transform-left.tile-large,
.tile-app.transform-left.tile-large {
  transform: perspective(500px) rotateY(-0.046124rad) !important;
}
.tile-small.transform-top,
.tile-medium.transform-top,
.tile-wide.transform-top,
.tile-large.transform-top,
.tile-app.transform-top {
  transform-origin: 50% bottom;
  transform: perspective(500px) rotateX(0.138372rad) !important;
}
.tile-small.transform-top.tile-small,
.tile-medium.transform-top.tile-small,
.tile-wide.transform-top.tile-small,
.tile-large.transform-top.tile-small,
.tile-app.transform-top.tile-small {
  transform: perspective(500px) rotateX(0.276744rad) !important;
}
.tile-small.transform-top.tile-wide,
.tile-medium.transform-top.tile-wide,
.tile-wide.transform-top.tile-wide,
.tile-large.transform-top.tile-wide,
.tile-app.transform-top.tile-wide {
  transform: perspective(500px) rotateX(0.069186rad) !important;
}
.tile-small.transform-top.tile-large,
.tile-medium.transform-top.tile-large,
.tile-wide.transform-top.tile-large,
.tile-large.transform-top.tile-large,
.tile-app.transform-top.tile-large {
  transform: perspective(500px) rotateX(0.046124rad) !important;
}
.tile-small.transform-bottom,
.tile-medium.transform-bottom,
.tile-wide.transform-bottom,
.tile-large.transform-bottom,
.tile-app.transform-bottom {
  transform-origin: 50% top;
  transform: perspective(500px) rotateX(-0.138372rad) !important;
}
.tile-small.transform-bottom.tile-small,
.tile-medium.transform-bottom.tile-small,
.tile-wide.transform-bottom.tile-small,
.tile-large.transform-bottom.tile-small,
.tile-app.transform-bottom.tile-small {
  transform: perspective(500px) rotateX(-0.276744rad) !important;
}
.tile-small.transform-bottom.tile-wide,
.tile-medium.transform-bottom.tile-wide,
.tile-wide.transform-bottom.tile-wide,
.tile-large.transform-bottom.tile-wide,
.tile-app.transform-bottom.tile-wide {
  transform: perspective(500px) rotateX(-0.069186rad) !important;
}
.tile-small.transform-bottom.tile-large,
.tile-medium.transform-bottom.tile-large,
.tile-wide.transform-bottom.tile-large,
.tile-large.transform-bottom.tile-large,
.tile-app.transform-bottom.tile-large {
  transform: perspective(500px) rotateX(-0.046124rad) !important;
}
.tiles-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, 70px);
  grid-template-rows: repeat(auto-fit, 70px);
  grid-gap: var(--tile-grid-gap);
}
.tiles-grid .tile-small {
  grid-column: span 1;
  grid-row: span 1;
}
.tiles-grid .tile-medium {
  grid-column: span 2;
  grid-row: span 2;
}
.tiles-grid .tile-wide {
  grid-column: span 4;
  grid-row: span 2;
}
.tiles-grid .tile-large {
  grid-column: span 4;
  grid-row: span 4;
}
.tiles-grid .tile-small.col-1 {
  grid-column: 1 / span 1;
}
.tiles-grid .tile-medium.col-1 {
  grid-column: 1 / span 2;
}
.tiles-grid .tile-wide.col-1 {
  grid-column: 1 / span 4;
}
.tiles-grid .tile-large.col-1 {
  grid-column: 1 / span 4;
}
.tiles-grid .tile-small.row-1 {
  grid-row: 1 / span 1;
}
.tiles-grid .tile-medium.row-1 {
  grid-row: 1 / span 2;
}
.tiles-grid .tile-wide.row-1 {
  grid-row: 1 / span 4;
}
.tiles-grid .tile-large.row-1 {
  grid-row: 1 / span 4;
}
.tiles-grid .tile-small.col-2 {
  grid-column: 2 / span 1;
}
.tiles-grid .tile-medium.col-2 {
  grid-column: 2 / span 2;
}
.tiles-grid .tile-wide.col-2 {
  grid-column: 2 / span 4;
}
.tiles-grid .tile-large.col-2 {
  grid-column: 2 / span 4;
}
.tiles-grid .tile-small.row-2 {
  grid-row: 2 / span 1;
}
.tiles-grid .tile-medium.row-2 {
  grid-row: 2 / span 2;
}
.tiles-grid .tile-wide.row-2 {
  grid-row: 2 / span 4;
}
.tiles-grid .tile-large.row-2 {
  grid-row: 2 / span 4;
}
.tiles-grid .tile-small.col-3 {
  grid-column: 3 / span 1;
}
.tiles-grid .tile-medium.col-3 {
  grid-column: 3 / span 2;
}
.tiles-grid .tile-wide.col-3 {
  grid-column: 3 / span 4;
}
.tiles-grid .tile-large.col-3 {
  grid-column: 3 / span 4;
}
.tiles-grid .tile-small.row-3 {
  grid-row: 3 / span 1;
}
.tiles-grid .tile-medium.row-3 {
  grid-row: 3 / span 2;
}
.tiles-grid .tile-wide.row-3 {
  grid-row: 3 / span 4;
}
.tiles-grid .tile-large.row-3 {
  grid-row: 3 / span 4;
}
.tiles-grid .tile-small.col-4 {
  grid-column: 4 / span 1;
}
.tiles-grid .tile-medium.col-4 {
  grid-column: 4 / span 2;
}
.tiles-grid .tile-wide.col-4 {
  grid-column: 4 / span 4;
}
.tiles-grid .tile-large.col-4 {
  grid-column: 4 / span 4;
}
.tiles-grid .tile-small.row-4 {
  grid-row: 4 / span 1;
}
.tiles-grid .tile-medium.row-4 {
  grid-row: 4 / span 2;
}
.tiles-grid .tile-wide.row-4 {
  grid-row: 4 / span 4;
}
.tiles-grid .tile-large.row-4 {
  grid-row: 4 / span 4;
}
.tiles-grid .tile-small.col-5 {
  grid-column: 5 / span 1;
}
.tiles-grid .tile-medium.col-5 {
  grid-column: 5 / span 2;
}
.tiles-grid .tile-wide.col-5 {
  grid-column: 5 / span 4;
}
.tiles-grid .tile-large.col-5 {
  grid-column: 5 / span 4;
}
.tiles-grid .tile-small.row-5 {
  grid-row: 5 / span 1;
}
.tiles-grid .tile-medium.row-5 {
  grid-row: 5 / span 2;
}
.tiles-grid .tile-wide.row-5 {
  grid-row: 5 / span 4;
}
.tiles-grid .tile-large.row-5 {
  grid-row: 5 / span 4;
}
.tiles-grid .tile-small.col-6 {
  grid-column: 6 / span 1;
}
.tiles-grid .tile-medium.col-6 {
  grid-column: 6 / span 2;
}
.tiles-grid .tile-wide.col-6 {
  grid-column: 6 / span 4;
}
.tiles-grid .tile-large.col-6 {
  grid-column: 6 / span 4;
}
.tiles-grid .tile-small.row-6 {
  grid-row: 6 / span 1;
}
.tiles-grid .tile-medium.row-6 {
  grid-row: 6 / span 2;
}
.tiles-grid .tile-wide.row-6 {
  grid-row: 6 / span 4;
}
.tiles-grid .tile-large.row-6 {
  grid-row: 6 / span 4;
}
.tiles-grid .tile-small.col-7 {
  grid-column: 7 / span 1;
}
.tiles-grid .tile-medium.col-7 {
  grid-column: 7 / span 2;
}
.tiles-grid .tile-wide.col-7 {
  grid-column: 7 / span 4;
}
.tiles-grid .tile-large.col-7 {
  grid-column: 7 / span 4;
}
.tiles-grid .tile-small.row-7 {
  grid-row: 7 / span 1;
}
.tiles-grid .tile-medium.row-7 {
  grid-row: 7 / span 2;
}
.tiles-grid .tile-wide.row-7 {
  grid-row: 7 / span 4;
}
.tiles-grid .tile-large.row-7 {
  grid-row: 7 / span 4;
}
.tiles-grid .tile-small.col-8 {
  grid-column: 8 / span 1;
}
.tiles-grid .tile-medium.col-8 {
  grid-column: 8 / span 2;
}
.tiles-grid .tile-wide.col-8 {
  grid-column: 8 / span 4;
}
.tiles-grid .tile-large.col-8 {
  grid-column: 8 / span 4;
}
.tiles-grid .tile-small.row-8 {
  grid-row: 8 / span 1;
}
.tiles-grid .tile-medium.row-8 {
  grid-row: 8 / span 2;
}
.tiles-grid .tile-wide.row-8 {
  grid-row: 8 / span 4;
}
.tiles-grid .tile-large.row-8 {
  grid-row: 8 / span 4;
}
.tiles-grid .tile-small.col-9 {
  grid-column: 9 / span 1;
}
.tiles-grid .tile-medium.col-9 {
  grid-column: 9 / span 2;
}
.tiles-grid .tile-wide.col-9 {
  grid-column: 9 / span 4;
}
.tiles-grid .tile-large.col-9 {
  grid-column: 9 / span 4;
}
.tiles-grid .tile-small.row-9 {
  grid-row: 9 / span 1;
}
.tiles-grid .tile-medium.row-9 {
  grid-row: 9 / span 2;
}
.tiles-grid .tile-wide.row-9 {
  grid-row: 9 / span 4;
}
.tiles-grid .tile-large.row-9 {
  grid-row: 9 / span 4;
}
.tiles-grid .tile-small.col-10 {
  grid-column: 10 / span 1;
}
.tiles-grid .tile-medium.col-10 {
  grid-column: 10 / span 2;
}
.tiles-grid .tile-wide.col-10 {
  grid-column: 10 / span 4;
}
.tiles-grid .tile-large.col-10 {
  grid-column: 10 / span 4;
}
.tiles-grid .tile-small.row-10 {
  grid-row: 10 / span 1;
}
.tiles-grid .tile-medium.row-10 {
  grid-row: 10 / span 2;
}
.tiles-grid .tile-wide.row-10 {
  grid-row: 10 / span 4;
}
.tiles-grid .tile-large.row-10 {
  grid-row: 10 / span 4;
}
.tiles-grid .tile-small.col-11 {
  grid-column: 11 / span 1;
}
.tiles-grid .tile-medium.col-11 {
  grid-column: 11 / span 2;
}
.tiles-grid .tile-wide.col-11 {
  grid-column: 11 / span 4;
}
.tiles-grid .tile-large.col-11 {
  grid-column: 11 / span 4;
}
.tiles-grid .tile-small.row-11 {
  grid-row: 11 / span 1;
}
.tiles-grid .tile-medium.row-11 {
  grid-row: 11 / span 2;
}
.tiles-grid .tile-wide.row-11 {
  grid-row: 11 / span 4;
}
.tiles-grid .tile-large.row-11 {
  grid-row: 11 / span 4;
}
.tiles-grid .tile-small.col-12 {
  grid-column: 12 / span 1;
}
.tiles-grid .tile-medium.col-12 {
  grid-column: 12 / span 2;
}
.tiles-grid .tile-wide.col-12 {
  grid-column: 12 / span 4;
}
.tiles-grid .tile-large.col-12 {
  grid-column: 12 / span 4;
}
.tiles-grid .tile-small.row-12 {
  grid-row: 12 / span 1;
}
.tiles-grid .tile-medium.row-12 {
  grid-row: 12 / span 2;
}
.tiles-grid .tile-wide.row-12 {
  grid-row: 12 / span 4;
}
.tiles-grid .tile-large.row-12 {
  grid-row: 12 / span 4;
}
.tiles-grid.size-half {
  width: 80px;
}
.tiles-grid.size-1 {
  width: 160px;
}
.tiles-grid.size-2 {
  width: 320px;
}
.tiles-grid.size-3 {
  width: 480px;
}
.tiles-grid.size-4 {
  width: 640px;
}
.tiles-grid.size-5 {
  width: 800px;
}
.tiles-grid.size-6 {
  width: 960px;
}
.tiles-grid.size-7 {
  width: 1120px;
}
.tiles-grid.size-8 {
  width: 1280px;
}
.tiles-grid.size-9 {
  width: 1440px;
}
.tiles-grid.size-10 {
  width: 1600px;
}
.tiles-grid.size-11 {
  width: 1760px;
}
.tiles-grid.size-12 {
  width: 1920px;
}
@media screen and (min-width: 0) {
  .tiles-grid .col-fs-1 {
    grid-column: 1;
  }
  .tiles-grid .row-fs-1 {
    grid-row: 1;
  }
  .tiles-grid .col-fs-2 {
    grid-column: 2;
  }
  .tiles-grid .row-fs-2 {
    grid-row: 2;
  }
  .tiles-grid .col-fs-3 {
    grid-column: 3;
  }
  .tiles-grid .row-fs-3 {
    grid-row: 3;
  }
  .tiles-grid .col-fs-4 {
    grid-column: 4;
  }
  .tiles-grid .row-fs-4 {
    grid-row: 4;
  }
  .tiles-grid .col-fs-5 {
    grid-column: 5;
  }
  .tiles-grid .row-fs-5 {
    grid-row: 5;
  }
  .tiles-grid .col-fs-6 {
    grid-column: 6;
  }
  .tiles-grid .row-fs-6 {
    grid-row: 6;
  }
  .tiles-grid .col-fs-7 {
    grid-column: 7;
  }
  .tiles-grid .row-fs-7 {
    grid-row: 7;
  }
  .tiles-grid .col-fs-8 {
    grid-column: 8;
  }
  .tiles-grid .row-fs-8 {
    grid-row: 8;
  }
  .tiles-grid .col-fs-9 {
    grid-column: 9;
  }
  .tiles-grid .row-fs-9 {
    grid-row: 9;
  }
  .tiles-grid .col-fs-10 {
    grid-column: 10;
  }
  .tiles-grid .row-fs-10 {
    grid-row: 10;
  }
  .tiles-grid .col-fs-11 {
    grid-column: 11;
  }
  .tiles-grid .row-fs-11 {
    grid-row: 11;
  }
  .tiles-grid .col-fs-12 {
    grid-column: 12;
  }
  .tiles-grid .row-fs-12 {
    grid-row: 12;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-1 {
    width: 160px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-2 {
    width: 320px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-3 {
    width: 480px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-4 {
    width: 640px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-5 {
    width: 800px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-6 {
    width: 960px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-7 {
    width: 1120px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-8 {
    width: 1280px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-9 {
    width: 1440px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-10 {
    width: 1600px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-11 {
    width: 1760px;
  }
  .tiles-grid.size-fs-half {
    width: 80px;
  }
  .tiles-grid.size-fs-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 360px) {
  .tiles-grid .col-xs-1 {
    grid-column: 1;
  }
  .tiles-grid .row-xs-1 {
    grid-row: 1;
  }
  .tiles-grid .col-xs-2 {
    grid-column: 2;
  }
  .tiles-grid .row-xs-2 {
    grid-row: 2;
  }
  .tiles-grid .col-xs-3 {
    grid-column: 3;
  }
  .tiles-grid .row-xs-3 {
    grid-row: 3;
  }
  .tiles-grid .col-xs-4 {
    grid-column: 4;
  }
  .tiles-grid .row-xs-4 {
    grid-row: 4;
  }
  .tiles-grid .col-xs-5 {
    grid-column: 5;
  }
  .tiles-grid .row-xs-5 {
    grid-row: 5;
  }
  .tiles-grid .col-xs-6 {
    grid-column: 6;
  }
  .tiles-grid .row-xs-6 {
    grid-row: 6;
  }
  .tiles-grid .col-xs-7 {
    grid-column: 7;
  }
  .tiles-grid .row-xs-7 {
    grid-row: 7;
  }
  .tiles-grid .col-xs-8 {
    grid-column: 8;
  }
  .tiles-grid .row-xs-8 {
    grid-row: 8;
  }
  .tiles-grid .col-xs-9 {
    grid-column: 9;
  }
  .tiles-grid .row-xs-9 {
    grid-row: 9;
  }
  .tiles-grid .col-xs-10 {
    grid-column: 10;
  }
  .tiles-grid .row-xs-10 {
    grid-row: 10;
  }
  .tiles-grid .col-xs-11 {
    grid-column: 11;
  }
  .tiles-grid .row-xs-11 {
    grid-row: 11;
  }
  .tiles-grid .col-xs-12 {
    grid-column: 12;
  }
  .tiles-grid .row-xs-12 {
    grid-row: 12;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-1 {
    width: 160px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-2 {
    width: 320px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-3 {
    width: 480px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-4 {
    width: 640px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-5 {
    width: 800px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-6 {
    width: 960px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-7 {
    width: 1120px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-8 {
    width: 1280px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-9 {
    width: 1440px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-10 {
    width: 1600px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-11 {
    width: 1760px;
  }
  .tiles-grid.size-xs-half {
    width: 80px;
  }
  .tiles-grid.size-xs-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 576px) {
  .tiles-grid .col-sm-1 {
    grid-column: 1;
  }
  .tiles-grid .row-sm-1 {
    grid-row: 1;
  }
  .tiles-grid .col-sm-2 {
    grid-column: 2;
  }
  .tiles-grid .row-sm-2 {
    grid-row: 2;
  }
  .tiles-grid .col-sm-3 {
    grid-column: 3;
  }
  .tiles-grid .row-sm-3 {
    grid-row: 3;
  }
  .tiles-grid .col-sm-4 {
    grid-column: 4;
  }
  .tiles-grid .row-sm-4 {
    grid-row: 4;
  }
  .tiles-grid .col-sm-5 {
    grid-column: 5;
  }
  .tiles-grid .row-sm-5 {
    grid-row: 5;
  }
  .tiles-grid .col-sm-6 {
    grid-column: 6;
  }
  .tiles-grid .row-sm-6 {
    grid-row: 6;
  }
  .tiles-grid .col-sm-7 {
    grid-column: 7;
  }
  .tiles-grid .row-sm-7 {
    grid-row: 7;
  }
  .tiles-grid .col-sm-8 {
    grid-column: 8;
  }
  .tiles-grid .row-sm-8 {
    grid-row: 8;
  }
  .tiles-grid .col-sm-9 {
    grid-column: 9;
  }
  .tiles-grid .row-sm-9 {
    grid-row: 9;
  }
  .tiles-grid .col-sm-10 {
    grid-column: 10;
  }
  .tiles-grid .row-sm-10 {
    grid-row: 10;
  }
  .tiles-grid .col-sm-11 {
    grid-column: 11;
  }
  .tiles-grid .row-sm-11 {
    grid-row: 11;
  }
  .tiles-grid .col-sm-12 {
    grid-column: 12;
  }
  .tiles-grid .row-sm-12 {
    grid-row: 12;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-1 {
    width: 160px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-2 {
    width: 320px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-3 {
    width: 480px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-4 {
    width: 640px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-5 {
    width: 800px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-6 {
    width: 960px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-7 {
    width: 1120px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-8 {
    width: 1280px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-9 {
    width: 1440px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-10 {
    width: 1600px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-11 {
    width: 1760px;
  }
  .tiles-grid.size-sm-half {
    width: 80px;
  }
  .tiles-grid.size-sm-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 640px) {
  .tiles-grid .col-ld-1 {
    grid-column: 1;
  }
  .tiles-grid .row-ld-1 {
    grid-row: 1;
  }
  .tiles-grid .col-ld-2 {
    grid-column: 2;
  }
  .tiles-grid .row-ld-2 {
    grid-row: 2;
  }
  .tiles-grid .col-ld-3 {
    grid-column: 3;
  }
  .tiles-grid .row-ld-3 {
    grid-row: 3;
  }
  .tiles-grid .col-ld-4 {
    grid-column: 4;
  }
  .tiles-grid .row-ld-4 {
    grid-row: 4;
  }
  .tiles-grid .col-ld-5 {
    grid-column: 5;
  }
  .tiles-grid .row-ld-5 {
    grid-row: 5;
  }
  .tiles-grid .col-ld-6 {
    grid-column: 6;
  }
  .tiles-grid .row-ld-6 {
    grid-row: 6;
  }
  .tiles-grid .col-ld-7 {
    grid-column: 7;
  }
  .tiles-grid .row-ld-7 {
    grid-row: 7;
  }
  .tiles-grid .col-ld-8 {
    grid-column: 8;
  }
  .tiles-grid .row-ld-8 {
    grid-row: 8;
  }
  .tiles-grid .col-ld-9 {
    grid-column: 9;
  }
  .tiles-grid .row-ld-9 {
    grid-row: 9;
  }
  .tiles-grid .col-ld-10 {
    grid-column: 10;
  }
  .tiles-grid .row-ld-10 {
    grid-row: 10;
  }
  .tiles-grid .col-ld-11 {
    grid-column: 11;
  }
  .tiles-grid .row-ld-11 {
    grid-row: 11;
  }
  .tiles-grid .col-ld-12 {
    grid-column: 12;
  }
  .tiles-grid .row-ld-12 {
    grid-row: 12;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-1 {
    width: 160px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-2 {
    width: 320px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-3 {
    width: 480px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-4 {
    width: 640px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-5 {
    width: 800px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-6 {
    width: 960px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-7 {
    width: 1120px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-8 {
    width: 1280px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-9 {
    width: 1440px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-10 {
    width: 1600px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-11 {
    width: 1760px;
  }
  .tiles-grid.size-ld-half {
    width: 80px;
  }
  .tiles-grid.size-ld-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 768px) {
  .tiles-grid .col-md-1 {
    grid-column: 1;
  }
  .tiles-grid .row-md-1 {
    grid-row: 1;
  }
  .tiles-grid .col-md-2 {
    grid-column: 2;
  }
  .tiles-grid .row-md-2 {
    grid-row: 2;
  }
  .tiles-grid .col-md-3 {
    grid-column: 3;
  }
  .tiles-grid .row-md-3 {
    grid-row: 3;
  }
  .tiles-grid .col-md-4 {
    grid-column: 4;
  }
  .tiles-grid .row-md-4 {
    grid-row: 4;
  }
  .tiles-grid .col-md-5 {
    grid-column: 5;
  }
  .tiles-grid .row-md-5 {
    grid-row: 5;
  }
  .tiles-grid .col-md-6 {
    grid-column: 6;
  }
  .tiles-grid .row-md-6 {
    grid-row: 6;
  }
  .tiles-grid .col-md-7 {
    grid-column: 7;
  }
  .tiles-grid .row-md-7 {
    grid-row: 7;
  }
  .tiles-grid .col-md-8 {
    grid-column: 8;
  }
  .tiles-grid .row-md-8 {
    grid-row: 8;
  }
  .tiles-grid .col-md-9 {
    grid-column: 9;
  }
  .tiles-grid .row-md-9 {
    grid-row: 9;
  }
  .tiles-grid .col-md-10 {
    grid-column: 10;
  }
  .tiles-grid .row-md-10 {
    grid-row: 10;
  }
  .tiles-grid .col-md-11 {
    grid-column: 11;
  }
  .tiles-grid .row-md-11 {
    grid-row: 11;
  }
  .tiles-grid .col-md-12 {
    grid-column: 12;
  }
  .tiles-grid .row-md-12 {
    grid-row: 12;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-1 {
    width: 160px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-2 {
    width: 320px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-3 {
    width: 480px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-4 {
    width: 640px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-5 {
    width: 800px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-6 {
    width: 960px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-7 {
    width: 1120px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-8 {
    width: 1280px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-9 {
    width: 1440px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-10 {
    width: 1600px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-11 {
    width: 1760px;
  }
  .tiles-grid.size-md-half {
    width: 80px;
  }
  .tiles-grid.size-md-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 992px) {
  .tiles-grid .col-lg-1 {
    grid-column: 1;
  }
  .tiles-grid .row-lg-1 {
    grid-row: 1;
  }
  .tiles-grid .col-lg-2 {
    grid-column: 2;
  }
  .tiles-grid .row-lg-2 {
    grid-row: 2;
  }
  .tiles-grid .col-lg-3 {
    grid-column: 3;
  }
  .tiles-grid .row-lg-3 {
    grid-row: 3;
  }
  .tiles-grid .col-lg-4 {
    grid-column: 4;
  }
  .tiles-grid .row-lg-4 {
    grid-row: 4;
  }
  .tiles-grid .col-lg-5 {
    grid-column: 5;
  }
  .tiles-grid .row-lg-5 {
    grid-row: 5;
  }
  .tiles-grid .col-lg-6 {
    grid-column: 6;
  }
  .tiles-grid .row-lg-6 {
    grid-row: 6;
  }
  .tiles-grid .col-lg-7 {
    grid-column: 7;
  }
  .tiles-grid .row-lg-7 {
    grid-row: 7;
  }
  .tiles-grid .col-lg-8 {
    grid-column: 8;
  }
  .tiles-grid .row-lg-8 {
    grid-row: 8;
  }
  .tiles-grid .col-lg-9 {
    grid-column: 9;
  }
  .tiles-grid .row-lg-9 {
    grid-row: 9;
  }
  .tiles-grid .col-lg-10 {
    grid-column: 10;
  }
  .tiles-grid .row-lg-10 {
    grid-row: 10;
  }
  .tiles-grid .col-lg-11 {
    grid-column: 11;
  }
  .tiles-grid .row-lg-11 {
    grid-row: 11;
  }
  .tiles-grid .col-lg-12 {
    grid-column: 12;
  }
  .tiles-grid .row-lg-12 {
    grid-row: 12;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-1 {
    width: 160px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-2 {
    width: 320px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-3 {
    width: 480px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-4 {
    width: 640px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-5 {
    width: 800px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-6 {
    width: 960px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-7 {
    width: 1120px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-8 {
    width: 1280px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-9 {
    width: 1440px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-10 {
    width: 1600px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-11 {
    width: 1760px;
  }
  .tiles-grid.size-lg-half {
    width: 80px;
  }
  .tiles-grid.size-lg-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 1200px) {
  .tiles-grid .col-xl-1 {
    grid-column: 1;
  }
  .tiles-grid .row-xl-1 {
    grid-row: 1;
  }
  .tiles-grid .col-xl-2 {
    grid-column: 2;
  }
  .tiles-grid .row-xl-2 {
    grid-row: 2;
  }
  .tiles-grid .col-xl-3 {
    grid-column: 3;
  }
  .tiles-grid .row-xl-3 {
    grid-row: 3;
  }
  .tiles-grid .col-xl-4 {
    grid-column: 4;
  }
  .tiles-grid .row-xl-4 {
    grid-row: 4;
  }
  .tiles-grid .col-xl-5 {
    grid-column: 5;
  }
  .tiles-grid .row-xl-5 {
    grid-row: 5;
  }
  .tiles-grid .col-xl-6 {
    grid-column: 6;
  }
  .tiles-grid .row-xl-6 {
    grid-row: 6;
  }
  .tiles-grid .col-xl-7 {
    grid-column: 7;
  }
  .tiles-grid .row-xl-7 {
    grid-row: 7;
  }
  .tiles-grid .col-xl-8 {
    grid-column: 8;
  }
  .tiles-grid .row-xl-8 {
    grid-row: 8;
  }
  .tiles-grid .col-xl-9 {
    grid-column: 9;
  }
  .tiles-grid .row-xl-9 {
    grid-row: 9;
  }
  .tiles-grid .col-xl-10 {
    grid-column: 10;
  }
  .tiles-grid .row-xl-10 {
    grid-row: 10;
  }
  .tiles-grid .col-xl-11 {
    grid-column: 11;
  }
  .tiles-grid .row-xl-11 {
    grid-row: 11;
  }
  .tiles-grid .col-xl-12 {
    grid-column: 12;
  }
  .tiles-grid .row-xl-12 {
    grid-row: 12;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-1 {
    width: 160px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-2 {
    width: 320px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-3 {
    width: 480px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-4 {
    width: 640px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-5 {
    width: 800px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-6 {
    width: 960px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-7 {
    width: 1120px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-8 {
    width: 1280px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-9 {
    width: 1440px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-10 {
    width: 1600px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-11 {
    width: 1760px;
  }
  .tiles-grid.size-xl-half {
    width: 80px;
  }
  .tiles-grid.size-xl-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 1400px) {
  .tiles-grid .col-xxl-1 {
    grid-column: 1;
  }
  .tiles-grid .row-xxl-1 {
    grid-row: 1;
  }
  .tiles-grid .col-xxl-2 {
    grid-column: 2;
  }
  .tiles-grid .row-xxl-2 {
    grid-row: 2;
  }
  .tiles-grid .col-xxl-3 {
    grid-column: 3;
  }
  .tiles-grid .row-xxl-3 {
    grid-row: 3;
  }
  .tiles-grid .col-xxl-4 {
    grid-column: 4;
  }
  .tiles-grid .row-xxl-4 {
    grid-row: 4;
  }
  .tiles-grid .col-xxl-5 {
    grid-column: 5;
  }
  .tiles-grid .row-xxl-5 {
    grid-row: 5;
  }
  .tiles-grid .col-xxl-6 {
    grid-column: 6;
  }
  .tiles-grid .row-xxl-6 {
    grid-row: 6;
  }
  .tiles-grid .col-xxl-7 {
    grid-column: 7;
  }
  .tiles-grid .row-xxl-7 {
    grid-row: 7;
  }
  .tiles-grid .col-xxl-8 {
    grid-column: 8;
  }
  .tiles-grid .row-xxl-8 {
    grid-row: 8;
  }
  .tiles-grid .col-xxl-9 {
    grid-column: 9;
  }
  .tiles-grid .row-xxl-9 {
    grid-row: 9;
  }
  .tiles-grid .col-xxl-10 {
    grid-column: 10;
  }
  .tiles-grid .row-xxl-10 {
    grid-row: 10;
  }
  .tiles-grid .col-xxl-11 {
    grid-column: 11;
  }
  .tiles-grid .row-xxl-11 {
    grid-row: 11;
  }
  .tiles-grid .col-xxl-12 {
    grid-column: 12;
  }
  .tiles-grid .row-xxl-12 {
    grid-row: 12;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-1 {
    width: 160px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-2 {
    width: 320px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-3 {
    width: 480px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-4 {
    width: 640px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-5 {
    width: 800px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-6 {
    width: 960px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-7 {
    width: 1120px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-8 {
    width: 1280px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-9 {
    width: 1440px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-10 {
    width: 1600px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-11 {
    width: 1760px;
  }
  .tiles-grid.size-xxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxl-12 {
    width: 1920px;
  }
}
@media screen and (min-width: 2000px) {
  .tiles-grid .col-xxxl-1 {
    grid-column: 1;
  }
  .tiles-grid .row-xxxl-1 {
    grid-row: 1;
  }
  .tiles-grid .col-xxxl-2 {
    grid-column: 2;
  }
  .tiles-grid .row-xxxl-2 {
    grid-row: 2;
  }
  .tiles-grid .col-xxxl-3 {
    grid-column: 3;
  }
  .tiles-grid .row-xxxl-3 {
    grid-row: 3;
  }
  .tiles-grid .col-xxxl-4 {
    grid-column: 4;
  }
  .tiles-grid .row-xxxl-4 {
    grid-row: 4;
  }
  .tiles-grid .col-xxxl-5 {
    grid-column: 5;
  }
  .tiles-grid .row-xxxl-5 {
    grid-row: 5;
  }
  .tiles-grid .col-xxxl-6 {
    grid-column: 6;
  }
  .tiles-grid .row-xxxl-6 {
    grid-row: 6;
  }
  .tiles-grid .col-xxxl-7 {
    grid-column: 7;
  }
  .tiles-grid .row-xxxl-7 {
    grid-row: 7;
  }
  .tiles-grid .col-xxxl-8 {
    grid-column: 8;
  }
  .tiles-grid .row-xxxl-8 {
    grid-row: 8;
  }
  .tiles-grid .col-xxxl-9 {
    grid-column: 9;
  }
  .tiles-grid .row-xxxl-9 {
    grid-row: 9;
  }
  .tiles-grid .col-xxxl-10 {
    grid-column: 10;
  }
  .tiles-grid .row-xxxl-10 {
    grid-row: 10;
  }
  .tiles-grid .col-xxxl-11 {
    grid-column: 11;
  }
  .tiles-grid .row-xxxl-11 {
    grid-row: 11;
  }
  .tiles-grid .col-xxxl-12 {
    grid-column: 12;
  }
  .tiles-grid .row-xxxl-12 {
    grid-row: 12;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-1 {
    width: 160px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-2 {
    width: 320px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-3 {
    width: 480px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-4 {
    width: 640px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-5 {
    width: 800px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-6 {
    width: 960px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-7 {
    width: 1120px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-8 {
    width: 1280px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-9 {
    width: 1440px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-10 {
    width: 1600px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-11 {
    width: 1760px;
  }
  .tiles-grid.size-xxxl-half {
    width: 80px;
  }
  .tiles-grid.size-xxxl-12 {
    width: 1920px;
  }
}
.tiles-group {
  width: auto;
  float: left;
  overflow: visible;
}
.tiles-group::before {
  content: attr(data-group-title);
  display: block;
  position: absolute;
  left: 0;
  top: -36px;
  height: 1.5em;
  line-height: 1.5em;
  z-index: 1;
  color: inherit;
}
[class*=tile-].image-set {
  background-size: contain;
  background-position: center;
}
[class*=tile-].image-set .img {
  width: 25%;
  height: 50%;
  display: block;
  float: left;
  border: 1px solid #1d1d1d;
  background-size: cover;
}
[class*=tile-].image-set .img:nth-child(1) {
  width: 50%;
  height: 100%;
}
[class*=tile-] .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
[class*=tile-] [class*=slide-] {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
[class*=tile-] .slide-front {
  top: 0;
  left: 0;
}
[class*=tile-].effect-hover-slide-up .slide-back,
[class*=tile-].effect-hover-zoom-up .slide-back {
  top: 100%;
  left: 0;
}
[class*=tile-].effect-hover-slide-up:hover .slide-front,
[class*=tile-].effect-hover-zoom-up:hover .slide-front {
  transform: translateY(-100%);
}
[class*=tile-].effect-hover-slide-up:hover .slide-back,
[class*=tile-].effect-hover-zoom-up:hover .slide-back {
  top: 0;
}
[class*=tile-].effect-hover-slide-down .slide-back,
[class*=tile-].effect-hover-zoom-down .slide-back {
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
[class*=tile-].effect-hover-slide-down:hover .slide-front,
[class*=tile-].effect-hover-zoom-down:hover .slide-front {
  top: 100%;
}
[class*=tile-].effect-hover-slide-down:hover .slide-back,
[class*=tile-].effect-hover-zoom-down:hover .slide-back {
  transform: translateY(0);
}
[class*=tile-].effect-hover-slide-left .slide-back,
[class*=tile-].effect-hover-zoom-left .slide-back {
  top: 0;
  left: 100%;
}
[class*=tile-].effect-hover-slide-left:hover .slide-front,
[class*=tile-].effect-hover-zoom-left:hover .slide-front {
  transform: translateX(-100%);
}
[class*=tile-].effect-hover-slide-left:hover .slide-back,
[class*=tile-].effect-hover-zoom-left:hover .slide-back {
  left: 0;
}
[class*=tile-].effect-hover-slide-right .slide-back,
[class*=tile-].effect-hover-zoom-right .slide-back {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
[class*=tile-].effect-hover-slide-right:hover .slide-front,
[class*=tile-].effect-hover-zoom-right:hover .slide-front {
  left: 100%;
}
[class*=tile-].effect-hover-slide-right:hover .slide-back,
[class*=tile-].effect-hover-zoom-right:hover .slide-back {
  transform: translateX(0);
}
[class*=tile-].effect-hover-zoom-up:hover .slide-front,
[class*=tile-].effect-hover-zoom-down:hover .slide-front,
[class*=tile-].effect-hover-zoom-left:hover .slide-front,
[class*=tile-].effect-hover-zoom-right:hover .slide-front {
  left: 0;
  top: 0;
  transform: scale(2);
}

/* source/components/timeline/timeline.less */
:root {
  --timeline-marker-color: #e8e8e8;
  --timeline-time-color: #59636e;
  --timeline-color: #191919;
}
.dark-side {
  --timeline-marker-color: #3d444d;
  --timeline-time-color: #9198a1;
  --timeline-color: #efefef;
}
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.timeline li {
  position: relative;
  padding: 0 0 16px 24px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--timeline-marker-color);
  position: absolute;
  top: 1px;
  left: 0;
}
.timeline li::after {
  content: "";
  display: block;
  clear: both;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--timeline-marker-color);
  margin-top: 1px;
  margin-left: -4px;
  position: absolute;
  top: 0;
  left: 0;
}
.timeline li .time {
  display: block;
  font-size: 12px;
  color: var(--timeline-time-color);
  margin-top: -4px;
  position: relative;
}
.timeline li .time::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--timeline-marker-color);
  position: absolute;
  top: 50%;
  left: -20px;
}
.timeline li .data {
  display: block;
  margin: 0 0 4px 0;
  font-size: 14px;
  color: var(--timeline-color);
}
.timeline li.no-marker::after {
  display: none;
}
.timeline li.timeline-end::before {
  display: none;
}

/* source/components/timepicker/timepicker.less */
.time-picker input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.time-picker input:focus ~ .time-wrapper {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.time-picker .time-wrapper {
  display: inline-flex;
  flex-flow: row nowrap;
  position: relative;
  border: 1px solid var(--border-color);
  width: 100%;
  overflow: hidden;
  height: 100%;
  border-radius: var(--wheel-picker-border-radius);
}
.time-picker .hours,
.time-picker .minutes,
.time-picker .seconds {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  position: relative;
  font-size: var(--picker-font-size);
}
.time-picker.show-labels .hours,
.time-picker.show-labels .minutes,
.time-picker.show-labels .seconds {
  --before-position: 4px;
}
.time-picker.show-labels .hours::before,
.time-picker.show-labels .minutes::before,
.time-picker.show-labels .seconds::before {
  content: attr(data-title);
  position: absolute;
  display: block;
  font-size: calc(var(--picker-font-size) * 0.65);
  line-height: 12px;
  left: 50%;
  bottom: var(--before-position);
  transform: translateX(-50%);
}
.time-picker.show-labels.small .hours,
.time-picker.show-labels.small .minutes,
.time-picker.show-labels.small .seconds {
  --before-position: 0px;
}
.time-picker.show-labels.medium .hours,
.time-picker.show-labels.medium .minutes,
.time-picker.show-labels.medium .seconds {
  --before-position: 2px;
}
.time-picker.show-labels.large .hours,
.time-picker.show-labels.large .minutes,
.time-picker.show-labels.large .seconds {
  --before-position: 10px;
}
.time-picker .action-block {
  border: 1px solid var(--border-color);
  border-radius: var(--datepicker-border-radius);
}
.time-picker .button {
  margin: 2px;
}
.time-picker .button .icon {
  font-family: "Segoe UI Symbol", serif;
}
.time-picker li {
  cursor: pointer;
}
.time-picker.pill-input {
  --picker-border-radius: calc(var(--picker-height) * 0.44);
}
.time-picker.pill-input .time-wrapper {
  border-radius: var(--picker-border-radius);
}
.time-picker.pill-input .time-wrapper div:first-child {
  border-top-left-radius: var(--picker-border-radius);
  border-bottom-left-radius: var(--picker-border-radius);
}
.time-picker.pill-input .time-wrapper div:last-child {
  border-top-right-radius: var(--picker-border-radius);
  border-bottom-right-radius: var(--picker-border-radius);
}

/* source/components/toast/toast.less */
:root {
  --toast-background: #323232;
  --toast-color: #ffffff;
  --toast-border-radius: 6px;
  --toast-closer-background: inherit;
  --toast-closer-color: inherit;
  --toast-closer-background-hover: var(--color-alert);
  --toast-closer-color-hover: var(--color-light);
}
.dark-side {
  --toast-background: #2b2d30;
  --toast-color: #ffffff;
}
.toast {
  position: fixed;
  bottom: 20px;
  width: auto;
  height: auto;
  max-width: 35.5rem;
  padding: 0.5rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: normal;
  background: var(--toast-background);
  color: var(--toast-color);
  border-radius: var(--toast-border-radius);
  z-index: 1080;
  display: block;
}
.toast.show-top {
  bottom: auto;
  top: 20px;
}
.toast.show-center {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}
.toast .closer {
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--toast-closer-background);
  color: var(--toast-closer-color);
  z-index: 100;
}
.toast .closer::before {
  font-family: "Segoe UI Symbol", serif;
  display: block;
  content: "\274c";
  font-size: 24px;
  margin-top: -4px;
}

/* source/components/toggle-button/toggle-button.less */
:root {
  --toggle-button-background: #dadee9;
  --toggle-button-color: #7e7e77;
  --toggle-button-item-background: #ffffff;
  --toggle-button-item-color: #191919;
  --toggle-button-item-hover-color: hsl(7, 100%, 68%);
}
.dark-side {
  --toggle-button-background: #545957;
  --toggle-button-color: #bdc5d2;
  --toggle-button-item-background: #2c2f2e;
  --toggle-button-item-color: #ffffff;
  --toggle-button-item-hover-color: hsl(7, 100%, 68%);
}
.radio-button {
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background: var(--toggle-button-background);
  color: var(--toggle-button-color);
  padding: 4px;
  border-radius: 6px;
  width: auto;
  display: inline-flex;
}
.radio-button .button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  border: none;
  height: 26px;
  font-weight: 500;
}
@media (hover: hover) {
  .radio-button .button:hover:not(.active) {
    color: var(--toggle-button-item-hover-color);
  }
}
@media (hover: none) {
  .radio-button .button:active:not(.active) {
    color: var(--toggle-button-item-hover-color);
  }
}
.radio-button .button.active {
  background: var(--toggle-button-item-background);
  color: var(--toggle-button-item-color);
  font-weight: 600;
}

/* source/components/toolbar/toolbar.less */
:root {
  --tool-button-border-radius: 4px;
  --tool-button-background: #F8F8F8;
  --tool-button-color: #191919;
  --tool-button-background-hover: #dcdcdc;
  --tool-button-color-hover: #474747;
  --tool-button-border-color: #E8E8E8;
}
.dark-side {
  --tool-button-background: #2e2e2e;
  --tool-button-color: #F8F8F8;
  --tool-button-background-hover: #373737;
  --tool-button-color-hover: #bfbfbf;
  --tool-button-border-color: #4A4D51;
}
.tool-button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tool-button-background);
  color: var(--tool-button-color);
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--tool-button-border-radius);
  transition: all 0.3s ease-in-out;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin: 0 2px;
  position: relative;
  font-size: 14px;
}
.tool-button [class*=mif],
.tool-button .icon,
.tool-button img {
  height: 16px;
  width: 16px;
  font-size: 16px;
}
.tool-button.text-button {
  width: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.tool-button:focus,
.tool-button:hover {
  text-decoration: none;
}
.tool-button:active {
  outline: 0;
  box-shadow: none;
}
.tool-button.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--tool-button-border-color);
}
.tool-button:hover {
  background: var(--tool-button-background-hover);
  color: var(--tool-button-color-hover);
}
.tool-button.disabled,
.tool-button:disabled {
  opacity: 0.65;
}
.tool-button.w-auto {
  padding: 0 8px;
}
.toolbar {
  display: inline-flex;
  position: relative;
  padding: 0;
  flex-flow: row nowrap;
}
.toolbar.no-divider::before {
  display: none;
}
.toolbar::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 32px;
  top: 0;
  left: 0;
  background: var(--tool-button-background);
  cursor: default;
  display: none;
}
.toolbar::after {
  content: attr(data-caption);
  position: absolute;
  left: 2px;
  bottom: 100%;
  font-size: 8px;
  text-transform: uppercase;
}
.toolbar.movable {
  padding-left: 6px;
}
.toolbar.movable::before {
  display: block;
  cursor: move;
}
.toolbar.vertical {
  flex-flow: column nowrap;
  padding: 0.5725rem 0 0 0;
  width: 32px;
  margin-left: 0;
  margin-top: 4px;
}
.toolbar.vertical::before {
  width: 32px;
  height: 4px;
}
.toolbar.vertical::after {
  transform: rotate(-90deg);
  right: 100%;
  top: auto;
}
.toolbar.vertical .tool-button {
  margin: 2px 0;
}

/* source/components/transform-button/transform-button.less */
:root {
  --transform-button-color: #000000;
}
.dark-side {
  --transform-button-color: #ffffff;
}
.transform-button {
  width: 36px;
  height: 36px;
  background-size: 1rem 1rem;
  background: center center no-repeat;
  text-indent: -9999px;
  border: 0;
  display: inline-block;
  cursor: pointer;
  z-index: 2;
  position: relative;
  outline: none;
}
.transform-button span {
  position: absolute;
  left: 0.5rem;
  width: 1.2rem;
  height: 2px;
  margin: 0 0 0;
  background: var(--transform-button-color);
  transform: rotate(0);
  transition: all 0.3s linear;
}
.transform-button span:before,
.transform-button span:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: 0;
  width: 1.2rem;
  height: 2px;
  background: var(--transform-button-color);
  transform: rotate(0);
  transition: all 0.3s linear;
}
.transform-button span:after {
  top: 0.5rem;
}
.transform-button.transform span {
  transform: rotate(180deg);
}
.transform-button.transform span:before,
.transform-button.transform span:after {
  content: "";
  top: -5px;
  right: 0;
  width: 0.75rem;
  transform: rotate(45deg);
}
.transform-button.transform span:after {
  top: 5px;
  transform: rotate(-45deg);
}
.transform-button.transform.right {
  transform: rotate(-180deg);
}
.transform-button.transform.right span {
  margin-top: -2px;
}
.transform-button.transform.up {
  transform: rotate(90deg);
}
.transform-button.transform.down {
  transform: rotate(-90deg);
}
.transform-button.transform.top-left {
  transform: rotate(45deg);
}
.transform-button.transform.top-right {
  transform: rotate(135deg);
}
.transform-button.transform.bottom-left {
  transform: rotate(-45deg);
}
.transform-button.transform.bottom-right {
  transform: rotate(-135deg);
}

/* source/components/treeview/treeview.less */
:root {
  --treeview-background: #ffffff;
  --treeview-color: #43454a;
  --treeview-selected-row-background: #d4e2ff;
  --treeview-selected-row-color: #2b2d30;
  --treeview-node-toggle-color: #191919;
}
.dark-side {
  --treeview-background: #1e1f22;
  --treeview-color: #dfe1e5;
  --treeview-selected-row-background: #43454a;
  --treeview-selected-row-color: #ffffff;
  --treeview-node-toggle-color: #ffffff;
}
.treeview,
.treeview ul:not(.d-menu) {
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none inside;
  display: block;
  position: relative;
  user-select: none;
  background-color: var(--treeview-background);
  color: var(--treeview-color);
}
.treeview {
  margin: 0;
  padding: 0;
  list-style: none inside;
  overflow: hidden;
}
.treeview li {
  position: relative;
  display: block;
}
.treeview a,
.treeview label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  color: var(--d-menu-item-color);
  text-decoration: none;
  padding: 4px 10px 4px 20px;
  border-radius: var(--d-menu-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
  overflow: hidden;
  border: 1px dotted transparent;
  cursor: default;
}
.treeview a[href],
.treeview label {
  cursor: pointer;
}
@media (hover: hover) {
  .treeview a:hover,
  .treeview label:hover {
    background-color: var(--treeview-selected-row-background);
    color: var(--treeview-selected-row-color);
  }
}
@media (hover: none) {
  .treeview a:active,
  .treeview label:active {
    background-color: var(--treeview-selected-row-background);
    color: var(--treeview-selected-row-color);
  }
}
.treeview .current > a {
  background-color: var(--treeview-selected-row-background);
  color: var(--treeview-selected-row-color);
}
.treeview ul :is(a, label) {
  padding-left: 40px;
}
.treeview ul ul :is(a, label) {
  padding-left: 60px;
}
.treeview ul ul ul :is(a, label) {
  padding-left: 80px;
}
.treeview ul ul ul ul :is(a, label) {
  padding-left: 100px;
}
.treeview ul ul ul ul ul :is(a, label) {
  padding-left: 120px;
}
.treeview ul ul ul ul ul ul :is(a, label) {
  padding-left: 140px;
}
.treeview ul ul ul ul ul ul ul :is(a, label) {
  padding-left: 160px;
}
.treeview ul ul ul ul ul ul ul ul :is(a, label) {
  padding-left: 180px;
}
.treeview ul ul ul ul ul ul ul ul ul :is(a, label) {
  padding-left: 200px;
}
.treeview ul :is(.input) {
  margin-left: 40px;
  width: calc(100% - 20px * 2);
}
.treeview ul ul :is(.input) {
  margin-left: 60px;
  width: calc(100% - 20px * 3);
}
.treeview ul ul ul :is(.input) {
  margin-left: 80px;
  width: calc(100% - 20px * 4);
}
.treeview ul ul ul ul :is(.input) {
  margin-left: 100px;
  width: calc(100% - 20px * 5);
}
.treeview ul ul ul ul ul :is(.input) {
  margin-left: 120px;
  width: calc(100% - 20px * 6);
}
.treeview ul ul ul ul ul ul :is(.input) {
  margin-left: 140px;
  width: calc(100% - 20px * 7);
}
.treeview ul ul ul ul ul ul ul :is(.input) {
  margin-left: 160px;
  width: calc(100% - 20px * 8);
}
.treeview ul ul ul ul ul ul ul ul :is(.input) {
  margin-left: 180px;
  width: calc(100% - 20px * 9);
}
.treeview ul ul ul ul ul ul ul ul ul :is(.input) {
  margin-left: 200px;
  width: calc(100% - 20px * 10);
}
.treeview .icon {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  font-size: 15px;
  object-fit: cover;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.treeview .node-toggle {
  position: relative;
  cursor: pointer;
  padding-right: 1.5rem !important;
  user-select: none;
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  z-index: 0;
}
.treeview .node-toggle::before {
  display: block;
  position: absolute;
  vertical-align: middle;
  color: transparent;
  font-size: 0;
  content: "";
  height: 0.3125rem;
  width: 0.3125rem;
  background-color: transparent;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-color: #1d1d1d;
  top: 50%;
  left: 100%;
  margin-left: -1rem;
  margin-top: -0.1625rem;
  z-index: 2;
  transform: rotate(-45deg);
  transition: all 0.15s ease-in-out;
  transform-origin: center center 1px;
}
.treeview .node-toggle::before {
  transform: rotate(-135deg);
  border-color: var(--treeview-node-toggle-color);
}
.treeview ul .node-toggle {
  left: 20px;
}
.treeview ul ul .node-toggle {
  left: 40px;
}
.treeview ul ul ul .node-toggle {
  left: 60px;
}
.treeview ul ul ul ul .node-toggle {
  left: 80px;
}
.treeview ul ul ul ul ul .node-toggle {
  left: 100px;
}
.treeview ul ul ul ul ul ul .node-toggle {
  left: 120px;
}
.treeview ul ul ul ul ul ul ul .node-toggle {
  left: 140px;
}
.treeview ul ul ul ul ul ul ul ul .node-toggle {
  left: 160px;
}
.treeview ul ul ul ul ul ul ul ul ul .node-toggle {
  left: 180px;
}
.treeview li.expanded > .node-toggle::before {
  transform: rotate(-45deg);
}
.treeview .badge {
  display: inline-block !important;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 10px;
  border: 1px solid transparent;
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  margin-left: 4px;
  cursor: inherit;
}
.treeview .secondary-text {
  margin-left: auto;
  font-size: 11px;
  color: var(--treeview-color-secondary);
}
.treeview li:hover > .actions-holder,
.treeview .current > .actions-holder {
  display: flex;
}
.treeview .actions-holder {
  z-index: 2;
  position: absolute;
  top: 1px;
  left: -2px;
  display: none;
  height: 26px;
  width: 26px;
  align-items: center;
  justify-content: center;
}
.treeview .actions-holder .actions-list {
  position: absolute;
  top: 100%;
  left: 0;
}
.treeview .actions-holder .actions-list-trigger {
  background-color: transparent;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.treeview .actions-holder .actions-list-trigger svg {
  display: none !important;
}
.treeview .actions-holder > ul {
  margin: 0;
  z-index: 3;
}
.treeview .actions-holder > ul li {
  padding-left: 0;
}
.treeview .d-menu :is(a) {
  padding: 4px 10px 4px 32px;
}

/* source/components/v-menu/v-menu.less */
:root {
  --v-menu-border-color: #e9e9e9;
  --v-menu-divider-color: #e9e9e9;
  --v-menu-background: #ffffff;
  --v-menu-color: #191919;
  --v-menu-item-color: #191919;
  --v-menu-item-color-disabled: #ccc;
  --v-menu-item-color-hover: #000000;
  --v-menu-item-background-hover: #e8e8e8;
  --v-menu-dropdown-toogle-color: #191919;
  --v-menu-shadow-color: #e1e1e1;
  --v-menu-border-radius: 4px;
}
.dark-side {
  --v-menu-border-color: #404959;
  --v-menu-divider-color: #404959;
  --v-menu-background: #11151d;
  --v-menu-color: #ffffff;
  --v-menu-item-color: #dbdfe7;
  --v-menu-item-color-disabled: #173e8f;
  --v-menu-item-color-hover: #ffffff;
  --v-menu-item-background-hover: #222938;
  --v-menu-dropdown-toogle-color: #ffffff;
  --v-menu-shadow-color: #191919;
  --v-menu-border-radius: 4px;
}
.v-menu,
.v-menu ul {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none inside none;
  background-color: var(--v-menu-background);
  color: var(--v-menu-color);
  border: 1px solid var(--v-menu-border-color);
  display: block;
}
.v-menu.open,
.v-menu ul.open {
  display: block !important;
}
.v-menu.place-right,
.v-menu ul.place-right {
  left: auto;
  right: 0;
}
.v-menu li,
.v-menu a {
  position: relative;
}
.v-menu li {
  display: block;
  margin: 0 4px;
}
.v-menu a {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--d-menu-item-color);
  text-decoration: none;
  padding: 4px 10px 4px 32px;
  border-radius: var(--d-menu-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
}
.v-menu a:hover {
  color: var(--d-menu-item-color-hover);
  text-decoration: none;
  background-color: var(--d-menu-item-background-hover);
}
.v-menu .caption {
  margin-right: 1rem;
  white-space: nowrap;
}
.v-menu .hotkey {
  margin-left: auto;
  margin-right: 1rem;
}
.v-menu .icon {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.v-menu .menu-title {
  background-color: #f6f7f8;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  padding: 0 8px;
  border: 0;
  color: #646464;
  font-weight: bold;
  pointer-events: none;
}
.v-menu .menu-title:first-child {
  margin: 0;
  border-top-width: 0;
}
.v-menu .menu-title:first-child:hover {
  border-top-width: 0;
}
.v-menu .menu-title:hover {
  background-color: #f6f7f8;
  cursor: default;
  border: 0;
}
.v-menu .dropdown-toggle::before {
  transform: rotate(-135deg);
  border-color: var(--d-menu-dropdown-toogle-color) !important;
}
.v-menu .dropdown-toggle.active-toggle::before {
  transform: rotate(-45deg);
}
.v-menu .divider {
  padding: 0;
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  background-color: var(--d-menu-divider-color);
  cursor: default;
  pointer-events: none;
}
.v-menu .divider:hover {
  background-color: var(--d-menu-divider-color);
}
.v-menu .disabled {
  cursor: default;
  pointer-events: none;
}
.v-menu .disabled a {
  color: var(--d-menu-item-color-disabled) !important;
}
.v-menu .v-menu,
.v-menu ul {
  border: none;
  margin: 0 -4px;
}

/* source/components/vegas/vegas.less */
:root {
  --vegas-timer-color: #ffffff;
}
.dark-side {
  --vegas-timer-color: #2b2d30;
}
.vegas-wrapper,
.vegas-overlay,
.vegas-timer,
.vegas-slide,
.vegas-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
}
.vegas-overlay {
  opacity: 0.5;
  background: transparent center center repeat;
}
.vegas-overlay.overlay1 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAQMAAABIeJ9nAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjaGBgAAABhACBKN161wAAAABJRU5ErkJggg==);
}
.vegas-overlay.overlay2 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADAQMAAABs5if8AAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjaGAAAgAChgCB/5LsuQAAAABJRU5ErkJggg==);
}
.vegas-overlay.overlay3 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAABAQMAAADO7O3JAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAApJREFUCNdjaAAAAIIAgd1DavQAAAAASUVORK5CYII=);
}
.vegas-overlay.overlay4 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACAQMAAACjTyRkAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjaGBgAAABhACBKN161wAAAABJRU5ErkJggg==);
}
.vegas-overlay.overlay5 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADAQMAAABs5if8AAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAA5JREFUCNdjaGBwYFAAAANmAOGGoYR3AAAAAElFTkSuQmCC);
}
.vegas-overlay.overlay6 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAQMAAABIeJ9nAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjaGBwAAABxADBSUUqSQAAAABJRU5ErkJggg==);
}
.vegas-overlay.overlay7 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAEAQMAAACTPww9AAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAABBJREFUCNdjUGAIYGhgCAAABEgBQXXpfAgAAAAASUVORK5CYII=);
}
.vegas-overlay.overlay8 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGAQMAAADaAn0LAAAABlBMVEUAAAAAAAClZ7nPAAAAAXRSTlMAQObYZgAAABJJREFUCNdjcGB4AMQcDDIMHAAM8AGNu4TNogAAAABJRU5ErkJggg==);
}
.vegas-overlay.overlay9 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPAgMAAABGuH3ZAAAACVBMVEUAAAAAAAAAAACDY+nAAAAAAnRSTlMAiJXwxioAAAAaSURBVAjXY1i1atUKhkYWAQcIMTU0NIRMLgDFIhFFGbSiTQAAAABJRU5ErkJggg==);
}
.vegas-timer {
  top: auto;
  bottom: 0;
  height: 2px;
}
.vegas-timer-progress {
  width: 0;
  height: 100%;
  background: var(--vegas-timer-color, #fff);
  transition: width ease-out;
}
.vegas-timer-running .vegas-timer-progress {
  width: 100%;
}
.vegas-slide,
.vegas-slide-inner {
  margin: 0;
  padding: 0;
  background: transparent center center no-repeat;
  transform: translateZ(0);
  will-change: transform, opacity;
}
body .vegas-container {
  overflow: hidden !important;
  position: relative;
}
.vegas-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
body.vegas-container {
  overflow: auto;
  position: static;
  z-index: -2;
}
body.vegas-container > .vegas-timer,
body.vegas-container > .vegas-overlay,
body.vegas-container > .vegas-slide {
  position: fixed;
  z-index: -1;
}
.vegas-transition-blur,
.vegas-transition-blur2 {
  opacity: 0;
  filter: blur(32px) brightness(1.01);
}
.vegas-transition-blur-in,
.vegas-transition-blur2-in {
  opacity: 1;
  filter: blur(0px) brightness(1.01);
}
.vegas-transition-blur2-out {
  opacity: 0;
}
.vegas-transition-burn,
.vegas-transition-burn2 {
  opacity: 0;
  filter: contrast(1000%) saturate(1000%);
}
.vegas-transition-burn-in,
.vegas-transition-burn2-in {
  opacity: 1;
  filter: contrast(100%) saturate(100%);
}
.vegas-transition-burn2-out {
  opacity: 0;
  filter: contrast(1000%) saturate(1000%);
}
.vegas-transition-fade,
.vegas-transition-fade2 {
  opacity: 0;
}
.vegas-transition-fade-in,
.vegas-transition-fade2-in {
  opacity: 1;
}
.vegas-transition-fade2-out {
  opacity: 0;
}
.vegas-transition-flash,
.vegas-transition-flash2 {
  opacity: 0;
  filter: brightness(25);
}
.vegas-transition-flash-in,
.vegas-transition-flash2-in {
  opacity: 1;
  filter: brightness(1);
}
.vegas-transition-flash2-out {
  opacity: 0;
  filter: brightness(25);
}
.vegas-transition-negative,
.vegas-transition-negative2 {
  opacity: 0;
  filter: invert(100%);
}
.vegas-transition-negative-in,
.vegas-transition-negative2-in {
  opacity: 1;
  filter: invert(0);
}
.vegas-transition-negative2-out {
  opacity: 0;
  filter: invert(100%);
}
.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
  transform: translateY(-100%);
}
.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
  transform: translateY(0%);
}
.vegas-transition-slideDown2-out {
  transform: translateY(100%);
}
.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
  transform: translateX(100%);
}
.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
  transform: translateX(0%);
}
.vegas-transition-slideLeft2-out {
  transform: translateX(-100%);
}
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
  transform: translateX(-100%);
}
.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
  transform: translateX(0%);
}
.vegas-transition-slideRight2-out {
  transform: translateX(100%);
}
.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
  transform: translateY(100%);
}
.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
  transform: translateY(0%);
}
.vegas-transition-slideUp2-out {
  transform: translateY(-100%);
}
.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
  transform: scale(2) rotate(35deg);
  opacity: 0;
}
.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.vegas-transition-swirlLeft2-out {
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
  transform: scale(2) rotate(-35deg);
  opacity: 0;
}
.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.vegas-transition-swirlRight2-out {
  transform: scale(2) rotate(35deg);
  opacity: 0;
}
.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
  transform: scale(0);
  opacity: 0;
}
.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
  transform: scale(1);
  opacity: 1;
}
.vegas-transition-zoomIn2-out {
  transform: scale(2);
  opacity: 0;
}
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
  transform: scale(2);
  opacity: 0;
}
.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
  transform: scale(1);
  opacity: 1;
}
.vegas-transition-zoomOut2-out {
  transform: scale(0);
  opacity: 0;
}
.vegas-animation-kenburns {
  animation: kenburns ease-out;
}
@keyframes kenburns {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.vegas-animation-kenburnsDownLeft {
  animation: kenburnsDownLeft ease-out;
}
@keyframes kenburnsDownLeft {
  0% {
    transform: scale(1.5) translate(10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsDownRight {
  animation: kenburnsDownRight ease-out;
}
@keyframes kenburnsDownRight {
  0% {
    transform: scale(1.5) translate(-10%, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsDown {
  animation: kenburnsDown ease-out;
}
@keyframes kenburnsDown {
  0% {
    transform: scale(1.5) translate(0, -10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsLeft {
  animation: kenburnsLeft ease-out;
}
@keyframes kenburnsLeft {
  0% {
    transform: scale(1.5) translate(10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsRight {
  animation: kenburnsRight ease-out;
}
@keyframes kenburnsRight {
  0% {
    transform: scale(1.5) translate(-10%, 0);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUpLeft {
  animation: kenburnsUpLeft ease-out;
}
@keyframes kenburnsUpLeft {
  0% {
    transform: scale(1.5) translate(10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUpRight {
  animation: kenburnsUpRight ease-out;
}
@keyframes kenburnsUpRight {
  0% {
    transform: scale(1.5) translate(-10%, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
.vegas-animation-kenburnsUp {
  animation: kenburnsUp ease-out;
}
@keyframes kenburnsUp {
  0% {
    transform: scale(1.5) translate(0, 10%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* source/components/video-player/video-player.less */
:root {
  --player-wrapper-background: #000;
}
.video-player {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.video-player .video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  max-height: calc(100% - 48px);
  background: var(--player-wrapper-background);
  padding: 0;
  margin-top: 4px;
}
.video-player .controls {
  position: relative;
  padding-top: 4px;
  margin-top: auto;
}
.video-player.full-screen .video-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* source/components/window/window.less */
:root {
  --window-scrollbar-size: 6px;
  --window-scrollbar-track-radius: 0;
  --window-border-size: 4px;
  --window-border-radius: 6px;
  --window-border-color: #f3f3f3;
  --window-background: #fff;
  --window-color: #191919;
  --window-button-size: 24px;
  --window-caption-color: #191919;
  --window-scrollbar-thumb-color: #a8a8a8;
  --window-scrollbar-track-color: #f1f1f1;
  --window-resize-element-color: #a8a8a8;
  --window-sys-button-color: #191919;
  --window-sys-button-backgroud-hover: #d8d8d8;
  --window-close-button-backgroud-hover: #C75050FF;
  --window-close-button-color-hover: #ffffff;
}
.dark-side {
  --window-border-color: #484b4c;
  --window-background: #1e1f22;
  --window-color: #dbdfe7;
  --window-caption-color: #dbdfe7;
  --window-scrollbar-thumb-color: #d1d1d1;
  --window-scrollbar-track-color: #2c2c2c;
  --window-resize-element-color: #2c2c2c;
  --window-sys-button-color: #ffffff;
  --window-sys-button-backgroud-hover: #2c2c2c;
  --window-close-button-backgroud-hover: #C75050FF;
  --window-close-button-color-hover: #ffffff;
}
.window {
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  background-color: var(--window-background);
  color: var(--window-color);
  border: 1px var(--window-border-color) solid;
  z-index: 1;
  border-radius: var(--window-border-radius);
  overflow: hidden;
}
.window.shadowed {
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}
.window-caption {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 2.25rem;
  line-height: 2.25rem;
  padding: 0;
  border-bottom: 1px transparent solid;
  cursor: default;
  vertical-align: middle;
  background-color: var(--window-border-color);
  color: var(--window-caption-color);
  user-select: none;
}
.window-caption .title {
  font-size: 0.875rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  padding-left: 4px;
  color: inherit;
}
.window-caption .icon {
  width: 34px;
  height: 34px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: inherit;
}
.window-caption .icon * {
  width: 1rem;
  font-size: 1rem;
  line-height: 34px;
  text-align: center;
}
.window-caption * + .title {
  padding-left: 0;
}
.window-caption .buttons {
  height: var(--window-button-size);
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-right: 4px;
  gap: 2px;
}
.window-caption .btn-custom:focus,
.window-caption .btn-custom:active {
  box-shadow: none !important;
}
.window-caption .buttons .sys-button {
  background-color: transparent;
  color: var(--window-sys-button-color);
  border-radius: 0;
  border: none;
}
.window-caption .buttons .sys-button:hover {
  background-color: var(--window-sys-button-backgroud-hover);
}
.window-caption .buttons .sys-button:active {
  background-color: var(--window-sys-button-backgroud-hover);
}
.window-caption .buttons .btn-min,
.window-caption .buttons .btn-max,
.window-caption .buttons .btn-close {
  height: var(--window-button-size) !important;
  width: var(--window-button-size) !important;
  padding: 0 !important;
}
.window-caption .buttons .btn-min::before,
.window-caption .buttons .btn-max::before,
.window-caption .buttons .btn-close::before {
  display: block;
  position: absolute;
  content: "";
}
.window-caption .buttons .btn-min::before {
  content: "\1f5d5";
}
.window-caption .buttons .btn-max::before {
  content: "\1f5d6";
}
.window-caption .buttons .btn-close::before {
  content: "\2715";
}
.window-caption .buttons .btn-custom {
  min-width: 34px;
  width: auto;
  flex-shrink: 0;
  height: var(--window-button-size) !important;
}
.window-caption .buttons .btn-close:hover {
  background-color: var(--window-close-button-backgroud-hover);
  color: var(--window-close-button-color-hover);
}
.window-caption .buttons .btn-close:hover::before {
  color: var(--window-close-button-color-hover);
}
.window-caption .buttons .btn-close:active {
  background-color: var(--window-close-button-backgroud-hover);
  color: var(--window-close-button-color-hover);
}
.window-caption .buttons .btn-custom {
  order: 1;
}
.window-caption .buttons .btn-min {
  order: 2;
}
.window-caption .buttons .btn-max {
  order: 3;
}
.window-caption .buttons .btn-close {
  order: 4;
}
.window-content {
  overflow: auto;
  height: calc(100% - 2.25rem);
  border: var(--window-border-size) var(--window-border-color) solid;
  background-color: transparent;
  padding: calc(var(--window-border-size) * 2);
  font-size: 14px;
}
.window-content > * {
  height: 100%;
}
.window-content::-webkit-scrollbar {
  height: var(--window-scrollbar-size);
  width: var(--window-scrollbar-size);
}
.window-content::-webkit-scrollbar-track {
  border-radius: var(--window-scrollbar-track-radius);
  background-color: var(--window-scrollbar-track-color);
}
.window-content::-webkit-scrollbar-thumb {
  background: var(--window-scrollbar-thumb-color);
  border-radius: 10px;
}
.window-status {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: var(--window-border-color);
  color: var(--window-color);
  height: 18px;
  font-size: 12px;
  align-items: center;
  padding: 0 0.5rem 0.25rem;
}
.window.info-window {
  --window-border-color: #468cff;
  --window-caption-background: #468cff;
  --window-caption-color: #ffffff;
  --window-sys-button-color: #ffffff;
}
.window.alert-window {
  --window-border-color: #df0e38;
  --window-caption-background: #df0e38;
  --window-caption-color: #ffffff;
  --window-sys-button-color: #ffffff;
}
.window.warning-window {
  --window-border-color: #ffa500;
  --window-caption-background: #ffa500;
  --window-caption-color: #ffffff;
  --window-sys-button-color: #ffffff;
}
.window.success-window {
  --window-border-color: #50c878;
  --window-caption-color: #ffffff;
  --window-sys-button-color: #ffffff;
}
.window.focused {
  box-shadow: 0 25px 50px -12px var(--shadow-color-large-extra);
}
.window.modal {
  z-index: 1050;
}
.window.minimized {
  max-width: 12rem;
  max-height: 2.25rem;
}
.window.minimized .window-caption {
  border-bottom: none !important;
}
.window.minimized .window-content {
  display: none !important;
}
.window.minimized .window-caption .btn-custom {
  display: none;
}
.window.maximized {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  border-radius: 0 !important;
}
.window.maximized .btn-max::before {
  content: "\1f5d7";
}
.window.resizable {
  min-width: 12rem;
  min-height: 2.25rem;
}
.window .resize-element {
  bottom: 2px;
  right: 2px;
}
.window .resize-element::after {
  border-bottom-color: var(--window-resize-element-color);
}

/* source/components/wizard/wizard.less */
:root {
  --wizard-height: 200px;
  --wizard-background: #ffffff;
  --wizard-color: #191919;
  --wizard-border-color: #f3f3f3;
  --wizard-number-color: #a8a8a8;
}
.dark-side {
  --wizard-background: #1e1f22;
  --wizard-color: #dbdfe7;
  --wizard-border-color: #484b4c;
}
.wizard {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  background-color: var(--wizard-background);
  color: var(--wizard-color);
  min-height: var(--wizard-height);
  height: auto;
  border: 1px solid var(--wizard-border-color);
  counter-reset: wizard-step;
  position: relative;
}
.wizard > section,
.wizard > .section {
  counter-increment: wizard-step;
  display: block;
  position: relative;
  border-left: var(--wizard-border-color) solid;
  border-left-width: 4px;
  width: 0;
  transition: width 0.3s ease;
}
.wizard > section::before,
.wizard > .section::before {
  display: none;
  content: counter(wizard-step);
  position: absolute;
  bottom: 20px;
  width: 25px;
  text-align: center;
  left: -25px;
  z-index: 1;
  color: var(--wizard-number-color);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.wizard > section .page-content,
.wizard > .section .page-content {
  padding: 1rem 1rem 4.25rem;
  display: none;
  overflow: hidden;
}
.wizard > section.current,
.wizard > .section.current {
  width: 100%;
  border: 0 !important;
}
.wizard > section.current .page-content,
.wizard > .section.current .page-content {
  display: block;
}
.wizard > section.current::before,
.wizard > .section.current::before {
  display: block;
  left: 0;
  color: #ffffff;
  background-color: #94b6ff;
}
.wizard > section.current,
.wizard > .section.current,
.wizard > section.complete,
.wizard > .section.complete {
  transition: width 0.3s ease;
}
.wizard > section.complete,
.wizard > .section.complete {
  cursor: pointer;
}
.wizard .action-bar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: right;
  position: absolute;
  bottom: 1rem;
  left: 41px;
}
.wizard .action-bar::after {
  display: block;
  clear: both;
  content: "";
}
.wizard .action-bar > * {
  margin: 1px;
}
.wizard .action-bar .wizard-btn-help,
.wizard .action-bar .wizard-btn-next,
.wizard .action-bar .wizard-btn-prev,
.wizard .action-bar .wizard-btn-finish {
  font-size: 20px !important;
  font-family: sans-serif;
}
.wizard > section {
  border-color: #002f94;
}
.wizard > section:nth-child(1) {
  border-color: #94b6ff;
}
.wizard > section:nth-child(2) {
  border-color: #7ba5ff;
}
.wizard > section:nth-child(3) {
  border-color: #6193ff;
}
.wizard > section:nth-child(4) {
  border-color: #4882ff;
}
.wizard > section:nth-child(5) {
  border-color: #2e70ff;
}
.wizard > section:nth-child(6) {
  border-color: #155fff;
}
.wizard > section:nth-child(7) {
  border-color: #004ffa;
}
.wizard > section:nth-child(8) {
  border-color: #0047e1;
}
.wizard > section:nth-child(9) {
  border-color: #003fc7;
}
.wizard > section:nth-child(10) {
  border-color: #002f94;
}
.wizard > section.complete {
  border-color: #757575;
}
.wizard > section.complete:nth-child(1) {
  border-color: #f4f4f4;
}
.wizard > section.complete:nth-child(2) {
  border-color: #e7e7e7;
}
.wizard > section.complete:nth-child(3) {
  border-color: #dbdbdb;
}
.wizard > section.complete:nth-child(4) {
  border-color: #cecece;
}
.wizard > section.complete:nth-child(5) {
  border-color: #c1c1c1;
}
.wizard > section.complete:nth-child(6) {
  border-color: #b4b4b4;
}
.wizard > section.complete:nth-child(7) {
  border-color: #a8a8a8;
}
.wizard > section.complete:nth-child(8) {
  border-color: #9b9b9b;
}
.wizard > section.complete:nth-child(9) {
  border-color: #8e8e8e;
}
.wizard > section.complete:nth-child(10) {
  border-color: #757575;
}
@container (min-width: 0) {
  .wizard.wizard-wide-fs {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-fs > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-fs > section::before {
    display: block;
  }
}
@container (min-width: 360px) {
  .wizard.wizard-wide-xs {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-xs > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-xs > section::before {
    display: block;
  }
}
@container (min-width: 576px) {
  .wizard.wizard-wide-sm {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-sm > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-sm > section::before {
    display: block;
  }
}
@container (min-width: 640px) {
  .wizard.wizard-wide-ld {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-ld > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-ld > section::before {
    display: block;
  }
}
@container (min-width: 768px) {
  .wizard.wizard-wide-md {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-md > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-md > section::before {
    display: block;
  }
}
@container (min-width: 992px) {
  .wizard.wizard-wide-lg {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-lg > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-lg > section::before {
    display: block;
  }
}
@container (min-width: 1200px) {
  .wizard.wizard-wide-xl {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-xl > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-xl > section::before {
    display: block;
  }
}
@container (min-width: 1400px) {
  .wizard.wizard-wide-xxl {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-xxl > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-xxl > section::before {
    display: block;
  }
}
@container (min-width: 2000px) {
  .wizard.wizard-wide-xxxl {
    flex-flow: row nowrap;
  }
  .wizard.wizard-wide-xxxl > section {
    border-left-width: 25px;
  }
  .wizard.wizard-wide-xxxl > section::before {
    display: block;
  }
}

/* source/components/wizard-classic/wizard-classic.less */
:root {
  --wizard-classic-border-color: var(--border-color);
  --wizard-classic-background: var(--default-background);
  --wizard-classic-color: var(--default-color);
}
.wizard-classic {
  height: 300px;
  width: max(100%, 300px);
  border: 1px solid var(--wizard-classic-border-color);
  border-radius: 6px;
  background-color: var(--wizard-classic-background);
  display: flex;
  flex-direction: column;
  color: var(--wizard-classic-color);
}
.wizard-classic .wizard-pages {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.wizard-classic .wizard-pages .page {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  transition: left 0.3s ease-in-out;
  z-index: 1;
}
.wizard-classic .wizard-pages .page.active {
  left: 0;
  z-index: 2;
}
.wizard-classic .wizard-pages .page.out {
  left: -100%;
}
.wizard-classic .wizard-actions {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px 10px 20px;
  margin-top: auto;
  border-top: 1px solid var(--wizard-classic-border-color);
  gap: 4px;
}
.wizard-classic .wizard-actions .wizard-help {
  order: 1;
  margin-right: auto;
}
.wizard-classic .wizard-actions .wizard-prev {
  order: 2;
}
.wizard-classic .wizard-actions .wizard-next {
  order: 3;
}
.wizard-classic .wizard-actions .wizard-finish {
  order: 4;
}
.wizard-classic .wizard-actions .wizard-cancel {
  order: 5;
}

/* source/components/working-tree/working-tree.less */
:root {
  --working-tree-marker-color: #e8e8e8;
  --working-tree-marker-success: #219707;
  --working-tree-marker-fail: #fb3838;
  --working-tree-marker-pending: #ff9c17;
  --working-tree-color: #191919;
}
.dark-side {
  --working-tree-marker-color: #3d444d;
  --working-tree-marker-success: #81e06c;
  --working-tree-marker-fail: #fb3838;
  --working-tree-marker-pending: #ff9c17;
  --working-tree-color: #efefef;
}
.working-tree {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  color: var(--working-tree-color);
}
.working-tree > li {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent !important;
  color: var(--working-tree-color) !important;
}
.working-tree > li .node {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  align-items: center;
  padding-bottom: 1px;
}
.working-tree > li .node::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background-color: var(--working-tree-marker-color);
}
.working-tree > li.work-success {
  color: var(--working-tree-marker-success) !important;
}
.working-tree > li.work-success .node::before {
  display: none;
}
.working-tree > li.work-pending {
  color: var(--working-tree-marker-pending) !important;
}
.working-tree > li.work-pending .node::before {
  display: none;
}
.working-tree > li.work-fail {
  color: var(--working-tree-marker-fail) !important;
}
.working-tree > li.work-fail .node::before {
  display: none;
}
.working-tree .bull {
  position: absolute;
  top: 2px;
  left: 2px;
}
.working-tree .title {
  margin-left: 26px;
  width: 100%;
  font-size: 12px;
}
.working-tree .value {
  font-weight: 600;
  font-size: 12px;
}
.working-tree .leaves {
  display: flex;
  flex-flow: column;
  margin: 10px 0;
  position: relative;
  list-style: none;
  padding: 0;
}
.working-tree .leaves li {
  padding: 4px 0 4px 40px;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: relative;
  color: var(--working-tree-color);
}
.working-tree .leaves li::before {
  content: "";
  position: absolute;
  top: calc(50% + 0px);
  left: 10px;
  width: 20px;
  height: 1px;
  background-color: var(--working-tree-marker-color);
}
.working-tree .leaves li .title {
  margin-left: 0;
}
.working-tree .leaves::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 10px;
  width: 1px;
  height: calc(100% + 10px);
  background-color: var(--working-tree-marker-color);
}
.working-tree > li:last-child .leaves::before {
  height: calc(100% - 7px);
}
.working-tree > li .node .title {
  font-weight: 600;
}
@keyframes rotate-marker {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* source/components/drop-menu/drop-menu.less */
:root {
  --drop-menu-toggle-color: #191919;
}
.dark-side {
  --drop-menu-toggle-color: #efefef;
}
.drop-menu {
  position: fixed !important;
  z-index: var(--zindex-fixed) !important;
}
.menu-toggle {
  padding-right: 4px !important;
}
.menu-toggle svg {
  fill: var(--drop-menu-toggle-color);
  transform: rotate(90deg);
  margin-left: auto;
  transition: transform 0.3s;
}
.menu-toggle.active-toggle svg {
  transform: rotate(270deg);
}

/* source/icons/font.less */
@font-face {
  font-family: "metro-ui-icons-core-set";
  font-weight: normal;
  font-style: normal;
  font-display: block;
  src: url(data:application/font-woff;base64,d09GRgABAAAAA3qEAAsAAAADejgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIP/2NtYXAAAAFoAAADbAAAA2zeMtpKZ2FzcAAABNQAAAAIAAAACAAAABBnbHlmAAAE3AADVqQAA1ak7kRC/GhlYWQAA1uAAAAANgAAADYsxsYoaGhlYQADW7gAAAAkAAAAJAjmCDRobXR4AANb3AAADYAAAA2AbVv//WxvY2EAA2lcAAANhAAADYQE9mi8bWF4cAADduAAAAAgAAAAIAOaB9tuYW1lAAN3AAAAA2MAAANj05nU5nBvc3QAA3pkAAAAIAAAACAAAwAAAAMD/QGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8tgDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEA1AAAADQAIAABgBQAAEAIOAd4ELgb+C34Lngw+DL4ODhReFK4VbhX+Fo4k3iyeMI4w3jF+Ma4xzjsuPu5BLkOeUt5V3lYeVp5W3lxeXH5dXmBeYH5gvmGeYg5ifmLOYz5kHmR+ZQ5lXmYeZr5pjmnOar5sLmxubV5tjn6ehU6F3ocehz6HfonOiv6LTo6Oj865DwN/A88EjwZPCJ8JTwmvCy8Mfw8fD68SfxNPFV8VfxWvFq8Xzxl/Gr8bDxtvG58fHx9PH58gfyHPIe8jPyOvJO8l7ytfLY//3//wAAAAAAIOAd4ELgbeC34Lngw+DK4N/hReFK4VbhXuFo4k3iyOMH4w3jF+Ma4xzjsePu5BLkOeUt5V3lYeVp5W3lxeXH5dXmAOYH5grmD+Yb5iTmK+Yy5jbmQ+ZK5lLmXeZj5pfmm+ai5rjmxubV5tjn6ehU6F3ocehz6HbonOiv6LTo6Oj86QDwN/A88EjwY/CJ8JTwmvCy8Mfw8PD58SfxNPFT8VfxWvFq8Xzxl/Gr8bDxtvG58fDx9PH58gbyGvIe8jPyOfJO8lzytfLY//3//wAB/+Mf5x/DH5kfUh9RH0gfQh8vHssexx68HrUerR3JHU8dEh0OHQUdAx0CHG4cMxwQG+oa9xrIGsUavhq7GmQaYxpWGiwaKxopGiYaJRoiGh8aGhoYGhcaFRoUGg0aDBnhGd8Z2hnOGcsZvRm7GKsYQRg5GCYYJRgjF/8X7RfpF7YXoxegEvoS9hLrEtESrRKjEp4ShxJzEksSRBIYEgwR7hHtEesR3BHLEbERnhGaEZURkxFdEVsRVxFLETkROBEkER8RDBD/EKkQhwADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAA/8AAAAPAAAIAADc5AQAAAAABAAD/wAAAA8AAAgAANzkBAAAAAAEAAP/AAAADwAACAAA3OQEAAAAAAwAA/8ADVgPAAAMABwALAAABMxEjIREzETMRMxECqqys/gCsVKwCK/4qAVb+qgKs/VQAAAEAAP/AA1YDwAAuAAABMhceARcWFRQHDgEHBiMiJy4BJyY1MxQXHgEXFjMyNz4BNzY1NCcuAScmIxUnNwIARj8+XRsbGxtdPj5HRj8+XRsbVhQURS8vNTUvL0UUFBQURS8vNdbWAtUbG1w+PkZHPj5dGxsbG10+Pkc2Li9FFBQUFEUvLjY1Ly5GFBSs1tYAAAMAAP/AA9YDwAADAAcAFwAAATUhFQU1IRUBMhYVERQGIyEiJjURNDYzAgD+gAGA/oADACI0MyP9ACI0MyMCgVRUrFZWAVY0Iv2sIzMzIwJUIjQAAAIAAP/AA9YDwAADABMAAAERIREBMhYVERQGIyEiJjURNDYzAgD+gAMAIjQzI/0AIjQzIwGrASr+1gGANCL9rCMzMyMCVCI0AAIAAP/AA6oDwAACABAAAAEVMzcRFAYjBSImNRE0NjMhAoDqQDEj/VQiMjEjAgACwews/qojMQIzIwIAIjQAAAAEAAD/wAOqA8AAAwAHAAsAGQAAATUhFQE1IRU1FSE1EzIWFREUBiMhBxE0NjMDAP4AAVb+qgIAViIyMSP9qqoxIwJVVlb/AFZW1lZWASoyIv4AIzOqAwAiMgAAAAQAAP/AA6oDwAADAAcACwAZAAABNSEVBTUhFQU1IRUBESchIiY1ETQ2MyEyFgMA/gACAP4AAgD+AAKqqv2qIjIxIwKsIjICVVZWgFZWgFZWAaz9AKozIwIAIjIyAAAAAAIAAP/AAyoDwAAGAA0AACUzByczETMBFyMRIxEjAqqAqqqAVP7WqoBUgNWqqgEsASqq/tQBLAAAAQAA/8ADqgPAAA0AAAEyFhURFAYjIQcRNDYzA1YiMjEj/aqqMSMDVTIi/gAjM6oDACIyAAIAAP/AA6oDwAAEABIAAAERIRE3ATIWFREUBiMhBxE0NjMDVv1UVgJWIjIxI/2qqjEjAQECAP2qVgJUMiL+ACMzqgMAIjIAAAMAAP/AA9YDwAAGAAoAGgAAASM3FyMVIwURIREBMhYVERQGIyEiJjURNDYzAapUqqpUrAHW/QADACQyMiT9ACQyMiQBq6qqqoICWP2oAqwyJP2sJDIyJAJUJDIAAgAA/8AD1gPAAA0AMwAAJREuASMiBgcRPgEzMhYDMhYXERQGIyoBJy4BIyIGBy4BIyIGByIGIyImNRE+ATMyFhc+AQOAIk0nNogsK4k2J0xzQoEpDggDBAMtajU2iCwufT8uciwDBAMHDy5/Pz98Ly59lQHsCgolG/4WGyUMAkwhH/2SCA4CGBQlGyIeGRUCDAgCciIeHiIiHgAAAQAA/8ADKgPAAAsAAAEhESMRITUhETMRIQMq/wBU/wABAFQBAAGB/wABAFQBAP8AAAAAAAIAAP/ABAADwAALABwAAAEnNycHJwcXBxc3FxMyFhURFAYjISImJwMTPgEzAyqYmDyYmjyamjyamLwiNDMj/YAWIgzm5gwhFwERmpo8mpo8mpo8mpoCVjQi/awjMxURAVoBWhAWAAAAAgAA/8ADgAPAAAoAGgAAAREhETMUFjMyNjUTMhYVERQGIyEiJjURNDYzAyr9qqxLNTRMqiI0MyP9qiQwMCQBKwGq/lY1S0s1AgAyJP2sIzMzIwJUJDIAAAEAAP/AA4ADwAARAAABFhceARcWFyYnLgEnJiMVCQEBqnBRUnAiIRAoMDB1REVQ/tYBKgIrEC0ugE5NUDgpKTYNDa4BKgEqAAIAAP/ABAADwAARABcAAAEWFx4BFxYXJicuAScmIxUJAQUHFxUJAQIqcFFScCIhECgwMHVERVD+1gEq/wCqqv7WASoCKxAtLoBOTVA4KSk2DQ2uASoBKoCqqoABKgEqAAMAAP/AA4ADwAAGABEAIQAAAQcnMzUzFRcRIREzFBYzMjY1EzIWFREUBiMhIiY1ETQ2MwKqqqpUrNT9qqxLNTRMqiI0MyP9qiQwMCQCAaysgIDWAar+VjVLSzUCADQi/awjMzMjAlQiNAAAAAIAAP/AA1YDwAACABAAAAEzJyUhAREUBiMhIiY1EzQ2Airs7P7WAVYBADMj/gAiNAIxAivqQP8A/gAjMTEjAqwiMgAAAgAA/8ADqgPAAAMAFQAAJREhEQEyFhURFAYjISImNRE0NjMhFwNW/VQCrCIyMSP9VCIyMSMBAFarAar+VgIANCL+ViMzMyMCACI0VgAAAAADAAD/wAOqA8AACAAUACYAACU1NCYjIgYdARMiBhUUFjMyNjU0JjcyFhURFAYjISImNRE0NjMhFwMqgCoqgKoiNDMjIjQzsyIyMSP9VCIyMSMBAFbVLCoqKiosAVY0IiMxMSMiNIA0Iv5WIzMzIwIAIjRWAAQAAP/AA9YDwAAPAB8AJAA3AAATMhceARcWFSM0Jy4BJyYjFTIXHgEXFhUjNCcuAScmIxUyFhUjATIWFREUBiMhNSERIRUjNTQ2MyphVVaAJSVWHh5pRkVQPjc3URcYVhEROicnLDRMgANWIjQzI/7WASr9AFYzIwIBJSWAVVZhT0ZGaB4fVhgXUDc2PiwnJzoREVZMNAMANCL9rCMzVgJUgIAiNAAAAAUAAP/AA9YDwAASACIALQA9AEIAAAEyFhURFAYjITUhESEVIzU0NjMDMhceARcWFSM0Jy4BJyYjJREjJicuAScmJzUDMhceARcWFSM0Jy4BJyYjFTIWFSMDgCI0MyP+1gEq/QBWMyNWYVVWgCUlVh4eaUZFUAMA8BQjIlw4OD+sPjc3URcYVhEROicnLDRMgAMrNCL9rCMzVgJUgIAiNP7WJSWAVVZhT0ZGaB4f1v5UPzg4XSMiFUb+1BgXUDc2PiwnJzoREVZMNAAAAAYAAP/AA6oDwAADAAcACwAPABMALwAAATMRIwEzFSMlMxUjBTMVIwURIREBIxUzFSMVMxUjFRQGIyEiJjURNDYzITIWHQEzAgCqqv8A1tYBAKqq/wDW1gIA/aoDAFRUVFRUMyP9qiIyMSMCViI0VAHV/wABrNbWgICsVAJU/awBqlZUVlZUIzMzIwJUIjQ0IlQAAAABAAD/wAOAA8AACAAAARUhFwcJARcHA4D9pJg8/wABADyYAdVUmjwBAAEAPJoAAAANAAD/wAOqA8AAAgAGAAoADgASABYAGgAeACIAJgAqAC4APgAABSchEzUjFRc1IxUnNSMVFzUjFRc1IRUDNSMVFzUjFTcVMzUnFTM1FxUzNScVMzUlMhYVERQGIyEiJjURNDYzAgCqAVSAVFRULFRUVFT+rCxUVFSAVFRULFRUVAEsIjIxI/1UIjIxIyusAdRWVoBWVoBWVoBWVqpWVgEqVlaAVlZWVlaAVlaAVlaAVlaANCL+ViMzMyMBqiI0AAACAAD/wAOqA8AAAwAMAAABMxEjATcJASc3ITUhA1ZUVP6YPAEA/wA8mv2iAl4Cq/4AAcQ8/wD/ADyaVAAEAAD/qwMqA8AAEAAoADQAOAAAARE0Nz4BNzYzMhceARcWFRE1MhYVERQGIyEXBzUjNTM1IyImNRE0NjMTIiY1NDYzMhYVFAYTMxUjASoXGEIlJRsbJSVCGBciMjEj/tSAgNTUgCIyMSPWIjIxIyI0MzPU1ANV/kAbFBQbBwcHBxsUFBsBwFY0Iv2sIzOAgFZUVjMjAlQiNP6qMyMiNDQiIzP+AFQAAAADAAD/qwMqA8AACwAjACcAAAEyNjU0JiMiBhUUFhMyFhURFAYjIRcHNSM1MzUjIiY1ETQ2MwEzFSMCACIyMSMiNDL6IjIxI/7UgIDU1IAiMjEjASzU1AKrMyMiMjIiIzMBADQi/awjM4CAVlRWMyMCVCI0/KpUAAAFAAD/wAOAA8AAAwANABkAHQAsAAABNSMVNzIWHQEUBisBEQc1MxEjNSMVIxEzFQU1IxUzFAYHFyMnIxUjETMyFhUCKlRUGScmGpSAQEBWQEACgFaWFREmQCYwQJYZJwFrgIDAJxmAGiYBAFZW/wBqagEAVhQqKhQfCVpWVgEAJxkAAAADAAD/wAOqA8AAGwAvADsAACUyNz4BNzY1NCcuAScmIyIHDgEHBhUUFx4BFxYDIRczMhYVERQGIyEiJjURNDY7ARM0NjMyFhUUBiMiJgIALCcnOhERERE6JycsLCcnOhERERE6JydUAQBOiCIyMSP9VCIyMSOIRk85OU9POTlP1REQOicnLSwnJzoREREROicnLC0nJzoQEQKAVDQi/gAjMzMjAgAiNP6qOU9POTlPTwAAAAAEAAD/wAPWA8AACwAnADoARgAAATQ2MzIWFRQGIyImFzI3PgE3NjU0Jy4BJyYjIgcOAQcGFRQXHgEXFgM1MzUhFzMyFhURFAYjISImNRERNTMVMxUjFSM1IzUBok85OVFROTlPiCwnJzoREREROicnLCwnJzkQEREQOScn/oABKk6IIjQzI/1WIjRWgIBWgAFVOVFROTlPT5sQETknJi0sJyc6ERERETonJywtJic5ERABgICAVjQi/gAjMTEjAawBAICAVoCAVgAAAAACAAD/wAOAA8AABQAWAAAJAScBJwcBMhYVERQGBwUlLgE1ETQ2MwGqAYA8/ryYPAJUIjQVEf6m/qYQFjMjAQEBgDz+vJg8Aaw0Iv3YFyMM6OgMIxcCKCI0AAAAAAEAAP/AA0ADwAAFAAAJAQclBScCAAFAHv7e/t4eA1X89B6AgB4AAAACAAD/wAN+A8AAEgAYAAABBwEHCQEnASY2Nz4BFxYGBw4BBScmNDcBAno+ASY8/tr+2jwBoBYfMz2YLy4SPjN9/q60MTEBLAG/Pv7aPAEm/to8AaAxfjM9Ey4vmj0zHje0MY0y/tYAAAEAAP/AA4ADwAAFAAAJASMDJTUDgP6+KnD+3AMr/QABJHAqAAMAAP/AA2oDwAAFABEAQAAAJRMjNQMzJTI2NTQmIyIGFRQWNx4BFREUBiMiJj0BIxEhETQ2MyEyFhURMzIWHQEUFjMyNjURDgEjIiY1NDY3JzcBVqpWqlYBqhIYGBISGBheDw8+LCs/QP5UMyMBACI0KiI0GBISGAoUDCs/Jh5aLqsBKtb+wJYYEhIYGBISGHYPJxb+aiw+PizW/sACqiI0NCL+1jQiwBIYGBIBNAUDPiwiNgxaLAABAAD/wALWA8AAAgAAASEHASoBrNYCAdYAAAAAAQAA/8AC1gPAAAIAAAE3FwEq1tYBVdbWAAAAAAEAAP/AA1YDwAA0AAABNxEhNy4BIyIHDgEHBhUUFx4BFxYzMjc+ATc2NzMGBw4BBwYjIicuAScmNTQ3PgE3NjMyFgLyZP7UiiJdNTUvL0UUFBQURS8vNSomJz8YFw1YDh8fVzU2PEY+Pl0aGxsaXT49R0Z9Ap1k/tSKIioUFEYuLzU2Li9FFBQMDS0fHyY4Ly9EExMbG10+PkdGPj9dGxs2AAAABQAA/6sD/gPAABMAnQC6ANEA5gAAJSYnLgEnJicjFhceARcWMzI2MycnIiYnLgEnLgEnLgE1IxQWFx4BFx4BFx4BMzI2Nz4BNz4BNz4BNTQmJy4BJy4BJy4BJz4BNz4BNz4BNz4BNTQmJy4BJy4BJy4BIyIGBw4BBw4BBw4BFTM0Njc+ATc+ATc+ATMyFhceARUUBgcOAQcOAQcOASsBFTMyFhceARceARceARUUBgcOASMlLgEnLgErAREzMjY3PgE3PgE3PgE9ATQmJy4BJwcUBgcOAQcOAQcOASsBNTMyFhceAR0BAyIGBxc3FhceARcWFzMmJy4BJyYjAUE1LCxCFRUGQAgrK4lZWWUHDgeiEwYMBQUIBAMGAgICNwQFBAwIBxIKChQLDBYKChIIBwwEBAUCAQIFAwMJBQYNBwYLBQUIAwMFAgECBAQDCwcHEQoKFgwMFQoJEQcHCwQEBDcCAgIGAwMIBQUKBQ0TBgcGAgIBBgMECAYFDAchIQcMBgYJBAQGAwICCAcHFA0BbQoZDg4fEWViEiAODxkKChAFBgYGBgUQChEDAwMJBgYQCQkVDCcqFyMMDAzDBw4Hojk0LSxCFRUGQAgrK4lZWWUWGSUlXTc3PGNVVn8kJAGj3QICAgUDAwgFBAoGDBQJCQ4GBgkDAwMDAwQJBgcPCQkVDAYMBgULBQUKBAQGAwMHBAQJBQUJBgUKBQwUCQkOBgYJAwMDAwMECQYHDggJEgoGCQUEBwMDBQIBAgcGBxIMBgoFBQgDAwUCAgIsAQICBQMDCQUFDAgMFAcHB/0LEAYGBf6rBgYFEQoLGQ8PIhIREyEPDxoKhw0ZCgsSBwcMBAQE9w8PDiscEQIJAQGjORklJV03NzxjVlV/JCUAAAAABQAA/8ADqwPAAAMABwAOACoARwAAAScHFyUnBxcFIxEXNyc1JyIHDgEHBhUUFx4BFxYzMjc+ATc2NTQnLgEnJgMiJy4BJyY1NDc+ATc2MzIXHgEXFhUUBw4BBwYjA6vEN8T93DfENwGJQMsgqxVQRkZoHh4eHmhGRlBPRkZpHh4eHmlGRk8+NjdRFxgYF1E3Nj4+NjdRFxgYF1E3Nj4Ct6RBpaVBpEEh/wB5NGXgqx4eaUZFUFBFRmkeHh4eaUZFUFBFRmkeHv1VGBdRNzY+PjY3URcYGBdRNzY+PjY3URcYAAAABQAA/8ADqwPAAAMABwAjAEAARwAAAScHFyUnBxclIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmAyInLgEnJjU0Nz4BNzYzMhceARcWFRQHDgEHBiMvAQcXAScHA6vEN8T93DfENwF0UEZGaB4eHh5oRkZQT0ZGaR4eHh5pRkZPPjY3URcYGBdRNzY+PjY3URcYGBdRNzY+P1othwEBLtMCt6RBpaVBpEGKHh5pRkVQUEVGaR4eHh5pRkVQUEVGaR4e/VUYF1E3Nj4+NjdRFxgYF1E3Nj4+NjdRFxjqWi2IAQEt0wAAAAEAAP/AA6sDwAAkAAAlJyYnLgEnJjU0Nz4BNzYzMhYXPgEzMhceARcWFRQHDgEHBg8BAgA+UkRDXxsaEhM/KysxOGUjI2U4MSsrPxMSGhtfQ0RSPhw4Sz9AdTg5PDErKz8TEjApKTASEz8rKzE8OTh1QD9LOAAAAAIAAP/AA4ADwAAqAC8AAAEiJicmBg8BJicuAScmJzc+AScuATU0JisBIgYVFBceARcWMzI2PQE0JiMBETchEQNVKEwkCxcJXi4oKUgdHhdeCAYEDAwZEpUSGTk5xYSElhIZGRL+q4ABAAEVDQwDBQleFx4eRykpLV4JGAskTCgSGRkSloSExTk5GRGWERkCFv5VgAErAAAABAAA/8ADqwPAAA4AEgAeACMAAAEhIgYVETMVITUzETQmIwMhNSE3IiY1NDYzMhYVFAYDIRUhNQMr/ao1S6sCAKtLNYD+qgFWgBIZGRIRGRk8/gACAAJVSzX/AKqqAQA1S/4r1VYZERIZGRIRGQGAq6sAAAAFAAD/wAPdA8AABQAKAA8AFAAbAAABJwMTNycXMzUjFSUjFTM1BTM1IxUBBxcHFxMDAUxC5+dCuplVVQGqVVX/AFZWASFCurpC5+cCijf+6v7pN+ArVVVVVVVVVVUBQTff4DYBFgEWAAUAAP+rAysDwAAEABIAFwAbAD0AAAUzNSMVEzI2NRE0JiMiBhURFBYTMzUjFTsBNSMTIxQHDgEHBiMiJy4BJyY1IxQXHgEXFhcVMzU2Nz4BNzY1AStVVdU1S0s1NUtLClZWq1VVq0kTEj8pKSwsKSk/EhNJFRRGLi80VjQvLkYUFVVVVQHVSzUBADVLSzX/ADVL/itVVVUCADAoKDoQEBAQOigoMDcwMUwaGQiMjAgZGkwxMDcAAAADAAD/wAPVA8AAHwAiAC4AAAEDLgEjIgYHAyMiBhUUFhUTHgEzITI2NxM0NjU0JisBITcXAyImNTQ2MzIWFRQGAt67BhMKChMGu80RGQFsCC0eAioeLQdtARkRzf6igICAIzIyIyMyMgIrARcKCAkJ/ukZEgMGA/51GyMjGwGMAgYDEhm7u/6qMiQjMjIjJDIAAAAACgAA/8ADVQPAAAsAGAAlADIAPgBKAFYAYwBwAHwAACUiBhUUFjMyNjU0JgEiBhUUFjMyNjU0JiMRIgYVFBYzMjY1NCYjESIGFRQWMzI2NTQmIwEyNjU0JiMiBhUUFgMiBhUUFjMyNjU0JjMiBhUUFjMyNjU0JgMiBhUUFjMyNjU0JiMhIgYVFBYzMjY1NCYjESIGFRQWMzI2NTQmAgAjMjIjIzIy/t0jMjIjIzIyIyMyMiMjMjIjIzIyIyMyMiMCACMyMiMjMjLdIzIyIyMyMt0jMjIjIzIyIyMyMiMjMjIj/wAjMjIjIzIyIyMyMiMjMjKAMiMkMjIkIzIDADIjJDIyJCMy/wAyIyQyMiQjMv8AMiMkMjIkIzIBVTIkIzIyIyQy/qsyIyQyMiQjMjIjJDIyJCMyAQAyIyQyMiQjMjIjJDIyJCMyAQAyIyQyMiQjMgAAAAQAAP/ABAADwAAQABwALgBHAAABISIGFREUFjMhMjY1ETQmIwUyFhUUBiMiJjU0NgEhNTQ3PgE3NjMyFx4BFxYdATczFwcuAScuATU0Njc+ATcXByMOARUUFhcDq/yqIzIyIwNWIzIyI/2qNUtLNTVLSwE1/gAcHFAsLCAgLCxQHBylRkBVKjwPBQYGBg48KlVARgcIBwgDKzIk/asjMjIjAlUkMoBLNTVLSzU1S/4AKiAZGSEJCQkJIRkZICqqVVUfVzQVKhcWKxQ0Vx9VVRQrFhcrFAAAAAUAAP/ABAADwAAFABYAIgA0ADkAAAE1BycVFxMhIgYVERQWMyEyNjURNCYjBTIWFRQGIyImNTQ2ASE1NDc+ATc2MzIXHgEXFh0BASERIREDgICAgKv8qiMyMiMDViMyMiP9qjVLSzU1S0sBNf4AHBxQLCwgICwsUBwcAVb+qgFWAlUrVVUrVQErMiT9qyMyMiMCVSQygEs1NUtLNTVL/gAqIBkZIQkJCQkhGRkgKgEAAQD/AAAAAAAEAAD/wAQAA8AAPABGAEoAVAAAJSYnLgEnJiMiBw4BBwYHDgEVFBYfAR4BMzI2Nz4BNz4BPQE+ATMyFhcVFBYXHgEXHgEzMjY/AT4BNTQmJwMnBxcwNz4BNzYlIxUzBTcnBxYXHgEXFgPzMDk5f0VESUlERX85OTAGBwcGaQYPCQkPBho5HwoOLmMzM2MuDgofOhkGDwkJDwZqBQcHBmw9lzwXFzgYGP6mVlb+5jyXPQIYGDgXF+MvJSUzDg4ODjMlJS8FEAkJDwZqBQcGBhgnEAUVDIUPDw8PhQ0UBRAoFwYGBgZqBg8JCRAFAb08mDwXGDkXGLbVeDyYPAEYFzkYFwAAAAMAAP/ABAADwAAyAD4ASgAAASIHDgEHBhUUFhcjPgE1NCcuAScmIyIHDgEHBhUUFx4BFxYzITI3PgE3NjU0Jy4BJyYjASImNTQ2MzIWFRQGISImNTQ2MzIWFRQGAxUwKys/ExIcGcAZHBITPysrMTArKz8TEhITQCorMQIqMSsqQBMSEhNAKisx/dY+WFg+PldXAew+V1c+PlhYAqsTEkArKjErTB4eTCsxKitAEhMTEkArKjExKitAEhMTEkArKjExKitAEhP+gFc+PldXPj5XVz4+V1c+PlcAAAACAAD/wAOrA8AAEAAUAAABNCYnJQUOARURFBYzITI2NS0CBQOqFhL+fv5+EhcyJAKqJDL+Vf6gAWABYAJVFycL4uILJxf+ViQyMiTV3M/PAAIAAP/AA6sDwAAQABYAAAEhIgYVAxQWMyEyNjURNCYjFQUlNQUlA1X9ViQxATIkAqokMjIk/qv+qwFVAVUDADIj/gAkMjIkAgAjMqvV1VbW1gAAAAUAAP/AA4ADwAAEAAkADQARABYAACUzESMRFzMRIxEBMzUjATMRIxcVMzUjAStVVapWVv6rVVUCAFVVq1VVqwIA/gCrA1X8qwFVq/6rAgCrq6sAAAQAAP/AA7gDwAAEAAgADAAQAAABESERIQEhESEZASERNwcXNwIrAVX+q/5VAVX+qwFV8vLy8QGA/qsBVf6rAVUBq/6qAVY48vHxAAACAAD/wAOAA8AAEgAgAAABBREUFx4BFxYXNjc+ATc2NRElESEGBw4BBwYHESE1JRECAP6AHR1nRkZTU0ZGZx0d/oABKwkZGk4yMzz+1QErA4Cr/wBZU1SJMTEVFTExiVRTWQEAq/4rQj09ZSUlEgF984X+iAAAAAAFAAD/wAOAA8AAKQA1AEEATQBZAAABIgcOAQcGFRQXHgEXFjMyNjU0JicuATU0NjsBMjc+ATc2NTQnLgEnJiMDIiY1NDYzMhYVFAY3IiY1NDYzMhYVFAYzIiY1NDYzMhYVFAYXIiY1NDYzMhYVFAYCAFBFRmkeHh4eaUZFUBslCQgHCSYaTCwnJzkRER4eaUZFUOsaJiYaGyUlZRomJhobJSW7GyUlGxomJmYbJSUbGiYmAysfHmhGRk9QRkZoHh4lGwwWCQgWDBslERE5JycsRz4+XRsb/oAlGxomJhobJaomGhslJRsaJiYaGyUlGxomqiUbGiYmGhslAAAEAAD/wAOAA8AADQBCAE8AXQAAJTI3PgE3NjUiBw4BBwYBFBYzMjY3BxQWMzI2NSceATMyNjU0Jic+ATU0JiMiBgc3NCYjIgYVFy4BIyIGFRQWFw4BFSUyFhUUBiMiJjU0NjMBFBceARcWMzQnLgEnJgIAUEVGaR4eUEVGaR4e/u8/LBEeDQE/LCw/AQ0eESw/IhsbIj8sER4NAT8sLD8BDR4RLD8iGxsiAREsPz8sLD8/LP6AHh5pRkVQHh5pRkUAHh5pRkVQHh5pRkUBpSw+CggILD4+LAgJCT4sIDQMDTMgLD8KCQgsPz8sCAkKPywgMw0MNCDLPywsPj4sLD/+wFBFRmkeHlBFRmkeHgAAAAMAAP/AA2sDwAAwADQAQQAAATUnBxcOARUUFjMyNjcRFAYjIiY9ATQmKwERNCYjISIGFREhETMVFBYzMjY1ETQmJwUhNSEFIiY1NDYzMhYVFAYjA0yfLVoeJz8sCxYKGRISGTIjKzIj/wAjMgGqQD8sLD8RDv60/wABAAEAEhkZEhIZGRICdgGeLVoLNiIsPwUE/swRGRkRwCQyASokMjIk/VYBQNYsPj4sAZYWJw521dUZEhEZGRESGQAABQAA/8ADVQPAAAcAGAAlADIATgAAJRYyNzY0JwcBISIGFREUFjMhMjY1ETQmIwUyFhUUBiMiJjU0NjMjMhYVFAYjIiY1NDYzEyInLgEnJjU0Nz4BNzYzMhceARcWFRQHDgEHBgGHMo4yMTHyAXn+ACMyMiMCACMyMiP+qxEZGRESGRkSgBEZGRESGRkS1TUvLkYUFBQURi4vNTUvLkYUFBQURi4v3TIyMo0y8QJ4MiP9VSMyMiMCqyMyVRkSERkZERIZGRIRGRkREhn9VRQVRS8uNTUvL0UUFBQURS8vNTUuL0UVFAAAAAMAAP/AA9UDwAALADQAUQAAASIGFRQWMzI2NTQmBSYnLgEnJic1IxUGBw4BBwYHIxUzFhceARcWFxUzNTY3PgE3NjczNSMBIicuAScmNTQ3PgE3NjMyFx4BFxYVFAcOAQcGIwIAR2RkR0dkZAE2Bx0dWjo7QlZCOzpaHR0HWFgHHR1aOjtCVkI7OlodHQdYWP6DPjY3URcYGBdRNzY+PjY3URcYGBdRNzY+AlVkRkdkZEdGZIBDOzpaHR0HWFgHHR1aOjtDVUM6O1odHAhYWAgcHVo7OkNV/qsXGFE2Nz4+NjZRGBcXGFE2Nj4+NzZRGBcAAAACAAD/wAPVA8AABgAOAAATFQUlNQUlCQIlETMRAdUBKwEr/tX+1QEr/isB1QGAVf4rAXiqo6Oqo6MBs/8A/wDR/tkBVgEAAAACAAD/wAOAA8AAGgAeAAABIgYjByUHDgEVERQWMzoBPwEFNz4BNRE0JiMDJREFA2sCAwLk/wDwBwkNCAIDAuQBAPEGCQ0I6/8AAQADKwFZWlEDCwf9ewkMAVhZUQILBwKFCQ39VVoB+1kAAAAEAAD/wAPVA8AAFwAhAFgAaQAAATU0JiMiBh0BIgYdARQWOwEyNj0BNCYjKwE1NDYzMhYdAQMeARUUBgcuASsBNTQmIyE1MzI2PQEzMjY9AS4BIyIHDgEHBhUUFx4BFxYzMjc+ATc2NTQmJyMBJicuAScmNTQ2NxcVFBYzFQOrPywsPxEZGRHWERkZESKSKx4eK2ICAjAqCC0cKxkR/wBVEhlVIzIeQCJYTk5zIiEhInNOTlhZTU50ISIBAVf+hD83N1AXFwUEzDIkAwAVLD8/LBUZEqoSGRkSqhIZFR4rKx4V/qsLFQtDdi0aIYASGVUZElUyJGwKCiIhdE5OWFhOTnQhIiIhdE5OWAsVC/6DBx4dWzo6QRQmEswrIzJSAAADAAD/wAOrA8AAHAAtAEwAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjAyYnLgEnJjU0NjcXFRQWMxUlLgErATU0JiMhNTMyNj0BMzI2PQEWFx4BFxYVFAYHAgBYTk50ISIiIXROTlhYTk50ISIiIXROTlgrPzY3UBcXBAXMMiMBJwksHCsZEv8AVhEZViMyLycnORAPMCkDVSEic05OWFlNTnQhIiIhdE5NWVhOTnMiIf0DCB4dWjo6QhMnEswrIzJTbBoigBIZVRkSVTIjEhMgH1IyMTVDdi4AAAMAAP/AAvMDwAANABAAEwAAAScjEScHFwcXNxEzNycDFwcTBzUC8/Mrwz3v7z3DK/O3EVBQUFACYvP+vcM87u88xP6887gBB1BQ/uFQoQAABQAA/8ADgAPAAAMAEQAUABcAHAAAAScHFwEnIxEnBxcHFzcRMzcnAxcHEwc1JQcXNycBK1ZVVQIe8yvDPe/vPcMr87cRUFBQUAEAVlZVVQGrVVVWAQ3z/r3DPO7vPMT+vPO4AQdQUP7hUKG8VVZWVQAAAAAIAAD/wANAA8AABQAKAA4AEgAWABoAHgAiAAA3ETchFxEDESERIQMhNSEHIxUzEyE1IQcjFTMTITUhByMVM6CFAZaFIP2gAmAg/eACIMCgoMD94AIgwKCgwP3gAiDAoKAAAwCAgP0AAQAB4P1AAeDAQCD+wMBAIP7AwEAgAAAAAAQAAP/AA6ADwAAfAC8AWQBnAAAlISImNREwFx4BFxYXFRQWOwEyNj0BNjc+ATc2MREUBgEyFh0BFAYrASImPQE0NjMzNCYrASIGHQEmJy4BJyYxNTQ2OwE1NDY7ATIWHQEzMhYdATAHDgEHBgcRNCYrASIGFRwBMTMwNANg/SAbJRwdWzk6ORMNoA0TOTo5Wx0cJv6mDRMTDWANExMNoBMNoA0TOTo5Wx0cJRvAJhrgGibAGiYcHVs5OjkTDaANE+AgJhoBgA4OJxQVDScNExMNJw0VFCcODv6AGiYBgBMNIA0TEw0gDRMNExMNHQ4VFSgPDoAaJkAaJiYaQCYagA4PKBUVDgFdDRMTDQ0TEwAAAgAA/8ADeQPAADQAQAAAARYGBw4BJwcXNzYyHwEWFA8BBiIvASY0PwEnAQYiLwEmNDcBJyMnNxcVFzcmNjc+ARcHFzcBJiIHBhQXFjI3NjQDeRcWLTKIOjkpGAkaCcMJCVkJGwnCCgoWJ/7zEjQTFhISATPMQEs8e848LAo2LXk4hG+E/UwJGgoJCQoaCQkCwjd6LjEQIT4oGAkJxQkaCVkJCcUJGgkWJv7aEhIXEjQSAQHMeDxLP88zPJY2LRYWgm+C/cAJCQkaCQoKCRoAAAMAAP/AA6sDwAAcACsAOgAAASIHDgEHBhUUFx4BFxYzMjc+ATc2NTQnLgEnJiMBNDc+ATc2MzIWFwEuATUBIiYnAR4BFRQHDgEHBiMCAFhOTXQiIiIidE1OWFhOTXQiIiIidE1OWP6rGxtcPj9GO2sr/iIhJwFVO2srAd4hJxsbXD4/RgNVISJ0Tk1YWE5OdCEiIiF0Tk5YWE1OdCIh/lZGPj5dGxsnIv4jK2o8/qonIgHeK2s7Rz4+XRsbAAAAABUAAP+rA9UDwAAEAAgADAAQABQAGAAdACEAJQApAC4AMwA4AD0ATQBdAGEAZQBqAG4AcwAAEzM1IxU3MxUjFzM1IxczFSMHMzUjFzMVIwczNSMVNzMVIyUzNSMXMxUjJzM1IxUjMzUjFQchESEREyERIRElISIGFREUFjMhMjY1ETQmAxQGIyEiJjURNDYzITIWFQEzNSMXMxUjFzMRIxETMxUjATM1IxWrgIAqKyuAgIArKysrgIArKyvVgIAqKysBK4CAKyoqgCoqVisrqgKq/VYqAlb9qgKA/VY1S0s1Aqo1S0sKGRL9VhIZGRICqhIZ/oCAgCsqKoCqqipWVv4rKysBAICAVSorgCsq1oAqKyuAgFYrgIArKtUrKysrVQGA/oABVf7VASurSzX9ADVLSzUDADVL/IASGRkSAwARGRkR/SqAKisrASv+1QEA1QGAKysAAAAAAwAA/8AEAAPAABAAMABBAAABIgYdARQWMzI2NTM1IzQmIyciBh0BITU0JiMiBhURFBYzMjY9ASEVFBYzMjY1ETQmBTIWHQEUBiMiJjUjNTM0NjMDoRIPDxIRDz8/DxGhIAv+VgsgIzIyIyALAaoLICMyMv08Eg8PEhEPPz8PEQIrMiRVIzIyI1UkMoAyJICAJDIyJP6rIzIyI4CAIzIyIwFVJDKAMiRVIzIyI1UkMgABAAD/wAMrA8AAMwAAARUzFSMRMycHMxEjNT4BNTQmIyIGFRQWFxUUFjsBFQ4BFRQWMzI2NTQmJzUzMjY9ATM1IwKAK4BVgIBVgBcdNycnNxwXMiOAFh03Jyc3HRaAIzIrqwKAq1UBVaur/qtYDCscJzc3JxwrDFgjMoIMLBwnNzcnHCwMgjIjVasAAAEAAP/AAsADwAAsAAABLgE1NDYzMhYXMy4BJzUjFQ4BFRQWFx4BFRQGIyImJyMeARcVMzU+ATU0JicB90g4PTc5LwJfAkRDgD5YcFlQMCxHQjoDXwRcPoA+V4BJAdoSKx4jLDEoN1sQXlwOTz5JURYTNh4WNjQmRlAOXFsMSkJbThMAAAIAAP/AA1UDwAAHAAwAAAEjESMRIxc3ARUhNSECq4BWgKur/gACqv1WAYABq/5Vq6v/AFVVAAAAAwAA/8ADVQPAAAcADwAUAAAlMxUzNTMnBwEjNSMVIxc3ARUhNSEBVYBWgKurAVaAVoCrq/4AAqr9VoCrq6urAlWrq6qq/wBVVQAAAAIAAP/AA1UDwAAHAAwAAAEzETMRMycHAxUhNSEBVYBWgKurqgKq/VYB1f5WAaqrqwFWVlYAAAAAAgAA/8ADKwPAAAcADAAAASMRIREjCQEBFSE1IQMrq/8AqwErASv9qgJW/aoCKwEA/wD+1QEr/oBWVgAAAgAA/8ADKwPAAAYACgAAASERMwkBMwMhFSEBgAEAq/7V/tWrqwJW/aoBAAEAASv+1f6rVgAAAAABAAD/wAOAA8AACgAAARUhNycJATcnIREDK/3OmT3/AAEAPZkChwKAq5k9/wD/ADyZAQAAAgAA/8ADKwPAAA0ALwAAATI2NRE0JiMiBhURFBYlFAcOAQcGIyInLgEnJjUjFBceARcWFxUzNTY3PgE3NjUjAgA1S0s1NUtLARcTEj8pKSwsKSk/EhNJFRRGLi80VjQvLkYUFUkBK0s1AQA1S0s1/wA1S4AwKCg6EBAQEDooKDA3MTBNGRkIjIwIGRlNMDE3AAAAAAMAAP/ABAADwAANAB0AIQAAEyE1ISIGFREjFSE1IREFISIGFREUFjMhMjY1ETQmAyMRM6sDAP0AJDJVAlX+VgMq/wARGRkRAQASGRk8q6sCq1UyI/4qgIAB1lYZEf5VEhkZEgGrERn+gAErAAIAAP/AA9UDwAAeAD0AAAEiBw4BBwYVMzQ3PgE3NjMyFx4BFxYVMzQnLgEnJiM1IgcOAQcGFTM0Nz4BNzYzMhceARcWFTM0Jy4BJyYjAgA+NjdRFxhWEBE6JycsLCcnOhEQVhgXUTc2PmFWVX8lJVUeHmlGRk9PRkZpHh5VJSV/VVZhAgAYF1E3Nj4sJyc6ERERETonJyw+NjdRFxirJSWAVVZhUEZGaB4eHh5oRkZQYVZVgCUlAAACAAD/wAOAA8AABgAMAAAtAQcJAScFNQkCFwUCAP7FRQGAAYBG/sYBgP6A/oBGATqU9DX+1QErNvVsASsBKv7WNvUAAAEAAP/AA4ADwAAVAAABNSU1NCYjIgYdAQUVJRUHFTcXNSc1A4D+qyYaGyX+qgFWVpaVVQEAVdbqGyUlG+rWVWvrQEArK0BA6wAAAAACAAD/wAPVA8AACwAbAAABMjY1NCYjIgYVFBYBIREhESMRMzUhFTMRNCYjASs1S0s1NUtLAjX+qv6rVVUDAFVkRgGASzU1S0s1NUsBAP7VAYD9gICAAYBHZAAAAAkAAP/AA1UDwAADAAgADAAQABUAGQAeACIAJgAAEzM1IwEzNSMVITM1IzUzNSMFMzUjFQEVMzUFMzUjFQEzNSMRMzUjq6qqAQCqqv8AqqqqqgEAqqoBAKr+VqqqAQCqqqqqAlWr/VWrq6tVq6urqwGrq6urq6v/AKv+VasAAAAAAQAA/8ADAAPAAAUAAAkBFzcXNwIA/wA8xMQ8AlX/ADzExDwAAQAA/8ADAAPAAAUAAAEHJwcJAQLExMQ8AQABAAI8w8M8/wABAAAAAAMAAP/AA4ADwAADAAcACwAANyE1ITUhNSE1FSE1gAMA/QADAP0AAwCrVYBV1lZWAAMAAP/AA1UDwAAMABkAJgAAASIGFRQWMzI2NTQmIyEiBhUUFjMyNjU0JiMhIgYVFBYzMjY1NCYjAQAjMjIjIzIyIwIAIzIyIyMyMiP/ACMyMiMjMjIjAgAyIyQyMiQjMjIjJDIyJCMyMiMkMjIkIzIAAAAAAwAA/8ACVQPAAAsAGAAkAAABMjY1NCYjIgYVFBYXIgYVFBYzMjY1NCYjESIGFRQWMzI2NTQmAgAjMjIjIzIyIyMyMiMjMjIjIzIyIyMyMgJVMiQjMjIjJDJVMiMkMjIkIzL/ADIjJDIyJCMyAAAAAAIAAP/AAsQDwAAGAA0AACUXNxc3JwcBJwcnBxc3ATw9h4c9xMQBiD2Hhz3ExJI9iIg9w8MCMjyHhzzExAAAAAACAAD/wALEA8AABgANAAABFzcnBxc3EScHFzcnBwIAhz3ExD2Hhz3ExD2HArKHPMTEPIf98Yg9w8M9iAAEAAD/wAOAA8AAHAAoADQAOQAAAS4BIyEiBgcDERQWOwEyNj0BIRUUFjsBMjY1EQMBIiY1NDYzMhYVFAYhIiY1NDYzMhYVFAYlNyEXIQMnBiEV/ioVIQZZGRIqEhkCABkSKhIZWf3uGiYmGhslJQG7GyUlGxomJv3QQAHWQP2qAtUTGBgT/wD+qxIZGRIrKxIZGRIBVQEA/lYlGxomJhobJSUbGiYmGhsl1cDAAAAAAAMAAP/AA4ADwAAGAB8AIwAAAScHJwcXNxMjNSMVITUjFSMiBhURFBYzITI2NRE0JiMRIREhAsEt0FstiP1qK1X+qlUrIzIyIwJWIzIyI/2qAlYB0y3QWi2I/gFYVVVVVTIk/asjMjIjAlUkMv1VAdUAAAAAAwAA/8ADgAPAAAsAJAAoAAAlNxc3JzcnBycHFwcBIzUjFSE1IxUjIgYVERQWMyEyNjURNCYjESERIQGNaGguaGguaGgtaGgByytV/qpVKyMyMiMCViMyMiP9qgJW1WhoLmhoLWhoLWhoAihVVVVVMiT9qyMyMiMCVSQy/VUB1QACAAD/wAOrA8AAEgAdAAABISchIgYVERQWMyEyNjURNCYjAScHNyc/AR8BBxcDVf6rVf8AJDIyJAKqJDIyJP7umJkoh7JGRbKHKAKrVTIj/gAkMjIkAaokMv4AWVmtdQ+kpA91rQAAAAQAAP/AA1UDwAAOABIAFgAaAAABIQsBFBYzITI2NRE0JiMBIzUzFyM1MxcjNTMDAP6r/wEyIwIAIzIyI/8AVVWAVVWAVVUDVf8A/gAjMjIjAqsjMv8Aq6urq6sABwAA/8AEGwPAACEALQA5AEUAUQBdAGkAAAEiBiMiJiMiBwYCFxYzMjc+ATc2MzIXHgEXFjMyNzYCJyYBIiY1NDYzMhYVFAYlIiY1NDYzMhYVFAYXIiY1NDYzMhYVFAYnIiY1NDYzMhYVFAYXIiY1NDYzMhYVFAYlIgYVFBYzMjY1NCYC4CJ2ODh6HmdNTUgNDU1BKitWNjdZSDo7Zi8uME0ODUdNTf3pO1VVOzxUVAFCDRMTDQ4SElQNExMNDhISDg0TEw0OEhJSDRMTDQ4SEv2yIS8vISIuLgMxQEBzdP7sdHMhIlEiIiIhUCEic3MBFHNz/mBVOzxUVDw7VVATDQ4SEg4NE2ATDQ4SEg4NE8ATDQ4SEg4NE2ATDQ4SEg4NE5AvISEvLyEhLwAADgAA/8AEFgPxAA4AEgBLAFQAWQBeAGIAZgBuAHMAewCKAI4AkgAAEwEwNz4BJyYnJicmBgcGBQcXNxcnJiIPASc3NiYvASYiDwEnNzY0LwEmIg8BBhQfARYyPwEXBwYWMRcwFj8BFwcGFB8BFjI/ATY0JwE3NjIXByY0Nxc3FwcnFzcXBycXNxcHFzcXBxcGIic3FhQHAyc3FwcFNzYyFwcmNAUHBiIvATcnByc3FxYUBycHFzcnBxc3AAFkDAsKCwstLTg3YyEiA7y1F7VDyxM1ExEyWRMDE24TNRNRKwMTE8sTNROIExPMEzUSLSxSEwQ3kRNHMhwTE8sTNROHExP8FIgJGgq1CgoWtha1Fy61FrUWLbUXtRa1F7VEChoJtQkJLhHqEeoBAogJGwm1CQGKiAkbCYi1F7UWtbUJCRe1F7VxtRa1AST+nCEiYjg4LSwLCwkLDBy1F7UWyxMTETJZEzgSbxISTysDEzUSzBMTiBI1E8wTEy0tUhKSNwMTRjEcEzUTzBISiBM1EwJ4iAkJtQkaCkS1F7UXLbUXtRcutRa1F7UWthYKCrUKGgn+zhHqEeqoiAkJtQkbaIgJCYi1F7UWtbUJGwlEtRe1cbUWtQAAAwAA/8ADYAPAABUAJAAtAAAXETM1NDc+ATc2OwEyFx4BFxYdATMRAQczJz4BNTQmIyIGFRQWEzQmIyIGHQEhgGAUFEYuLzUgNS8uRhQUYP54GGAYEhYmGhslFtpnSUlnAWAgAgCgNS8uRhQUFBRGLi81oP4AAQenpwcgFBslJRsUIAGCSWdnSZAAAAACAAD/wAQAA8AAHgAtAAABNTQmIyIGHQEzESERITU0Nz4BNzY7ATIXHgEXFh0BBSIGFRQWFwczJz4BNTQmA6BnSUlnoP0gAeAUFEYuLzUgNS8uRhQU/XAbJRYSGGAYEhYmAeCQSWdnSZL+AgIAoDUvLkYUFBQURi4vNaB+JhoUIAenpwcgFBslAAAAAAf//v/AA+IDwAAeACMAOwBAAFkAcgCKAAABFAYHFRQGIyEiJj0BLgE1NDY3NTQ2MyEyFh0BHgEVISMVMzU3LgEjIgYHDgEVFBYXHgEzMjY3PgE1NCY3AzMTIxcuASMiBgcOARUUFhceATMyNjc+ATU0JicHIiYnLgE1NDY3PgEzMhYXHgEVFAYHDgEjJyImJy4BNTQ2Nz4BMzIWFx4BFRQGBw4BA+I2LBIN/R4NEiw2NiwSDgLhDRIsNv2cf3+YBxIMDBIHBwcHBwcMDAwYBwcGBmWjIKMgMwcSDAwSBwYHBwYHEwwLEgcHBwcHJQQFAgMCAgMCBQQDBgICAwMCAgYDnwQFAgMCAgMCBQQDBQIDAgIDAgUBwDNQEkoNExMNShJQMzNQEkoNExMNShJQMyAgbQcHBwcIFhAPFwcIBwcIBxcPEBYb/wABAJMIBwcIBxcPEBcHBwgIBwcXEA8XB1EDAwMPDAsPBAMCAgMEDwsMDwMDA38DAwQPCwsPBAMDAwMEDwsLDwQDAwAAAAkAAP/AA8ADwAAXABsAJwArAD4AQgBGAEoATgAAASM1JxchNwcVJyIGFREUFjMhMjY1ETQmJzMVIwUyFhUUBiMiJjU0NiczFSMDMDY3PgExMBYzMjYxMBYXHgExJSE1ITUhNSE1ITUhNSE1IQOAP4EB/nsDf0AaJiYaAwAaJia6QED+YB0pKR0dKSlDQEArDA0NNiQKCiQ2DQ8KAXf+4AEg/uABIP7gASD+4AEgAqBeAmBgAmACJhr+QBomJhoBwBomQIBaNiYmNjYmJjbagP6CPwkJCiIiCgkKPh4gICAgICAgAAcAAP/ABAADwAADAAcAEAAcAOAA6QD1AAA3ESERAREhEQU0JiMhESEyNjcyNjU0JiMiBhUUFicOATEGIiMiJicuAScuAScuASMiBgcOAQcOAQcOARUUFhceARceARceARceARceARceARceARUUBgcOAQcOAQcGIiMVIzUiMCMiJicuAScuAScuAScuASc0JjU8ATc0NjU0NjUyNjMyFhceARceARceATMyNjc+ATc+ATc+ATU0JicuAScuAScuAScuAScuAScuAScuATU0Njc+ATc+ATc+ATc1MxU6ATMeARceARceARceARUwFhUWFBUcARUcARUUBhUHFBYzIREhIgYHIgYVFBYzMjY1NCYABAD8QAOA/uBeQgGg/mBCXoAUHBwUFBwcyAEBAQIBAQMDAgYDBAgFBAoGBAgDAwUDAgMBAQECAwIGBAQJBQUKBgUKBQUJBAQGAgMCBAMECwYHDwgCAgEfAQEGDQUGCgUECAIDBQEBAgEBAQECAQIBAQQDAgcEBAkGBQ0IBAkEBAYDAgQCAQIDAgMGBAQIBQUKBQYKBQQJBAQGAgMCAwQDCQYGDggECAUfAQIBBAkEBAcDAwQBAQIBAQHkXkL+YAGgQl6AFBwcFBQcHKACQP3AAgL+PgHC4lBw/oBwECYaGiYmGhomkQICAQEBAgMCAQMBAgEBAQEDAgIEAwIGAgUHAwQFAwIFAgIFAgIGAwMHBAUKBQYOBwsSBwgNBQUIAgEjHgECAQICAQQBAgMBAgMDAgcFAwUCAgQBAQIBAQIBAgQCAgMCAgEBAQEDAgMFAwMHBAQIAwMFAwIFAgIFAgMFAwMHBQQKBgYNCQkQBwcMBQQHAwEBASEhAQIBAQMBAgIBAQIBAgECAgICBAMDBQICAwFRUHABgHAQJhoaJiYaGiYAAAAACQAA/8AEwAPAAAUADAAQABUAMQA9AQEBHQEpAAAlEwU1IREHJxMhNSERByERIQchESERAxQWFyEyNjU0JiMhDgEVFBYzMjY3ES4BIyIGFSciBhUUFjMyNjU0JicwFhUUFhUcARUcARUUBhUOATEGIiMiJicuAScuAScuASMiBgcOAQcOAQcOARUUFhceARceARceARceARceARceARceARUUBgcOAQcOAQcqAQcVIzUwIjEiJicuAScuAScuAScuAScmNDU8ATU0Njc0NjM+ATMyFhceARceARceATMyNjc+ATc+ATc+ATU0JicuAScuAScuAScuAScuAScuAScuATU0Njc+ATc+ATc+ATc1MxU6ATMeARceARceARceARUHFBYzIT4BNTQmIyIGBxEeATMyNjU0JichIgYVJyIGFRQWMzI2NTQmBIAC/B4EIGBAAvweBCBe+/4EAkD8fgOCYQIC/pxCXl5CAWQCAh0TBQgEBAgFEx1AFBwcFBQcHPEBAQEBAQECAQEDAwIGBAMIBQQLBQQIAwMGAgIDAQEBAgIDBgQECQUFCgUGCgUFCQQEBgIDAgQDBAsGBw8JAQIBIAEHDAYGCgQFBwMDBAECAQEBAQEBAQEBAQIEAgMHBAQJBgUNBwUJBAMHAwIEAgEBAgIDBgQECAUFCgYFCgUFCAQEBgMCAwQDBAkGBg4IBAgEIAECAQQJBAQHAwMEAQEC411D/pwBAhwUBAgEBAgEFBwCAQFkQ12BFBwcFBQcHOACIwE//Z9hAQIiPv2fQAJBPv49AcP+bgUIA3BQUHAECAQUHAIB/vkCAh0T8yYbGiYmGhsmMAIBAQMCAgQDAwUCAgMBAgIBAQECAwECAwECAQEBAQMCAgQDAgYDBAcEAwUDAgUCAgUCAgYDAwcFBAoGBQ4IChIIBw0FBQgDASMfAQEBAwECAwICAwEBBAIDBwQEBQICAwIBAgEBAgIBBAICBAECAgECAQMCAgUEAwcDBQcEAwUDAgUCAgUCAgYDAwcFBAoGBQ4JCRAHBwwFBAcDAQEBISEBAgEBAwECAgEBAgFzUHADCAUTHQICAQcBAhwUBAgEcU9DJhsaJiYaGyYAAAIAAP/AA0EDwAAgAC0AAAEhAycHHgEVFAcOAQcGIyInLgEnJjU0Nz4BNzYzMhYXNwEUFjMyNjU0JiMiBhUCHQEkAWReEBEUFEYuLzU1Ly5GFBQUFEYuLzUlQx1e/p1LNTVLSzU1SwMA/tlkXxw/IzUuL0YUFBQURi8uNTUvLkYUFBQRXv7HNUtLNTVLSzUAAAIAAP/AAwADwAAmADMAAAEVMxUjFSM1IzUzNSYnLgEnJjU0Nz4BNzYzMhceARcWFRQHDgEHBgMiBhUUFjMyNjU0JiMCQYCAgn9/KSMjMw4PFBRGLi81NS8uRhQUDw4yIyNrNUtLNTVLSzUBaWmAgICAaQsXGEEoKCw1Ly9FFBQUFEUvLzUsKShBFxcBbEs1NEtLNDVLAAAABgAA/8AD4APAAAMACQARABkAIQAnAAA3ESERASMRIxEzEyMRIxEjETMTIxEjESMRMxMRIxEzESMRMyMRIxEzAAPg/OAggKDAIGAgoMAgYCCgQCCgIOCAIKBAAuD9IAFAAYD9YAEgAYD+gP7gASABgP6A/uACoP6A/uABIAGA/oD+4AAAAgAA/8ADoAPAADAAPQAAAQcnBgcOAQcGIyInLgEnJicHJxcHHgEzAy4BNTQ2MzIWFRQGBxQVFhQVBjEyNjcnNwE0JiMiBhUUFjMyNjUDoCRKFh8fUTIxOzszMlEfIBZDJv1GJWs6ASk2VDw8VDcrAQE3aSVB/f6bKx8fKysfHysBXfdHEhUUIwsLCwshFBMSQfUlRBs1AZQOSC06UlI6LkgOHkJDiTQ0OR0/JQFgHisrHh4qKh4AAAEAAP/AA64DwAASAAABNjIXFhQHAQYiJwEmNDc2MhcBA3wKHgoKCv5rCh4K/msKCgoeCgF8ApQKCgodC/5wCwsBkAsdCgoK/pIAAAABAAD/wALHA8AAEgAAJRYUBw4BJwEmNDcBNjIXFhQHAQLHCwsKHQr+bwsLAZEKHQoLC/6TUQoeCgoBCwGVCh0LAZUKCgsdCv6EAAAABAAA/8ADmAPAAA4AEgAbACIAAAEjLwEjETM1Mx8BMxEjFRczEyMXIwMzNzMXMwMHPwEzHwEjAT4CQ1I/RgM6WUBGXzSBNP9HfEsXexVMe04OGwIcDlUBk2Z5/p/eWYUBYd+XAYgS/p9JSQFh3S5cXS0AAAABAAD/wAL7A8AAEwAACQEmNDc2MhcBFhQHAQYiJyY0NwECpv6TCwsKHQoBkQsL/m8KHQoLCwFtAc0BfAodCwoK/msKHgr+awoKCh4KAXwAAAEAAP/AA64DwAATAAATBiInJjQ3ATYyFwEWFAcGIicJAYQKHgoKCgGVCh4KAZUKCgoeCv6E/oQBBgsLCh0KAZEKCv5vCh0KCwsBbf6TAAAAAwAA/8ADwQPAAB8APwBfAAATPgEXHgEzMjY3PgEnLgEHDgEnJicmBgcGBw4BFx4BNwUOAScmJyYGBwYHDgEXHgE3PgEXHgEzMjY3PgEnLgEHEQ4BJyYnJgYHBgcOARceATc+ARceATMyNjc+AScuAQeHQ42QRXEuUnAuEAMNDioQQ42QX0hHbioqJBADDQ4qEALyQ42QX0hHbioqJBADDQ4qEEONkEVxLlJwLhADDQ4qEEONkF9IR24qKiQQAw0OKhBDjZBFcS5ScC4QAw0OKhAChzo1USggSScOKxEQBA45NVE2DAsaHx4fDisQEQQObzo1UjUMDBseHh8OKxEQBA45NVEnIUonDisQEQQO/vo5NVE2DAsaHx4fDisQEQQOOjVRJyFJJw4rEREDDgAAAAQAAP/AA7QDwAAPABkANgDrAAABMhYXAS4BKwEiBhcBPgEzASMiBgcDFwE2JgEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjFxYGBw4BFxYGBw4BFxYGBw4BFRQGIyYGFRQGJyYGBw4BJyYGBw4BJyYGBwYiJy4BBwYmJy4BBwYmJy4BBwYmNTQmByImNTQmJy4BNzYmJy4BNzYmJyY0NzY0JyY2Nz4BJyY2Nz4BJyY2NzI2NTQ2MzI2NTQ2MxY2Nz4BFxY2Nz4BFxYyNzYyFxYyNzYWFx4BNzYWFx4BNzIWFRQWMzIWFRQWMx4BBwYWFx4BBwYWFx4BBwYUFwIAFCcS/skCCAS2BAQCAT8aOyABrrYECALEZwEnAgT+TiomJTgQEBAQOCUmKiomJTgQEBAQOCUmKmwDAQMDAQECAgMDAwEBAwMDBAQDBAUFBAMGAQEGAwMHAQIGAwMGAwIGAgMHAgMGAgEHAwMGAQEGAwQFBQQDBAQDAwMBAQMDAwICAQEDAwICAgMBAwMBAQICAwMDAQEDAwMEBAMEBQUEAwYBAQYDAwcBAgYDAwYDAgYCAwcCAwYCAQcDAwYBAQYDBAUFBAMEBAMDBAIBAwMDAgECAQMDAQMCAgHNBwYB0gQECAT+IQ4QAc0EBP7bmgG7BAj+ABARNyUmKislJTgQEBAQOCUlKyomJTcRENMDBgICBwMCBgIBBgQDBQEBBQQDBQEFBAMEAQEEAwMDAgECAwMBAgIBAgMDAgECAgEDAwIBAgMDAwQBAQQDBAUBBQMEBQEBBQMEBgECBgIDBwICBgMCBwMCBwECBwMDBgECBgMEBQEGAwQEBQMEAwEDBAMCAQIDAwMBAgIDAwMDAgIBAwMDAgECAwQDAQMEAwUEBAMGAQUEAwYCAQYDAwcCAQcCAwcCAAAAAAIAAP/AA9QDwAA7AEcAAAEGBwYEBwYHDgEXFhceARcWOQEXMDc+ATc2NzYWBwYHDgEHBjkBBxcwFx4BFxYXFjY3Njc+ATc2NzYmBwEUFjc2Nz4BNzYxJwO6BoyM/rSMiwcLAg0IHx9FHBtzV1fSWFgDBQoEAkA/lj4+GB8mJV0oKQYLGAQCFxc2FxYCAw8O/awKBwUYFzQVFaMDRgIyMXUxMQMDEAUDDQwcCwsuQD+aQUECBAsEAkVEokRDGhAUFTEWFgQFCQ4IY2PqYmIFDQ4F/RgJBQcEFRUvExNUAAAAAwAA/8AEAAPAAAwAMABVAAABFBYzMjY1NCYjIgYVJzY3PgE3NjMyFhcWMjc2NCcmJy4BJyYjIgcOAQcGByMVMzI2BSIGBwYHDgEHBiMiJicmIgcGFBcWFx4BFxYzMjc+ATc2NzM1IwFcYEREYGBERGB0ChoaSi4vMztpJxIzEhISHCEhSSgpKkU+PmcmJRR5pCYbAncmGwMKGhpKLi8zO2knEjMSEhIcISFJKCkqRT4+ZyYlFHmkAc1EYGBERGBgRD0xKSk8ERIuJhISEjISHBYXHwgIFRVNNDU+ey4uLw8wKSk9EREtJxISEjMSHBYWHwgJFhVMNTU+ewAABAAA/8ADzQPAAAwAHAA1AEEAAAETIwcOARUUFjMyNjcXMjY1NCY1JyMHBhQVFBYzBRUhNQ4BIyImJxEUFjMhMjY1EQ4BIyImJzcnIxMeATMyNjU0JgE5KdNYAgJNNzJKBsc3TQEa0hoBTTcBAP4AESUTCA4HKh0CPh0qBw4IEyURyVjTKAZLMjdNAgJaAQzmBg0HKjw0Jlo8KgIDAvn5AgMCKjw2ysoGBwIB/rseKioeAUUBAgcGtub+9CY0PCoHDQAAAAMAAP/AA80DwAAYACgAMwAAASEHDgEjIiYnLgE1NDY1ISIGHQEhNTQmIwUBNjQvASYiBwEGFBcWMjcBHgEzITI2NxMhEwOu/wBdES0ZGSwSERMB/tINEgOaEg3+eQEDCQkvCRkJ/v0TExM1Ev6dAxwQAhoQHANO/OxOAmZcEhISEhEtGAIDARIMe3sMEjMBAwkZCi8JCf79EzUTEhL+JhAWFhABQf6/AAIAAP/AA5oDwAArADkAAAEWBw4BBwYXFjc+ATc2NzY3PgE3NjURNCcuAScmIyIHDgEHBhUUFx4BFxYXJTI2PQE0JiMiFhURFAYBRQMbGjAHBykJFRU8KCcuGiYnSBoaKiuCTk5IGh4eNBERIiJSJCMCAbsZgYEZGUxMAUYHICBcNjYzDBcYTy0tHxIZGjcbGxQBXxgYGCYMDEZGslJTGhsODhAFBAcFN2j5aDIzQP65RDQAAAIAAP/AA5oDwAArADoAAAEmNz4BNzYnJgcOAQcGBwYHDgEHBhURFBceARcWMzI3PgE3NjU0Jy4BJyYnBSIGHQEUFjMyJjURNDYjArsDGxowBwcpCRUVPCcoLhomJ0gaGisqgk5OSBoeHjQRESIiUiQjAv5FGYGBGRlMTBkCVAcgIFw2NjMMGBdPLS0gERkaNxsbFf6iGBgYJgwMRkWyU1MaGg4PEAQFBwU3afhpMjNBAUZENQAAAAADAAD/wAPHA8AAEgAlAEMAAAEyNjcuAScOASMiJicOAQceATMRMjY3LgEnLgEjIgYHDgEHHgEzAScXFAcOAQcGIyInLgEnJjU3Bw4BFwUWMjclNiYnAgBchgUOHQ8KY0BAYwoPHQ4FhlwrSAwRGgkGLRgYLQYJGhEMSCsBwsEWFhdMMzI5OTIzTBcWFsEoAyYBaiZuJgFqJgMoAWI4KCdSKR4lJR4pUicoOAFYGBUuSxgRERERGEsuFRj+dk09GRUWIAkJCQkgFRYZPU0QNRTCFRXCFDUQAAADAAD/wAPZA8gAFwAvAEcAAAEGBw4BBwYVFBYzMjY1NCcuAScmJyYiBwEGBw4BBwYVFBYzMjY1NCcuAScmJyYiFSEGBw4BBwYVFBYzMjY1NCcuAScmJzQiBwH6ChoaNxYVY0NDYxYVNxoaCgEKAf7NChoaNxYVYkRDYxYVNxoaCgELAmYKGho3FRZjQ0RiFRY3GhoKCwEB+08zM1EnJjdEYGBENyYnUTMzTwUFAc1PMzNRJyc3Q2BgQzcnJ1EzM08FBU8zM1EnJzdDYGBDNycnUTMzTwUFAAAJAAD/wAOwA8AACwAZACQALwA9AEsAZwErATYAACUhPgE3ITIWFRQGIzUhPgE1NCYnITIWFRQGJyEuASchMhYVFAYnIS4BJyEyFhUUBichIiY1NDYzITIWFRQGJyEiJjU0NjMhMhYVFAYBFAcOAQcGIyInLgEnJjU0Nz4BNzYzMhceARcWBy4BJy4BJy4BJy4BJy4BJy4BJy4BNTQ2Nz4BNz4BNz4BMzIWFx4BFx4BFx4BMzoBNzA2NzQ2NTwBNTwBNTQmNTQmMTQmJy4BJy4BJy4BJyoBIzUjFSIGBw4BBw4BBw4BFRQWFx4BFx4BFx4BFx4BFx4BFx4BFx4BFRQGBw4BBw4BBw4BIyImJy4BJy4BJy4BIyIGIw4BFQYUFQYUFRQWFR4BFx4BFx4BFx4BFx4BMzIwMRUzNToBNz4BNz4BNz4BNTQmJxchMhYVFAYjIT4BA5D+eAkNBAFuDRMTDf6YAQICAQFoDRMTDf6SBA0JAYgNExMN/mIPJxYB6g0TEw3+AA0TEw0CAA0TEw3+AA0TEw0CAA0TE/5zEhE9KSkuLikpPRESEhE9KSkuLikpPRESkQIGBAQJBQUKBQYKBQUJBAQGAgMCAQEBAwIDBQMDCAQGCgQFCAMEBgIDAwEBAgEBAQEBAQIBAQQDAwcEBAkEAQIBIAQIBAgOBgYJBAMDAgIDBgQECAUFCgYFCgUFCAQEBgMCAwIBAgQCAwYEBAkECA0FBgkEBAcCAwQBAQIBAQEBAQEBAgEBBAMDCAQECwUGDQYBIAECAQkPBwYLAwQEAgNzAZ4NExMN/hYWJ+APIBETDQ0TYAgQCAgQCBMNDRNgESAPEw0NE2ATIQwTDQ0TYBMNDRMTDQ0TYBMNDRMTDQ0T/qAuKSk9ERISET0pKS4uKSk9ERISET0pKUYFCgUEBwMDBgIDBAICBQIDBQQDBwUCBgIDBAICAwEBAQECAQMBAgMCAQEBAgIBAwICBQMDBAICAgIBAgECAQECAgEDAQECASEhAgEDBwQFDAcHEAkIDgYGCgQECAMDBQMCBQICBQICBgMDCAQEBwMDBQIDAwEBAQECAgMCAgQCAQIBAQIBAQQCAgUDBQcCAwMCAQMCAQQBAgIBAQEfIwECCAUFDQgIEQsHDgaIEw0NEwwhAAAABAAA/8ADfwPAAAwAEwAaAB8AAAE1IREjFyMVIREzNRclIRUlAzMRByEVIREzEQURIREhAR8CYGACY/2jX18CP/3gAeMCP1793gHgQv1/AiD94AKeYf5CYV8Bv2EDQkIC/r8BgWE//sEBfl7+fwGBAAMAAP/AA4ADwAADAAkADwAANyERITchETMRITcHIREzEWACYP2gXgIiQP2gYAICIkCAAcAg/oABwGBA/oABwAACAAD/wAN5A8AAOAA/AAABLgE1NDY3JwcWBgcBMzIWHQErATEjNTQ2OwEBBiY3PgEXNycmND8BNjIfAT4BMzIWFxYHDgEHBiM3MBYHBiYxAjImLg0LI9UdBSMBHYwNE5gB7RMNjP7zKCcBAS0t2hYJCUUKGwpTFCsWOV8fATMzezMzAfwpKSlSAXwgWzYbMRcj1RgtF/7jEw0hIA4TAQ0RITM2HRjaFgkbCkUJCVMICS8pATEydjIxzFMpKSkAAAAGAAD/wAO+A8AANABVAFkAXgBiAG4AAAEWFAcOATEXFhQHAQYiLwEHFxYUBwYiLwEmNDc2Mh8BNycmNDcBNjIfATA2NzYyHwE3FQcXJyYiDwEXBycHFwcnBxcHJwcXBycHBhQfARYyNwE2NC8BBzcXBwcnNxcHBzcXBwEUBiMiJjU0NjEwFgMFCQkJDRYSEv64EjMTFVgsCQkJGgmvCQkJGgksVxYSEgFIEjQSFg0JCRkJC6+ZC5kJGglBKxYrQiwWLBZYFlhBVxZXFgkJgwkaCQFICQmDWBZYFlhXFlcW2hYrFgJZGBIRGSoqApkJGQkJDRYSNBL+uBISFlcsCRoJCQmvCRoJCQksWBYSMxIBSBISFg0JCQkLryuaCxYJCUEsFixCLBYsFlcWV0FYFVcWCRoJgwkJAUgJGgmDKxVXFldXFlgVLBYsFgEXEhgYEhFFRQAACQAA/8ACwQPAAAMABwALAA8AEwAXACsAQABQAAABNTMVJzMVIzUzFSM1MxUnNTMVIzUzFSMTFAYjIiY1NDY3ETQ2MzIWFREeAScRNCYjIgYVEQ4BFRQWMzI2NTQmJwMiJjU0NjcRMxEeARUUBiMCX2JiYmJiYmJiYmJiYjhuTk5uNCw5Jyc3KTF5JRoaJCs3W0FBXDIoQzRJOCo/JzNKNAGDHR1eIF8gYB8CYCFgIP35Tm5uTjZXGAGjJzc3J/5YGFVaAbsaJSUa/kkRTzFBXFxBL0wS/vZJNC1ECQEr/tMMQSs0SQAAAAMAAP/AA6UDwAArADgARgAAAQMjEyMRFhceARcWMRUhNTA3PgE3NjMRIxMjCwEjEzUzNDYzMhYVMxUTIwMBFAYjIiY1MDM6ATMyMzAzOgEzMjEUBiMiJjUDAnkjgccPKSlXISH9ziIiVigoDMCAI3h5I4HYJhkbJNyEI3n+n1VJSFYxMXcxMscyMXcxMlVKSFYC7f70AR79ZwEKCxoLCiEjCgsZCwoCmf7iAQz+9AEfISEuMB8c/twBDP7UQWhoQUFoaEEAAAAABgAA/8AEAAPAAAsAJwAzAEwAaAB0AAABMjY1NCYjIgYVFBYTIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmAyImNTQ2MzIWFRQGAzM1IycuASMiBg8BDgEVFBYfARUzESc3FwUiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYDIiY1NDYzMhYVFAYCqx8tLR8gLS2gLCcnOhERERE6JycsLCcnORERERE5JycsPlhYPj5XV/K0iVIKIRQPGgqeCgsTEY9NYGNJ/l4sJyc5ERERETknJywsJyc6ERERETonJyw+V1c+PlhYAt4tICAsLCAgLf7NERE6JycsLCcnORERERE5JycsLCcnOhER/pVXPj5YWD4+VwHATYsQFAwKnQobDxQgClfVARRHZGpVERE6JycsLCcnORERERE5JycsLCcnOhER/pVXPj5YWD4+VwAAAAoAAP/AA4ADwAAJAA0AEQAWABoAHgAjACcAKwAvAAABEScHFSERIREhASM1MzUjNTM1IzUzFQEjNTM1IzUzNSM1MxU1IzUzASM1MzUjNTMCgICA/wADAP8A/qtWVlZWVlYBAFZWVlZWVlZWAQBWVlZWAdUBAICAVf2rAar+q1VWVVVWVv6rVVZVVVZWq1X9q1VWVQAXAAD/wAQAA8AAGwBHAMQAzQDWAPgD/wQsBPAE+QUDBQwFHwVMBVUFYwVpBX4FjgWUBZoFpAWuAAAFIicuAScmNTQ3PgE3NjMyFx4BFxYVFAcOAQcGATI0NxQWFzAiFzA0MR4BMzI2NzIUMTA0MT4BNTQmIyIGBzgBIzYmJxUUBhUlNCYjMCYjNCYHBhYVMhYXFiY1LgE1LgExNCYjLgEjNCYnNCY3NCYnDgEVFBceARcWFzQ2MzQ2MzQ2JyY2NzYmMzQ2JzImFyImNS4BNTImFSY2NyY2MzQ2NxY2IzwBNTQmBy4BJzYmJzYmIzQmJyImIyImIyYiJyImNS4BIwEUMDEwFjEwJhcUFhUyNjMuARc2JiciJiMmBgcGNiM0JgcOARUyFBUyNjUyFjUyFjcUNiMXNCYnMiY1LgEnLgEnLgEnFjY1IjQzJjY3NDY1IgYHFCYjJgYnJjQnLgEjJhYHMgYVLgEnJjQjNDYnNCYnIiYHBhYVNhY3FBYVNhYzBiYXFgYHNCYjLgEnIiYnDgEjBiYVMAYHDgEHBiIVLgE1IjY3MhYXNhY1MhYHOgE1IiY1NiY1LgEXHgEnNDIxHgE1MjYjNjQ1FiY3FDYzNhY3LgE1FjYVFhQXFjQ1IiYnDgEHIiYjIiYzJjIzNDY3IjYxPgE3MjYVOgEzJicuAScmIyIHDgEHBgcWFDEyNhciJiMWJiMwJiMOAQcUMDEyFhceARcWNjMwNiM2JiM0FjM2Jjc2FjceARceATUeARU+ATUyJjU2FjUyFhUyNhcWBhUOARUGFhciJjEiBicyNjcmBgcGJgcOATUGFBUeARUeARceARcUMjM0FhUiFhUiFBUWNjciNjUmNjcUNic+AScmBic2JjU2FjUyFjcWBjcUFjMUFjMUJhUyFjUyNjU2FjMeARUeARUyNhUyFhciFiMUJiMGJgcOAQcyNjcyNjcUMhUiFhceARcUBhU4ATEOARUGNjUWNjE0JjUiBiMOASMOAQc0BjMOAQciBhUOASMOARUeARcUFiM0JjM0JicmBicuASMeARUOASMuASMOARUiFDMUFhUyFjMUBjMwNjUmNjcUNjEwNjE0FgciBiMOARUGFgcWNjM8AScyBjMUFhUeAQc6ATUyFhUyJjM0MhcWNjcyNjEWMhcyNjcyFhcyFjc2FhcyFjMWMDMUFhcUFhUWBhceARc2FjMWNhUWBhceARUiFjEiFjUyFjMGFjUyFBUyNjc+ATMyFhUUBgcOATEUBjEUBiMUBgcOAQciBiMwBjMGFAcOARUiFiMiBhUUBgcUBhUyBhUiBgciBgcUBiMUJgcyFiMUBgcOASMUBhUyBhc+ATM0FiMOAQciBgceATMyNz4BNzY3NDY3HgE3JjQ3HgEzPgE1JjYXPgE1OAExNDY3MBQxPgE1PAE1DgEHFAYXIgYHIgYHIiYjNyM4ATEiJjc6ATEuAScOASMUBjMwMjEOARUUFjsBHgEXHgE3IjQ3MzI2NTQmBzoBNTI2NxQGFyIWFQ4BBxQGBw4BBzQGMxQGMxQWIxQGFQ4BByIGIxQGFTAGFQ4BFTAGByIGFSIGJzQmNSImIzQmMzQmIzQmNSImMzQ2NzYmJyImNS4BNT4BJyYGIyYGIxQmJyImNS4BNSY2MzYmJyY2NTQ2Nz4BNzYWNz4BNzY0JzA2NTYGFz4BMz4BMxQ2Mz4BMzQWMzwBNR4BBzoBMxQWFzI2NTIWBx4BBzIWMxQWMxQWFx4BFwYWFyIWFxQWMxQGMyc2FjMWNjcUJicyFCc0JjMWNjUnFjI1FgYHLgEnJjY1IiY3NhY3MjYHDgEjJjY3NzIGIzIGMTI2Nw4BFx4BBzIWBzoBNTIUIw4BIzQmBwY2NzAyJzQmIzQmNSYWFRQGJzIwNToBJyMiJjU0NjsBMhYVFAYDMhYVIgYnBiYnMhY3NCYnMhYzNAY3HgEVJiInIiYnFjI3HgEzHgEjBiYnFyoBNx4BFyIGIz4BFxQGIzY0NTIWMScyFjMUNjcUBjcCAGpdXosoKCgoi15dampdXosoKCgoi15dATUBAQMCAQECBQMEBwIBAQEJBwQHAgEBAgEB/SEMAgUBDAIBCgIIAQ4aAwcCBwgHAQgBBwMEAQECFBYWFk42NkADAgMBAQECBgEGAgUEAwIMAQkLAQMCEgcIAQcIAwICAgcFCAQEEQEBCgICEwYDAQUFBgcNBgIPAgUEAQYGAogBAQoBAQEBAQIaAQ0DAwQEAgQCBgEEBQcECAMDHwEGAwUIDgcCAgEDEQIEAQMFAQMLAQQKAwIBBAECAwQDCgECEAMFAgEHAggFAQUICAEEAgMBAwkBBQ8DAQQGBAcBBQIDAggBAQIEAQQDDAMDAwUBBAICEwoBAQYBARQHCQEDAQEBAQQOAwMCBAkCAQcOAgYDAw4EAQEHAgYFAQcBAwYDAwoBAwEFCAEBBgIEAQEFAQYJBQEIAQQJASABCBMFCAcCKwEHBB4iI00qKiwrKClLIiIeAQMIAQIDAQEIBAMCAQMBAQEEBAoFAwYDCQYBAwMMAwIBAgMFAgMEAQIPAwQHAwICAgUBAQMFAwEBAQkIFAMCCAQOBAUEAQUIAQIIAgEMCQQLCAkIAQQBCAQKAQQBBAkBBAEEAQMOBwIBAwEEAQUDAQYEDAMHAgcMAQECAgEIBAUCBwMCCgECAgUCBwEFBAMMAgMaCgYPAQcHBgUEBAIIBAMBBAECAgUJAwEEAQUGBAEFAgEFAwsBAgMBAQMEBQYDCgICAQEGBQEFAQMHBAEOBAECAgUDBQIGCQsBAQYECAQBBwUEBQMICAUDAwIBAQMCBQIFCQUBBwUEAwMEAQQMBgILBAUCAQIEAgEDAgEBAwYDBAIIAwsDAQMBAgEBAQEDAgYEAwUEBgMBBgEBAgYCAgIDAgIDCwQFAwIHBQQEAwQIBQ0TEAsCAgEDAgYBBA4CAgUDCAIBAgEDAwIFAwkEBAoBAQIIAQgDBQEBBwMBAwEFAwIDAQIBAQEBAQEFAwIFAQICARw7Hzs3N2AoKR4CAQMDAgQCAQYCAQICBAEBAQEBFRcBAgIWAQMQAgINAQoDBUERAQQCAQEBAgEDBQQFBQEGCQkHBgEDBAEOAgQBBAcJCTYBCAUMBQgBBAEDAgMLAgMLAREDAwUFAwUCBQEEBAEDBwQQCgECGAQPAgMCAQIPAgIBCAEFAgQBAgMCAQUFAwMCAQYHBgQlBxgBBA0FCwQBAgEDAQEEAgQCAwEDAwMDBAQBAQUEAQUBBQMBBQINAQIPAh0DBAwBBAYCCgMFEwMFAQQgAgQDAwcDBAMCCQUCBwIBAwENBQQGpgEEAgQBAwkWAgcBBAEBBAMCAwQBAQFTBg4CAgEBAwICBgIDBgkDAwEcBQQBAQEEAgQBBQUCAwEGAgEDAQMDAwwFAgQFAwENBwQGAgEIBAEBAQI+IAcJCQcgBwkJwQECAQQcAQsBAwUDAgEDBwUCAgEHBgUoAwoBAwUCBwUGAQcGBQoBBgIFAQMDBQECAgEDHQECAQEBRQEBAQMCCgJAKCiLXl1qal1eiygoKCiLXl1qal1eiygoAisBAQMEAgEBAgIEBAEBAgQCBwkEAwEEAxEBAwEFAwoKAw4FAwgEDwIWEAkBEQMBDwcGAQ0CDgEGDgYHDgcrXzNIQkJuKSoXDBYCCwQLBQQJBQMuERgPDQEVBQMHBBsBBAwHAhgCAwEGCgMNAgYNDAICBwQKAgYMAQEBCQYFBQ4DBBYBAQEBAQoCAwEBAQORCgQFAwEBAgIGBgQBCA0KAgMCAwkHCQIBCKMCAwIjBAELAgIKBAINBAEBBQUDBgMDCQQBAQIDAwYGBAgHAwICDwIJAwINAgMDAwkBAQICEwUDBAIBDgEBAwIBBgMGBQQGAwQOBQIECwEBAgUEARkCBgMFAgICCQcZAwIBAQEEAwMFAQIHDAQBBgIBAwcBAQUFBAMEAgQIAwUIBAEEAQ4DAQcEAgcBAwcDCwQBAQEDCgYGAwkSBAcBCgQcFhYfCQgICB0VFRoBAwEEAQkFAQECAQEEAQECAQECBQQCAwIEAgQFAgQBAwQBEgsBCwQBCQUEAQEDAwECAQEBCwMEAQIGBwMBBAMJBgEEBQcGBAEFAgINCQILAwICAQECAQUGDgIJAgEBAQEEBgIDBwEDBwIECgMCAQMBDQQBAgEFBwQEAgEMAQMCAgMBAgcEARIDCAMCAQQHBwUDBQQDDQcDAhIGCAIFAQECCAQCAwEBAwEBAgEBAQIBAQMBAQMBBQMLAgEIAwIFCwECDgcFCgIPBAQHAQgCDAIDAwEDAgIDAgECAQUBDQkXBQcECwQBBAIBCQEEBgMFBgIHBAYEBAQEAQEBAQERBQcDAgYEBQcEEAIBAQUBAgECAwIMAQECAQMBAwEBAQMDAgECAgIBAgEFBQIBAgUBBAIJBAsFBgYDAwUMAwMBAgMTDQwRAgICAg8CEgcFBwIIAwMIBA8DAgEDAwcEBQcDAgIECwEDAgIEAQUFBAMIBQMEAQYEBgMDAQECAwUEAwUCAgcJDw42JiUvCA8CAQQFAQQDAQICAwIBBwMBAwECAQEBLGE0AgMCAwQBAQwDBQQEAhGvCQEDBQMCBAEOAQkGBwkCBAEFAwYGAwkHBwnQAQIBBwoIBgECBQIDCgMDCgQBFAMgAhoGCQUBAgIKCA4JEQEDEAYOAgUBAwQDCQUKAh4CCwgOBxUJDQoKDgcIAQQLBQQUBAMBCAQEBgMOBAMXBgILAgsDAgYCCAsI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AwMFAgEBJRoBAQMGAgICAgEEAQIEAgUJBQULBQMGAwIGBAEDAgEDAgMHAwECAQIBAQQBBAcDBAcDAgMCAgMCBAcEAwcEAgMCAgMCBAcEDhwNDRkLDBQKCQ8HAQMCAQEBAgICAQEDAQEBAQECAQIBAQEBAQEBGyUBAQEBAQEBAQIBAQEBAQEBAQEBAQECAQEBAQEBAQMBAQMCAQEBAQICBAIBBAIBAgEBAwECBAMJFQwMGQ4NHQ4PHg8DCAQBBAICAwIEBwQDCAMCAwICAwIEBgQDBwMCAwEBAgECAQMGAwICAgEDAgMFAwMFAgEBASYaAQEDBQMBAwIBAwICBAIECgUFCgYDBQMDBgMCAwIBAwIDBwMBAQEBAgEBBAEEBgQDBwQCAwICAwIEBwMEBwQCAwICAwIEBwMPGw4NGQsMFAkJEAcBAwICAQIBAwEBAgEBAQEBAQIBAQEBAQEBAQEBGiRKAgEBAQEBAQECAQEBAQEBAQIBAQMCAgECAgMCAQQCAQEBAQIBAgQCCBMKCxYMDBkNDBoNBAYDAgMCAQMCAwYEAwYDAgMBAgMBAwYDAwUDAgICAQEBAgMFAwEDAQEDAQIFAwIEAwQIBAQGAwEDAQIDAQIDAQMFAgEBFyMDAQECBQMCBgICAgIBAwEDBgIBAgEBAQIDAQMGAwMGAwIDAQIDAQMHAwMGAwIDAQIDAgMGAwwYDAsVCgoRCAgNBQICAQEBAQIBAgEBAgEBAQECAQEBAQEBAQEBAQEeFgEBAQEBAQEBAQECAQEBAQEBAwEBAwEBAQEBAQECAwECBAEBAgEBAgECBAIIEwoLFgwMGQwNGg0DBwMCAwECAwIDBgMEBgMBAwIBAwIDBgMDBQMCAgICAQEBAwUDAQMBAQMBAgUCAwQDBAgEAwcDAQMBAgMBAgMBAgUDAQEXIgQCBQMCBgICAgIBAwEDBgIBAgEBAQIDAQMGAwMGAwIDAQIDAQMHAwMGAwIDAQIDAgMGAwwYDAsVCgoRCAgNBQICAQEBAQIBAgEBAgEBAQECAQEBAQEBAQEBAQEfFgG+AwUDAgICAQMCAgQCBQkFBQoGAwYCAwYDAgMCAQMCAwcDAQEBAQIBAQQBBAcDAwcEAgMCAgMCBAcDBAcEAgMCAgMCBAcEDhwNDRkLDBQKCQ8HAQMCAgECAgIBAQIBAQEBAQECAQEBAQEBAQEB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AwQGAwUBBf8IEQgHCwEJCAgSCQcKCgEbCScmVSIiIiJVJicJCScmVSIiIiJVJicJWWkKAQEBAQEBAQIBAQEBAgECAQECAQECAQICAQICAQEDAgEDAQIDAgEDAgEEAgEEAQIEAgIDAgIFAgIDAgMEAwIEAgIFAwIEAgMGAwIEAgMHBAIDAgULBgYLBQIDAgMHBAIEAgMGAgMEAgIGAgIEAgIFAgIEAgIFAgEEAgIEAgEEAQIEAQIDAQIDAgEDAQEDAgECAQICAQICAQECAQEBAQECAQEBAQIBAQEBAQEBCmpYzQdrW1trBwECBQMBAQEDBgMDBwMBAQEDBwQDBwQBAQEEBwMEBwQCAQMHBAMHAwECAQMGAwQGAgECAwUDAwQDAQEEBwMBAQIBAQIBAQMHBAEBAQIEAwMFAwEBAQMGAwMGAwECAQMHAwQHAwECAQMHBAMHBAECBAcDAQMHAwEBAQMHAwMGAwEBAQMFAwEBAQEBAQECAQEBAQIBAgEBAgEBAgEBAwEBAgIBAwIBAgIBBAECAwECAwICAwICBQIBAwICBQMCAwECBQMCBAICBgMCAwIDBwMCAwIECAQCAgIFCwYGCwUCAgEECQMCBAIDBgMCBAIDBQMCBAICBQMBAwICBgICAgICBQICAwIBBAIBAwECBAECAgECAwECAgEBAwEBAgEBAgEBAQEBAgEBAQECAQEBAQEBAQECBQMBAQEDBgMDBwMBAQEDBwQDBwQBAQEEBwMEBwQCAQMHBAMHAwECAQMGAwQGAgECAwUDAwQDAQEEBwMBAQIBAQIBAQMHBAEBAQIFAgMFAwEBAQMGAwMGAwECAQMHAwQHAwECAQMHBAMHBAECBAcDAQMHAwEBAQMHAwMGAwEBAQMFA/4AHhX+iBUeHhUBeBUe/nerBwoKB6sHCgoHEQoHRQcKCgdFBwq8iQcKCgeJBwoKB6sHCgoHqwcKCgdEuwgKCgi7BwoKAfMBCwcIEAkHCgoHCRIJBwl+BAUBAQMNBwkSCAYDAwQOBggQCTQJEgoGBwIMBwoUCQcHAwIMygQJBQIBBAQGDQQGCgUDBQYGDjgGDQcDAwICBQ4GBw8HBAYFDgVUAgUCAQYGBg0CAwYCAQcHBwwCCQkGBwsBAQoHBwoB/jQBCgcJEAgHCgoHCREJBwl/BwQDAw4GCRIJBAQCAQQOBggQCDUJEgkH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BAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQeAAAEKAAABAAAAAQAAAAEAP/+BAAAAAQAAAAEwAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEgAAABEAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABQAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEQAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABIAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAA7sAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABEAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAA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AAEmqAABJvQAASfQAAEoGAABKSwAASlwAAEptAABLegAAS80AAEwYAABMLAAATGwAAEyAAABMpwAATMQAAE0oAABNMQAATT8AAE1qAABNjQAATfkAAE4RAABOJwAATjYAAE5YAABOegAATrcAAE+wAABQawAAUVcAAFO9AABU6wAAVYQAAFWSAABVsQAAVcAAAFXZAABWAAAAVhUAAFY6AABWYAAAVqIAAFa4AABXNQAAV1QAAFfJAABX5AAAWDUAAFipAABZOgAAWVQAAFlzAABZjwAAWbAAAFnUAABZ/AAAWhMAAFotAABaRAAAWmIAAFqEAABajwAAWq8AAFrLAABa4AAAWvsAAFsiAABbUAAAW5gAAFu+AABbzgAAW+UAAFv8AABcCAAAXB0AAFxSAABcgQAAXKAAAFyqAABcwAAAXO8AAF0EAABdGQAAXTUAAF1hAABdhgAAXbgAAF3SAABd+wAAXikAAF4zAABeOgAAXlQAAF5+AABejgAAXqMAAF6tAABeuAAAXr8AAF7iAABfRwAAX4wAAF+3AABfxAAAX9EAAF/vAABgCQAAYBMAAGBHAABggwAAYKAAAGCvAABgwgAAYOwAAGEIAABhLgAAYVAAAGGAAABhtwAAYdEAAGHrAABiBgAAYh8AAGI6AABiUwAAYm4AAGKHAABiqgAAYsUAAGLbAABjBwAAYxwAAGNDAABjagAAY40AAGO5AABj1AAAZBgAAGQtAABkQgAAZIEAAGSiAABk1AAAZQoAAGUnAABlSwAAZW4AAGWmAABl6gAAZfkAAGYIAABmNAAAZkoAAGZXAABmgAAAZsIAAGbZAABm/AAAZyIAAGdNAABneQAAZ6YAAGe8AABn0QAAZ+wAAGgKAABoKwAAaEYAAGhgAABodwAAaKoAAGjOAABo/QAAaSAAAGk6AABpXgAAaZYAAGmqAABp0wAAamAAAGrSAABq7AAAaxwAAGsyAABrUgAAa3sAAGuNAABrqAAAa78AAGvTAABr4gAAbAsAAGwyAABsUwAAbHYAAGyeAABssQAAbM4AAG0LAABtMAAAbUwAAG2CAABtkQAAbacAAG29AABt6gAAbh4AAG5ZAABufgAAboUAAG61AABu4gAAbvgAAG9VAABvqQAAcDMAAHBGAABwfAAAcJQAAHDkAABxSQAAdGcAAHXYAAB18wAAd/U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);
}

/* source/icons/base.less */
[class^=mif-],
[class*=" mif-"] {
  font-family: "metro-ui-icons-core-set" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mif-lg {
  font-size: 1.2em;
}
.mif-2x {
  font-size: 1.5em;
}
.mif-3x {
  font-size: 2em;
}
.mif-4x {
  font-size: 2.5em;
}
.mif-5x {
  font-size: 3em;
}
.mif-6x {
  font-size: 3.5em;
}
.mif-7x {
  font-size: 4em;
}
.mif-8x {
  font-size: 4.5em;
}
.mif-9x {
  font-size: 5em;
}
.mif-10x {
  font-size: 5.5em;
}
.mif-panda:before {
  content: "\1f43c";
}

/* source/icons/icons.less */
.mif-dark-light:before {
  content: "\eadd";
}
.mif-disc:before {
  content: "\eadf";
}
.mif-crown:before {
  content: "\eac2";
}
.mif-coin-crown:before {
  content: "\eadc";
}
.mif-deno:before {
  content: "\eb8a";
}
.mif-bun:before {
  content: "\eb8b";
}
.mif-nodejs:before {
  content: "\eb8c";
}
.mif-yarn:before {
  content: "\eb8d";
}
.mif-pnpm:before {
  content: "\eb8e";
}
.mif-npm:before {
  content: "\eb8f";
}
.mif-repository:before {
  content: "\eb90";
}
.mif-git-clone:before {
  content: "\eb89";
}
.mif-git-branch:before {
  content: "\eb7a";
}
.mif-git-compare:before {
  content: "\eb7b";
}
.mif-git-draft:before {
  content: "\eb86";
}
.mif-git-pull-closed:before {
  content: "\eb87";
}
.mif-git-pull-add:before {
  content: "\eb88";
}
.mif-git-diff:before {
  content: "\eb7c";
}
.mif-git-rebase:before {
  content: "\eb7d";
}
.mif-git-commit:before {
  content: "\eb7e";
}
.mif-git-fork:before {
  content: "\eb7f";
}
.mif-git-pull:before {
  content: "\eb80";
}
.mif-git-push:before {
  content: "\eb81";
}
.mif-git-commit-outline:before {
  content: "\eb82";
}
.mif-gitlab:before {
  content: "\eb85";
}
.mif-wifi:before {
  content: "\e919";
}
.mif-mina:before {
  content: "\e9bc";
}
.mif-database-analyse:before {
  content: "\eb5a";
}
.mif-server-rack:before {
  content: "\eb5b";
}
.mif-cloud-server:before {
  content: "\eb5c";
}
.mif-server-reload:before {
  content: "\eb5d";
}
.mif-coding:before {
  content: "\eb5e";
}
.mif-dropdown-menu:before {
  content: "\eb5f";
}
.mif-data-log:before {
  content: "\eb60";
}
.mif-database-log:before {
  content: "\eb61";
}
.mif-blockchain:before {
  content: "\eb62";
}
.mif-free:before {
  content: "\e91a";
}
.mif-transport:before {
  content: "\e91c";
}
.mif-microsd:before {
  content: "\e922";
}
.mif-simcard:before {
  content: "\e923";
}
.mif-close:before {
  content: "\e93b";
}
.mif-open:before {
  content: "\e93d";
}
.mif-crypto-portfolio:before {
  content: "\e943";
}
.mif-bank:before {
  content: "\e944";
}
.mif-coin-outline:before {
  content: "\e962";
}
.mif-coin:before {
  content: "\eac9";
}
.mif-currecy-exchange:before {
  content: "\eacd";
}
.mif-crypto-exchange:before {
  content: "\eace";
}
.mif-ai:before {
  content: "\eacf";
}
.mif-database-copy:before {
  content: "\ead0";
}
.mif-folder-zip:before {
  content: "\ead1";
}
.mif-floppy-disks:before {
  content: "\eb6e";
}
.mif-data-exchange:before {
  content: "\eb6f";
}
.mif-connected-data:before {
  content: "\eb70";
}
.mif-connected-users:before {
  content: "\eb71";
}
.mif-user-settings2:before {
  content: "\eb72";
}
.mif-user-settings:before {
  content: "\eb73";
}
.mif-spam-outline:before {
  content: "\eb74";
}
.mif-folder-tree:before {
  content: "\eb75";
}
.mif-email-cloud:before {
  content: "\eb76";
}
.mif-email-filter:before {
  content: "\eb77";
}
.mif-email-settings:before {
  content: "\eb78";
}
.mif-addressbook:before {
  content: "\eb79";
}
.mif-numbers:before {
  content: "\eb6b";
}
.mif-countdown2:before {
  content: "\eb6c";
}
.mif-countdown:before {
  content: "\eb6d";
}
.mif-align-top:before {
  content: "\eb63";
}
.mif-align-right:before {
  content: "\eb64";
}
.mif-align-left:before {
  content: "\eb65";
}
.mif-align-middle:before {
  content: "\eb66";
}
.mif-align-bottom:before {
  content: "\eb67";
}
.mif-align-center:before {
  content: "\eb68";
}
.mif-tree:before {
  content: "\eb69";
}
.mif-treeview:before {
  content: "\eb6a";
}
.mif-slack:before {
  content: "\eb83";
}
.mif-microsoftteams:before {
  content: "\eb84";
}
.mif-microsoft:before {
  content: "\eb59";
}
.mif-x:before {
  content: "\eb56";
}
.mif-window-maximize:before {
  content: "\e94e";
}
.mif-slideshare:before {
  content: "\e9f1";
}
.mif-facebook:before {
  content: "\f09a";
}
.mif-steam:before {
  content: "\f1b6";
}
.mif-user-secret:before {
  content: "\f21b";
}
.mif-server:before {
  content: "\f233";
}
.mif-balance:before {
  content: "\f24e";
}
.mif-handshake:before {
  content: "\f2b5";
}
.mif-imdb:before {
  content: "\f2d8";
}
.mif-unlink:before {
  content: "\f127";
}
.mif-fire-extinguisher:before {
  content: "\f134";
}
.mif-eur:before {
  content: "\f153";
}
.mif-gbp:before {
  content: "\f154";
}
.mif-dollar2:before {
  content: "\f155";
}
.mif-cny:before {
  content: "\f157";
}
.mif-bitcoin:before {
  content: "\f15a";
}
.mif-youtube-play:before {
  content: "\f16a";
}
.mif-linux:before {
  content: "\f17c";
}
.mif-shuttle:before {
  content: "\f197";
}
.mif-language:before {
  content: "\f1ab";
}
.mif-automobile:before {
  content: "\f1b9";
}
.mif-copyright:before {
  content: "\f1f9";
}
.mif-bicycle:before {
  content: "\f206";
}
.mif-bus:before {
  content: "\f207";
}
.mif-ship:before {
  content: "\f21a";
}
.mif-motorcycle:before {
  content: "\f21c";
}
.mif-subway:before {
  content: "\f239";
}
.mif-trademark:before {
  content: "\f25c";
}
.mif-registered:before {
  content: "\f25d";
}
.mif-creative-commons:before {
  content: "\f25e";
}
.mif-user-md:before {
  content: "\f0f0";
}
.mif-stethoscope:before {
  content: "\f0f1";
}
.mif-ambulance:before {
  content: "\f0f9";
}
.mif-medkit:before {
  content: "\f0fa";
}
.mif-paw:before {
  content: "\f1b0";
}
.mif-visa:before {
  content: "\f1f0";
}
.mif-mastercard:before {
  content: "\f1f1";
}
.mif-cc-paypal:before {
  content: "\f1f4";
}
.mif-heartbeat:before {
  content: "\f21e";
}
.mif-medium:before {
  content: "\f23a";
}
.mif-linkedin:before {
  content: "\eb57";
}
.mif-reddit:before {
  content: "\eb58";
}
.mif-new-tab:before {
  content: "\ea7e";
}
.mif-whatsapp:before {
  content: "\e90b";
}
.mif-earth2:before {
  content: "\e6c1";
}
.mif-shit:before {
  content: "\e6c2";
}
.mif-broadcast:before {
  content: "\f048";
}
.mif-organization:before {
  content: "\f037";
}
.mif-squirrel:before {
  content: "\f0b2";
}
.mif-steps:before {
  content: "\f0c7";
}
.mif-versions:before {
  content: "\f064";
}
.mif-microscope:before {
  content: "\f089";
}
.mif-library:before {
  content: "\e921";
}
.mif-file-binary:before {
  content: "\f094";
}
.mif-mail-read:before {
  content: "\f03c";
}
.mif-quote:before {
  content: "\f063";
}
.mif-none:before {
  content: "\e698";
}
.mif-pencil:before {
  content: "\e905";
}
.mif-eyedropper:before {
  content: "\e90a";
}
.mif-image:before {
  content: "\e90d";
}
.mif-images:before {
  content: "\e90e";
}
.mif-camera:before {
  content: "\e90f";
}
.mif-headphones:before {
  content: "\e910";
}
.mif-music:before {
  content: "\e911";
}
.mif-film:before {
  content: "\e913";
}
.mif-video-camera:before {
  content: "\e914";
}
.mif-dice:before {
  content: "\e915";
}
.mif-wifi-connect:before {
  content: "\e91b";
}
.mif-feed:before {
  content: "\e91d";
}
.mif-mic:before {
  content: "\e91e";
}
.mif-books:before {
  content: "\e920";
}
.mif-file-empty:before {
  content: "\e924";
}
.mif-files-empty:before {
  content: "\e925";
}
.mif-file-text:before {
  content: "\e926";
}
.mif-file-picture:before {
  content: "\e927";
}
.mif-file-music:before {
  content: "\e928";
}
.mif-file-play:before {
  content: "\e929";
}
.mif-file-video:before {
  content: "\e92a";
}
.mif-file-zip:before {
  content: "\e92b";
}
.mif-stack:before {
  content: "\e92e";
}
.mif-folder:before {
  content: "\e92f";
}
.mif-folder-open:before {
  content: "\e930";
}
.mif-folder-plus:before {
  content: "\e931";
}
.mif-folder-minus:before {
  content: "\e932";
}
.mif-folder-download:before {
  content: "\e933";
}
.mif-folder-upload:before {
  content: "\e934";
}
.mif-tag:before {
  content: "\e935";
}
.mif-tags:before {
  content: "\e936";
}
.mif-barcode:before {
  content: "\e937";
}
.mif-qrcode:before {
  content: "\e938";
}
.mif-credit-card:before {
  content: "\e93f";
}
.mif-calculator:before {
  content: "\e940";
}
.mif-lifebuoy:before {
  content: "\e941";
}
.mif-phone:before {
  content: "\e942";
}
.mif-location:before {
  content: "\e948";
}
.mif-compass:before {
  content: "\e949";
}
.mif-compass2:before {
  content: "\e94a";
}
.mif-map:before {
  content: "\e94b";
}
.mif-history:before {
  content: "\e94d";
}
.mif-calendar:before {
  content: "\e953";
}
.mif-printer:before {
  content: "\e954";
}
.mif-display:before {
  content: "\e956";
}
.mif-download:before {
  content: "\e960";
}
.mif-upload:before {
  content: "\e961";
}
.mif-drive2:before {
  content: "\e963";
}
.mif-undo:before {
  content: "\e965";
}
.mif-redo:before {
  content: "\e966";
}
.mif-bubble:before {
  content: "\e96b";
}
.mif-bubbles:before {
  content: "\e96c";
}
.mif-hour-glass:before {
  content: "\e979";
}
.mif-spinner:before {
  content: "\e97a";
}
.mif-spinner6:before {
  content: "\e97b";
}
.mif-spinner2:before {
  content: "\e97d";
}
.mif-spinner3:before {
  content: "\e981";
}
.mif-spinner4:before {
  content: "\e982";
}
.mif-spinner5:before {
  content: "\e983";
}
.mif-enlarge:before {
  content: "\e989";
}
.mif-shrink:before {
  content: "\e98a";
}
.mif-enlarge2:before {
  content: "\e98b";
}
.mif-shrink2:before {
  content: "\e98c";
}
.mif-key:before {
  content: "\e98d";
}
.mif-wrench:before {
  content: "\e991";
}
.mif-equalizer:before {
  content: "\e992";
}
.mif-equalizer2:before {
  content: "\e993";
}
.mif-cog:before {
  content: "\e994";
}
.mif-cogs:before {
  content: "\e995";
}
.mif-magic-wand:before {
  content: "\e997";
}
.mif-bug:before {
  content: "\e999";
}
.mif-trophy:before {
  content: "\e99e";
}
.mif-gift:before {
  content: "\e99f";
}
.mif-spoon-fork:before {
  content: "\e9a3";
}
.mif-meter:before {
  content: "\e9a6";
}
.mif-hammer:before {
  content: "\e9a8";
}
.mif-fire:before {
  content: "\e9a9";
}
.mif-lab:before {
  content: "\e9aa";
}
.mif-bin:before {
  content: "\e9ac";
}
.mif-truck:before {
  content: "\e9b0";
}
.mif-target:before {
  content: "\e9b3";
}
.mif-clipboard:before {
  content: "\e9b8";
}
.mif-download2:before {
  content: "\e9c7";
}
.mif-upload2:before {
  content: "\e9c8";
}
.mif-earth:before {
  content: "\e9ca";
}
.mif-link:before {
  content: "\e9cb";
}
.mif-attachment:before {
  content: "\e9cd";
}
.mif-bookmark:before {
  content: "\e9d2";
}
.mif-bookmarks:before {
  content: "\e9d3";
}
.mif-contrast:before {
  content: "\e9d5";
}
.mif-brightness:before {
  content: "\e9d6";
}
.mif-star-empty:before {
  content: "\e9d7";
}
.mif-star-half:before {
  content: "\e9d8";
}
.mif-star-full:before {
  content: "\e9d9";
}
.mif-heart:before {
  content: "\e9da";
}
.mif-heart-broken:before {
  content: "\e9db";
}
.mif-warning:before {
  content: "\ea07";
}
.mif-cancel:before {
  content: "\ea0d";
}
.mif-checkmark:before {
  content: "\ea10";
}
.mif-spell-check:before {
  content: "\ea12";
}
.mif-enter:before {
  content: "\ea13";
}
.mif-exit:before {
  content: "\ea14";
}
.mif-volume-high:before {
  content: "\ea26";
}
.mif-volume-medium:before {
  content: "\ea27";
}
.mif-volume-low:before {
  content: "\ea28";
}
.mif-volume-mute:before {
  content: "\ea64";
}
.mif-volume-off:before {
  content: "\ea83";
}
.mif-volume-plus:before {
  content: "\ea2b";
}
.mif-volume-minus:before {
  content: "\ea2c";
}
.mif-loop2:before {
  content: "\ea2e";
}
.mif-infinite:before {
  content: "\ea2f";
}
.mif-shuffle:before {
  content: "\ea30";
}
.mif-arrow-up-left:before {
  content: "\ea39";
}
.mif-arrow-up:before {
  content: "\ea3a";
}
.mif-arrow-up-right:before {
  content: "\ea3b";
}
.mif-arrow-right:before {
  content: "\ea3c";
}
.mif-arrow-down-right:before {
  content: "\ea3d";
}
.mif-arrow-down:before {
  content: "\ea3e";
}
.mif-arrow-down-left:before {
  content: "\ea3f";
}
.mif-arrow-left:before {
  content: "\ea40";
}
.mif-tab:before {
  content: "\ea45";
}
.mif-move-up:before {
  content: "\ea46";
}
.mif-move-down:before {
  content: "\ea47";
}
.mif-sort-asc:before {
  content: "\ea4c";
}
.mif-sort-desc:before {
  content: "\ea4d";
}
.mif-command:before {
  content: "\ea4e";
}
.mif-shift:before {
  content: "\ea4f";
}
.mif-page-break:before {
  content: "\ea68";
}
.mif-table:before {
  content: "\ea71";
}
.mif-insert-template:before {
  content: "\ea72";
}
.mif-pilcrow:before {
  content: "\ea73";
}
.mif-section:before {
  content: "\ea76";
}
.mif-share:before {
  content: "\ea82";
}
.mif-twitter1:before {
  content: "\ea91";
}
.mif-rss:before {
  content: "\ea95";
}
.mif-youtube:before {
  content: "\ea99";
}
.mif-git:before {
  content: "\eab5";
}
.mif-apple:before {
  content: "\eabf";
}
.mif-android:before {
  content: "\eac1";
}
.mif-windows:before {
  content: "\eac3";
}
.mif-chrome:before {
  content: "\eae5";
}
.mif-firefox:before {
  content: "\eae6";
}
.mif-ie:before {
  content: "\eae7";
}
.mif-opera:before {
  content: "\eae8";
}
.mif-safari:before {
  content: "\eae9";
}
.mif-twitch:before {
  content: "\e6c6";
}
.mif-libreoffice:before {
  content: "\e6d5";
}
.mif-closed_caption:before {
  content: "\e906";
}
.mif-forward:before {
  content: "\e969";
}
.mif-rewind:before {
  content: "\e9ff";
}
.mif-add-lib:before {
  content: "\e92c";
}
.mif-book-lib:before {
  content: "\ea25";
}
.mif-music-lib:before {
  content: "\ea89";
}
.mif-pause:before {
  content: "\ea1c";
}
.mif-play:before {
  content: "\ea1d";
}
.mif-playlist:before {
  content: "\ea1e";
}
.mif-recent-actors:before {
  content: "\ea1f";
}
.mif-repeat:before {
  content: "\ea20";
}
.mif-repeat-one:before {
  content: "\ea21";
}
.mif-next:before {
  content: "\ea22";
}
.mif-previous:before {
  content: "\ea23";
}
.mif-stop:before {
  content: "\ea24";
}
.mif-video-lib:before {
  content: "\ea8a";
}
.mif-archive:before {
  content: "\eaab";
}
.mif-unarchive:before {
  content: "\eb36";
}
.mif-image-lib:before {
  content: "\eb54";
}
.mif-subdirector-left:before {
  content: "\ea29";
}
.mif-subdirectory-right:before {
  content: "\ea2a";
}
.mif-eject:before {
  content: "\ea2d";
}
.mif-check-lib:before {
  content: "\eb55";
}
.mif-info2:before {
  content: "\eb51";
}
.mif-error2:before {
  content: "\eb52";
}
.mif-hotkey:before {
  content: "\eb53";
}
.mif-accordion:before {
  content: "\eb4f";
}
.mif-translate:before {
  content: "\eb50";
}
.mif-maintenance:before {
  content: "\eb07";
}
.mif-skull-and-bones:before {
  content: "\eb4a";
}
.mif-propeller:before {
  content: "\eb4b";
}
.mif-chess-king:before {
  content: "\eb4c";
}
.mif-guitar:before {
  content: "\eb4d";
}
.mif-under-construction:before {
  content: "\eb4e";
}
.mif-edit-attribute:before {
  content: "\e957";
}
.mif-extension:before {
  content: "\e95a";
}
.mif-work:before {
  content: "\e9a7";
}
.mif-horizontal-split:before {
  content: "\e9e3";
}
.mif-vertical-split:before {
  content: "\e9e8";
}
.mif-switch:before {
  content: "\ea7d";
}
.mif-file-move:before {
  content: "\ea9c";
}
.mif-snippet-folder:before {
  content: "\eaa1";
}
.mif-location-man:before {
  content: "\e95c";
}
.mif-earth-net:before {
  content: "\e967";
}
.mif-cube:before {
  content: "\e996";
}
.mif-prompt:before {
  content: "\e998";
}
.mif-percent:before {
  content: "\e9a0";
}
.mif-award:before {
  content: "\e9e0";
}
.mif-ram:before {
  content: "\e9e2";
}
.mif-person-card:before {
  content: "\e903";
}
.mif-tile:before {
  content: "\e90c";
}
.mif-window:before {
  content: "\e945";
}
.mif-layout:before {
  content: "\e955";
}
.mif-tabs:before {
  content: "\e9ba";
}
.mif-astro:before {
  content: "\e900";
}
.mif-code-slash:before {
  content: "\ea7f";
}
.mif-code:before {
  content: "\ea80";
}
.mif-designing:before {
  content: "\eac4";
}
.mif-avi-file:before {
  content: "\eac5";
}
.mif-html-file:before {
  content: "\eac7";
}
.mif-log-file:before {
  content: "\eaca";
}
.mif-format2:before {
  content: "\eacb";
}
.mif-format:before {
  content: "\eacc";
}
.mif-typescript:before {
  content: "\ead2";
}
.mif-javascript:before {
  content: "\ead3";
}
.mif-css3:before {
  content: "\ead4";
}
.mif-html5:before {
  content: "\ead5";
}
.mif-codescan:before {
  content: "\ead6";
}
.mif-run:before {
  content: "\ead7";
}
.mif-database-server:before {
  content: "\e964";
}
.mif-database-select:before {
  content: "\e9f2";
}
.mif-database-layer:before {
  content: "\e9f3";
}
.mif-database:before {
  content: "\eaa4";
}
.mif-database-sand:before {
  content: "\eaa5";
}
.mif-database-upload:before {
  content: "\eaa6";
}
.mif-database-edit:before {
  content: "\eaa7";
}
.mif-databases:before {
  content: "\eaa8";
}
.mif-database-download:before {
  content: "\eaa9";
}
.mif-database-undo:before {
  content: "\eaaa";
}
.mif-database-net:before {
  content: "\eaac";
}
.mif-database-minus:before {
  content: "\eaad";
}
.mif-database-reload:before {
  content: "\eaaf";
}
.mif-database-cancel:before {
  content: "\eab1";
}
.mif-database-search:before {
  content: "\eab2";
}
.mif-database-star:before {
  content: "\eab3";
}
.mif-database-time:before {
  content: "\eab4";
}
.mif-database-lock:before {
  content: "\eab6";
}
.mif-database-cloud:before {
  content: "\eab7";
}
.mif-database-ok:before {
  content: "\eab8";
}
.mif-database-error:before {
  content: "\eab9";
}
.mif-database-favorite:before {
  content: "\eaba";
}
.mif-share-circle:before {
  content: "\eabb";
}
.mif-brackets-hexagon:before {
  content: "\eabc";
}
.mif-brackets:before {
  content: "\eabd";
}
.mif-group-by:before {
  content: "\eabe";
}
.mif-build:before {
  content: "\ea74";
}
.mif-quickedit:before {
  content: "\ea75";
}
.mif-query:before {
  content: "\ea88";
}
.mif-graphql:before {
  content: "\ea9e";
}
.mif-mssql:before {
  content: "\ea9f";
}
.mif-mysql:before {
  content: "\eaa0";
}
.mif-postgresql:before {
  content: "\eaa2";
}
.mif-sql:before {
  content: "\eaa3";
}
.mif-export:before {
  content: "\e917";
}
.mif-import:before {
  content: "\e918";
}
.mif-xls-file:before {
  content: "\e93c";
}
.mif-doc-file:before {
  content: "\e93e";
}
.mif-pdf-file:before {
  content: "\e946";
}
.mif-csv-file:before {
  content: "\e947";
}
.mif-github:before {
  content: "\e94c";
}
.mif-viber:before {
  content: "\e94f";
}
.mif-telegram:before {
  content: "\e950";
}
.mif-discord:before {
  content: "\e951";
}
.mif-sql-file:before {
  content: "\e952";
}
.mif-remove-from-queue:before {
  content: "\e9c0";
}
.mif-grid:before {
  content: "\e9e4";
}
.mif-sidebar:before {
  content: "\e9e5";
}
.mif-error:before {
  content: "\e91f";
}
.mif-surround-sound:before {
  content: "\e92d";
}
.mif-videocam:before {
  content: "\e939";
}
.mif-airplay:before {
  content: "\e93a";
}
.mif-add-to-queue:before {
  content: "\e9ee";
}
.mif-new:before {
  content: "\e958";
}
.mif-subscriptions:before {
  content: "\e959";
}
.mif-queue-add-next:before {
  content: "\e95b";
}
.mif-video-call:before {
  content: "\e9f0";
}
.mif-clear-all:before {
  content: "\e95d";
}
.mif-contacts:before {
  content: "\e96e";
}
.mif-email:before {
  content: "\ea6b";
}
.mif-key2:before {
  content: "\e9fd";
}
.mif-present-to:before {
  content: "\e9f4";
}
.mif-mail-outline:before {
  content: "\e95e";
}
.mif-screen-share:before {
  content: "\ea70";
}
.mif-mail-alt:before {
  content: "\ea6c";
}
.mif-presentation-cancel:before {
  content: "\e9f5";
}
.mif-presentation-pause:before {
  content: "\e9f6";
}
.mif-unsubscribe:before {
  content: "\ea81";
}
.mif-lightbulb:before {
  content: "\e971";
}
.mif-block:before {
  content: "\e95f";
}
.mif-clear:before {
  content: "\e972";
}
.mif-copy:before {
  content: "\e973";
}
.mif-cut:before {
  content: "\e974";
}
.mif-paste:before {
  content: "\e975";
}
.mif-flag:before {
  content: "\e97f";
}
.mif-link-on:before {
  content: "\ea84";
}
.mif-redo2:before {
  content: "\e986";
}
.mif-remove:before {
  content: "\e987";
}
.mif-report:before {
  content: "\e968";
}
.mif-floppy-disk3:before {
  content: "\eac0";
}
.mif-undo2:before {
  content: "\e988";
}
.mif-font-filled:before {
  content: "\e98e";
}
.mif-flag-outline:before {
  content: "\e99a";
}
.mif-link-off:before {
  content: "\ea85";
}
.mif-ballot:before {
  content: "\e99b";
}
.mif-user-check:before {
  content: "\e99c";
}
.mif-link-add:before {
  content: "\e9f8";
}
.mif-access-time:before {
  content: "\e99d";
}
.mif-add-alarm:before {
  content: "\e9f9";
}
.mif-airplane:before {
  content: "\e9a1";
}
.mif-brightness-auto:before {
  content: "\e9a5";
}
.mif-brightness-high:before {
  content: "\e9b5";
}
.mif-brightness-low:before {
  content: "\e9b6";
}
.mif-brightness-medium:before {
  content: "\e9b7";
}
.mif-wallpaper:before {
  content: "\e9b9";
}
.mif-signal-cellular:before {
  content: "\e9bb";
}
.mif-attach-file:before {
  content: "\e9c1";
}
.mif-text-align-center:before {
  content: "\e9c2";
}
.mif-text-align-justify:before {
  content: "\e9c3";
}
.mif-text-align-left:before {
  content: "\e9cc";
}
.mif-text-align-right:before {
  content: "\e9ce";
}
.mif-bold:before {
  content: "\e9d0";
}
.mif-color-fill:before {
  content: "\e9f7";
}
.mif-color-text:before {
  content: "\ea08";
}
.mif-indent-decrease:before {
  content: "\ea09";
}
.mif-indent-increase:before {
  content: "\ea0a";
}
.mif-italic:before {
  content: "\ea0b";
}
.mif-line-spacing:before {
  content: "\ea0c";
}
.mif-list-bulleted:before {
  content: "\ea0e";
}
.mif-list-numbered:before {
  content: "\ea0f";
}
.mif-paint:before {
  content: "\ea15";
}
.mif-quote1:before {
  content: "\ea31";
}
.mif-letter-size:before {
  content: "\ea57";
}
.mif-strikethrough:before {
  content: "\ea58";
}
.mif-ltr:before {
  content: "\e96a";
}
.mif-rtl:before {
  content: "\e96d";
}
.mif-underline:before {
  content: "\ea5a";
}
.mif-functions:before {
  content: "\ea5b";
}
.mif-strikethrough-s:before {
  content: "\ea62";
}
.mif-shapes:before {
  content: "\ea63";
}
.mif-add-comment:before {
  content: "\e9fa";
}
.mif-cloud:before {
  content: "\ea65";
}
.mif-cloud-ok:before {
  content: "\ea69";
}
.mif-cloud-download:before {
  content: "\ea6a";
}
.mif-cloud-upload:before {
  content: "\ea77";
}
.mif-folder3:before {
  content: "\ea86";
}
.mif-add-folder:before {
  content: "\e9fb";
}
.mif-desktop-windows:before {
  content: "\e96f";
}
.mif-keyboard:before {
  content: "\ea78";
}
.mif-laptop:before {
  content: "\e970";
}
.mif-mouse:before {
  content: "\ea79";
}
.mif-phone1:before {
  content: "\ea7a";
}
.mif-router:before {
  content: "\ea7b";
}
.mif-tablet:before {
  content: "\e976";
}
.mif-toys:before {
  content: "\e977";
}
.mif-tv:before {
  content: "\e978";
}
.mif-watch:before {
  content: "\e97c";
}
.mif-device-hub:before {
  content: "\e9fc";
}
.mif-devices:before {
  content: "\e97e";
}
.mif-moon-left:before {
  content: "\ea7c";
}
.mif-moon-sun:before {
  content: "\ea87";
}
.mif-crop:before {
  content: "\ea8d";
}
.mif-button:before {
  content: "\eaae";
}
.mif-loupe:before {
  content: "\e9fe";
}
.mif-special-button:before {
  content: "\eab0";
}
.mif-pdf-export:before {
  content: "\ea8b";
}
.mif-eye:before {
  content: "\eac6";
}
.mif-ruler:before {
  content: "\eac8";
}
.mif-style:before {
  content: "\eaf3";
}
.mif-timelapse:before {
  content: "\eaf4";
}
.mif-view-compact:before {
  content: "\ea8c";
}
.mif-sunny:before {
  content: "\eaf5";
}
.mif-photo:before {
  content: "\ea8e";
}
.mif-special-button2:before {
  content: "\eaf6";
}
.mif-link-camera:before {
  content: "\eaf7";
}
.mif-movie:before {
  content: "\eaf8";
}
.mif-photo-filter:before {
  content: "\ea00";
}
.mif-add-image:before {
  content: "\ea01";
}
.mif-image-search:before {
  content: "\eaf9";
}
.mif-shopping-cart:before {
  content: "\eafa";
}
.mif-person-location:before {
  content: "\eafb";
}
.mif-traffic:before {
  content: "\eafc";
}
.mif-person-pin:before {
  content: "\eafd";
}
.mif-category:before {
  content: "\ea02";
}
.mif-360:before {
  content: "\eafe";
}
.mif-special-button-3:before {
  content: "\eaff";
}
.mif-folder-special2:before {
  content: "\ea03";
}
.mif-ondemand-video:before {
  content: "\eb00";
}
.mif-enhanced-encryption:before {
  content: "\ea04";
}
.mif-network-check:before {
  content: "\eb01";
}
.mif-priority-high:before {
  content: "\e980";
}
.mif-bubble-chart:before {
  content: "\e9e9";
}
.mif-line-chart:before {
  content: "\eb02";
}
.mif-group:before {
  content: "\ea8f";
}
.mif-add-group:before {
  content: "\ea05";
}
.mif-notifications:before {
  content: "\e984";
}
.mif-notifications-outline:before {
  content: "\e985";
}
.mif-notifications-on:before {
  content: "\e98f";
}
.mif-people-outline:before {
  content: "\ea06";
}
.mif-person:before {
  content: "\ea11";
}
.mif-person-outline:before {
  content: "\ea16";
}
.mif-checkbox:before {
  content: "\eb03";
}
.mif-radiobutton:before {
  content: "\eb04";
}
.mif-wallet2:before {
  content: "\eb05";
}
.mif-account-circle:before {
  content: "\ea17";
}
.mif-assignment-person:before {
  content: "\ea90";
}
.mif-change-history:before {
  content: "\eb06";
}
.mif-face:before {
  content: "\ea18";
}
.mif-find-replace:before {
  content: "\eb08";
}
.mif-help1:before {
  content: "\e990";
}
.mif-add-note:before {
  content: "\ea19";
}
.mif-open-in:before {
  content: "\eb09";
}
.mif-power:before {
  content: "\eb0a";
}
.mif-search:before {
  content: "\eb0b";
}
.mif-antenna:before {
  content: "\ea1a";
}
.mif-settings-power:before {
  content: "\eb0c";
}
.mif-settings-remote:before {
  content: "\ea1b";
}
.mif-spellcheck:before {
  content: "\ea32";
}
.mif-stars:before {
  content: "\e9a2";
}
.mif-account:before {
  content: "\ea33";
}
.mif-system-update:before {
  content: "\ea34";
}
.mif-trending-down:before {
  content: "\eb0d";
}
.mif-trending-up:before {
  content: "\eb0e";
}
.mif-membership:before {
  content: "\eb0f";
}
.mif-youtube-search:before {
  content: "\eb10";
}
.mif-help-outline:before {
  content: "\e9a4";
}
.mif-zoom-in:before {
  content: "\ea35";
}
.mif-zoom-out:before {
  content: "\ea36";
}
.mif-lightbulb-outline:before {
  content: "\eb11";
}
.mif-important-devices:before {
  content: "\ea37";
}
.mif-touch-app:before {
  content: "\eb12";
}
.mif-record-voice:before {
  content: "\ea92";
}
.mif-timeline:before {
  content: "\eb13";
}
.mif-pan-tool:before {
  content: "\eb14";
}
.mif-remove-shopping-cart:before {
  content: "\eb15";
}
.mif-check-circle-outline:before {
  content: "\e9ab";
}
.mif-minimize:before {
  content: "\ea93";
}
.mif-supervised-user-circle:before {
  content: "\ea38";
}
.mif-voice-off:before {
  content: "\ea94";
}
.mif-compress:before {
  content: "\ead8";
}
.mif-filter-list:before {
  content: "\e9ad";
}
.mif-expand:before {
  content: "\ead9";
}
.mif-add-chart:before {
  content: "\ea41";
}
.mif-add-moderator:before {
  content: "\ea42";
}
.mif-connected-tv:before {
  content: "\eb16";
}
.mif-dashboard-customize:before {
  content: "\ea43";
}
.mif-mark-as-unread:before {
  content: "\e9ae";
}
.mif-menu-open:before {
  content: "\e9af";
}
.mif-replay-circle:before {
  content: "\eb17";
}
.mif-reset-tv:before {
  content: "\eb18";
}
.mif-stacked-bar-chart:before {
  content: "\eb19";
}
.mif-swipe:before {
  content: "\eb1a";
}
.mif-account-export:before {
  content: "\eada";
}
.mif-view-in-ar:before {
  content: "\eadb";
}
.mif-waterfall-chart:before {
  content: "\eb1b";
}
.mif-energy:before {
  content: "\eb1c";
}
.mif-file-present:before {
  content: "\ea44";
}
.mif-fit-screen:before {
  content: "\eb1d";
}
.mif-dynamic-feed:before {
  content: "\eade";
}
.mif-add-post:before {
  content: "\ea48";
}
.mif-group-alt:before {
  content: "\ea49";
}
.mif-esports:before {
  content: "\eb1e";
}
.mif-eco:before {
  content: "\eb1f";
}
.mif-metro:before {
  content: "\ea96";
}
.mif-camera-reload:before {
  content: "\eb20";
}
.mif-volunteer:before {
  content: "\e9ea";
}
.mif-child:before {
  content: "\ea97";
}
.mif-add-business:before {
  content: "\ea4a";
}
.mif-add-location:before {
  content: "\eae0";
}
.mif-admin-panel:before {
  content: "\ea4b";
}
.mif-route:before {
  content: "\ea50";
}
.mif-app-registration:before {
  content: "\eb21";
}
.mif-attach-email:before {
  content: "\ea51";
}
.mif-awesome:before {
  content: "\eb22";
}
.mif-staked-windows:before {
  content: "\e9b1";
}
.mif-auto-delete:before {
  content: "\eb23";
}
.mif-auto-stories:before {
  content: "\eb24";
}
.mif-calculate:before {
  content: "\e9b2";
}
.mif-construction:before {
  content: "\e9b4";
}
.mif-face-retouching:before {
  content: "\ea98";
}
.mif-forward-to-inbox:before {
  content: "\ea52";
}
.mif-grading:before {
  content: "\eae1";
}
.mif-help-center:before {
  content: "\e9bd";
}
.mif-local-fire:before {
  content: "\eb25";
}
.mif-add-maps:before {
  content: "\ea53";
}
.mif-mark-chat-read:before {
  content: "\eae2";
}
.mif-mark-chat-unread:before {
  content: "\eae3";
}
.mif-mark-email-read:before {
  content: "\ea6d";
}
.mif-mark-email-unread:before {
  content: "\ea6e";
}
.mif-mediation:before {
  content: "\e9eb";
}
.mif-medical-services:before {
  content: "\ea54";
}
.mif-military-tech:before {
  content: "\e9ec";
}
.mif-more-time:before {
  content: "\ea55";
}
.mif-multiple:before {
  content: "\eae4";
}
.mif-nat:before {
  content: "\eaea";
}
.mif-moon-right:before {
  content: "\eaeb";
}
.mif-outgoing-mail:before {
  content: "\ea6f";
}
.mif-pending-actions:before {
  content: "\eb26";
}
.mif-add-person-alt:before {
  content: "\ea56";
}
.mif-add-person:before {
  content: "\ea59";
}
.mif-remove-person:before {
  content: "\ea5c";
}
.mif-serach-person:before {
  content: "\ea5d";
}
.mif-bug-control:before {
  content: "\eb27";
}
.mif-psychology:before {
  content: "\eb28";
}
.mif-pin2:before {
  content: "\eb29";
}
.mif-receipt:before {
  content: "\eb2a";
}
.mif-request:before {
  content: "\eaec";
}
.mif-roof:before {
  content: "\ea9a";
}
.mif-preferences:before {
  content: "\ea9b";
}
.mif-rule:before {
  content: "\e9be";
}
.mif-rule-folder:before {
  content: "\eaed";
}
.mif-science:before {
  content: "\eb2b";
}
.mif-search-off:before {
  content: "\eb2c";
}
.mif-shopping-bag1:before {
  content: "\eb2d";
}
.mif-smart-button:before {
  content: "\eb2e";
}
.mif-source-folder:before {
  content: "\eaee";
}
.mif-subscript:before {
  content: "\eb2f";
}
.mif-superscript:before {
  content: "\eb30";
}
.mif-support-agent:before {
  content: "\e9bf";
}
.mif-verified2:before {
  content: "\eaef";
}
.mif-video-settings:before {
  content: "\eb31";
}
.mif-connect-people:before {
  content: "\eb32";
}
.mif-reduce:before {
  content: "\e9ed";
}
.mif-add-task:before {
  content: "\eaf0";
}
.mif-groups:before {
  content: "\ea9d";
}
.mif-publish-changes:before {
  content: "\eaf1";
}
.mif-request-page:before {
  content: "\eaf2";
}
.mif-stacked-line-chart:before {
  content: "\eb33";
}
.mif-memory:before {
  content: "\e9d4";
}
.mif-external:before {
  content: "\e9c6";
}
.mif-ac-unit:before {
  content: "\eb3b";
}
.mif-accessible:before {
  content: "\e916";
}
.mif-adb:before {
  content: "\e6d8";
}
.mif-plus:before {
  content: "\e145";
}
.mif-add-photo:before {
  content: "\e439";
}
.mif-arrow-drop-down:before {
  content: "\e5c5";
}
.mif-arrow-drop-up:before {
  content: "\e5c7";
}
.mif-assignment:before {
  content: "\e85d";
}
.mif-backspace2:before {
  content: "\e14a";
}
.mif-beenhere:before {
  content: "\e52d";
}
.mif-cake:before {
  content: "\e7e9";
}
.mif-photo-camera:before {
  content: "\e412";
}
.mif-photo-camera-plus:before {
  content: "\e8fc";
}
.mif-camera-front:before {
  content: "\e3b1";
}
.mif-camera-rear:before {
  content: "\e3b2";
}
.mif-chat:before {
  content: "\e0b7";
}
.mif-chat-bubble:before {
  content: "\e0ca";
}
.mif-chat-bubble-outline:before {
  content: "\e0cb";
}
.mif-comment:before {
  content: "\e0b9";
}
.mif-developer-board:before {
  content: "\e30d";
}
.mif-done:before {
  content: "\e876";
}
.mif-done-all:before {
  content: "\e877";
}
.mif-qa:before {
  content: "\e8af";
}
.mif-hdr:before {
  content: "\e3ee";
}
.mif-http:before {
  content: "\e909";
}
.mif-import-export:before {
  content: "\e0c3";
}
.mif-inbox:before {
  content: "\e156";
}
.mif-backspace:before {
  content: "\e317";
}
.mif-keyboard-tab:before {
  content: "\e31c";
}
.mif-restaurant:before {
  content: "\e561";
}
.mif-room:before {
  content: "\e8b4";
}
.mif-move-to-inbox:before {
  content: "\e168";
}
.mif-navigation:before {
  content: "\e55d";
}
.mif-near-me:before {
  content: "\e569";
}
.mif-present-all:before {
  content: "\e0df";
}
.mif-refresh:before {
  content: "\e5d5";
}
.mif-replay:before {
  content: "\e042";
}
.mif-reply:before {
  content: "\e15e";
}
.mif-reply-all:before {
  content: "\e15f";
}
.mif-verified:before {
  content: "\e8e8";
}
.mif-add-shopping-cart:before {
  content: "\e854";
}
.mif-cast:before {
  content: "\e307";
}
.mif-cast-connected:before {
  content: "\e308";
}
.mif-dashboard:before {
  content: "\e871";
}
.mif-description:before {
  content: "\e873";
}
.mif-bar-chart:before {
  content: "\e01d";
}
.mif-ev-station:before {
  content: "\e56d";
}
.mif-featured-play-list:before {
  content: "\e06d";
}
.mif-featured-video:before {
  content: "\e06e";
}
.mif-fingerprint:before {
  content: "\e912";
}
.mif-folder-outline:before {
  content: "\e2c8";
}
.mif-folder-shared:before {
  content: "\e2c9";
}
.mif-goat:before {
  content: "\e901";
}
.mif-import-contacts:before {
  content: "\e0e0";
}
.mif-empty-file-filled:before {
  content: "\e24d";
}
.mif-keyboard-hide:before {
  content: "\e31a";
}
.mif-note:before {
  content: "\e06f";
}
.mif-note-add:before {
  content: "\e89c";
}
.mif-bike:before {
  content: "\e6bf";
}
.mif-city:before {
  content: "\e6c0";
}
.mif-calculator2:before {
  content: "\e636";
}
.mif-barbell:before {
  content: "\e637";
}
.mif-3d-rotation:before {
  content: "\e600";
}
.mif-alarm:before {
  content: "\e601";
}
.mif-alarm-on:before {
  content: "\e602";
}
.mif-favorite:before {
  content: "\e603";
}
.mif-phone-msg:before {
  content: "\e604";
}
.mif-print:before {
  content: "\e605";
}
.mif-settings-ethernet:before {
  content: "\e607";
}
.mif-settings-voice:before {
  content: "\e60a";
}
.mif-shopping-basket:before {
  content: "\e60b";
}
.mif-dialpad:before {
  content: "\e60f";
}
.mif-contacts-dialer:before {
  content: "\e610";
}
.mif-contacts-mail:before {
  content: "\e611";
}
.mif-phone-ring:before {
  content: "\e612";
}
.mif-voicemail:before {
  content: "\e613";
}
.mif-drafts:before {
  content: "\e614";
}
.mif-mail:before {
  content: "\e615";
}
.mif-bt:before {
  content: "\e626";
}
.mif-bt-connected:before {
  content: "\e627";
}
.mif-multitrack-audio:before {
  content: "\e616";
}
.mif-widgets:before {
  content: "\e617";
}
.mif-usb:before {
  content: "\e638";
}
.mif-money:before {
  content: "\e639";
}
.mif-vertical-align-bottom:before {
  content: "\e63a";
}
.mif-vertical-align-center:before {
  content: "\e63b";
}
.mif-vertical-align-top:before {
  content: "\e63c";
}
.mif-file-download:before {
  content: "\e63d";
}
.mif-file-upload:before {
  content: "\e63e";
}
.mif-keyboard-return:before {
  content: "\e63f";
}
.mif-voice:before {
  content: "\e640";
}
.mif-phonelink:before {
  content: "\e641";
}
.mif-security:before {
  content: "\e618";
}
.mif-looks:before {
  content: "\e643";
}
.mif-palette:before {
  content: "\e619";
}
.mif-layers:before {
  content: "\e644";
}
.mif-local-airport:before {
  content: "\e645";
}
.mif-florist:before {
  content: "\e61b";
}
.mif-gas-station:before {
  content: "\e61c";
}
.mif-hotel:before {
  content: "\e646";
}
.mif-local-service:before {
  content: "\e61d";
}
.mif-map2:before {
  content: "\e620";
}
.mif-my-location:before {
  content: "\e61e";
}
.mif-apps:before {
  content: "\e647";
}
.mif-expand-less:before {
  content: "\e64a";
}
.mif-expand-more:before {
  content: "\e64b";
}
.mif-menu:before {
  content: "\e64c";
}
.mif-more-horiz:before {
  content: "\e64d";
}
.mif-more-vert:before {
  content: "\e64e";
}
.mif-unfold-less:before {
  content: "\e64f";
}
.mif-unfold-more:before {
  content: "\e650";
}
.mif-not:before {
  content: "\e633";
}
.mif-drive-eta:before {
  content: "\e652";
}
.mif-event-available:before {
  content: "\e653";
}
.mif-event-busy:before {
  content: "\e654";
}
.mif-folder-special:before {
  content: "\e655";
}
.mif-sd-card:before {
  content: "\e65d";
}
.mif-vpn-lock:before {
  content: "\e624";
}
.mif-vpn-publ:before {
  content: "\e625";
}
.mif-school:before {
  content: "\e61f";
}
.mif-progress:before {
  content: "\e9e6";
}
.mif-arrow-bold-up:before {
  content: "\eb34";
}
.mif-arrow-bold-down:before {
  content: "\eb35";
}
.mif-floppy-disk2:before {
  content: "\ea5e";
}
.mif-adjust:before {
  content: "\eb37";
}
.mif-area-graph:before {
  content: "\eb38";
}
.mif-awareness-ribbon:before {
  content: "\eb39";
}
.mif-circular-graph:before {
  content: "\eb3a";
}
.mif-drive:before {
  content: "\ea5f";
}
.mif-emoji-happy:before {
  content: "\eb3c";
}
.mif-emoji-neutral:before {
  content: "\eb3d";
}
.mif-emoji-sad:before {
  content: "\eb3e";
}
.mif-folder-images:before {
  content: "\ea60";
}
.mif-folder-music:before {
  content: "\ea61";
}
.mif-folder-video:before {
  content: "\ea66";
}
.mif-folder2:before {
  content: "\ea67";
}
.mif-gauge:before {
  content: "\eb3f";
}
.mif-help:before {
  content: "\e9c4";
}
.mif-home:before {
  content: "\eb40";
}
.mif-info:before {
  content: "\e9cf";
}
.mif-man:before {
  content: "\eb41";
}
.mif-minus:before {
  content: "\eb42";
}
.mif-pencil2:before {
  content: "\eb43";
}
.mif-pie-chart:before {
  content: "\eb44";
}
.mif-pin:before {
  content: "\eb45";
}
.mif-power-plug:before {
  content: "\eb46";
}
.mif-price-ribbon:before {
  content: "\e9ef";
}
.mif-rocket:before {
  content: "\eb47";
}
.mif-shopping-bag:before {
  content: "\eb48";
}
.mif-wallet:before {
  content: "\eb49";
}
.mif-cross:before {
  content: "\e9c5";
}
.mif-install:before {
  content: "\e902";
}
.mif-uninstall:before {
  content: "\e904";
}
.mif-news:before {
  content: "\e907";
}
.mif-book-reference:before {
  content: "\e908";
}
.mif-chevron-down:before {
  content: "\e66b";
}
.mif-chevron-left:before {
  content: "\e697";
}
.mif-chevron-right:before {
  content: "\e69b";
}
.mif-chevron-up:before {
  content: "\e69c";
}
.mif-air:before {
  content: "\e6a2";
}
.mif-medal:before {
  content: "\e6a3";
}
.mif-paper-plane:before {
  content: "\e6a4";
}
.mif-shareable:before {
  content: "\e6a5";
}
.mif-shop:before {
  content: "\e6a6";
}
.mif-shopping-basket2:before {
  content: "\e6a7";
}
.mif-thumbs-down:before {
  content: "\e6a8";
}
.mif-thumbs-up:before {
  content: "\e6a9";
}
.mif-traffic-cone:before {
  content: "\e6aa";
}
.mif-water:before {
  content: "\e6ab";
}
.mif-network:before {
  content: "\e9d1";
}
.mif-lan:before {
  content: "\e9dc";
}
.mif-net-server:before {
  content: "\e9dd";
}
.mif-computer:before {
  content: "\e9de";
}
.mif-hdd:before {
  content: "\e9df";
}
.mif-cpu:before {
  content: "\e9e1";
}
.mif-sign-pen:before {
  content: "\e9c9";
}
.mif-usb-dongle:before {
  content: "\e9e7";
}
.mif-stack2:before {
  content: "\e6b9";
}
.mif-stack3:before {
  content: "\e6ba";
}
.mif-lamp:before {
  content: "\e6bb";
}
.mif-injection:before {
  content: "\e6bc";
}
.mif-thermometer:before {
  content: "\e6bd";
}
.mif-justice:before {
  content: "\e6be";
}
.mif-cabinet:before {
  content: "\e62b";
}
.mif-suitcase:before {
  content: "\e62c";
}
.mif-gamepad:before {
  content: "\e65e";
}
.mif-satellite:before {
  content: "\e65f";
}
.mif-lock:before {
  content: "\e660";
}
.mif-unlock:before {
  content: "\e661";
}
.mif-tools:before {
  content: "\e632";
}
.mif-discout:before {
  content: "\e663";
}
.mif-profile:before {
  content: "\e664";
}
.mif-dollar:before {
  content: "\e665";
}
.mif-dollars:before {
  content: "\e666";
}
.mif-coins:before {
  content: "\e6b8";
}
.mif-male:before {
  content: "\e667";
}
.mif-female:before {
  content: "\e668";
}
.mif-piano:before {
  content: "\e669";
}
.mif-anchor:before {
  content: "\e66a";
}
/*# sourceMappingURL=metro.all.css.map */
