/* 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;
}
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;
  --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: #5a87cb;
  --link-color-hover: #0056B3FF;
  --selected-row-background: #26282e;
  --selected-item-background: #2e436e;
}
body {
  background-color: var(--body-background);
  color: var(--body-color);
}

/* source/common-css/animate-element.less */
.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: #069494;
}
.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: #ffff00;
}
.animated-border-brown,
.animated-border-hover-brown {
  --animated-border-color: #aa6432;
}
.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: #7a6654;
}
.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;
}
@media screen and (min-width: 0) {
  .d-flex-fs {
    display: flex !important;
  }
  .d-inline-flex-fs {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 360px) {
  .d-flex-xs {
    display: flex !important;
  }
  .d-inline-flex-xs {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 576px) {
  .d-flex-sm {
    display: flex !important;
  }
  .d-inline-flex-sm {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 640px) {
  .d-flex-ld {
    display: flex !important;
  }
  .d-inline-flex-ld {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-flex-md {
    display: flex !important;
  }
  .d-inline-flex-md {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 992px) {
  .d-flex-lg {
    display: flex !important;
  }
  .d-inline-flex-lg {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-flex-xl {
    display: flex !important;
  }
  .d-inline-flex-xl {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1400px) {
  .d-flex-xxl {
    display: flex !important;
  }
  .d-inline-flex-xxl {
    display: inline-flex !important;
  }
}
@media screen and (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-start {
  align-items: flex-start !important;
}
.flex-align-end {
  align-items: flex-end !important;
}
.flex-align-center {
  align-items: center !important;
}
.flex-align-stretch {
  align-items: stretch !important;
}
.flex-align-baseline {
  align-items: baseline !important;
}
.flex-self-start {
  align-self: flex-start !important;
}
.flex-self-end {
  align-self: flex-end !important;
}
.flex-self-center {
  align-self: center !important;
}
.flex-self-stretch {
  align-self: stretch !important;
}
.flex-self-baseline {
  align-self: baseline !important;
}
.flex-justify-start {
  justify-content: flex-start !important;
}
.flex-justify-end {
  justify-content: flex-end !important;
}
.flex-justify-center {
  justify-content: center !important;
}
.flex-justify-between {
  justify-content: space-between !important;
}
.flex-justify-around {
  justify-content: space-around !important;
}
.flex-content-start {
  align-content: flex-start !important;
}
.flex-content-end {
  align-content: flex-end !important;
}
.flex-content-center {
  align-content: center !important;
}
.flex-content-between {
  align-content: space-between !important;
}
.flex-content-around {
  align-content: space-around !important;
}
.flex-content-stretch {
  align-content: stretch !important;
}
.flex-no-shrink > * {
  flex-shrink: 0;
}
.flex-shrink > * {
  flex-shrink: 1;
}
.flex-no-grow > * {
  flex-grow: 0;
}
.flex-grow > * {
  flex-grow: 1;
}
.flex-no-shrink-self {
  flex-shrink: 0;
}
.flex-shrink-self {
  flex-shrink: 1;
}
.flex-no-grow-self {
  flex-grow: 0;
}
.flex-grow-self {
  flex-grow: 1;
}
.flex-right {
  margin-left: auto;
}
.flex-left {
  margin-right: auto;
}
.flex-top {
  margin-bottom: auto;
}
.flex-bottom {
  margin-top: auto;
}
.flex-center,
.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@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-align-start-fs {
    align-items: flex-start !important;
  }
  .flex-align-end-fs {
    align-items: flex-end !important;
  }
  .flex-align-center-fs {
    align-items: center !important;
  }
  .flex-align-stretch-fs {
    align-items: stretch !important;
  }
  .flex-align-baseline-fs {
    align-items: baseline !important;
  }
  .flex-self-start-fs {
    align-self: flex-start !important;
  }
  .flex-self-end-fs {
    align-self: flex-end !important;
  }
  .flex-self-center-fs {
    align-self: center !important;
  }
  .flex-self-stretch-fs {
    align-self: stretch !important;
  }
  .flex-self-baseline-fs {
    align-self: baseline !important;
  }
  .flex-justify-start-fs {
    justify-content: flex-start !important;
  }
  .flex-justify-end-fs {
    justify-content: flex-end !important;
  }
  .flex-justify-center-fs {
    justify-content: center !important;
  }
  .flex-justify-between-fs {
    justify-content: space-between !important;
  }
  .flex-justify-around-fs {
    justify-content: space-around !important;
  }
  .flex-content-start-fs {
    align-content: flex-start !important;
  }
  .flex-content-end-fs {
    align-content: flex-end !important;
  }
  .flex-content-center-fs {
    align-content: center !important;
  }
  .flex-content-between-fs {
    align-content: space-between !important;
  }
  .flex-content-around-fs {
    align-content: space-around !important;
  }
  .flex-content-stretch-fs {
    align-content: stretch !important;
  }
  .flex-no-shrink-fs > * {
    flex-shrink: 0;
  }
  .flex-shrink-fs > * {
    flex-shrink: 1;
  }
  .flex-no-grow-fs > * {
    flex-grow: 0;
  }
  .flex-grow-fs > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-fs {
    flex-shrink: 0;
  }
  .flex-shrink-self-fs {
    flex-shrink: 1;
  }
  .flex-no-grow-self-fs {
    flex-grow: 0;
  }
  .flex-grow-self-fs {
    flex-grow: 1;
  }
  .flex-right-fs {
    margin-left: auto;
  }
  .flex-left-fs {
    margin-right: auto;
  }
  .flex-top-fs {
    margin-bottom: auto;
  }
  .flex-bottom-fs {
    margin-top: auto;
  }
  .order-1-fs {
    order: 1;
  }
  .order-2-fs {
    order: 2;
  }
  .order-3-fs {
    order: 3;
  }
  .order-4-fs {
    order: 4;
  }
  .order-5-fs {
    order: 5;
  }
  .order-6-fs {
    order: 6;
  }
  .order-7-fs {
    order: 7;
  }
  .order-8-fs {
    order: 8;
  }
  .order-9-fs {
    order: 9;
  }
  .order-10-fs {
    order: 10;
  }
  .order-11-fs {
    order: 11;
  }
  .order-12-fs {
    order: 12;
  }
  .order-13-fs {
    order: 13;
  }
  .order-14-fs {
    order: 14;
  }
  .order-15-fs {
    order: 15;
  }
  .order-16-fs {
    order: 16;
  }
  .order-17-fs {
    order: 17;
  }
  .order-18-fs {
    order: 18;
  }
  .order-19-fs {
    order: 19;
  }
  .order-20-fs {
    order: 20;
  }
  .order-21-fs {
    order: 21;
  }
  .order-22-fs {
    order: 22;
  }
  .order-23-fs {
    order: 23;
  }
  .order-24-fs {
    order: 24;
  }
  .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-align-start-xs {
    align-items: flex-start !important;
  }
  .flex-align-end-xs {
    align-items: flex-end !important;
  }
  .flex-align-center-xs {
    align-items: center !important;
  }
  .flex-align-stretch-xs {
    align-items: stretch !important;
  }
  .flex-align-baseline-xs {
    align-items: baseline !important;
  }
  .flex-self-start-xs {
    align-self: flex-start !important;
  }
  .flex-self-end-xs {
    align-self: flex-end !important;
  }
  .flex-self-center-xs {
    align-self: center !important;
  }
  .flex-self-stretch-xs {
    align-self: stretch !important;
  }
  .flex-self-baseline-xs {
    align-self: baseline !important;
  }
  .flex-justify-start-xs {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xs {
    justify-content: flex-end !important;
  }
  .flex-justify-center-xs {
    justify-content: center !important;
  }
  .flex-justify-between-xs {
    justify-content: space-between !important;
  }
  .flex-justify-around-xs {
    justify-content: space-around !important;
  }
  .flex-content-start-xs {
    align-content: flex-start !important;
  }
  .flex-content-end-xs {
    align-content: flex-end !important;
  }
  .flex-content-center-xs {
    align-content: center !important;
  }
  .flex-content-between-xs {
    align-content: space-between !important;
  }
  .flex-content-around-xs {
    align-content: space-around !important;
  }
  .flex-content-stretch-xs {
    align-content: stretch !important;
  }
  .flex-no-shrink-xs > * {
    flex-shrink: 0;
  }
  .flex-shrink-xs > * {
    flex-shrink: 1;
  }
  .flex-no-grow-xs > * {
    flex-grow: 0;
  }
  .flex-grow-xs > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-xs {
    flex-shrink: 0;
  }
  .flex-shrink-self-xs {
    flex-shrink: 1;
  }
  .flex-no-grow-self-xs {
    flex-grow: 0;
  }
  .flex-grow-self-xs {
    flex-grow: 1;
  }
  .flex-right-xs {
    margin-left: auto;
  }
  .flex-left-xs {
    margin-right: auto;
  }
  .flex-top-xs {
    margin-bottom: auto;
  }
  .flex-bottom-xs {
    margin-top: auto;
  }
  .order-1-xs {
    order: 1;
  }
  .order-2-xs {
    order: 2;
  }
  .order-3-xs {
    order: 3;
  }
  .order-4-xs {
    order: 4;
  }
  .order-5-xs {
    order: 5;
  }
  .order-6-xs {
    order: 6;
  }
  .order-7-xs {
    order: 7;
  }
  .order-8-xs {
    order: 8;
  }
  .order-9-xs {
    order: 9;
  }
  .order-10-xs {
    order: 10;
  }
  .order-11-xs {
    order: 11;
  }
  .order-12-xs {
    order: 12;
  }
  .order-13-xs {
    order: 13;
  }
  .order-14-xs {
    order: 14;
  }
  .order-15-xs {
    order: 15;
  }
  .order-16-xs {
    order: 16;
  }
  .order-17-xs {
    order: 17;
  }
  .order-18-xs {
    order: 18;
  }
  .order-19-xs {
    order: 19;
  }
  .order-20-xs {
    order: 20;
  }
  .order-21-xs {
    order: 21;
  }
  .order-22-xs {
    order: 22;
  }
  .order-23-xs {
    order: 23;
  }
  .order-24-xs {
    order: 24;
  }
  .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-align-start-sm {
    align-items: flex-start !important;
  }
  .flex-align-end-sm {
    align-items: flex-end !important;
  }
  .flex-align-center-sm {
    align-items: center !important;
  }
  .flex-align-stretch-sm {
    align-items: stretch !important;
  }
  .flex-align-baseline-sm {
    align-items: baseline !important;
  }
  .flex-self-start-sm {
    align-self: flex-start !important;
  }
  .flex-self-end-sm {
    align-self: flex-end !important;
  }
  .flex-self-center-sm {
    align-self: center !important;
  }
  .flex-self-stretch-sm {
    align-self: stretch !important;
  }
  .flex-self-baseline-sm {
    align-self: baseline !important;
  }
  .flex-justify-start-sm {
    justify-content: flex-start !important;
  }
  .flex-justify-end-sm {
    justify-content: flex-end !important;
  }
  .flex-justify-center-sm {
    justify-content: center !important;
  }
  .flex-justify-between-sm {
    justify-content: space-between !important;
  }
  .flex-justify-around-sm {
    justify-content: space-around !important;
  }
  .flex-content-start-sm {
    align-content: flex-start !important;
  }
  .flex-content-end-sm {
    align-content: flex-end !important;
  }
  .flex-content-center-sm {
    align-content: center !important;
  }
  .flex-content-between-sm {
    align-content: space-between !important;
  }
  .flex-content-around-sm {
    align-content: space-around !important;
  }
  .flex-content-stretch-sm {
    align-content: stretch !important;
  }
  .flex-no-shrink-sm > * {
    flex-shrink: 0;
  }
  .flex-shrink-sm > * {
    flex-shrink: 1;
  }
  .flex-no-grow-sm > * {
    flex-grow: 0;
  }
  .flex-grow-sm > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-sm {
    flex-shrink: 0;
  }
  .flex-shrink-self-sm {
    flex-shrink: 1;
  }
  .flex-no-grow-self-sm {
    flex-grow: 0;
  }
  .flex-grow-self-sm {
    flex-grow: 1;
  }
  .flex-right-sm {
    margin-left: auto;
  }
  .flex-left-sm {
    margin-right: auto;
  }
  .flex-top-sm {
    margin-bottom: auto;
  }
  .flex-bottom-sm {
    margin-top: auto;
  }
  .order-1-sm {
    order: 1;
  }
  .order-2-sm {
    order: 2;
  }
  .order-3-sm {
    order: 3;
  }
  .order-4-sm {
    order: 4;
  }
  .order-5-sm {
    order: 5;
  }
  .order-6-sm {
    order: 6;
  }
  .order-7-sm {
    order: 7;
  }
  .order-8-sm {
    order: 8;
  }
  .order-9-sm {
    order: 9;
  }
  .order-10-sm {
    order: 10;
  }
  .order-11-sm {
    order: 11;
  }
  .order-12-sm {
    order: 12;
  }
  .order-13-sm {
    order: 13;
  }
  .order-14-sm {
    order: 14;
  }
  .order-15-sm {
    order: 15;
  }
  .order-16-sm {
    order: 16;
  }
  .order-17-sm {
    order: 17;
  }
  .order-18-sm {
    order: 18;
  }
  .order-19-sm {
    order: 19;
  }
  .order-20-sm {
    order: 20;
  }
  .order-21-sm {
    order: 21;
  }
  .order-22-sm {
    order: 22;
  }
  .order-23-sm {
    order: 23;
  }
  .order-24-sm {
    order: 24;
  }
  .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-align-start-ld {
    align-items: flex-start !important;
  }
  .flex-align-end-ld {
    align-items: flex-end !important;
  }
  .flex-align-center-ld {
    align-items: center !important;
  }
  .flex-align-stretch-ld {
    align-items: stretch !important;
  }
  .flex-align-baseline-ld {
    align-items: baseline !important;
  }
  .flex-self-start-ld {
    align-self: flex-start !important;
  }
  .flex-self-end-ld {
    align-self: flex-end !important;
  }
  .flex-self-center-ld {
    align-self: center !important;
  }
  .flex-self-stretch-ld {
    align-self: stretch !important;
  }
  .flex-self-baseline-ld {
    align-self: baseline !important;
  }
  .flex-justify-start-ld {
    justify-content: flex-start !important;
  }
  .flex-justify-end-ld {
    justify-content: flex-end !important;
  }
  .flex-justify-center-ld {
    justify-content: center !important;
  }
  .flex-justify-between-ld {
    justify-content: space-between !important;
  }
  .flex-justify-around-ld {
    justify-content: space-around !important;
  }
  .flex-content-start-ld {
    align-content: flex-start !important;
  }
  .flex-content-end-ld {
    align-content: flex-end !important;
  }
  .flex-content-center-ld {
    align-content: center !important;
  }
  .flex-content-between-ld {
    align-content: space-between !important;
  }
  .flex-content-around-ld {
    align-content: space-around !important;
  }
  .flex-content-stretch-ld {
    align-content: stretch !important;
  }
  .flex-no-shrink-ld > * {
    flex-shrink: 0;
  }
  .flex-shrink-ld > * {
    flex-shrink: 1;
  }
  .flex-no-grow-ld > * {
    flex-grow: 0;
  }
  .flex-grow-ld > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-ld {
    flex-shrink: 0;
  }
  .flex-shrink-self-ld {
    flex-shrink: 1;
  }
  .flex-no-grow-self-ld {
    flex-grow: 0;
  }
  .flex-grow-self-ld {
    flex-grow: 1;
  }
  .flex-right-ld {
    margin-left: auto;
  }
  .flex-left-ld {
    margin-right: auto;
  }
  .flex-top-ld {
    margin-bottom: auto;
  }
  .flex-bottom-ld {
    margin-top: auto;
  }
  .order-1-ld {
    order: 1;
  }
  .order-2-ld {
    order: 2;
  }
  .order-3-ld {
    order: 3;
  }
  .order-4-ld {
    order: 4;
  }
  .order-5-ld {
    order: 5;
  }
  .order-6-ld {
    order: 6;
  }
  .order-7-ld {
    order: 7;
  }
  .order-8-ld {
    order: 8;
  }
  .order-9-ld {
    order: 9;
  }
  .order-10-ld {
    order: 10;
  }
  .order-11-ld {
    order: 11;
  }
  .order-12-ld {
    order: 12;
  }
  .order-13-ld {
    order: 13;
  }
  .order-14-ld {
    order: 14;
  }
  .order-15-ld {
    order: 15;
  }
  .order-16-ld {
    order: 16;
  }
  .order-17-ld {
    order: 17;
  }
  .order-18-ld {
    order: 18;
  }
  .order-19-ld {
    order: 19;
  }
  .order-20-ld {
    order: 20;
  }
  .order-21-ld {
    order: 21;
  }
  .order-22-ld {
    order: 22;
  }
  .order-23-ld {
    order: 23;
  }
  .order-24-ld {
    order: 24;
  }
  .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-align-start-md {
    align-items: flex-start !important;
  }
  .flex-align-end-md {
    align-items: flex-end !important;
  }
  .flex-align-center-md {
    align-items: center !important;
  }
  .flex-align-stretch-md {
    align-items: stretch !important;
  }
  .flex-align-baseline-md {
    align-items: baseline !important;
  }
  .flex-self-start-md {
    align-self: flex-start !important;
  }
  .flex-self-end-md {
    align-self: flex-end !important;
  }
  .flex-self-center-md {
    align-self: center !important;
  }
  .flex-self-stretch-md {
    align-self: stretch !important;
  }
  .flex-self-baseline-md {
    align-self: baseline !important;
  }
  .flex-justify-start-md {
    justify-content: flex-start !important;
  }
  .flex-justify-end-md {
    justify-content: flex-end !important;
  }
  .flex-justify-center-md {
    justify-content: center !important;
  }
  .flex-justify-between-md {
    justify-content: space-between !important;
  }
  .flex-justify-around-md {
    justify-content: space-around !important;
  }
  .flex-content-start-md {
    align-content: flex-start !important;
  }
  .flex-content-end-md {
    align-content: flex-end !important;
  }
  .flex-content-center-md {
    align-content: center !important;
  }
  .flex-content-between-md {
    align-content: space-between !important;
  }
  .flex-content-around-md {
    align-content: space-around !important;
  }
  .flex-content-stretch-md {
    align-content: stretch !important;
  }
  .flex-no-shrink-md > * {
    flex-shrink: 0;
  }
  .flex-shrink-md > * {
    flex-shrink: 1;
  }
  .flex-no-grow-md > * {
    flex-grow: 0;
  }
  .flex-grow-md > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-md {
    flex-shrink: 0;
  }
  .flex-shrink-self-md {
    flex-shrink: 1;
  }
  .flex-no-grow-self-md {
    flex-grow: 0;
  }
  .flex-grow-self-md {
    flex-grow: 1;
  }
  .flex-right-md {
    margin-left: auto;
  }
  .flex-left-md {
    margin-right: auto;
  }
  .flex-top-md {
    margin-bottom: auto;
  }
  .flex-bottom-md {
    margin-top: auto;
  }
  .order-1-md {
    order: 1;
  }
  .order-2-md {
    order: 2;
  }
  .order-3-md {
    order: 3;
  }
  .order-4-md {
    order: 4;
  }
  .order-5-md {
    order: 5;
  }
  .order-6-md {
    order: 6;
  }
  .order-7-md {
    order: 7;
  }
  .order-8-md {
    order: 8;
  }
  .order-9-md {
    order: 9;
  }
  .order-10-md {
    order: 10;
  }
  .order-11-md {
    order: 11;
  }
  .order-12-md {
    order: 12;
  }
  .order-13-md {
    order: 13;
  }
  .order-14-md {
    order: 14;
  }
  .order-15-md {
    order: 15;
  }
  .order-16-md {
    order: 16;
  }
  .order-17-md {
    order: 17;
  }
  .order-18-md {
    order: 18;
  }
  .order-19-md {
    order: 19;
  }
  .order-20-md {
    order: 20;
  }
  .order-21-md {
    order: 21;
  }
  .order-22-md {
    order: 22;
  }
  .order-23-md {
    order: 23;
  }
  .order-24-md {
    order: 24;
  }
  .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-align-start-lg {
    align-items: flex-start !important;
  }
  .flex-align-end-lg {
    align-items: flex-end !important;
  }
  .flex-align-center-lg {
    align-items: center !important;
  }
  .flex-align-stretch-lg {
    align-items: stretch !important;
  }
  .flex-align-baseline-lg {
    align-items: baseline !important;
  }
  .flex-self-start-lg {
    align-self: flex-start !important;
  }
  .flex-self-end-lg {
    align-self: flex-end !important;
  }
  .flex-self-center-lg {
    align-self: center !important;
  }
  .flex-self-stretch-lg {
    align-self: stretch !important;
  }
  .flex-self-baseline-lg {
    align-self: baseline !important;
  }
  .flex-justify-start-lg {
    justify-content: flex-start !important;
  }
  .flex-justify-end-lg {
    justify-content: flex-end !important;
  }
  .flex-justify-center-lg {
    justify-content: center !important;
  }
  .flex-justify-between-lg {
    justify-content: space-between !important;
  }
  .flex-justify-around-lg {
    justify-content: space-around !important;
  }
  .flex-content-start-lg {
    align-content: flex-start !important;
  }
  .flex-content-end-lg {
    align-content: flex-end !important;
  }
  .flex-content-center-lg {
    align-content: center !important;
  }
  .flex-content-between-lg {
    align-content: space-between !important;
  }
  .flex-content-around-lg {
    align-content: space-around !important;
  }
  .flex-content-stretch-lg {
    align-content: stretch !important;
  }
  .flex-no-shrink-lg > * {
    flex-shrink: 0;
  }
  .flex-shrink-lg > * {
    flex-shrink: 1;
  }
  .flex-no-grow-lg > * {
    flex-grow: 0;
  }
  .flex-grow-lg > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-lg {
    flex-shrink: 0;
  }
  .flex-shrink-self-lg {
    flex-shrink: 1;
  }
  .flex-no-grow-self-lg {
    flex-grow: 0;
  }
  .flex-grow-self-lg {
    flex-grow: 1;
  }
  .flex-right-lg {
    margin-left: auto;
  }
  .flex-left-lg {
    margin-right: auto;
  }
  .flex-top-lg {
    margin-bottom: auto;
  }
  .flex-bottom-lg {
    margin-top: auto;
  }
  .order-1-lg {
    order: 1;
  }
  .order-2-lg {
    order: 2;
  }
  .order-3-lg {
    order: 3;
  }
  .order-4-lg {
    order: 4;
  }
  .order-5-lg {
    order: 5;
  }
  .order-6-lg {
    order: 6;
  }
  .order-7-lg {
    order: 7;
  }
  .order-8-lg {
    order: 8;
  }
  .order-9-lg {
    order: 9;
  }
  .order-10-lg {
    order: 10;
  }
  .order-11-lg {
    order: 11;
  }
  .order-12-lg {
    order: 12;
  }
  .order-13-lg {
    order: 13;
  }
  .order-14-lg {
    order: 14;
  }
  .order-15-lg {
    order: 15;
  }
  .order-16-lg {
    order: 16;
  }
  .order-17-lg {
    order: 17;
  }
  .order-18-lg {
    order: 18;
  }
  .order-19-lg {
    order: 19;
  }
  .order-20-lg {
    order: 20;
  }
  .order-21-lg {
    order: 21;
  }
  .order-22-lg {
    order: 22;
  }
  .order-23-lg {
    order: 23;
  }
  .order-24-lg {
    order: 24;
  }
  .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-align-start-xl {
    align-items: flex-start !important;
  }
  .flex-align-end-xl {
    align-items: flex-end !important;
  }
  .flex-align-center-xl {
    align-items: center !important;
  }
  .flex-align-stretch-xl {
    align-items: stretch !important;
  }
  .flex-align-baseline-xl {
    align-items: baseline !important;
  }
  .flex-self-start-xl {
    align-self: flex-start !important;
  }
  .flex-self-end-xl {
    align-self: flex-end !important;
  }
  .flex-self-center-xl {
    align-self: center !important;
  }
  .flex-self-stretch-xl {
    align-self: stretch !important;
  }
  .flex-self-baseline-xl {
    align-self: baseline !important;
  }
  .flex-justify-start-xl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xl {
    justify-content: flex-end !important;
  }
  .flex-justify-center-xl {
    justify-content: center !important;
  }
  .flex-justify-between-xl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xl {
    justify-content: space-around !important;
  }
  .flex-content-start-xl {
    align-content: flex-start !important;
  }
  .flex-content-end-xl {
    align-content: flex-end !important;
  }
  .flex-content-center-xl {
    align-content: center !important;
  }
  .flex-content-between-xl {
    align-content: space-between !important;
  }
  .flex-content-around-xl {
    align-content: space-around !important;
  }
  .flex-content-stretch-xl {
    align-content: stretch !important;
  }
  .flex-no-shrink-xl > * {
    flex-shrink: 0;
  }
  .flex-shrink-xl > * {
    flex-shrink: 1;
  }
  .flex-no-grow-xl > * {
    flex-grow: 0;
  }
  .flex-grow-xl > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-xl {
    flex-shrink: 0;
  }
  .flex-shrink-self-xl {
    flex-shrink: 1;
  }
  .flex-no-grow-self-xl {
    flex-grow: 0;
  }
  .flex-grow-self-xl {
    flex-grow: 1;
  }
  .flex-right-xl {
    margin-left: auto;
  }
  .flex-left-xl {
    margin-right: auto;
  }
  .flex-top-xl {
    margin-bottom: auto;
  }
  .flex-bottom-xl {
    margin-top: auto;
  }
  .order-1-xl {
    order: 1;
  }
  .order-2-xl {
    order: 2;
  }
  .order-3-xl {
    order: 3;
  }
  .order-4-xl {
    order: 4;
  }
  .order-5-xl {
    order: 5;
  }
  .order-6-xl {
    order: 6;
  }
  .order-7-xl {
    order: 7;
  }
  .order-8-xl {
    order: 8;
  }
  .order-9-xl {
    order: 9;
  }
  .order-10-xl {
    order: 10;
  }
  .order-11-xl {
    order: 11;
  }
  .order-12-xl {
    order: 12;
  }
  .order-13-xl {
    order: 13;
  }
  .order-14-xl {
    order: 14;
  }
  .order-15-xl {
    order: 15;
  }
  .order-16-xl {
    order: 16;
  }
  .order-17-xl {
    order: 17;
  }
  .order-18-xl {
    order: 18;
  }
  .order-19-xl {
    order: 19;
  }
  .order-20-xl {
    order: 20;
  }
  .order-21-xl {
    order: 21;
  }
  .order-22-xl {
    order: 22;
  }
  .order-23-xl {
    order: 23;
  }
  .order-24-xl {
    order: 24;
  }
  .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-align-start-xxl {
    align-items: flex-start !important;
  }
  .flex-align-end-xxl {
    align-items: flex-end !important;
  }
  .flex-align-center-xxl {
    align-items: center !important;
  }
  .flex-align-stretch-xxl {
    align-items: stretch !important;
  }
  .flex-align-baseline-xxl {
    align-items: baseline !important;
  }
  .flex-self-start-xxl {
    align-self: flex-start !important;
  }
  .flex-self-end-xxl {
    align-self: flex-end !important;
  }
  .flex-self-center-xxl {
    align-self: center !important;
  }
  .flex-self-stretch-xxl {
    align-self: stretch !important;
  }
  .flex-self-baseline-xxl {
    align-self: baseline !important;
  }
  .flex-justify-start-xxl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xxl {
    justify-content: flex-end !important;
  }
  .flex-justify-center-xxl {
    justify-content: center !important;
  }
  .flex-justify-between-xxl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xxl {
    justify-content: space-around !important;
  }
  .flex-content-start-xxl {
    align-content: flex-start !important;
  }
  .flex-content-end-xxl {
    align-content: flex-end !important;
  }
  .flex-content-center-xxl {
    align-content: center !important;
  }
  .flex-content-between-xxl {
    align-content: space-between !important;
  }
  .flex-content-around-xxl {
    align-content: space-around !important;
  }
  .flex-content-stretch-xxl {
    align-content: stretch !important;
  }
  .flex-no-shrink-xxl > * {
    flex-shrink: 0;
  }
  .flex-shrink-xxl > * {
    flex-shrink: 1;
  }
  .flex-no-grow-xxl > * {
    flex-grow: 0;
  }
  .flex-grow-xxl > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-xxl {
    flex-shrink: 0;
  }
  .flex-shrink-self-xxl {
    flex-shrink: 1;
  }
  .flex-no-grow-self-xxl {
    flex-grow: 0;
  }
  .flex-grow-self-xxl {
    flex-grow: 1;
  }
  .flex-right-xxl {
    margin-left: auto;
  }
  .flex-left-xxl {
    margin-right: auto;
  }
  .flex-top-xxl {
    margin-bottom: auto;
  }
  .flex-bottom-xxl {
    margin-top: auto;
  }
  .order-1-xxl {
    order: 1;
  }
  .order-2-xxl {
    order: 2;
  }
  .order-3-xxl {
    order: 3;
  }
  .order-4-xxl {
    order: 4;
  }
  .order-5-xxl {
    order: 5;
  }
  .order-6-xxl {
    order: 6;
  }
  .order-7-xxl {
    order: 7;
  }
  .order-8-xxl {
    order: 8;
  }
  .order-9-xxl {
    order: 9;
  }
  .order-10-xxl {
    order: 10;
  }
  .order-11-xxl {
    order: 11;
  }
  .order-12-xxl {
    order: 12;
  }
  .order-13-xxl {
    order: 13;
  }
  .order-14-xxl {
    order: 14;
  }
  .order-15-xxl {
    order: 15;
  }
  .order-16-xxl {
    order: 16;
  }
  .order-17-xxl {
    order: 17;
  }
  .order-18-xxl {
    order: 18;
  }
  .order-19-xxl {
    order: 19;
  }
  .order-20-xxl {
    order: 20;
  }
  .order-21-xxl {
    order: 21;
  }
  .order-22-xxl {
    order: 22;
  }
  .order-23-xxl {
    order: 23;
  }
  .order-24-xxl {
    order: 24;
  }
  .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-align-start-xxxl {
    align-items: flex-start !important;
  }
  .flex-align-end-xxxl {
    align-items: flex-end !important;
  }
  .flex-align-center-xxxl {
    align-items: center !important;
  }
  .flex-align-stretch-xxxl {
    align-items: stretch !important;
  }
  .flex-align-baseline-xxxl {
    align-items: baseline !important;
  }
  .flex-self-start-xxxl {
    align-self: flex-start !important;
  }
  .flex-self-end-xxxl {
    align-self: flex-end !important;
  }
  .flex-self-center-xxxl {
    align-self: center !important;
  }
  .flex-self-stretch-xxxl {
    align-self: stretch !important;
  }
  .flex-self-baseline-xxxl {
    align-self: baseline !important;
  }
  .flex-justify-start-xxxl {
    justify-content: flex-start !important;
  }
  .flex-justify-end-xxxl {
    justify-content: flex-end !important;
  }
  .flex-justify-center-xxxl {
    justify-content: center !important;
  }
  .flex-justify-between-xxxl {
    justify-content: space-between !important;
  }
  .flex-justify-around-xxxl {
    justify-content: space-around !important;
  }
  .flex-content-start-xxxl {
    align-content: flex-start !important;
  }
  .flex-content-end-xxxl {
    align-content: flex-end !important;
  }
  .flex-content-center-xxxl {
    align-content: center !important;
  }
  .flex-content-between-xxxl {
    align-content: space-between !important;
  }
  .flex-content-around-xxxl {
    align-content: space-around !important;
  }
  .flex-content-stretch-xxxl {
    align-content: stretch !important;
  }
  .flex-no-shrink-xxxl > * {
    flex-shrink: 0;
  }
  .flex-shrink-xxxl > * {
    flex-shrink: 1;
  }
  .flex-no-grow-xxxl > * {
    flex-grow: 0;
  }
  .flex-grow-xxxl > * {
    flex-grow: 1;
  }
  .flex-no-shrink-self-xxxl {
    flex-shrink: 0;
  }
  .flex-shrink-self-xxxl {
    flex-shrink: 1;
  }
  .flex-no-grow-self-xxxl {
    flex-grow: 0;
  }
  .flex-grow-self-xxxl {
    flex-grow: 1;
  }
  .flex-right-xxxl {
    margin-left: auto;
  }
  .flex-left-xxxl {
    margin-right: auto;
  }
  .flex-top-xxxl {
    margin-bottom: auto;
  }
  .flex-bottom-xxxl {
    margin-top: auto;
  }
  .order-1-xxxl {
    order: 1;
  }
  .order-2-xxxl {
    order: 2;
  }
  .order-3-xxxl {
    order: 3;
  }
  .order-4-xxxl {
    order: 4;
  }
  .order-5-xxxl {
    order: 5;
  }
  .order-6-xxxl {
    order: 6;
  }
  .order-7-xxxl {
    order: 7;
  }
  .order-8-xxxl {
    order: 8;
  }
  .order-9-xxxl {
    order: 9;
  }
  .order-10-xxxl {
    order: 10;
  }
  .order-11-xxxl {
    order: 11;
  }
  .order-12-xxxl {
    order: 12;
  }
  .order-13-xxxl {
    order: 13;
  }
  .order-14-xxxl {
    order: 14;
  }
  .order-15-xxxl {
    order: 15;
  }
  .order-16-xxxl {
    order: 16;
  }
  .order-17-xxxl {
    order: 17;
  }
  .order-18-xxxl {
    order: 18;
  }
  .order-19-xxxl {
    order: 19;
  }
  .order-20-xxxl {
    order: 20;
  }
  .order-21-xxxl {
    order: 21;
  }
  .order-22-xxxl {
    order: 22;
  }
  .order-23-xxxl {
    order: 23;
  }
  .order-24-xxxl {
    order: 24;
  }
  .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 */
:root {
  --font-name:
    -apple-system,
    system-ui,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Ubuntu",
    "Helvetica Neue",
    sans-serif;
  --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;
}
@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-vh-10 {
  height: 10vh !important;
}
.h-vw-10 {
  height: 10vw !important;
}
.w-vh-10 {
  width: 10vh !important;
}
.w-vw-10 {
  width: 10vw !important;
}
.h-10 {
  height: 10% !important;
}
.w-10 {
  width: 10% !important;
}
.mh-10 {
  max-height: 10% !important;
}
.mw-10 {
  max-width: 10% !important;
}
.h-vh-20 {
  height: 20vh !important;
}
.h-vw-20 {
  height: 20vw !important;
}
.w-vh-20 {
  width: 20vh !important;
}
.w-vw-20 {
  width: 20vw !important;
}
.h-20 {
  height: 20% !important;
}
.w-20 {
  width: 20% !important;
}
.mh-20 {
  max-height: 20% !important;
}
.mw-20 {
  max-width: 20% !important;
}
.h-vh-25 {
  height: 25vh !important;
}
.h-vw-25 {
  height: 25vw !important;
}
.w-vh-25 {
  width: 25vh !important;
}
.w-vw-25 {
  width: 25vw !important;
}
.h-25 {
  height: 25% !important;
}
.w-25 {
  width: 25% !important;
}
.mh-25 {
  max-height: 25% !important;
}
.mw-25 {
  max-width: 25% !important;
}
.h-vh-33 {
  height: 33vh !important;
}
.h-vw-33 {
  height: 33vw !important;
}
.w-vh-33 {
  width: 33vh !important;
}
.w-vw-33 {
  width: 33vw !important;
}
.h-33 {
  height: 33% !important;
}
.w-33 {
  width: 33% !important;
}
.mh-33 {
  max-height: 33% !important;
}
.mw-33 {
  max-width: 33% !important;
}
.h-vh-50 {
  height: 50vh !important;
}
.h-vw-50 {
  height: 50vw !important;
}
.w-vh-50 {
  width: 50vh !important;
}
.w-vw-50 {
  width: 50vw !important;
}
.h-50 {
  height: 50% !important;
}
.w-50 {
  width: 50% !important;
}
.mh-50 {
  max-height: 50% !important;
}
.mw-50 {
  max-width: 50% !important;
}
.h-vh-66 {
  height: 66vh !important;
}
.h-vw-66 {
  height: 66vw !important;
}
.w-vh-66 {
  width: 66vh !important;
}
.w-vw-66 {
  width: 66vw !important;
}
.h-66 {
  height: 66% !important;
}
.w-66 {
  width: 66% !important;
}
.mh-66 {
  max-height: 66% !important;
}
.mw-66 {
  max-width: 66% !important;
}
.h-vh-75 {
  height: 75vh !important;
}
.h-vw-75 {
  height: 75vw !important;
}
.w-vh-75 {
  width: 75vh !important;
}
.w-vw-75 {
  width: 75vw !important;
}
.h-75 {
  height: 75% !important;
}
.w-75 {
  width: 75% !important;
}
.mh-75 {
  max-height: 75% !important;
}
.mw-75 {
  max-width: 75% !important;
}
.h-vh-80 {
  height: 80vh !important;
}
.h-vw-80 {
  height: 80vw !important;
}
.w-vh-80 {
  width: 80vh !important;
}
.w-vw-80 {
  width: 80vw !important;
}
.h-80 {
  height: 80% !important;
}
.w-80 {
  width: 80% !important;
}
.mh-80 {
  max-height: 80% !important;
}
.mw-80 {
  max-width: 80% !important;
}
.h-vh-90 {
  height: 90vh !important;
}
.h-vw-90 {
  height: 90vw !important;
}
.w-vh-90 {
  width: 90vh !important;
}
.w-vw-90 {
  width: 90vw !important;
}
.h-90 {
  height: 90% !important;
}
.w-90 {
  width: 90% !important;
}
.mh-90 {
  max-height: 90% !important;
}
.mw-90 {
  max-width: 90% !important;
}
.h-vh-100 {
  height: 100vh !important;
}
.h-vw-100 {
  height: 100vw !important;
}
.w-vh-100 {
  width: 100vh !important;
}
.w-vw-100 {
  width: 100vw !important;
}
.h-100 {
  height: 100% !important;
}
.w-100 {
  width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mw-100 {
  max-width: 100% !important;
}
@container (min-width: 0) {
  .w-auto-fs {
    width: auto !important;
  }
  .h-auto-fs {
    height: auto !important;
  }
  .h-vh-10-fs {
    height: 10vh !important;
  }
  .h-vw-10-fs {
    height: 10vw !important;
  }
  .w-vh-10-fs {
    width: 10vh !important;
  }
  .w-vw-10-fs {
    width: 10vw !important;
  }
  .h-10-fs {
    height: 10% !important;
  }
  .w-10-fs {
    width: 10% !important;
  }
  .mh-10-fs {
    max-height: 10% !important;
  }
  .mw-10-fs {
    max-width: 10% !important;
  }
  .h-vh-20-fs {
    height: 20vh !important;
  }
  .h-vw-20-fs {
    height: 20vw !important;
  }
  .w-vh-20-fs {
    width: 20vh !important;
  }
  .w-vw-20-fs {
    width: 20vw !important;
  }
  .h-20-fs {
    height: 20% !important;
  }
  .w-20-fs {
    width: 20% !important;
  }
  .mh-20-fs {
    max-height: 20% !important;
  }
  .mw-20-fs {
    max-width: 20% !important;
  }
  .h-vh-25-fs {
    height: 25vh !important;
  }
  .h-vw-25-fs {
    height: 25vw !important;
  }
  .w-vh-25-fs {
    width: 25vh !important;
  }
  .w-vw-25-fs {
    width: 25vw !important;
  }
  .h-25-fs {
    height: 25% !important;
  }
  .w-25-fs {
    width: 25% !important;
  }
  .mh-25-fs {
    max-height: 25% !important;
  }
  .mw-25-fs {
    max-width: 25% !important;
  }
  .h-vh-33-fs {
    height: 33vh !important;
  }
  .h-vw-33-fs {
    height: 33vw !important;
  }
  .w-vh-33-fs {
    width: 33vh !important;
  }
  .w-vw-33-fs {
    width: 33vw !important;
  }
  .h-33-fs {
    height: 33% !important;
  }
  .w-33-fs {
    width: 33% !important;
  }
  .mh-33-fs {
    max-height: 33% !important;
  }
  .mw-33-fs {
    max-width: 33% !important;
  }
  .h-vh-50-fs {
    height: 50vh !important;
  }
  .h-vw-50-fs {
    height: 50vw !important;
  }
  .w-vh-50-fs {
    width: 50vh !important;
  }
  .w-vw-50-fs {
    width: 50vw !important;
  }
  .h-50-fs {
    height: 50% !important;
  }
  .w-50-fs {
    width: 50% !important;
  }
  .mh-50-fs {
    max-height: 50% !important;
  }
  .mw-50-fs {
    max-width: 50% !important;
  }
  .h-vh-66-fs {
    height: 66vh !important;
  }
  .h-vw-66-fs {
    height: 66vw !important;
  }
  .w-vh-66-fs {
    width: 66vh !important;
  }
  .w-vw-66-fs {
    width: 66vw !important;
  }
  .h-66-fs {
    height: 66% !important;
  }
  .w-66-fs {
    width: 66% !important;
  }
  .mh-66-fs {
    max-height: 66% !important;
  }
  .mw-66-fs {
    max-width: 66% !important;
  }
  .h-vh-75-fs {
    height: 75vh !important;
  }
  .h-vw-75-fs {
    height: 75vw !important;
  }
  .w-vh-75-fs {
    width: 75vh !important;
  }
  .w-vw-75-fs {
    width: 75vw !important;
  }
  .h-75-fs {
    height: 75% !important;
  }
  .w-75-fs {
    width: 75% !important;
  }
  .mh-75-fs {
    max-height: 75% !important;
  }
  .mw-75-fs {
    max-width: 75% !important;
  }
  .h-vh-80-fs {
    height: 80vh !important;
  }
  .h-vw-80-fs {
    height: 80vw !important;
  }
  .w-vh-80-fs {
    width: 80vh !important;
  }
  .w-vw-80-fs {
    width: 80vw !important;
  }
  .h-80-fs {
    height: 80% !important;
  }
  .w-80-fs {
    width: 80% !important;
  }
  .mh-80-fs {
    max-height: 80% !important;
  }
  .mw-80-fs {
    max-width: 80% !important;
  }
  .h-vh-90-fs {
    height: 90vh !important;
  }
  .h-vw-90-fs {
    height: 90vw !important;
  }
  .w-vh-90-fs {
    width: 90vh !important;
  }
  .w-vw-90-fs {
    width: 90vw !important;
  }
  .h-90-fs {
    height: 90% !important;
  }
  .w-90-fs {
    width: 90% !important;
  }
  .mh-90-fs {
    max-height: 90% !important;
  }
  .mw-90-fs {
    max-width: 90% !important;
  }
  .h-vh-100-fs {
    height: 100vh !important;
  }
  .h-vw-100-fs {
    height: 100vw !important;
  }
  .w-vh-100-fs {
    width: 100vh !important;
  }
  .w-vw-100-fs {
    width: 100vw !important;
  }
  .h-100-fs {
    height: 100% !important;
  }
  .w-100-fs {
    width: 100% !important;
  }
  .mh-100-fs {
    max-height: 100% !important;
  }
  .mw-100-fs {
    max-width: 100% !important;
  }
}
@container (min-width: 360px) {
  .w-auto-xs {
    width: auto !important;
  }
  .h-auto-xs {
    height: auto !important;
  }
  .h-vh-10-xs {
    height: 10vh !important;
  }
  .h-vw-10-xs {
    height: 10vw !important;
  }
  .w-vh-10-xs {
    width: 10vh !important;
  }
  .w-vw-10-xs {
    width: 10vw !important;
  }
  .h-10-xs {
    height: 10% !important;
  }
  .w-10-xs {
    width: 10% !important;
  }
  .mh-10-xs {
    max-height: 10% !important;
  }
  .mw-10-xs {
    max-width: 10% !important;
  }
  .h-vh-20-xs {
    height: 20vh !important;
  }
  .h-vw-20-xs {
    height: 20vw !important;
  }
  .w-vh-20-xs {
    width: 20vh !important;
  }
  .w-vw-20-xs {
    width: 20vw !important;
  }
  .h-20-xs {
    height: 20% !important;
  }
  .w-20-xs {
    width: 20% !important;
  }
  .mh-20-xs {
    max-height: 20% !important;
  }
  .mw-20-xs {
    max-width: 20% !important;
  }
  .h-vh-25-xs {
    height: 25vh !important;
  }
  .h-vw-25-xs {
    height: 25vw !important;
  }
  .w-vh-25-xs {
    width: 25vh !important;
  }
  .w-vw-25-xs {
    width: 25vw !important;
  }
  .h-25-xs {
    height: 25% !important;
  }
  .w-25-xs {
    width: 25% !important;
  }
  .mh-25-xs {
    max-height: 25% !important;
  }
  .mw-25-xs {
    max-width: 25% !important;
  }
  .h-vh-33-xs {
    height: 33vh !important;
  }
  .h-vw-33-xs {
    height: 33vw !important;
  }
  .w-vh-33-xs {
    width: 33vh !important;
  }
  .w-vw-33-xs {
    width: 33vw !important;
  }
  .h-33-xs {
    height: 33% !important;
  }
  .w-33-xs {
    width: 33% !important;
  }
  .mh-33-xs {
    max-height: 33% !important;
  }
  .mw-33-xs {
    max-width: 33% !important;
  }
  .h-vh-50-xs {
    height: 50vh !important;
  }
  .h-vw-50-xs {
    height: 50vw !important;
  }
  .w-vh-50-xs {
    width: 50vh !important;
  }
  .w-vw-50-xs {
    width: 50vw !important;
  }
  .h-50-xs {
    height: 50% !important;
  }
  .w-50-xs {
    width: 50% !important;
  }
  .mh-50-xs {
    max-height: 50% !important;
  }
  .mw-50-xs {
    max-width: 50% !important;
  }
  .h-vh-66-xs {
    height: 66vh !important;
  }
  .h-vw-66-xs {
    height: 66vw !important;
  }
  .w-vh-66-xs {
    width: 66vh !important;
  }
  .w-vw-66-xs {
    width: 66vw !important;
  }
  .h-66-xs {
    height: 66% !important;
  }
  .w-66-xs {
    width: 66% !important;
  }
  .mh-66-xs {
    max-height: 66% !important;
  }
  .mw-66-xs {
    max-width: 66% !important;
  }
  .h-vh-75-xs {
    height: 75vh !important;
  }
  .h-vw-75-xs {
    height: 75vw !important;
  }
  .w-vh-75-xs {
    width: 75vh !important;
  }
  .w-vw-75-xs {
    width: 75vw !important;
  }
  .h-75-xs {
    height: 75% !important;
  }
  .w-75-xs {
    width: 75% !important;
  }
  .mh-75-xs {
    max-height: 75% !important;
  }
  .mw-75-xs {
    max-width: 75% !important;
  }
  .h-vh-80-xs {
    height: 80vh !important;
  }
  .h-vw-80-xs {
    height: 80vw !important;
  }
  .w-vh-80-xs {
    width: 80vh !important;
  }
  .w-vw-80-xs {
    width: 80vw !important;
  }
  .h-80-xs {
    height: 80% !important;
  }
  .w-80-xs {
    width: 80% !important;
  }
  .mh-80-xs {
    max-height: 80% !important;
  }
  .mw-80-xs {
    max-width: 80% !important;
  }
  .h-vh-90-xs {
    height: 90vh !important;
  }
  .h-vw-90-xs {
    height: 90vw !important;
  }
  .w-vh-90-xs {
    width: 90vh !important;
  }
  .w-vw-90-xs {
    width: 90vw !important;
  }
  .h-90-xs {
    height: 90% !important;
  }
  .w-90-xs {
    width: 90% !important;
  }
  .mh-90-xs {
    max-height: 90% !important;
  }
  .mw-90-xs {
    max-width: 90% !important;
  }
  .h-vh-100-xs {
    height: 100vh !important;
  }
  .h-vw-100-xs {
    height: 100vw !important;
  }
  .w-vh-100-xs {
    width: 100vh !important;
  }
  .w-vw-100-xs {
    width: 100vw !important;
  }
  .h-100-xs {
    height: 100% !important;
  }
  .w-100-xs {
    width: 100% !important;
  }
  .mh-100-xs {
    max-height: 100% !important;
  }
  .mw-100-xs {
    max-width: 100% !important;
  }
}
@container (min-width: 576px) {
  .w-auto-sm {
    width: auto !important;
  }
  .h-auto-sm {
    height: auto !important;
  }
  .h-vh-10-sm {
    height: 10vh !important;
  }
  .h-vw-10-sm {
    height: 10vw !important;
  }
  .w-vh-10-sm {
    width: 10vh !important;
  }
  .w-vw-10-sm {
    width: 10vw !important;
  }
  .h-10-sm {
    height: 10% !important;
  }
  .w-10-sm {
    width: 10% !important;
  }
  .mh-10-sm {
    max-height: 10% !important;
  }
  .mw-10-sm {
    max-width: 10% !important;
  }
  .h-vh-20-sm {
    height: 20vh !important;
  }
  .h-vw-20-sm {
    height: 20vw !important;
  }
  .w-vh-20-sm {
    width: 20vh !important;
  }
  .w-vw-20-sm {
    width: 20vw !important;
  }
  .h-20-sm {
    height: 20% !important;
  }
  .w-20-sm {
    width: 20% !important;
  }
  .mh-20-sm {
    max-height: 20% !important;
  }
  .mw-20-sm {
    max-width: 20% !important;
  }
  .h-vh-25-sm {
    height: 25vh !important;
  }
  .h-vw-25-sm {
    height: 25vw !important;
  }
  .w-vh-25-sm {
    width: 25vh !important;
  }
  .w-vw-25-sm {
    width: 25vw !important;
  }
  .h-25-sm {
    height: 25% !important;
  }
  .w-25-sm {
    width: 25% !important;
  }
  .mh-25-sm {
    max-height: 25% !important;
  }
  .mw-25-sm {
    max-width: 25% !important;
  }
  .h-vh-33-sm {
    height: 33vh !important;
  }
  .h-vw-33-sm {
    height: 33vw !important;
  }
  .w-vh-33-sm {
    width: 33vh !important;
  }
  .w-vw-33-sm {
    width: 33vw !important;
  }
  .h-33-sm {
    height: 33% !important;
  }
  .w-33-sm {
    width: 33% !important;
  }
  .mh-33-sm {
    max-height: 33% !important;
  }
  .mw-33-sm {
    max-width: 33% !important;
  }
  .h-vh-50-sm {
    height: 50vh !important;
  }
  .h-vw-50-sm {
    height: 50vw !important;
  }
  .w-vh-50-sm {
    width: 50vh !important;
  }
  .w-vw-50-sm {
    width: 50vw !important;
  }
  .h-50-sm {
    height: 50% !important;
  }
  .w-50-sm {
    width: 50% !important;
  }
  .mh-50-sm {
    max-height: 50% !important;
  }
  .mw-50-sm {
    max-width: 50% !important;
  }
  .h-vh-66-sm {
    height: 66vh !important;
  }
  .h-vw-66-sm {
    height: 66vw !important;
  }
  .w-vh-66-sm {
    width: 66vh !important;
  }
  .w-vw-66-sm {
    width: 66vw !important;
  }
  .h-66-sm {
    height: 66% !important;
  }
  .w-66-sm {
    width: 66% !important;
  }
  .mh-66-sm {
    max-height: 66% !important;
  }
  .mw-66-sm {
    max-width: 66% !important;
  }
  .h-vh-75-sm {
    height: 75vh !important;
  }
  .h-vw-75-sm {
    height: 75vw !important;
  }
  .w-vh-75-sm {
    width: 75vh !important;
  }
  .w-vw-75-sm {
    width: 75vw !important;
  }
  .h-75-sm {
    height: 75% !important;
  }
  .w-75-sm {
    width: 75% !important;
  }
  .mh-75-sm {
    max-height: 75% !important;
  }
  .mw-75-sm {
    max-width: 75% !important;
  }
  .h-vh-80-sm {
    height: 80vh !important;
  }
  .h-vw-80-sm {
    height: 80vw !important;
  }
  .w-vh-80-sm {
    width: 80vh !important;
  }
  .w-vw-80-sm {
    width: 80vw !important;
  }
  .h-80-sm {
    height: 80% !important;
  }
  .w-80-sm {
    width: 80% !important;
  }
  .mh-80-sm {
    max-height: 80% !important;
  }
  .mw-80-sm {
    max-width: 80% !important;
  }
  .h-vh-90-sm {
    height: 90vh !important;
  }
  .h-vw-90-sm {
    height: 90vw !important;
  }
  .w-vh-90-sm {
    width: 90vh !important;
  }
  .w-vw-90-sm {
    width: 90vw !important;
  }
  .h-90-sm {
    height: 90% !important;
  }
  .w-90-sm {
    width: 90% !important;
  }
  .mh-90-sm {
    max-height: 90% !important;
  }
  .mw-90-sm {
    max-width: 90% !important;
  }
  .h-vh-100-sm {
    height: 100vh !important;
  }
  .h-vw-100-sm {
    height: 100vw !important;
  }
  .w-vh-100-sm {
    width: 100vh !important;
  }
  .w-vw-100-sm {
    width: 100vw !important;
  }
  .h-100-sm {
    height: 100% !important;
  }
  .w-100-sm {
    width: 100% !important;
  }
  .mh-100-sm {
    max-height: 100% !important;
  }
  .mw-100-sm {
    max-width: 100% !important;
  }
}
@container (min-width: 640px) {
  .w-auto-ld {
    width: auto !important;
  }
  .h-auto-ld {
    height: auto !important;
  }
  .h-vh-10-ld {
    height: 10vh !important;
  }
  .h-vw-10-ld {
    height: 10vw !important;
  }
  .w-vh-10-ld {
    width: 10vh !important;
  }
  .w-vw-10-ld {
    width: 10vw !important;
  }
  .h-10-ld {
    height: 10% !important;
  }
  .w-10-ld {
    width: 10% !important;
  }
  .mh-10-ld {
    max-height: 10% !important;
  }
  .mw-10-ld {
    max-width: 10% !important;
  }
  .h-vh-20-ld {
    height: 20vh !important;
  }
  .h-vw-20-ld {
    height: 20vw !important;
  }
  .w-vh-20-ld {
    width: 20vh !important;
  }
  .w-vw-20-ld {
    width: 20vw !important;
  }
  .h-20-ld {
    height: 20% !important;
  }
  .w-20-ld {
    width: 20% !important;
  }
  .mh-20-ld {
    max-height: 20% !important;
  }
  .mw-20-ld {
    max-width: 20% !important;
  }
  .h-vh-25-ld {
    height: 25vh !important;
  }
  .h-vw-25-ld {
    height: 25vw !important;
  }
  .w-vh-25-ld {
    width: 25vh !important;
  }
  .w-vw-25-ld {
    width: 25vw !important;
  }
  .h-25-ld {
    height: 25% !important;
  }
  .w-25-ld {
    width: 25% !important;
  }
  .mh-25-ld {
    max-height: 25% !important;
  }
  .mw-25-ld {
    max-width: 25% !important;
  }
  .h-vh-33-ld {
    height: 33vh !important;
  }
  .h-vw-33-ld {
    height: 33vw !important;
  }
  .w-vh-33-ld {
    width: 33vh !important;
  }
  .w-vw-33-ld {
    width: 33vw !important;
  }
  .h-33-ld {
    height: 33% !important;
  }
  .w-33-ld {
    width: 33% !important;
  }
  .mh-33-ld {
    max-height: 33% !important;
  }
  .mw-33-ld {
    max-width: 33% !important;
  }
  .h-vh-50-ld {
    height: 50vh !important;
  }
  .h-vw-50-ld {
    height: 50vw !important;
  }
  .w-vh-50-ld {
    width: 50vh !important;
  }
  .w-vw-50-ld {
    width: 50vw !important;
  }
  .h-50-ld {
    height: 50% !important;
  }
  .w-50-ld {
    width: 50% !important;
  }
  .mh-50-ld {
    max-height: 50% !important;
  }
  .mw-50-ld {
    max-width: 50% !important;
  }
  .h-vh-66-ld {
    height: 66vh !important;
  }
  .h-vw-66-ld {
    height: 66vw !important;
  }
  .w-vh-66-ld {
    width: 66vh !important;
  }
  .w-vw-66-ld {
    width: 66vw !important;
  }
  .h-66-ld {
    height: 66% !important;
  }
  .w-66-ld {
    width: 66% !important;
  }
  .mh-66-ld {
    max-height: 66% !important;
  }
  .mw-66-ld {
    max-width: 66% !important;
  }
  .h-vh-75-ld {
    height: 75vh !important;
  }
  .h-vw-75-ld {
    height: 75vw !important;
  }
  .w-vh-75-ld {
    width: 75vh !important;
  }
  .w-vw-75-ld {
    width: 75vw !important;
  }
  .h-75-ld {
    height: 75% !important;
  }
  .w-75-ld {
    width: 75% !important;
  }
  .mh-75-ld {
    max-height: 75% !important;
  }
  .mw-75-ld {
    max-width: 75% !important;
  }
  .h-vh-80-ld {
    height: 80vh !important;
  }
  .h-vw-80-ld {
    height: 80vw !important;
  }
  .w-vh-80-ld {
    width: 80vh !important;
  }
  .w-vw-80-ld {
    width: 80vw !important;
  }
  .h-80-ld {
    height: 80% !important;
  }
  .w-80-ld {
    width: 80% !important;
  }
  .mh-80-ld {
    max-height: 80% !important;
  }
  .mw-80-ld {
    max-width: 80% !important;
  }
  .h-vh-90-ld {
    height: 90vh !important;
  }
  .h-vw-90-ld {
    height: 90vw !important;
  }
  .w-vh-90-ld {
    width: 90vh !important;
  }
  .w-vw-90-ld {
    width: 90vw !important;
  }
  .h-90-ld {
    height: 90% !important;
  }
  .w-90-ld {
    width: 90% !important;
  }
  .mh-90-ld {
    max-height: 90% !important;
  }
  .mw-90-ld {
    max-width: 90% !important;
  }
  .h-vh-100-ld {
    height: 100vh !important;
  }
  .h-vw-100-ld {
    height: 100vw !important;
  }
  .w-vh-100-ld {
    width: 100vh !important;
  }
  .w-vw-100-ld {
    width: 100vw !important;
  }
  .h-100-ld {
    height: 100% !important;
  }
  .w-100-ld {
    width: 100% !important;
  }
  .mh-100-ld {
    max-height: 100% !important;
  }
  .mw-100-ld {
    max-width: 100% !important;
  }
}
@container (min-width: 768px) {
  .w-auto-md {
    width: auto !important;
  }
  .h-auto-md {
    height: auto !important;
  }
  .h-vh-10-md {
    height: 10vh !important;
  }
  .h-vw-10-md {
    height: 10vw !important;
  }
  .w-vh-10-md {
    width: 10vh !important;
  }
  .w-vw-10-md {
    width: 10vw !important;
  }
  .h-10-md {
    height: 10% !important;
  }
  .w-10-md {
    width: 10% !important;
  }
  .mh-10-md {
    max-height: 10% !important;
  }
  .mw-10-md {
    max-width: 10% !important;
  }
  .h-vh-20-md {
    height: 20vh !important;
  }
  .h-vw-20-md {
    height: 20vw !important;
  }
  .w-vh-20-md {
    width: 20vh !important;
  }
  .w-vw-20-md {
    width: 20vw !important;
  }
  .h-20-md {
    height: 20% !important;
  }
  .w-20-md {
    width: 20% !important;
  }
  .mh-20-md {
    max-height: 20% !important;
  }
  .mw-20-md {
    max-width: 20% !important;
  }
  .h-vh-25-md {
    height: 25vh !important;
  }
  .h-vw-25-md {
    height: 25vw !important;
  }
  .w-vh-25-md {
    width: 25vh !important;
  }
  .w-vw-25-md {
    width: 25vw !important;
  }
  .h-25-md {
    height: 25% !important;
  }
  .w-25-md {
    width: 25% !important;
  }
  .mh-25-md {
    max-height: 25% !important;
  }
  .mw-25-md {
    max-width: 25% !important;
  }
  .h-vh-33-md {
    height: 33vh !important;
  }
  .h-vw-33-md {
    height: 33vw !important;
  }
  .w-vh-33-md {
    width: 33vh !important;
  }
  .w-vw-33-md {
    width: 33vw !important;
  }
  .h-33-md {
    height: 33% !important;
  }
  .w-33-md {
    width: 33% !important;
  }
  .mh-33-md {
    max-height: 33% !important;
  }
  .mw-33-md {
    max-width: 33% !important;
  }
  .h-vh-50-md {
    height: 50vh !important;
  }
  .h-vw-50-md {
    height: 50vw !important;
  }
  .w-vh-50-md {
    width: 50vh !important;
  }
  .w-vw-50-md {
    width: 50vw !important;
  }
  .h-50-md {
    height: 50% !important;
  }
  .w-50-md {
    width: 50% !important;
  }
  .mh-50-md {
    max-height: 50% !important;
  }
  .mw-50-md {
    max-width: 50% !important;
  }
  .h-vh-66-md {
    height: 66vh !important;
  }
  .h-vw-66-md {
    height: 66vw !important;
  }
  .w-vh-66-md {
    width: 66vh !important;
  }
  .w-vw-66-md {
    width: 66vw !important;
  }
  .h-66-md {
    height: 66% !important;
  }
  .w-66-md {
    width: 66% !important;
  }
  .mh-66-md {
    max-height: 66% !important;
  }
  .mw-66-md {
    max-width: 66% !important;
  }
  .h-vh-75-md {
    height: 75vh !important;
  }
  .h-vw-75-md {
    height: 75vw !important;
  }
  .w-vh-75-md {
    width: 75vh !important;
  }
  .w-vw-75-md {
    width: 75vw !important;
  }
  .h-75-md {
    height: 75% !important;
  }
  .w-75-md {
    width: 75% !important;
  }
  .mh-75-md {
    max-height: 75% !important;
  }
  .mw-75-md {
    max-width: 75% !important;
  }
  .h-vh-80-md {
    height: 80vh !important;
  }
  .h-vw-80-md {
    height: 80vw !important;
  }
  .w-vh-80-md {
    width: 80vh !important;
  }
  .w-vw-80-md {
    width: 80vw !important;
  }
  .h-80-md {
    height: 80% !important;
  }
  .w-80-md {
    width: 80% !important;
  }
  .mh-80-md {
    max-height: 80% !important;
  }
  .mw-80-md {
    max-width: 80% !important;
  }
  .h-vh-90-md {
    height: 90vh !important;
  }
  .h-vw-90-md {
    height: 90vw !important;
  }
  .w-vh-90-md {
    width: 90vh !important;
  }
  .w-vw-90-md {
    width: 90vw !important;
  }
  .h-90-md {
    height: 90% !important;
  }
  .w-90-md {
    width: 90% !important;
  }
  .mh-90-md {
    max-height: 90% !important;
  }
  .mw-90-md {
    max-width: 90% !important;
  }
  .h-vh-100-md {
    height: 100vh !important;
  }
  .h-vw-100-md {
    height: 100vw !important;
  }
  .w-vh-100-md {
    width: 100vh !important;
  }
  .w-vw-100-md {
    width: 100vw !important;
  }
  .h-100-md {
    height: 100% !important;
  }
  .w-100-md {
    width: 100% !important;
  }
  .mh-100-md {
    max-height: 100% !important;
  }
  .mw-100-md {
    max-width: 100% !important;
  }
}
@container (min-width: 992px) {
  .w-auto-lg {
    width: auto !important;
  }
  .h-auto-lg {
    height: auto !important;
  }
  .h-vh-10-lg {
    height: 10vh !important;
  }
  .h-vw-10-lg {
    height: 10vw !important;
  }
  .w-vh-10-lg {
    width: 10vh !important;
  }
  .w-vw-10-lg {
    width: 10vw !important;
  }
  .h-10-lg {
    height: 10% !important;
  }
  .w-10-lg {
    width: 10% !important;
  }
  .mh-10-lg {
    max-height: 10% !important;
  }
  .mw-10-lg {
    max-width: 10% !important;
  }
  .h-vh-20-lg {
    height: 20vh !important;
  }
  .h-vw-20-lg {
    height: 20vw !important;
  }
  .w-vh-20-lg {
    width: 20vh !important;
  }
  .w-vw-20-lg {
    width: 20vw !important;
  }
  .h-20-lg {
    height: 20% !important;
  }
  .w-20-lg {
    width: 20% !important;
  }
  .mh-20-lg {
    max-height: 20% !important;
  }
  .mw-20-lg {
    max-width: 20% !important;
  }
  .h-vh-25-lg {
    height: 25vh !important;
  }
  .h-vw-25-lg {
    height: 25vw !important;
  }
  .w-vh-25-lg {
    width: 25vh !important;
  }
  .w-vw-25-lg {
    width: 25vw !important;
  }
  .h-25-lg {
    height: 25% !important;
  }
  .w-25-lg {
    width: 25% !important;
  }
  .mh-25-lg {
    max-height: 25% !important;
  }
  .mw-25-lg {
    max-width: 25% !important;
  }
  .h-vh-33-lg {
    height: 33vh !important;
  }
  .h-vw-33-lg {
    height: 33vw !important;
  }
  .w-vh-33-lg {
    width: 33vh !important;
  }
  .w-vw-33-lg {
    width: 33vw !important;
  }
  .h-33-lg {
    height: 33% !important;
  }
  .w-33-lg {
    width: 33% !important;
  }
  .mh-33-lg {
    max-height: 33% !important;
  }
  .mw-33-lg {
    max-width: 33% !important;
  }
  .h-vh-50-lg {
    height: 50vh !important;
  }
  .h-vw-50-lg {
    height: 50vw !important;
  }
  .w-vh-50-lg {
    width: 50vh !important;
  }
  .w-vw-50-lg {
    width: 50vw !important;
  }
  .h-50-lg {
    height: 50% !important;
  }
  .w-50-lg {
    width: 50% !important;
  }
  .mh-50-lg {
    max-height: 50% !important;
  }
  .mw-50-lg {
    max-width: 50% !important;
  }
  .h-vh-66-lg {
    height: 66vh !important;
  }
  .h-vw-66-lg {
    height: 66vw !important;
  }
  .w-vh-66-lg {
    width: 66vh !important;
  }
  .w-vw-66-lg {
    width: 66vw !important;
  }
  .h-66-lg {
    height: 66% !important;
  }
  .w-66-lg {
    width: 66% !important;
  }
  .mh-66-lg {
    max-height: 66% !important;
  }
  .mw-66-lg {
    max-width: 66% !important;
  }
  .h-vh-75-lg {
    height: 75vh !important;
  }
  .h-vw-75-lg {
    height: 75vw !important;
  }
  .w-vh-75-lg {
    width: 75vh !important;
  }
  .w-vw-75-lg {
    width: 75vw !important;
  }
  .h-75-lg {
    height: 75% !important;
  }
  .w-75-lg {
    width: 75% !important;
  }
  .mh-75-lg {
    max-height: 75% !important;
  }
  .mw-75-lg {
    max-width: 75% !important;
  }
  .h-vh-80-lg {
    height: 80vh !important;
  }
  .h-vw-80-lg {
    height: 80vw !important;
  }
  .w-vh-80-lg {
    width: 80vh !important;
  }
  .w-vw-80-lg {
    width: 80vw !important;
  }
  .h-80-lg {
    height: 80% !important;
  }
  .w-80-lg {
    width: 80% !important;
  }
  .mh-80-lg {
    max-height: 80% !important;
  }
  .mw-80-lg {
    max-width: 80% !important;
  }
  .h-vh-90-lg {
    height: 90vh !important;
  }
  .h-vw-90-lg {
    height: 90vw !important;
  }
  .w-vh-90-lg {
    width: 90vh !important;
  }
  .w-vw-90-lg {
    width: 90vw !important;
  }
  .h-90-lg {
    height: 90% !important;
  }
  .w-90-lg {
    width: 90% !important;
  }
  .mh-90-lg {
    max-height: 90% !important;
  }
  .mw-90-lg {
    max-width: 90% !important;
  }
  .h-vh-100-lg {
    height: 100vh !important;
  }
  .h-vw-100-lg {
    height: 100vw !important;
  }
  .w-vh-100-lg {
    width: 100vh !important;
  }
  .w-vw-100-lg {
    width: 100vw !important;
  }
  .h-100-lg {
    height: 100% !important;
  }
  .w-100-lg {
    width: 100% !important;
  }
  .mh-100-lg {
    max-height: 100% !important;
  }
  .mw-100-lg {
    max-width: 100% !important;
  }
}
@container (min-width: 1200px) {
  .w-auto-xl {
    width: auto !important;
  }
  .h-auto-xl {
    height: auto !important;
  }
  .h-vh-10-xl {
    height: 10vh !important;
  }
  .h-vw-10-xl {
    height: 10vw !important;
  }
  .w-vh-10-xl {
    width: 10vh !important;
  }
  .w-vw-10-xl {
    width: 10vw !important;
  }
  .h-10-xl {
    height: 10% !important;
  }
  .w-10-xl {
    width: 10% !important;
  }
  .mh-10-xl {
    max-height: 10% !important;
  }
  .mw-10-xl {
    max-width: 10% !important;
  }
  .h-vh-20-xl {
    height: 20vh !important;
  }
  .h-vw-20-xl {
    height: 20vw !important;
  }
  .w-vh-20-xl {
    width: 20vh !important;
  }
  .w-vw-20-xl {
    width: 20vw !important;
  }
  .h-20-xl {
    height: 20% !important;
  }
  .w-20-xl {
    width: 20% !important;
  }
  .mh-20-xl {
    max-height: 20% !important;
  }
  .mw-20-xl {
    max-width: 20% !important;
  }
  .h-vh-25-xl {
    height: 25vh !important;
  }
  .h-vw-25-xl {
    height: 25vw !important;
  }
  .w-vh-25-xl {
    width: 25vh !important;
  }
  .w-vw-25-xl {
    width: 25vw !important;
  }
  .h-25-xl {
    height: 25% !important;
  }
  .w-25-xl {
    width: 25% !important;
  }
  .mh-25-xl {
    max-height: 25% !important;
  }
  .mw-25-xl {
    max-width: 25% !important;
  }
  .h-vh-33-xl {
    height: 33vh !important;
  }
  .h-vw-33-xl {
    height: 33vw !important;
  }
  .w-vh-33-xl {
    width: 33vh !important;
  }
  .w-vw-33-xl {
    width: 33vw !important;
  }
  .h-33-xl {
    height: 33% !important;
  }
  .w-33-xl {
    width: 33% !important;
  }
  .mh-33-xl {
    max-height: 33% !important;
  }
  .mw-33-xl {
    max-width: 33% !important;
  }
  .h-vh-50-xl {
    height: 50vh !important;
  }
  .h-vw-50-xl {
    height: 50vw !important;
  }
  .w-vh-50-xl {
    width: 50vh !important;
  }
  .w-vw-50-xl {
    width: 50vw !important;
  }
  .h-50-xl {
    height: 50% !important;
  }
  .w-50-xl {
    width: 50% !important;
  }
  .mh-50-xl {
    max-height: 50% !important;
  }
  .mw-50-xl {
    max-width: 50% !important;
  }
  .h-vh-66-xl {
    height: 66vh !important;
  }
  .h-vw-66-xl {
    height: 66vw !important;
  }
  .w-vh-66-xl {
    width: 66vh !important;
  }
  .w-vw-66-xl {
    width: 66vw !important;
  }
  .h-66-xl {
    height: 66% !important;
  }
  .w-66-xl {
    width: 66% !important;
  }
  .mh-66-xl {
    max-height: 66% !important;
  }
  .mw-66-xl {
    max-width: 66% !important;
  }
  .h-vh-75-xl {
    height: 75vh !important;
  }
  .h-vw-75-xl {
    height: 75vw !important;
  }
  .w-vh-75-xl {
    width: 75vh !important;
  }
  .w-vw-75-xl {
    width: 75vw !important;
  }
  .h-75-xl {
    height: 75% !important;
  }
  .w-75-xl {
    width: 75% !important;
  }
  .mh-75-xl {
    max-height: 75% !important;
  }
  .mw-75-xl {
    max-width: 75% !important;
  }
  .h-vh-80-xl {
    height: 80vh !important;
  }
  .h-vw-80-xl {
    height: 80vw !important;
  }
  .w-vh-80-xl {
    width: 80vh !important;
  }
  .w-vw-80-xl {
    width: 80vw !important;
  }
  .h-80-xl {
    height: 80% !important;
  }
  .w-80-xl {
    width: 80% !important;
  }
  .mh-80-xl {
    max-height: 80% !important;
  }
  .mw-80-xl {
    max-width: 80% !important;
  }
  .h-vh-90-xl {
    height: 90vh !important;
  }
  .h-vw-90-xl {
    height: 90vw !important;
  }
  .w-vh-90-xl {
    width: 90vh !important;
  }
  .w-vw-90-xl {
    width: 90vw !important;
  }
  .h-90-xl {
    height: 90% !important;
  }
  .w-90-xl {
    width: 90% !important;
  }
  .mh-90-xl {
    max-height: 90% !important;
  }
  .mw-90-xl {
    max-width: 90% !important;
  }
  .h-vh-100-xl {
    height: 100vh !important;
  }
  .h-vw-100-xl {
    height: 100vw !important;
  }
  .w-vh-100-xl {
    width: 100vh !important;
  }
  .w-vw-100-xl {
    width: 100vw !important;
  }
  .h-100-xl {
    height: 100% !important;
  }
  .w-100-xl {
    width: 100% !important;
  }
  .mh-100-xl {
    max-height: 100% !important;
  }
  .mw-100-xl {
    max-width: 100% !important;
  }
}
@container (min-width: 1400px) {
  .w-auto-xxl {
    width: auto !important;
  }
  .h-auto-xxl {
    height: auto !important;
  }
  .h-vh-10-xxl {
    height: 10vh !important;
  }
  .h-vw-10-xxl {
    height: 10vw !important;
  }
  .w-vh-10-xxl {
    width: 10vh !important;
  }
  .w-vw-10-xxl {
    width: 10vw !important;
  }
  .h-10-xxl {
    height: 10% !important;
  }
  .w-10-xxl {
    width: 10% !important;
  }
  .mh-10-xxl {
    max-height: 10% !important;
  }
  .mw-10-xxl {
    max-width: 10% !important;
  }
  .h-vh-20-xxl {
    height: 20vh !important;
  }
  .h-vw-20-xxl {
    height: 20vw !important;
  }
  .w-vh-20-xxl {
    width: 20vh !important;
  }
  .w-vw-20-xxl {
    width: 20vw !important;
  }
  .h-20-xxl {
    height: 20% !important;
  }
  .w-20-xxl {
    width: 20% !important;
  }
  .mh-20-xxl {
    max-height: 20% !important;
  }
  .mw-20-xxl {
    max-width: 20% !important;
  }
  .h-vh-25-xxl {
    height: 25vh !important;
  }
  .h-vw-25-xxl {
    height: 25vw !important;
  }
  .w-vh-25-xxl {
    width: 25vh !important;
  }
  .w-vw-25-xxl {
    width: 25vw !important;
  }
  .h-25-xxl {
    height: 25% !important;
  }
  .w-25-xxl {
    width: 25% !important;
  }
  .mh-25-xxl {
    max-height: 25% !important;
  }
  .mw-25-xxl {
    max-width: 25% !important;
  }
  .h-vh-33-xxl {
    height: 33vh !important;
  }
  .h-vw-33-xxl {
    height: 33vw !important;
  }
  .w-vh-33-xxl {
    width: 33vh !important;
  }
  .w-vw-33-xxl {
    width: 33vw !important;
  }
  .h-33-xxl {
    height: 33% !important;
  }
  .w-33-xxl {
    width: 33% !important;
  }
  .mh-33-xxl {
    max-height: 33% !important;
  }
  .mw-33-xxl {
    max-width: 33% !important;
  }
  .h-vh-50-xxl {
    height: 50vh !important;
  }
  .h-vw-50-xxl {
    height: 50vw !important;
  }
  .w-vh-50-xxl {
    width: 50vh !important;
  }
  .w-vw-50-xxl {
    width: 50vw !important;
  }
  .h-50-xxl {
    height: 50% !important;
  }
  .w-50-xxl {
    width: 50% !important;
  }
  .mh-50-xxl {
    max-height: 50% !important;
  }
  .mw-50-xxl {
    max-width: 50% !important;
  }
  .h-vh-66-xxl {
    height: 66vh !important;
  }
  .h-vw-66-xxl {
    height: 66vw !important;
  }
  .w-vh-66-xxl {
    width: 66vh !important;
  }
  .w-vw-66-xxl {
    width: 66vw !important;
  }
  .h-66-xxl {
    height: 66% !important;
  }
  .w-66-xxl {
    width: 66% !important;
  }
  .mh-66-xxl {
    max-height: 66% !important;
  }
  .mw-66-xxl {
    max-width: 66% !important;
  }
  .h-vh-75-xxl {
    height: 75vh !important;
  }
  .h-vw-75-xxl {
    height: 75vw !important;
  }
  .w-vh-75-xxl {
    width: 75vh !important;
  }
  .w-vw-75-xxl {
    width: 75vw !important;
  }
  .h-75-xxl {
    height: 75% !important;
  }
  .w-75-xxl {
    width: 75% !important;
  }
  .mh-75-xxl {
    max-height: 75% !important;
  }
  .mw-75-xxl {
    max-width: 75% !important;
  }
  .h-vh-80-xxl {
    height: 80vh !important;
  }
  .h-vw-80-xxl {
    height: 80vw !important;
  }
  .w-vh-80-xxl {
    width: 80vh !important;
  }
  .w-vw-80-xxl {
    width: 80vw !important;
  }
  .h-80-xxl {
    height: 80% !important;
  }
  .w-80-xxl {
    width: 80% !important;
  }
  .mh-80-xxl {
    max-height: 80% !important;
  }
  .mw-80-xxl {
    max-width: 80% !important;
  }
  .h-vh-90-xxl {
    height: 90vh !important;
  }
  .h-vw-90-xxl {
    height: 90vw !important;
  }
  .w-vh-90-xxl {
    width: 90vh !important;
  }
  .w-vw-90-xxl {
    width: 90vw !important;
  }
  .h-90-xxl {
    height: 90% !important;
  }
  .w-90-xxl {
    width: 90% !important;
  }
  .mh-90-xxl {
    max-height: 90% !important;
  }
  .mw-90-xxl {
    max-width: 90% !important;
  }
  .h-vh-100-xxl {
    height: 100vh !important;
  }
  .h-vw-100-xxl {
    height: 100vw !important;
  }
  .w-vh-100-xxl {
    width: 100vh !important;
  }
  .w-vw-100-xxl {
    width: 100vw !important;
  }
  .h-100-xxl {
    height: 100% !important;
  }
  .w-100-xxl {
    width: 100% !important;
  }
  .mh-100-xxl {
    max-height: 100% !important;
  }
  .mw-100-xxl {
    max-width: 100% !important;
  }
}
@container (min-width: 2000px) {
  .w-auto-xxxl {
    width: auto !important;
  }
  .h-auto-xxxl {
    height: auto !important;
  }
  .h-vh-10-xxxl {
    height: 10vh !important;
  }
  .h-vw-10-xxxl {
    height: 10vw !important;
  }
  .w-vh-10-xxxl {
    width: 10vh !important;
  }
  .w-vw-10-xxxl {
    width: 10vw !important;
  }
  .h-10-xxxl {
    height: 10% !important;
  }
  .w-10-xxxl {
    width: 10% !important;
  }
  .mh-10-xxxl {
    max-height: 10% !important;
  }
  .mw-10-xxxl {
    max-width: 10% !important;
  }
  .h-vh-20-xxxl {
    height: 20vh !important;
  }
  .h-vw-20-xxxl {
    height: 20vw !important;
  }
  .w-vh-20-xxxl {
    width: 20vh !important;
  }
  .w-vw-20-xxxl {
    width: 20vw !important;
  }
  .h-20-xxxl {
    height: 20% !important;
  }
  .w-20-xxxl {
    width: 20% !important;
  }
  .mh-20-xxxl {
    max-height: 20% !important;
  }
  .mw-20-xxxl {
    max-width: 20% !important;
  }
  .h-vh-25-xxxl {
    height: 25vh !important;
  }
  .h-vw-25-xxxl {
    height: 25vw !important;
  }
  .w-vh-25-xxxl {
    width: 25vh !important;
  }
  .w-vw-25-xxxl {
    width: 25vw !important;
  }
  .h-25-xxxl {
    height: 25% !important;
  }
  .w-25-xxxl {
    width: 25% !important;
  }
  .mh-25-xxxl {
    max-height: 25% !important;
  }
  .mw-25-xxxl {
    max-width: 25% !important;
  }
  .h-vh-33-xxxl {
    height: 33vh !important;
  }
  .h-vw-33-xxxl {
    height: 33vw !important;
  }
  .w-vh-33-xxxl {
    width: 33vh !important;
  }
  .w-vw-33-xxxl {
    width: 33vw !important;
  }
  .h-33-xxxl {
    height: 33% !important;
  }
  .w-33-xxxl {
    width: 33% !important;
  }
  .mh-33-xxxl {
    max-height: 33% !important;
  }
  .mw-33-xxxl {
    max-width: 33% !important;
  }
  .h-vh-50-xxxl {
    height: 50vh !important;
  }
  .h-vw-50-xxxl {
    height: 50vw !important;
  }
  .w-vh-50-xxxl {
    width: 50vh !important;
  }
  .w-vw-50-xxxl {
    width: 50vw !important;
  }
  .h-50-xxxl {
    height: 50% !important;
  }
  .w-50-xxxl {
    width: 50% !important;
  }
  .mh-50-xxxl {
    max-height: 50% !important;
  }
  .mw-50-xxxl {
    max-width: 50% !important;
  }
  .h-vh-66-xxxl {
    height: 66vh !important;
  }
  .h-vw-66-xxxl {
    height: 66vw !important;
  }
  .w-vh-66-xxxl {
    width: 66vh !important;
  }
  .w-vw-66-xxxl {
    width: 66vw !important;
  }
  .h-66-xxxl {
    height: 66% !important;
  }
  .w-66-xxxl {
    width: 66% !important;
  }
  .mh-66-xxxl {
    max-height: 66% !important;
  }
  .mw-66-xxxl {
    max-width: 66% !important;
  }
  .h-vh-75-xxxl {
    height: 75vh !important;
  }
  .h-vw-75-xxxl {
    height: 75vw !important;
  }
  .w-vh-75-xxxl {
    width: 75vh !important;
  }
  .w-vw-75-xxxl {
    width: 75vw !important;
  }
  .h-75-xxxl {
    height: 75% !important;
  }
  .w-75-xxxl {
    width: 75% !important;
  }
  .mh-75-xxxl {
    max-height: 75% !important;
  }
  .mw-75-xxxl {
    max-width: 75% !important;
  }
  .h-vh-80-xxxl {
    height: 80vh !important;
  }
  .h-vw-80-xxxl {
    height: 80vw !important;
  }
  .w-vh-80-xxxl {
    width: 80vh !important;
  }
  .w-vw-80-xxxl {
    width: 80vw !important;
  }
  .h-80-xxxl {
    height: 80% !important;
  }
  .w-80-xxxl {
    width: 80% !important;
  }
  .mh-80-xxxl {
    max-height: 80% !important;
  }
  .mw-80-xxxl {
    max-width: 80% !important;
  }
  .h-vh-90-xxxl {
    height: 90vh !important;
  }
  .h-vw-90-xxxl {
    height: 90vw !important;
  }
  .w-vh-90-xxxl {
    width: 90vh !important;
  }
  .w-vw-90-xxxl {
    width: 90vw !important;
  }
  .h-90-xxxl {
    height: 90% !important;
  }
  .w-90-xxxl {
    width: 90% !important;
  }
  .mh-90-xxxl {
    max-height: 90% !important;
  }
  .mw-90-xxxl {
    max-width: 90% !important;
  }
  .h-vh-100-xxxl {
    height: 100vh !important;
  }
  .h-vw-100-xxxl {
    height: 100vw !important;
  }
  .w-vh-100-xxxl {
    width: 100vh !important;
  }
  .w-vw-100-xxxl {
    width: 100vw !important;
  }
  .h-100-xxxl {
    height: 100% !important;
  }
  .w-100-xxxl {
    width: 100% !important;
  }
  .mh-100-xxxl {
    max-height: 100% !important;
  }
  .mw-100-xxxl {
    max-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 {
  --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: 100 !important;
}
.text-light {
  font-weight: 200 !important;
}
.text-normal {
  font-weight: 400 !important;
}
.text-medium {
  font-weight: 600 !important;
}
.text-bold {
  font-weight: 800 !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;
}
.display1,
.display2,
.display3,
.display4 {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1;
}
.leader,
.h1,
h1 {
  font-weight: 100;
  font-size: 48px;
}
.sub-leader,
.h2,
h2 {
  font-weight: 400;
  font-size: 38px;
}
.header,
.h3,
h3 {
  font-weight: 500;
  font-size: 30px;
}
.sub-header,
.h4,
h4 {
  font-weight: 500;
  font-size: 24px;
}
.alt-header,
.h5,
h5 {
  font-weight: 500;
  font-size: 20px;
}
.sub-alt-header,
.h6,
h6 {
  font-weight: 500;
  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);
}
.leader,
.h1,
h1,
.sub-leader,
.h2,
h2,
.header,
.h3,
h3,
.sub-header,
.h4,
h4,
.alt-header,
.h5,
h5,
.sub-alt-header,
.h6,
h6 {
  color: inherit;
  margin: 1rem 0;
  line-height: 1.1;
  text-wrap: balance;
}
.leader > small,
.h1 > small,
h1 > small,
.sub-leader > small,
.h2 > small,
h2 > small,
.header > small,
.h3 > small,
h3 > small,
.sub-header > small,
.h4 > small,
h4 > small,
.alt-header > small,
.h5 > small,
h5 > small,
.sub-alt-header > small,
.h6 > small,
h6 > small,
.leader > .small,
.h1 > .small,
h1 > .small,
.sub-leader > .small,
.h2 > .small,
h2 > .small,
.header > .small,
.h3 > .small,
h3 > .small,
.sub-header > .small,
.h4 > .small,
h4 > .small,
.alt-header > .small,
.h5 > .small,
h5 > .small,
.sub-alt-header > .small,
.h6 > .small,
h6 > .small {
  font-weight: 400;
  font-size: 0.7em;
  line-height: 1;
  color: var(--body-color-secondary);
}
.leader:nth-child(1),
.h1:nth-child(1),
h1:nth-child(1),
.sub-leader:nth-child(1),
.h2:nth-child(1),
h2:nth-child(1),
.header:nth-child(1),
.h3:nth-child(1),
h3:nth-child(1),
.sub-header:nth-child(1),
.h4:nth-child(1),
h4:nth-child(1),
.alt-header:nth-child(1),
.h5:nth-child(1),
h5:nth-child(1),
.sub-alt-header: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: 0.5rem;
  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;
  list-style-position: inside;
}
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;
}
ol {
  list-style-type: decimal;
}
ul ul {
  list-style: circle;
}
ul ul ul {
  list-style: square;
}
ol {
  list-style-type: upper-roman;
}
ol ol {
  list-style-type: decimal;
}
ol ol ol {
  list-style-type: lower-alpha;
}
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: #069494;
  --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: #d43e38;
  --color-orange: #ffa500;
  --color-amber: #ffca2a;
  --color-yellow: #ffff00;
  --color-brown: #aa6432;
  --color-olive: #a1a100;
  --color-steel: #7b91a6;
  --color-mauve: #e0afff;
  --color-taupe: #7a6654;
  --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: #ae0700;
  --color-dark-orange: #805100;
  --color-dark-amber: #805e00;
  --color-dark-yellow: #808000;
  --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: #807973;
  --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: #dd443f;
  --color-sat-orange: #bc7700;
  --color-sat-amber: #d19b00;
  --color-sat-yellow: #d5d500;
  --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: #b8aea6;
  --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: #ffffe6;
  --color-light-brown: #ffeed9;
  --color-light-olive: #f8fde7;
  --color-light-steel: #edeeee;
  --color-light-mauve: #f7ecfe;
  --color-light-taupe: #eadccf;
  --color-light-champagne: #fffdf7;
  --color-light-khaki: #f6f1dd;
  --color-light-charcoal: #e8e8e8;
  --color-light-bronze: #f7f5c8;
  --color-light-windstorm: #e6ebf5;
  --color-light-nude: #fcf0e4;
  --color-light-terracotta: #fdebed;
  --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;
}

/* 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: #069494 !important;
}
.bg-teal-active:active {
  background-color: #069494 !important;
}
.bg-teal-hover:hover {
  background-color: #069494 !important;
}
.bg-teal-focus:focus {
  background-color: #069494 !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: #d43e38 !important;
}
.bg-clown-active:active {
  background-color: #d43e38 !important;
}
.bg-clown-hover:hover {
  background-color: #d43e38 !important;
}
.bg-clown-focus:focus {
  background-color: #d43e38 !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: #ffff00 !important;
}
.bg-yellow-active:active {
  background-color: #ffff00 !important;
}
.bg-yellow-hover:hover {
  background-color: #ffff00 !important;
}
.bg-yellow-focus:focus {
  background-color: #ffff00 !important;
}
.bg-brown {
  background-color: #aa6432 !important;
}
.bg-brown-active:active {
  background-color: #aa6432 !important;
}
.bg-brown-hover:hover {
  background-color: #aa6432 !important;
}
.bg-brown-focus:focus {
  background-color: #aa6432 !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: #7a6654 !important;
}
.bg-taupe-active:active {
  background-color: #7a6654 !important;
}
.bg-taupe-hover:hover {
  background-color: #7a6654 !important;
}
.bg-taupe-focus:focus {
  background-color: #7a6654 !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: #ffffe6 !important;
}
.bg-light-yellow-active:active {
  background-color: #ffffe6 !important;
}
.bg-light-yellow-hover:hover {
  background-color: #ffffe6 !important;
}
.bg-light-yellow-focus:focus {
  background-color: #ffffe6 !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: #fffdf7 !important;
}
.bg-light-champagne-active:active {
  background-color: #fffdf7 !important;
}
.bg-light-champagne-hover:hover {
  background-color: #fffdf7 !important;
}
.bg-light-champagne-focus:focus {
  background-color: #fffdf7 !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: #f7f5c8 !important;
}
.bg-light-bronze-active:active {
  background-color: #f7f5c8 !important;
}
.bg-light-bronze-hover:hover {
  background-color: #f7f5c8 !important;
}
.bg-light-bronze-focus:focus {
  background-color: #f7f5c8 !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: #fdebed !important;
}
.bg-light-terracotta-active:active {
  background-color: #fdebed !important;
}
.bg-light-terracotta-hover:hover {
  background-color: #fdebed !important;
}
.bg-light-terracotta-focus:focus {
  background-color: #fdebed !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: #ae0700 !important;
}
.bg-dark-clown-active:active {
  background-color: #ae0700 !important;
}
.bg-dark-clown-hover:hover {
  background-color: #ae0700 !important;
}
.bg-dark-clown-focus:focus {
  background-color: #ae0700 !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: #808000 !important;
}
.bg-dark-yellow-active:active {
  background-color: #808000 !important;
}
.bg-dark-yellow-hover:hover {
  background-color: #808000 !important;
}
.bg-dark-yellow-focus:focus {
  background-color: #808000 !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: #807973 !important;
}
.bg-dark-seashell-active:active {
  background-color: #807973 !important;
}
.bg-dark-seashell-hover:hover {
  background-color: #807973 !important;
}
.bg-dark-seashell-focus:focus {
  background-color: #807973 !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: #dd443f !important;
}
.bg-sat-clown-active:active {
  background-color: #dd443f !important;
}
.bg-sat-clown-hover:hover {
  background-color: #dd443f !important;
}
.bg-sat-clown-focus:focus {
  background-color: #dd443f !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: #d5d500 !important;
}
.bg-sat-yellow-active:active {
  background-color: #d5d500 !important;
}
.bg-sat-yellow-hover:hover {
  background-color: #d5d500 !important;
}
.bg-sat-yellow-focus:focus {
  background-color: #d5d500 !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: #b8aea6 !important;
}
.bg-sat-seashell-active:active {
  background-color: #b8aea6 !important;
}
.bg-sat-seashell-hover:hover {
  background-color: #b8aea6 !important;
}
.bg-sat-seashell-focus:focus {
  background-color: #b8aea6 !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;
}
.tg-black::before {
  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;
}
.tg-white::before {
  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;
}
.tg-dark::before {
  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;
}
.tg-light::before {
  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;
}
.tg-gray::before {
  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;
}
.tg-gray-blue::before {
  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;
}
.tg-gray-white::before {
  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;
}
.tg-gray-mouse::before {
  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;
}
.tg-lime::before {
  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;
}
.tg-green::before {
  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;
}
.tg-emerald::before {
  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;
}
.tg-blue::before {
  border-color: #5e87ff !important;
}
.bd-teal {
  border-color: #069494 !important;
}
.bd-teal-active:active {
  border-color: #069494 !important;
}
.bd-teal-hover:hover {
  border-color: #069494 !important;
}
.bd-teal-focus:focus {
  border-color: #069494 !important;
}
.tg-teal::before {
  border-color: #069494 !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;
}
.tg-cyan::before {
  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;
}
.tg-cobalt::before {
  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;
}
.tg-indigo::before {
  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;
}
.tg-almost::before {
  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;
}
.tg-violet::before {
  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;
}
.tg-pink::before {
  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;
}
.tg-magenta::before {
  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;
}
.tg-crimson::before {
  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;
}
.tg-red::before {
  border-color: #ff0000 !important;
}
.bd-clown {
  border-color: #d43e38 !important;
}
.bd-clown-active:active {
  border-color: #d43e38 !important;
}
.bd-clown-hover:hover {
  border-color: #d43e38 !important;
}
.bd-clown-focus:focus {
  border-color: #d43e38 !important;
}
.tg-clown::before {
  border-color: #d43e38 !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;
}
.tg-orange::before {
  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;
}
.tg-amber::before {
  border-color: #ffca2a !important;
}
.bd-yellow {
  border-color: #ffff00 !important;
}
.bd-yellow-active:active {
  border-color: #ffff00 !important;
}
.bd-yellow-hover:hover {
  border-color: #ffff00 !important;
}
.bd-yellow-focus:focus {
  border-color: #ffff00 !important;
}
.tg-yellow::before {
  border-color: #ffff00 !important;
}
.bd-brown {
  border-color: #aa6432 !important;
}
.bd-brown-active:active {
  border-color: #aa6432 !important;
}
.bd-brown-hover:hover {
  border-color: #aa6432 !important;
}
.bd-brown-focus:focus {
  border-color: #aa6432 !important;
}
.tg-brown::before {
  border-color: #aa6432 !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;
}
.tg-olive::before {
  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;
}
.tg-steel::before {
  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;
}
.tg-mauve::before {
  border-color: #e0afff !important;
}
.bd-taupe {
  border-color: #7a6654 !important;
}
.bd-taupe-active:active {
  border-color: #7a6654 !important;
}
.bd-taupe-hover:hover {
  border-color: #7a6654 !important;
}
.bd-taupe-focus:focus {
  border-color: #7a6654 !important;
}
.tg-taupe::before {
  border-color: #7a6654 !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;
}
.tg-champagne::before {
  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;
}
.tg-khaki::before {
  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;
}
.tg-charcoal::before {
  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;
}
.tg-bronze::before {
  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;
}
.tg-windstorm::before {
  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;
}
.tg-nude::before {
  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;
}
.tg-terracotta::before {
  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;
}
.tg-coral::before {
  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;
}
.tg-army::before {
  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;
}
.tg-seashell::before {
  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;
}
.tg-sand::before {
  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;
}
.tg-light-lime::before {
  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;
}
.tg-light-green::before {
  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;
}
.tg-light-emerald::before {
  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;
}
.tg-light-blue::before {
  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;
}
.tg-light-teal::before {
  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;
}
.tg-light-cyan::before {
  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;
}
.tg-light-cobalt::before {
  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;
}
.tg-light-indigo::before {
  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;
}
.tg-light-almost::before {
  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;
}
.tg-light-violet::before {
  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;
}
.tg-light-pink::before {
  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;
}
.tg-light-magenta::before {
  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;
}
.tg-light-crimson::before {
  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;
}
.tg-light-red::before {
  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;
}
.tg-light-clown::before {
  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;
}
.tg-light-orange::before {
  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;
}
.tg-light-amber::before {
  border-color: #fff8e1 !important;
}
.bd-light-yellow {
  border-color: #ffffe6 !important;
}
.bd-light-yellow-active:active {
  border-color: #ffffe6 !important;
}
.bd-light-yellow-hover:hover {
  border-color: #ffffe6 !important;
}
.bd-light-yellow-focus:focus {
  border-color: #ffffe6 !important;
}
.tg-light-yellow::before {
  border-color: #ffffe6 !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;
}
.tg-light-brown::before {
  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;
}
.tg-light-olive::before {
  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;
}
.tg-light-steel::before {
  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;
}
.tg-light-mauve::before {
  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;
}
.tg-light-taupe::before {
  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;
}
.tg-light-gray::before {
  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;
}
.tg-light-gray-blue::before {
  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;
}
.tg-light-gray-mouse::before {
  border-color: #8ab4c8 !important;
}
.bd-light-champagne {
  border-color: #fffdf7 !important;
}
.bd-light-champagne-active:active {
  border-color: #fffdf7 !important;
}
.bd-light-champagne-hover:hover {
  border-color: #fffdf7 !important;
}
.bd-light-champagne-focus:focus {
  border-color: #fffdf7 !important;
}
.tg-light-champagne::before {
  border-color: #fffdf7 !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;
}
.tg-light-khaki::before {
  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;
}
.tg-light-charcoal::before {
  border-color: #e8e8e8 !important;
}
.bd-light-bronze {
  border-color: #f7f5c8 !important;
}
.bd-light-bronze-active:active {
  border-color: #f7f5c8 !important;
}
.bd-light-bronze-hover:hover {
  border-color: #f7f5c8 !important;
}
.bd-light-bronze-focus:focus {
  border-color: #f7f5c8 !important;
}
.tg-light-bronze::before {
  border-color: #f7f5c8 !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;
}
.tg-light-windstorm::before {
  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;
}
.tg-light-nude::before {
  border-color: #fcf0e4 !important;
}
.bd-light-terracotta {
  border-color: #fdebed !important;
}
.bd-light-terracotta-active:active {
  border-color: #fdebed !important;
}
.bd-light-terracotta-hover:hover {
  border-color: #fdebed !important;
}
.bd-light-terracotta-focus:focus {
  border-color: #fdebed !important;
}
.tg-light-terracotta::before {
  border-color: #fdebed !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;
}
.tg-light-coral::before {
  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;
}
.tg-light-army::before {
  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;
}
.tg-light-seashell::before {
  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;
}
.tg-light-sand::before {
  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;
}
.tg-dark-lime::before {
  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;
}
.tg-dark-green::before {
  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;
}
.tg-dark-emerald::before {
  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;
}
.tg-dark-blue::before {
  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;
}
.tg-dark-teal::before {
  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;
}
.tg-dark-cyan::before {
  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;
}
.tg-dark-cobalt::before {
  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;
}
.tg-dark-indigo::before {
  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;
}
.tg-dark-almost::before {
  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;
}
.tg-dark-violet::before {
  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;
}
.tg-dark-pink::before {
  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;
}
.tg-dark-magenta::before {
  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;
}
.tg-dark-crimson::before {
  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;
}
.tg-dark-red::before {
  border-color: #800000 !important;
}
.bd-dark-clown {
  border-color: #ae0700 !important;
}
.bd-dark-clown-active:active {
  border-color: #ae0700 !important;
}
.bd-dark-clown-hover:hover {
  border-color: #ae0700 !important;
}
.bd-dark-clown-focus:focus {
  border-color: #ae0700 !important;
}
.tg-dark-clown::before {
  border-color: #ae0700 !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;
}
.tg-dark-orange::before {
  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;
}
.tg-dark-amber::before {
  border-color: #805e00 !important;
}
.bd-dark-yellow {
  border-color: #808000 !important;
}
.bd-dark-yellow-active:active {
  border-color: #808000 !important;
}
.bd-dark-yellow-hover:hover {
  border-color: #808000 !important;
}
.bd-dark-yellow-focus:focus {
  border-color: #808000 !important;
}
.tg-dark-yellow::before {
  border-color: #808000 !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;
}
.tg-dark-brown::before {
  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;
}
.tg-dark-olive::before {
  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;
}
.tg-dark-steel::before {
  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;
}
.tg-dark-mauve::before {
  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;
}
.tg-dark-taupe::before {
  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;
}
.tg-dark-gray::before {
  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;
}
.tg-dark-gray-blue::before {
  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;
}
.tg-dark-gray-mouse::before {
  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;
}
.tg-dark-champagne::before {
  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;
}
.tg-dark-khaki::before {
  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;
}
.tg-dark-charcoal::before {
  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;
}
.tg-dark-bronze::before {
  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;
}
.tg-dark-windstorm::before {
  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;
}
.tg-dark-nude::before {
  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;
}
.tg-dark-terracotta::before {
  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;
}
.tg-dark-coral::before {
  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;
}
.tg-dark-army::before {
  border-color: #2a2f14 !important;
}
.bd-dark-seashell {
  border-color: #807973 !important;
}
.bd-dark-seashell-active:active {
  border-color: #807973 !important;
}
.bd-dark-seashell-hover:hover {
  border-color: #807973 !important;
}
.bd-dark-seashell-focus:focus {
  border-color: #807973 !important;
}
.tg-dark-seashell::before {
  border-color: #807973 !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;
}
.tg-dark-sand::before {
  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;
}
.tg-sat-lime::before {
  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;
}
.tg-sat-green::before {
  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;
}
.tg-sat-emerald::before {
  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;
}
.tg-sat-blue::before {
  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;
}
.tg-sat-teal::before {
  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;
}
.tg-sat-cyan::before {
  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;
}
.tg-sat-cobalt::before {
  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;
}
.tg-sat-indigo::before {
  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;
}
.tg-sat-almost::before {
  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;
}
.tg-sat-violet::before {
  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;
}
.tg-sat-pink::before {
  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;
}
.tg-sat-magenta::before {
  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;
}
.tg-sat-crimson::before {
  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;
}
.tg-sat-red::before {
  border-color: #b80000 !important;
}
.bd-sat-clown {
  border-color: #dd443f !important;
}
.bd-sat-clown-active:active {
  border-color: #dd443f !important;
}
.bd-sat-clown-hover:hover {
  border-color: #dd443f !important;
}
.bd-sat-clown-focus:focus {
  border-color: #dd443f !important;
}
.tg-sat-clown::before {
  border-color: #dd443f !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;
}
.tg-sat-orange::before {
  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;
}
.tg-sat-amber::before {
  border-color: #d19b00 !important;
}
.bd-sat-yellow {
  border-color: #d5d500 !important;
}
.bd-sat-yellow-active:active {
  border-color: #d5d500 !important;
}
.bd-sat-yellow-hover:hover {
  border-color: #d5d500 !important;
}
.bd-sat-yellow-focus:focus {
  border-color: #d5d500 !important;
}
.tg-sat-yellow::before {
  border-color: #d5d500 !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;
}
.tg-sat-brown::before {
  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;
}
.tg-sat-olive::before {
  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;
}
.tg-sat-steel::before {
  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;
}
.tg-sat-mauve::before {
  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;
}
.tg-sat-taupe::before {
  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;
}
.tg-sat-gray::before {
  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;
}
.tg-sat-gray-blue::before {
  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;
}
.tg-sat-gray-mouse::before {
  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;
}
.tg-sat-champagne::before {
  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;
}
.tg-sat-khaki::before {
  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;
}
.tg-sat-charcoal::before {
  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;
}
.tg-sat-bronze::before {
  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;
}
.tg-sat-windstorm::before {
  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;
}
.tg-sat-nude::before {
  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;
}
.tg-sat-terracotta::before {
  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;
}
.tg-sat-coral::before {
  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;
}
.tg-sat-army::before {
  border-color: #647030 !important;
}
.bd-sat-seashell {
  border-color: #b8aea6 !important;
}
.bd-sat-seashell-active:active {
  border-color: #b8aea6 !important;
}
.bd-sat-seashell-hover:hover {
  border-color: #b8aea6 !important;
}
.bd-sat-seashell-focus:focus {
  border-color: #b8aea6 !important;
}
.tg-sat-seashell::before {
  border-color: #b8aea6 !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;
}
.tg-sat-sand::before {
  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;
}
.st-black {
  stroke: #000000 !important;
}
.st-black-active:active {
  stroke: #000000 !important;
}
.st-black-hover:hover {
  stroke: #000000 !important;
}
.st-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;
}
.st-white {
  stroke: #ffffff !important;
}
.st-white-active:active {
  stroke: #ffffff !important;
}
.st-white-hover:hover {
  stroke: #ffffff !important;
}
.st-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;
}
.st-dark {
  stroke: #1d1d1d !important;
}
.st-dark-active:active {
  stroke: #1d1d1d !important;
}
.st-dark-hover:hover {
  stroke: #1d1d1d !important;
}
.st-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;
}
.st-light {
  stroke: #f8f8f8 !important;
}
.st-light-active:active {
  stroke: #f8f8f8 !important;
}
.st-light-hover:hover {
  stroke: #f8f8f8 !important;
}
.st-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;
}
.st-gray {
  stroke: #ccc !important;
}
.st-gray-active:active {
  stroke: #ccc !important;
}
.st-gray-hover:hover {
  stroke: #ccc !important;
}
.st-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;
}
.st-gray-blue {
  stroke: #6a89a7 !important;
}
.st-gray-blue-active:active {
  stroke: #6a89a7 !important;
}
.st-gray-blue-hover:hover {
  stroke: #6a89a7 !important;
}
.st-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;
}
.st-gray-white {
  stroke: #f5f5f5 !important;
}
.st-gray-white-active:active {
  stroke: #f5f5f5 !important;
}
.st-gray-white-hover:hover {
  stroke: #f5f5f5 !important;
}
.st-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;
}
.st-gray-mouse {
  stroke: #566b75 !important;
}
.st-gray-mouse-active:active {
  stroke: #566b75 !important;
}
.st-gray-mouse-hover:hover {
  stroke: #566b75 !important;
}
.st-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;
}
.st-lime {
  stroke: #AEFD6C !important;
}
.st-lime-active:active {
  stroke: #AEFD6C !important;
}
.st-lime-hover:hover {
  stroke: #AEFD6C !important;
}
.st-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;
}
.st-green {
  stroke: #00b500 !important;
}
.st-green-active:active {
  stroke: #00b500 !important;
}
.st-green-hover:hover {
  stroke: #00b500 !important;
}
.st-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;
}
.st-emerald {
  stroke: #50c878 !important;
}
.st-emerald-active:active {
  stroke: #50c878 !important;
}
.st-emerald-hover:hover {
  stroke: #50c878 !important;
}
.st-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;
}
.st-blue {
  stroke: #5e87ff !important;
}
.st-blue-active:active {
  stroke: #5e87ff !important;
}
.st-blue-hover:hover {
  stroke: #5e87ff !important;
}
.st-blue-focus:focus {
  stroke: #5e87ff !important;
}
.fc-teal {
  fill: #069494 !important;
}
.fc-teal-active:active {
  fill: #069494 !important;
}
.fc-teal-hover:hover {
  fill: #069494 !important;
}
.fc-teal-focus:focus {
  fill: #069494 !important;
}
.st-teal {
  stroke: #069494 !important;
}
.st-teal-active:active {
  stroke: #069494 !important;
}
.st-teal-hover:hover {
  stroke: #069494 !important;
}
.st-teal-focus:focus {
  stroke: #069494 !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;
}
.st-cyan {
  stroke: #94b6ff !important;
}
.st-cyan-active:active {
  stroke: #94b6ff !important;
}
.st-cyan-hover:hover {
  stroke: #94b6ff !important;
}
.st-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;
}
.st-cobalt {
  stroke: #0047ab !important;
}
.st-cobalt-active:active {
  stroke: #0047ab !important;
}
.st-cobalt-hover:hover {
  stroke: #0047ab !important;
}
.st-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;
}
.st-indigo {
  stroke: #6400a8 !important;
}
.st-indigo-active:active {
  stroke: #6400a8 !important;
}
.st-indigo-hover:hover {
  stroke: #6400a8 !important;
}
.st-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;
}
.st-almost {
  stroke: #6a2ded !important;
}
.st-almost-active:active {
  stroke: #6a2ded !important;
}
.st-almost-hover:hover {
  stroke: #6a2ded !important;
}
.st-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;
}
.st-violet {
  stroke: #ee82ee !important;
}
.st-violet-active:active {
  stroke: #ee82ee !important;
}
.st-violet-hover:hover {
  stroke: #ee82ee !important;
}
.st-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;
}
.st-pink {
  stroke: #ffc0cb !important;
}
.st-pink-active:active {
  stroke: #ffc0cb !important;
}
.st-pink-hover:hover {
  stroke: #ffc0cb !important;
}
.st-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;
}
.st-magenta {
  stroke: #ff00ff !important;
}
.st-magenta-active:active {
  stroke: #ff00ff !important;
}
.st-magenta-hover:hover {
  stroke: #ff00ff !important;
}
.st-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;
}
.st-crimson {
  stroke: #df0e38 !important;
}
.st-crimson-active:active {
  stroke: #df0e38 !important;
}
.st-crimson-hover:hover {
  stroke: #df0e38 !important;
}
.st-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;
}
.st-red {
  stroke: #ff0000 !important;
}
.st-red-active:active {
  stroke: #ff0000 !important;
}
.st-red-hover:hover {
  stroke: #ff0000 !important;
}
.st-red-focus:focus {
  stroke: #ff0000 !important;
}
.fc-clown {
  fill: #d43e38 !important;
}
.fc-clown-active:active {
  fill: #d43e38 !important;
}
.fc-clown-hover:hover {
  fill: #d43e38 !important;
}
.fc-clown-focus:focus {
  fill: #d43e38 !important;
}
.st-clown {
  stroke: #d43e38 !important;
}
.st-clown-active:active {
  stroke: #d43e38 !important;
}
.st-clown-hover:hover {
  stroke: #d43e38 !important;
}
.st-clown-focus:focus {
  stroke: #d43e38 !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;
}
.st-orange {
  stroke: #ffa500 !important;
}
.st-orange-active:active {
  stroke: #ffa500 !important;
}
.st-orange-hover:hover {
  stroke: #ffa500 !important;
}
.st-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;
}
.st-amber {
  stroke: #ffca2a !important;
}
.st-amber-active:active {
  stroke: #ffca2a !important;
}
.st-amber-hover:hover {
  stroke: #ffca2a !important;
}
.st-amber-focus:focus {
  stroke: #ffca2a !important;
}
.fc-yellow {
  fill: #ffff00 !important;
}
.fc-yellow-active:active {
  fill: #ffff00 !important;
}
.fc-yellow-hover:hover {
  fill: #ffff00 !important;
}
.fc-yellow-focus:focus {
  fill: #ffff00 !important;
}
.st-yellow {
  stroke: #ffff00 !important;
}
.st-yellow-active:active {
  stroke: #ffff00 !important;
}
.st-yellow-hover:hover {
  stroke: #ffff00 !important;
}
.st-yellow-focus:focus {
  stroke: #ffff00 !important;
}
.fc-brown {
  fill: #aa6432 !important;
}
.fc-brown-active:active {
  fill: #aa6432 !important;
}
.fc-brown-hover:hover {
  fill: #aa6432 !important;
}
.fc-brown-focus:focus {
  fill: #aa6432 !important;
}
.st-brown {
  stroke: #aa6432 !important;
}
.st-brown-active:active {
  stroke: #aa6432 !important;
}
.st-brown-hover:hover {
  stroke: #aa6432 !important;
}
.st-brown-focus:focus {
  stroke: #aa6432 !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;
}
.st-olive {
  stroke: #a1a100 !important;
}
.st-olive-active:active {
  stroke: #a1a100 !important;
}
.st-olive-hover:hover {
  stroke: #a1a100 !important;
}
.st-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;
}
.st-steel {
  stroke: #7b91a6 !important;
}
.st-steel-active:active {
  stroke: #7b91a6 !important;
}
.st-steel-hover:hover {
  stroke: #7b91a6 !important;
}
.st-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;
}
.st-mauve {
  stroke: #e0afff !important;
}
.st-mauve-active:active {
  stroke: #e0afff !important;
}
.st-mauve-hover:hover {
  stroke: #e0afff !important;
}
.st-mauve-focus:focus {
  stroke: #e0afff !important;
}
.fc-taupe {
  fill: #7a6654 !important;
}
.fc-taupe-active:active {
  fill: #7a6654 !important;
}
.fc-taupe-hover:hover {
  fill: #7a6654 !important;
}
.fc-taupe-focus:focus {
  fill: #7a6654 !important;
}
.st-taupe {
  stroke: #7a6654 !important;
}
.st-taupe-active:active {
  stroke: #7a6654 !important;
}
.st-taupe-hover:hover {
  stroke: #7a6654 !important;
}
.st-taupe-focus:focus {
  stroke: #7a6654 !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;
}
.st-champagne {
  stroke: #f7e6ca !important;
}
.st-champagne-active:active {
  stroke: #f7e6ca !important;
}
.st-champagne-hover:hover {
  stroke: #f7e6ca !important;
}
.st-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;
}
.st-khaki {
  stroke: #d5c58a !important;
}
.st-khaki-active:active {
  stroke: #d5c58a !important;
}
.st-khaki-hover:hover {
  stroke: #d5c58a !important;
}
.st-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;
}
.st-charcoal {
  stroke: #989898 !important;
}
.st-charcoal-active:active {
  stroke: #989898 !important;
}
.st-charcoal-hover:hover {
  stroke: #989898 !important;
}
.st-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;
}
.st-bronze {
  stroke: #e48d3e !important;
}
.st-bronze-active:active {
  stroke: #e48d3e !important;
}
.st-bronze-hover:hover {
  stroke: #e48d3e !important;
}
.st-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;
}
.st-windstorm {
  stroke: #799ed6 !important;
}
.st-windstorm-active:active {
  stroke: #799ed6 !important;
}
.st-windstorm-hover:hover {
  stroke: #799ed6 !important;
}
.st-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;
}
.st-nude {
  stroke: #f7d9bc !important;
}
.st-nude-active:active {
  stroke: #f7d9bc !important;
}
.st-nude-hover:hover {
  stroke: #f7d9bc !important;
}
.st-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;
}
.st-terracotta {
  stroke: #e35336 !important;
}
.st-terracotta-active:active {
  stroke: #e35336 !important;
}
.st-terracotta-hover:hover {
  stroke: #e35336 !important;
}
.st-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;
}
.st-coral {
  stroke: #ff8559 !important;
}
.st-coral-active:active {
  stroke: #ff8559 !important;
}
.st-coral-hover:hover {
  stroke: #ff8559 !important;
}
.st-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;
}
.st-army {
  stroke: #5d6532 !important;
}
.st-army-active:active {
  stroke: #5d6532 !important;
}
.st-army-hover:hover {
  stroke: #5d6532 !important;
}
.st-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;
}
.st-seashell {
  stroke: #fff1e7 !important;
}
.st-seashell-active:active {
  stroke: #fff1e7 !important;
}
.st-seashell-hover:hover {
  stroke: #fff1e7 !important;
}
.st-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;
}
.st-sand {
  stroke: #f1e0ae !important;
}
.st-sand-active:active {
  stroke: #f1e0ae !important;
}
.st-sand-hover:hover {
  stroke: #f1e0ae !important;
}
.st-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;
}
.st-light-lime {
  stroke: #f2ffe7 !important;
}
.st-light-lime-active:active {
  stroke: #f2ffe7 !important;
}
.st-light-lime-hover:hover {
  stroke: #f2ffe7 !important;
}
.st-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;
}
.st-light-green {
  stroke: #e7f6e6 !important;
}
.st-light-green-active:active {
  stroke: #e7f6e6 !important;
}
.st-light-green-hover:hover {
  stroke: #e7f6e6 !important;
}
.st-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;
}
.st-light-emerald {
  stroke: #d1e6cc !important;
}
.st-light-emerald-active:active {
  stroke: #d1e6cc !important;
}
.st-light-emerald-hover:hover {
  stroke: #d1e6cc !important;
}
.st-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;
}
.st-light-blue {
  stroke: #e7eaff !important;
}
.st-light-blue-active:active {
  stroke: #e7eaff !important;
}
.st-light-blue-hover:hover {
  stroke: #e7eaff !important;
}
.st-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;
}
.st-light-teal {
  stroke: #e1f2f3 !important;
}
.st-light-teal-active:active {
  stroke: #e1f2f3 !important;
}
.st-light-teal-hover:hover {
  stroke: #e1f2f3 !important;
}
.st-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;
}
.st-light-cyan {
  stroke: #e3edff !important;
}
.st-light-cyan-active:active {
  stroke: #e3edff !important;
}
.st-light-cyan-hover:hover {
  stroke: #e3edff !important;
}
.st-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;
}
.st-light-cobalt {
  stroke: #d1ecff !important;
}
.st-light-cobalt-active:active {
  stroke: #d1ecff !important;
}
.st-light-cobalt-hover:hover {
  stroke: #d1ecff !important;
}
.st-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;
}
.st-light-indigo {
  stroke: #f3dcf3 !important;
}
.st-light-indigo-active:active {
  stroke: #f3dcf3 !important;
}
.st-light-indigo-hover:hover {
  stroke: #f3dcf3 !important;
}
.st-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;
}
.st-light-almost {
  stroke: #eee5ff !important;
}
.st-light-almost-active:active {
  stroke: #eee5ff !important;
}
.st-light-almost-hover:hover {
  stroke: #eee5ff !important;
}
.st-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;
}
.st-light-violet {
  stroke: #fce2fb !important;
}
.st-light-violet-active:active {
  stroke: #fce2fb !important;
}
.st-light-violet-hover:hover {
  stroke: #fce2fb !important;
}
.st-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;
}
.st-light-pink {
  stroke: #ffeef1 !important;
}
.st-light-pink-active:active {
  stroke: #ffeef1 !important;
}
.st-light-pink-hover:hover {
  stroke: #ffeef1 !important;
}
.st-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;
}
.st-light-magenta {
  stroke: #ffe2ff !important;
}
.st-light-magenta-active:active {
  stroke: #ffe2ff !important;
}
.st-light-magenta-hover:hover {
  stroke: #ffe2ff !important;
}
.st-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;
}
.st-light-crimson {
  stroke: #ffd1da !important;
}
.st-light-crimson-active:active {
  stroke: #ffd1da !important;
}
.st-light-crimson-hover:hover {
  stroke: #ffd1da !important;
}
.st-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;
}
.st-light-red {
  stroke: #ffe1e1 !important;
}
.st-light-red-active:active {
  stroke: #ffe1e1 !important;
}
.st-light-red-hover:hover {
  stroke: #ffe1e1 !important;
}
.st-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;
}
.st-light-clown {
  stroke: #ffdede !important;
}
.st-light-clown-active:active {
  stroke: #ffdede !important;
}
.st-light-clown-hover:hover {
  stroke: #ffdede !important;
}
.st-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;
}
.st-light-orange {
  stroke: #fff3de !important;
}
.st-light-orange-active:active {
  stroke: #fff3de !important;
}
.st-light-orange-hover:hover {
  stroke: #fff3de !important;
}
.st-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;
}
.st-light-amber {
  stroke: #fff8e1 !important;
}
.st-light-amber-active:active {
  stroke: #fff8e1 !important;
}
.st-light-amber-hover:hover {
  stroke: #fff8e1 !important;
}
.st-light-amber-focus:focus {
  stroke: #fff8e1 !important;
}
.fc-light-yellow {
  fill: #ffffe6 !important;
}
.fc-light-yellow-active:active {
  fill: #ffffe6 !important;
}
.fc-light-yellow-hover:hover {
  fill: #ffffe6 !important;
}
.fc-light-yellow-focus:focus {
  fill: #ffffe6 !important;
}
.st-light-yellow {
  stroke: #ffffe6 !important;
}
.st-light-yellow-active:active {
  stroke: #ffffe6 !important;
}
.st-light-yellow-hover:hover {
  stroke: #ffffe6 !important;
}
.st-light-yellow-focus:focus {
  stroke: #ffffe6 !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;
}
.st-light-brown {
  stroke: #ffeed9 !important;
}
.st-light-brown-active:active {
  stroke: #ffeed9 !important;
}
.st-light-brown-hover:hover {
  stroke: #ffeed9 !important;
}
.st-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;
}
.st-light-olive {
  stroke: #f8fde7 !important;
}
.st-light-olive-active:active {
  stroke: #f8fde7 !important;
}
.st-light-olive-hover:hover {
  stroke: #f8fde7 !important;
}
.st-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;
}
.st-light-steel {
  stroke: #edeeee !important;
}
.st-light-steel-active:active {
  stroke: #edeeee !important;
}
.st-light-steel-hover:hover {
  stroke: #edeeee !important;
}
.st-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;
}
.st-light-mauve {
  stroke: #f7ecfe !important;
}
.st-light-mauve-active:active {
  stroke: #f7ecfe !important;
}
.st-light-mauve-hover:hover {
  stroke: #f7ecfe !important;
}
.st-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;
}
.st-light-taupe {
  stroke: #eadccf !important;
}
.st-light-taupe-active:active {
  stroke: #eadccf !important;
}
.st-light-taupe-hover:hover {
  stroke: #eadccf !important;
}
.st-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;
}
.st-light-gray {
  stroke: #f4f4f4 !important;
}
.st-light-gray-active:active {
  stroke: #f4f4f4 !important;
}
.st-light-gray-hover:hover {
  stroke: #f4f4f4 !important;
}
.st-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;
}
.st-light-gray-blue {
  stroke: #bee2f4 !important;
}
.st-light-gray-blue-active:active {
  stroke: #bee2f4 !important;
}
.st-light-gray-blue-hover:hover {
  stroke: #bee2f4 !important;
}
.st-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;
}
.st-light-gray-mouse {
  stroke: #8ab4c8 !important;
}
.st-light-gray-mouse-active:active {
  stroke: #8ab4c8 !important;
}
.st-light-gray-mouse-hover:hover {
  stroke: #8ab4c8 !important;
}
.st-light-gray-mouse-focus:focus {
  stroke: #8ab4c8 !important;
}
.fc-light-champagne {
  fill: #fffdf7 !important;
}
.fc-light-champagne-active:active {
  fill: #fffdf7 !important;
}
.fc-light-champagne-hover:hover {
  fill: #fffdf7 !important;
}
.fc-light-champagne-focus:focus {
  fill: #fffdf7 !important;
}
.st-light-champagne {
  stroke: #fffdf7 !important;
}
.st-light-champagne-active:active {
  stroke: #fffdf7 !important;
}
.st-light-champagne-hover:hover {
  stroke: #fffdf7 !important;
}
.st-light-champagne-focus:focus {
  stroke: #fffdf7 !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;
}
.st-light-khaki {
  stroke: #f6f1dd !important;
}
.st-light-khaki-active:active {
  stroke: #f6f1dd !important;
}
.st-light-khaki-hover:hover {
  stroke: #f6f1dd !important;
}
.st-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;
}
.st-light-charcoal {
  stroke: #e8e8e8 !important;
}
.st-light-charcoal-active:active {
  stroke: #e8e8e8 !important;
}
.st-light-charcoal-hover:hover {
  stroke: #e8e8e8 !important;
}
.st-light-charcoal-focus:focus {
  stroke: #e8e8e8 !important;
}
.fc-light-bronze {
  fill: #f7f5c8 !important;
}
.fc-light-bronze-active:active {
  fill: #f7f5c8 !important;
}
.fc-light-bronze-hover:hover {
  fill: #f7f5c8 !important;
}
.fc-light-bronze-focus:focus {
  fill: #f7f5c8 !important;
}
.st-light-bronze {
  stroke: #f7f5c8 !important;
}
.st-light-bronze-active:active {
  stroke: #f7f5c8 !important;
}
.st-light-bronze-hover:hover {
  stroke: #f7f5c8 !important;
}
.st-light-bronze-focus:focus {
  stroke: #f7f5c8 !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;
}
.st-light-windstorm {
  stroke: #e6ebf5 !important;
}
.st-light-windstorm-active:active {
  stroke: #e6ebf5 !important;
}
.st-light-windstorm-hover:hover {
  stroke: #e6ebf5 !important;
}
.st-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;
}
.st-light-nude {
  stroke: #fcf0e4 !important;
}
.st-light-nude-active:active {
  stroke: #fcf0e4 !important;
}
.st-light-nude-hover:hover {
  stroke: #fcf0e4 !important;
}
.st-light-nude-focus:focus {
  stroke: #fcf0e4 !important;
}
.fc-light-terracotta {
  fill: #fdebed !important;
}
.fc-light-terracotta-active:active {
  fill: #fdebed !important;
}
.fc-light-terracotta-hover:hover {
  fill: #fdebed !important;
}
.fc-light-terracotta-focus:focus {
  fill: #fdebed !important;
}
.st-light-terracotta {
  stroke: #fdebed !important;
}
.st-light-terracotta-active:active {
  stroke: #fdebed !important;
}
.st-light-terracotta-hover:hover {
  stroke: #fdebed !important;
}
.st-light-terracotta-focus:focus {
  stroke: #fdebed !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;
}
.st-light-coral {
  stroke: #ffd8c8 !important;
}
.st-light-coral-active:active {
  stroke: #ffd8c8 !important;
}
.st-light-coral-hover:hover {
  stroke: #ffd8c8 !important;
}
.st-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;
}
.st-light-army {
  stroke: #eceacb !important;
}
.st-light-army-active:active {
  stroke: #eceacb !important;
}
.st-light-army-hover:hover {
  stroke: #eceacb !important;
}
.st-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;
}
.st-light-seashell {
  stroke: #fff9f8 !important;
}
.st-light-seashell-active:active {
  stroke: #fff9f8 !important;
}
.st-light-seashell-hover:hover {
  stroke: #fff9f8 !important;
}
.st-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;
}
.st-light-sand {
  stroke: #f8f3e0 !important;
}
.st-light-sand-active:active {
  stroke: #f8f3e0 !important;
}
.st-light-sand-hover:hover {
  stroke: #f8f3e0 !important;
}
.st-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;
}
.st-dark-lime {
  stroke: #557f32 !important;
}
.st-dark-lime-active:active {
  stroke: #557f32 !important;
}
.st-dark-lime-hover:hover {
  stroke: #557f32 !important;
}
.st-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;
}
.st-dark-green {
  stroke: #003d00 !important;
}
.st-dark-green-active:active {
  stroke: #003d00 !important;
}
.st-dark-green-hover:hover {
  stroke: #003d00 !important;
}
.st-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;
}
.st-dark-emerald {
  stroke: #246339 !important;
}
.st-dark-emerald-active:active {
  stroke: #246339 !important;
}
.st-dark-emerald-hover:hover {
  stroke: #246339 !important;
}
.st-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;
}
.st-dark-blue {
  stroke: #132a6f !important;
}
.st-dark-blue-active:active {
  stroke: #132a6f !important;
}
.st-dark-blue-hover:hover {
  stroke: #132a6f !important;
}
.st-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;
}
.st-dark-teal {
  stroke: #014848 !important;
}
.st-dark-teal-active:active {
  stroke: #014848 !important;
}
.st-dark-teal-hover:hover {
  stroke: #014848 !important;
}
.st-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;
}
.st-dark-cyan {
  stroke: #456c7e !important;
}
.st-dark-cyan-active:active {
  stroke: #456c7e !important;
}
.st-dark-cyan-hover:hover {
  stroke: #456c7e !important;
}
.st-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;
}
.st-dark-cobalt {
  stroke: #001f54 !important;
}
.st-dark-cobalt-active:active {
  stroke: #001f54 !important;
}
.st-dark-cobalt-hover:hover {
  stroke: #001f54 !important;
}
.st-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;
}
.st-dark-indigo {
  stroke: #21003e !important;
}
.st-dark-indigo-active:active {
  stroke: #21003e !important;
}
.st-dark-indigo-hover:hover {
  stroke: #21003e !important;
}
.st-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;
}
.st-dark-almost {
  stroke: #2f0687 !important;
}
.st-dark-almost-active:active {
  stroke: #2f0687 !important;
}
.st-dark-almost-hover:hover {
  stroke: #2f0687 !important;
}
.st-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;
}
.st-dark-violet {
  stroke: #773e77 !important;
}
.st-dark-violet-active:active {
  stroke: #773e77 !important;
}
.st-dark-violet-hover:hover {
  stroke: #773e77 !important;
}
.st-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;
}
.st-dark-pink {
  stroke: #805f65 !important;
}
.st-dark-pink-active:active {
  stroke: #805f65 !important;
}
.st-dark-pink-hover:hover {
  stroke: #805f65 !important;
}
.st-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;
}
.st-dark-magenta {
  stroke: #800080 !important;
}
.st-dark-magenta-active:active {
  stroke: #800080 !important;
}
.st-dark-magenta-hover:hover {
  stroke: #800080 !important;
}
.st-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;
}
.st-dark-crimson {
  stroke: #6e0519 !important;
}
.st-dark-crimson-active:active {
  stroke: #6e0519 !important;
}
.st-dark-crimson-hover:hover {
  stroke: #6e0519 !important;
}
.st-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;
}
.st-dark-red {
  stroke: #800000 !important;
}
.st-dark-red-active:active {
  stroke: #800000 !important;
}
.st-dark-red-hover:hover {
  stroke: #800000 !important;
}
.st-dark-red-focus:focus {
  stroke: #800000 !important;
}
.fc-dark-clown {
  fill: #ae0700 !important;
}
.fc-dark-clown-active:active {
  fill: #ae0700 !important;
}
.fc-dark-clown-hover:hover {
  fill: #ae0700 !important;
}
.fc-dark-clown-focus:focus {
  fill: #ae0700 !important;
}
.st-dark-clown {
  stroke: #ae0700 !important;
}
.st-dark-clown-active:active {
  stroke: #ae0700 !important;
}
.st-dark-clown-hover:hover {
  stroke: #ae0700 !important;
}
.st-dark-clown-focus:focus {
  stroke: #ae0700 !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;
}
.st-dark-orange {
  stroke: #805100 !important;
}
.st-dark-orange-active:active {
  stroke: #805100 !important;
}
.st-dark-orange-hover:hover {
  stroke: #805100 !important;
}
.st-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;
}
.st-dark-amber {
  stroke: #805e00 !important;
}
.st-dark-amber-active:active {
  stroke: #805e00 !important;
}
.st-dark-amber-hover:hover {
  stroke: #805e00 !important;
}
.st-dark-amber-focus:focus {
  stroke: #805e00 !important;
}
.fc-dark-yellow {
  fill: #808000 !important;
}
.fc-dark-yellow-active:active {
  fill: #808000 !important;
}
.fc-dark-yellow-hover:hover {
  fill: #808000 !important;
}
.fc-dark-yellow-focus:focus {
  fill: #808000 !important;
}
.st-dark-yellow {
  stroke: #808000 !important;
}
.st-dark-yellow-active:active {
  stroke: #808000 !important;
}
.st-dark-yellow-hover:hover {
  stroke: #808000 !important;
}
.st-dark-yellow-focus:focus {
  stroke: #808000 !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;
}
.st-dark-brown {
  stroke: #42240f !important;
}
.st-dark-brown-active:active {
  stroke: #42240f !important;
}
.st-dark-brown-hover:hover {
  stroke: #42240f !important;
}
.st-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;
}
.st-dark-olive {
  stroke: #3d3d00 !important;
}
.st-dark-olive-active:active {
  stroke: #3d3d00 !important;
}
.st-dark-olive-hover:hover {
  stroke: #3d3d00 !important;
}
.st-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;
}
.st-dark-steel {
  stroke: #2e3841 !important;
}
.st-dark-steel-active:active {
  stroke: #2e3841 !important;
}
.st-dark-steel-hover:hover {
  stroke: #2e3841 !important;
}
.st-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;
}
.st-dark-mauve {
  stroke: #705680 !important;
}
.st-dark-mauve-active:active {
  stroke: #705680 !important;
}
.st-dark-mauve-hover:hover {
  stroke: #705680 !important;
}
.st-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;
}
.st-dark-taupe {
  stroke: #261e18 !important;
}
.st-dark-taupe-active:active {
  stroke: #261e18 !important;
}
.st-dark-taupe-hover:hover {
  stroke: #261e18 !important;
}
.st-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;
}
.st-dark-gray {
  stroke: #515151 !important;
}
.st-dark-gray-active:active {
  stroke: #515151 !important;
}
.st-dark-gray-hover:hover {
  stroke: #515151 !important;
}
.st-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;
}
.st-dark-gray-blue {
  stroke: #36464e !important;
}
.st-dark-gray-blue-active:active {
  stroke: #36464e !important;
}
.st-dark-gray-blue-hover:hover {
  stroke: #36464e !important;
}
.st-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;
}
.st-dark-gray-mouse {
  stroke: #2e3c42 !important;
}
.st-dark-gray-mouse-active:active {
  stroke: #2e3c42 !important;
}
.st-dark-gray-mouse-hover:hover {
  stroke: #2e3c42 !important;
}
.st-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;
}
.st-dark-champagne {
  stroke: #7c7364 !important;
}
.st-dark-champagne-active:active {
  stroke: #7c7364 !important;
}
.st-dark-champagne-hover:hover {
  stroke: #7c7364 !important;
}
.st-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;
}
.st-dark-khaki {
  stroke: #6a6142 !important;
}
.st-dark-khaki-active:active {
  stroke: #6a6142 !important;
}
.st-dark-khaki-hover:hover {
  stroke: #6a6142 !important;
}
.st-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;
}
.st-dark-charcoal {
  stroke: #202020 !important;
}
.st-dark-charcoal-active:active {
  stroke: #202020 !important;
}
.st-dark-charcoal-hover:hover {
  stroke: #202020 !important;
}
.st-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;
}
.st-dark-bronze {
  stroke: #693c13 !important;
}
.st-dark-bronze-active:active {
  stroke: #693c13 !important;
}
.st-dark-bronze-hover:hover {
  stroke: #693c13 !important;
}
.st-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;
}
.st-dark-windstorm {
  stroke: #304462 !important;
}
.st-dark-windstorm-active:active {
  stroke: #304462 !important;
}
.st-dark-windstorm-hover:hover {
  stroke: #304462 !important;
}
.st-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;
}
.st-dark-nude {
  stroke: #7c6c5d !important;
}
.st-dark-nude-active:active {
  stroke: #7c6c5d !important;
}
.st-dark-nude-hover:hover {
  stroke: #7c6c5d !important;
}
.st-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;
}
.st-dark-terracotta {
  stroke: #712516 !important;
}
.st-dark-terracotta-active:active {
  stroke: #712516 !important;
}
.st-dark-terracotta-hover:hover {
  stroke: #712516 !important;
}
.st-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;
}
.st-dark-coral {
  stroke: #804028 !important;
}
.st-dark-coral-active:active {
  stroke: #804028 !important;
}
.st-dark-coral-hover:hover {
  stroke: #804028 !important;
}
.st-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;
}
.st-dark-army {
  stroke: #2a2f14 !important;
}
.st-dark-army-active:active {
  stroke: #2a2f14 !important;
}
.st-dark-army-hover:hover {
  stroke: #2a2f14 !important;
}
.st-dark-army-focus:focus {
  stroke: #2a2f14 !important;
}
.fc-dark-seashell {
  fill: #807973 !important;
}
.fc-dark-seashell-active:active {
  fill: #807973 !important;
}
.fc-dark-seashell-hover:hover {
  fill: #807973 !important;
}
.fc-dark-seashell-focus:focus {
  fill: #807973 !important;
}
.st-dark-seashell {
  stroke: #807973 !important;
}
.st-dark-seashell-active:active {
  stroke: #807973 !important;
}
.st-dark-seashell-hover:hover {
  stroke: #807973 !important;
}
.st-dark-seashell-focus:focus {
  stroke: #807973 !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;
}
.st-dark-sand {
  stroke: #8f8975 !important;
}
.st-dark-sand-active:active {
  stroke: #8f8975 !important;
}
.st-dark-sand-hover:hover {
  stroke: #8f8975 !important;
}
.st-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;
}
.st-sat-lime {
  stroke: #7dba4a !important;
}
.st-sat-lime-active:active {
  stroke: #7dba4a !important;
}
.st-sat-lime-hover:hover {
  stroke: #7dba4a !important;
}
.st-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;
}
.st-sat-green {
  stroke: #008f00 !important;
}
.st-sat-green-active:active {
  stroke: #008f00 !important;
}
.st-sat-green-hover:hover {
  stroke: #008f00 !important;
}
.st-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;
}
.st-sat-emerald {
  stroke: #3ca15d !important;
}
.st-sat-emerald-active:active {
  stroke: #3ca15d !important;
}
.st-sat-emerald-hover:hover {
  stroke: #3ca15d !important;
}
.st-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;
}
.st-sat-blue {
  stroke: #1f43ae !important;
}
.st-sat-blue-active:active {
  stroke: #1f43ae !important;
}
.st-sat-blue-hover:hover {
  stroke: #1f43ae !important;
}
.st-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;
}
.st-sat-teal {
  stroke: #008a8a !important;
}
.st-sat-teal-active:active {
  stroke: #008a8a !important;
}
.st-sat-teal-hover:hover {
  stroke: #008a8a !important;
}
.st-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;
}
.st-sat-cyan {
  stroke: #659db6 !important;
}
.st-sat-cyan-active:active {
  stroke: #659db6 !important;
}
.st-sat-cyan-hover:hover {
  stroke: #659db6 !important;
}
.st-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;
}
.st-sat-cobalt {
  stroke: #003391 !important;
}
.st-sat-cobalt-active:active {
  stroke: #003391 !important;
}
.st-sat-cobalt-hover:hover {
  stroke: #003391 !important;
}
.st-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;
}
.st-sat-indigo {
  stroke: #430080 !important;
}
.st-sat-indigo-active:active {
  stroke: #430080 !important;
}
.st-sat-indigo-hover:hover {
  stroke: #430080 !important;
}
.st-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;
}
.st-sat-almost {
  stroke: #4e18c1 !important;
}
.st-sat-almost-active:active {
  stroke: #4e18c1 !important;
}
.st-sat-almost-hover:hover {
  stroke: #4e18c1 !important;
}
.st-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;
}
.st-sat-violet {
  stroke: #b65fb6 !important;
}
.st-sat-violet-active:active {
  stroke: #b65fb6 !important;
}
.st-sat-violet-hover:hover {
  stroke: #b65fb6 !important;
}
.st-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;
}
.st-sat-pink {
  stroke: #cc7296 !important;
}
.st-sat-pink-active:active {
  stroke: #cc7296 !important;
}
.st-sat-pink-hover:hover {
  stroke: #cc7296 !important;
}
.st-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;
}
.st-sat-magenta {
  stroke: #c500c5 !important;
}
.st-sat-magenta-active:active {
  stroke: #c500c5 !important;
}
.st-sat-magenta-hover:hover {
  stroke: #c500c5 !important;
}
.st-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;
}
.st-sat-crimson {
  stroke: #980824 !important;
}
.st-sat-crimson-active:active {
  stroke: #980824 !important;
}
.st-sat-crimson-hover:hover {
  stroke: #980824 !important;
}
.st-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;
}
.st-sat-red {
  stroke: #b80000 !important;
}
.st-sat-red-active:active {
  stroke: #b80000 !important;
}
.st-sat-red-hover:hover {
  stroke: #b80000 !important;
}
.st-sat-red-focus:focus {
  stroke: #b80000 !important;
}
.fc-sat-clown {
  fill: #dd443f !important;
}
.fc-sat-clown-active:active {
  fill: #dd443f !important;
}
.fc-sat-clown-hover:hover {
  fill: #dd443f !important;
}
.fc-sat-clown-focus:focus {
  fill: #dd443f !important;
}
.st-sat-clown {
  stroke: #dd443f !important;
}
.st-sat-clown-active:active {
  stroke: #dd443f !important;
}
.st-sat-clown-hover:hover {
  stroke: #dd443f !important;
}
.st-sat-clown-focus:focus {
  stroke: #dd443f !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;
}
.st-sat-orange {
  stroke: #bc7700 !important;
}
.st-sat-orange-active:active {
  stroke: #bc7700 !important;
}
.st-sat-orange-hover:hover {
  stroke: #bc7700 !important;
}
.st-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;
}
.st-sat-amber {
  stroke: #d19b00 !important;
}
.st-sat-amber-active:active {
  stroke: #d19b00 !important;
}
.st-sat-amber-hover:hover {
  stroke: #d19b00 !important;
}
.st-sat-amber-focus:focus {
  stroke: #d19b00 !important;
}
.fc-sat-yellow {
  fill: #d5d500 !important;
}
.fc-sat-yellow-active:active {
  fill: #d5d500 !important;
}
.fc-sat-yellow-hover:hover {
  fill: #d5d500 !important;
}
.fc-sat-yellow-focus:focus {
  fill: #d5d500 !important;
}
.st-sat-yellow {
  stroke: #d5d500 !important;
}
.st-sat-yellow-active:active {
  stroke: #d5d500 !important;
}
.st-sat-yellow-hover:hover {
  stroke: #d5d500 !important;
}
.st-sat-yellow-focus:focus {
  stroke: #d5d500 !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;
}
.st-sat-brown {
  stroke: #884b20 !important;
}
.st-sat-brown-active:active {
  stroke: #884b20 !important;
}
.st-sat-brown-hover:hover {
  stroke: #884b20 !important;
}
.st-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;
}
.st-sat-olive {
  stroke: #838300 !important;
}
.st-sat-olive-active:active {
  stroke: #838300 !important;
}
.st-sat-olive-hover:hover {
  stroke: #838300 !important;
}
.st-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;
}
.st-sat-steel {
  stroke: #5c7081 !important;
}
.st-sat-steel-active:active {
  stroke: #5c7081 !important;
}
.st-sat-steel-hover:hover {
  stroke: #5c7081 !important;
}
.st-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;
}
.st-sat-mauve {
  stroke: #a982c1 !important;
}
.st-sat-mauve-active:active {
  stroke: #a982c1 !important;
}
.st-sat-mauve-hover:hover {
  stroke: #a982c1 !important;
}
.st-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;
}
.st-sat-taupe {
  stroke: #5e4a3c !important;
}
.st-sat-taupe-active:active {
  stroke: #5e4a3c !important;
}
.st-sat-taupe-hover:hover {
  stroke: #5e4a3c !important;
}
.st-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;
}
.st-sat-gray {
  stroke: #9c9c9c !important;
}
.st-sat-gray-active:active {
  stroke: #9c9c9c !important;
}
.st-sat-gray-hover:hover {
  stroke: #9c9c9c !important;
}
.st-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;
}
.st-sat-gray-blue {
  stroke: #5f7a88 !important;
}
.st-sat-gray-blue-active:active {
  stroke: #5f7a88 !important;
}
.st-sat-gray-blue-hover:hover {
  stroke: #5f7a88 !important;
}
.st-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;
}
.st-sat-gray-mouse {
  stroke: #3f535c !important;
}
.st-sat-gray-mouse-active:active {
  stroke: #3f535c !important;
}
.st-sat-gray-mouse-hover:hover {
  stroke: #3f535c !important;
}
.st-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;
}
.st-sat-champagne {
  stroke: #ccbca5 !important;
}
.st-sat-champagne-active:active {
  stroke: #ccbca5 !important;
}
.st-sat-champagne-hover:hover {
  stroke: #ccbca5 !important;
}
.st-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;
}
.st-sat-khaki {
  stroke: #aa9c6b !important;
}
.st-sat-khaki-active:active {
  stroke: #aa9c6b !important;
}
.st-sat-khaki-hover:hover {
  stroke: #aa9c6b !important;
}
.st-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;
}
.st-sat-charcoal {
  stroke: #5e5e5e !important;
}
.st-sat-charcoal-active:active {
  stroke: #5e5e5e !important;
}
.st-sat-charcoal-hover:hover {
  stroke: #5e5e5e !important;
}
.st-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;
}
.st-sat-bronze {
  stroke: #aa621f !important;
}
.st-sat-bronze-active:active {
  stroke: #aa621f !important;
}
.st-sat-bronze-hover:hover {
  stroke: #aa621f !important;
}
.st-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;
}
.st-sat-windstorm {
  stroke: #5071a3 !important;
}
.st-sat-windstorm-active:active {
  stroke: #5071a3 !important;
}
.st-sat-windstorm-hover:hover {
  stroke: #5071a3 !important;
}
.st-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;
}
.st-sat-nude {
  stroke: #baa28b !important;
}
.st-sat-nude-active:active {
  stroke: #baa28b !important;
}
.st-sat-nude-hover:hover {
  stroke: #baa28b !important;
}
.st-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;
}
.st-sat-terracotta {
  stroke: #af3a23 !important;
}
.st-sat-terracotta-active:active {
  stroke: #af3a23 !important;
}
.st-sat-terracotta-hover:hover {
  stroke: #af3a23 !important;
}
.st-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;
}
.st-sat-coral {
  stroke: #b65c39 !important;
}
.st-sat-coral-active:active {
  stroke: #b65c39 !important;
}
.st-sat-coral-hover:hover {
  stroke: #b65c39 !important;
}
.st-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;
}
.st-sat-army {
  stroke: #647030 !important;
}
.st-sat-army-active:active {
  stroke: #647030 !important;
}
.st-sat-army-hover:hover {
  stroke: #647030 !important;
}
.st-sat-army-focus:focus {
  stroke: #647030 !important;
}
.fc-sat-seashell {
  fill: #b8aea6 !important;
}
.fc-sat-seashell-active:active {
  fill: #b8aea6 !important;
}
.fc-sat-seashell-hover:hover {
  fill: #b8aea6 !important;
}
.fc-sat-seashell-focus:focus {
  fill: #b8aea6 !important;
}
.st-sat-seashell {
  stroke: #b8aea6 !important;
}
.st-sat-seashell-active:active {
  stroke: #b8aea6 !important;
}
.st-sat-seashell-hover:hover {
  stroke: #b8aea6 !important;
}
.st-sat-seashell-focus:focus {
  stroke: #b8aea6 !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;
}
.st-sat-sand {
  stroke: #d1c5a1 !important;
}
.st-sat-sand-active:active {
  stroke: #d1c5a1 !important;
}
.st-sat-sand-hover:hover {
  stroke: #d1c5a1 !important;
}
.st-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: #069494 !important;
}
.fg-teal-active:active {
  color: #069494 !important;
}
.fg-teal-hover:hover {
  color: #069494 !important;
}
.fg-teal-focus:focus {
  color: #069494 !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: #d43e38 !important;
}
.fg-clown-active:active {
  color: #d43e38 !important;
}
.fg-clown-hover:hover {
  color: #d43e38 !important;
}
.fg-clown-focus:focus {
  color: #d43e38 !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: #ffff00 !important;
}
.fg-yellow-active:active {
  color: #ffff00 !important;
}
.fg-yellow-hover:hover {
  color: #ffff00 !important;
}
.fg-yellow-focus:focus {
  color: #ffff00 !important;
}
.fg-brown {
  color: #aa6432 !important;
}
.fg-brown-active:active {
  color: #aa6432 !important;
}
.fg-brown-hover:hover {
  color: #aa6432 !important;
}
.fg-brown-focus:focus {
  color: #aa6432 !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: #7a6654 !important;
}
.fg-taupe-active:active {
  color: #7a6654 !important;
}
.fg-taupe-hover:hover {
  color: #7a6654 !important;
}
.fg-taupe-focus:focus {
  color: #7a6654 !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: #ffffe6 !important;
}
.fg-light-yellow-active:active {
  color: #ffffe6 !important;
}
.fg-light-yellow-hover:hover {
  color: #ffffe6 !important;
}
.fg-light-yellow-focus:focus {
  color: #ffffe6 !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: #fffdf7 !important;
}
.fg-light-champagne-active:active {
  color: #fffdf7 !important;
}
.fg-light-champagne-hover:hover {
  color: #fffdf7 !important;
}
.fg-light-champagne-focus:focus {
  color: #fffdf7 !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: #f7f5c8 !important;
}
.fg-light-bronze-active:active {
  color: #f7f5c8 !important;
}
.fg-light-bronze-hover:hover {
  color: #f7f5c8 !important;
}
.fg-light-bronze-focus:focus {
  color: #f7f5c8 !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: #fdebed !important;
}
.fg-light-terracotta-active:active {
  color: #fdebed !important;
}
.fg-light-terracotta-hover:hover {
  color: #fdebed !important;
}
.fg-light-terracotta-focus:focus {
  color: #fdebed !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: #ae0700 !important;
}
.fg-dark-clown-active:active {
  color: #ae0700 !important;
}
.fg-dark-clown-hover:hover {
  color: #ae0700 !important;
}
.fg-dark-clown-focus:focus {
  color: #ae0700 !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: #808000 !important;
}
.fg-dark-yellow-active:active {
  color: #808000 !important;
}
.fg-dark-yellow-hover:hover {
  color: #808000 !important;
}
.fg-dark-yellow-focus:focus {
  color: #808000 !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: #807973 !important;
}
.fg-dark-seashell-active:active {
  color: #807973 !important;
}
.fg-dark-seashell-hover:hover {
  color: #807973 !important;
}
.fg-dark-seashell-focus:focus {
  color: #807973 !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: #dd443f !important;
}
.fg-sat-clown-active:active {
  color: #dd443f !important;
}
.fg-sat-clown-hover:hover {
  color: #dd443f !important;
}
.fg-sat-clown-focus:focus {
  color: #dd443f !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: #d5d500 !important;
}
.fg-sat-yellow-active:active {
  color: #d5d500 !important;
}
.fg-sat-yellow-hover:hover {
  color: #d5d500 !important;
}
.fg-sat-yellow-focus:focus {
  color: #d5d500 !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: #b8aea6 !important;
}
.fg-sat-seashell-active:active {
  color: #b8aea6 !important;
}
.fg-sat-seashell-hover:hover {
  color: #b8aea6 !important;
}
.fg-sat-seashell-focus:focus {
  color: #b8aea6 !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(6, 148, 148, 0.5) !important;
}
.op-teal-hi {
  background-color: rgba(6, 148, 148, 0.2) !important;
}
.op-teal-low {
  background-color: rgba(6, 148, 148, 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(212, 62, 56, 0.5) !important;
}
.op-clown-hi {
  background-color: rgba(212, 62, 56, 0.2) !important;
}
.op-clown-low {
  background-color: rgba(212, 62, 56, 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, 255, 0, 0.5) !important;
}
.op-yellow-hi {
  background-color: rgba(255, 255, 0, 0.2) !important;
}
.op-yellow-low {
  background-color: rgba(255, 255, 0, 0.8) !important;
}
.op-brown {
  background-color: rgba(170, 100, 50, 0.5) !important;
}
.op-brown-hi {
  background-color: rgba(170, 100, 50, 0.2) !important;
}
.op-brown-low {
  background-color: rgba(170, 100, 50, 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(122, 102, 84, 0.5) !important;
}
.op-taupe-hi {
  background-color: rgba(122, 102, 84, 0.2) !important;
}
.op-taupe-low {
  background-color: rgba(122, 102, 84, 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, 230, 0.5) !important;
}
.op-light-yellow-hi {
  background-color: rgba(255, 255, 230, 0.2) !important;
}
.op-light-yellow-low {
  background-color: rgba(255, 255, 230, 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, 253, 247, 0.5) !important;
}
.op-light-champagne-hi {
  background-color: rgba(255, 253, 247, 0.2) !important;
}
.op-light-champagne-low {
  background-color: rgba(255, 253, 247, 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(247, 245, 200, 0.5) !important;
}
.op-light-bronze-hi {
  background-color: rgba(247, 245, 200, 0.2) !important;
}
.op-light-bronze-low {
  background-color: rgba(247, 245, 200, 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(253, 235, 237, 0.5) !important;
}
.op-light-terracotta-hi {
  background-color: rgba(253, 235, 237, 0.2) !important;
}
.op-light-terracotta-low {
  background-color: rgba(253, 235, 237, 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(174, 7, 0, 0.5) !important;
}
.op-dark-clown-hi {
  background-color: rgba(174, 7, 0, 0.2) !important;
}
.op-dark-clown-low {
  background-color: rgba(174, 7, 0, 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(128, 128, 0, 0.5) !important;
}
.op-dark-yellow-hi {
  background-color: rgba(128, 128, 0, 0.2) !important;
}
.op-dark-yellow-low {
  background-color: rgba(128, 128, 0, 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(128, 121, 115, 0.5) !important;
}
.op-dark-seashell-hi {
  background-color: rgba(128, 121, 115, 0.2) !important;
}
.op-dark-seashell-low {
  background-color: rgba(128, 121, 115, 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(221, 68, 63, 0.5) !important;
}
.op-sat-clown-hi {
  background-color: rgba(221, 68, 63, 0.2) !important;
}
.op-sat-clown-low {
  background-color: rgba(221, 68, 63, 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(213, 213, 0, 0.5) !important;
}
.op-sat-yellow-hi {
  background-color: rgba(213, 213, 0, 0.2) !important;
}
.op-sat-yellow-low {
  background-color: rgba(213, 213, 0, 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(184, 174, 166, 0.5) !important;
}
.op-sat-seashell-hi {
  background-color: rgba(184, 174, 166, 0.2) !important;
}
.op-sat-seashell-low {
  background-color: rgba(184, 174, 166, 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: #069494 !important;
}
.ol-teal-active:active {
  outline-color: #069494 !important;
}
.ol-teal-hover:hover {
  outline-color: #069494 !important;
}
.ol-teal-focus:focus {
  outline-color: #069494 !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: #d43e38 !important;
}
.ol-clown-active:active {
  outline-color: #d43e38 !important;
}
.ol-clown-hover:hover {
  outline-color: #d43e38 !important;
}
.ol-clown-focus:focus {
  outline-color: #d43e38 !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: #ffff00 !important;
}
.ol-yellow-active:active {
  outline-color: #ffff00 !important;
}
.ol-yellow-hover:hover {
  outline-color: #ffff00 !important;
}
.ol-yellow-focus:focus {
  outline-color: #ffff00 !important;
}
.ol-brown {
  outline-color: #aa6432 !important;
}
.ol-brown-active:active {
  outline-color: #aa6432 !important;
}
.ol-brown-hover:hover {
  outline-color: #aa6432 !important;
}
.ol-brown-focus:focus {
  outline-color: #aa6432 !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: #7a6654 !important;
}
.ol-taupe-active:active {
  outline-color: #7a6654 !important;
}
.ol-taupe-hover:hover {
  outline-color: #7a6654 !important;
}
.ol-taupe-focus:focus {
  outline-color: #7a6654 !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: #ffffe6 !important;
}
.ol-light-yellow-active:active {
  outline-color: #ffffe6 !important;
}
.ol-light-yellow-hover:hover {
  outline-color: #ffffe6 !important;
}
.ol-light-yellow-focus:focus {
  outline-color: #ffffe6 !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: #fffdf7 !important;
}
.ol-light-champagne-active:active {
  outline-color: #fffdf7 !important;
}
.ol-light-champagne-hover:hover {
  outline-color: #fffdf7 !important;
}
.ol-light-champagne-focus:focus {
  outline-color: #fffdf7 !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: #f7f5c8 !important;
}
.ol-light-bronze-active:active {
  outline-color: #f7f5c8 !important;
}
.ol-light-bronze-hover:hover {
  outline-color: #f7f5c8 !important;
}
.ol-light-bronze-focus:focus {
  outline-color: #f7f5c8 !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: #fdebed !important;
}
.ol-light-terracotta-active:active {
  outline-color: #fdebed !important;
}
.ol-light-terracotta-hover:hover {
  outline-color: #fdebed !important;
}
.ol-light-terracotta-focus:focus {
  outline-color: #fdebed !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: #ae0700 !important;
}
.ol-dark-clown-active:active {
  outline-color: #ae0700 !important;
}
.ol-dark-clown-hover:hover {
  outline-color: #ae0700 !important;
}
.ol-dark-clown-focus:focus {
  outline-color: #ae0700 !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: #808000 !important;
}
.ol-dark-yellow-active:active {
  outline-color: #808000 !important;
}
.ol-dark-yellow-hover:hover {
  outline-color: #808000 !important;
}
.ol-dark-yellow-focus:focus {
  outline-color: #808000 !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: #807973 !important;
}
.ol-dark-seashell-active:active {
  outline-color: #807973 !important;
}
.ol-dark-seashell-hover:hover {
  outline-color: #807973 !important;
}
.ol-dark-seashell-focus:focus {
  outline-color: #807973 !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: #dd443f !important;
}
.ol-sat-clown-active:active {
  outline-color: #dd443f !important;
}
.ol-sat-clown-hover:hover {
  outline-color: #dd443f !important;
}
.ol-sat-clown-focus:focus {
  outline-color: #dd443f !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: #d5d500 !important;
}
.ol-sat-yellow-active:active {
  outline-color: #d5d500 !important;
}
.ol-sat-yellow-hover:hover {
  outline-color: #d5d500 !important;
}
.ol-sat-yellow-focus:focus {
  outline-color: #d5d500 !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: #b8aea6 !important;
}
.ol-sat-seashell-active:active {
  outline-color: #b8aea6 !important;
}
.ol-sat-seashell-hover:hover {
  outline-color: #b8aea6 !important;
}
.ol-sat-seashell-focus:focus {
  outline-color: #b8aea6 !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: #069494 !important;
}
.before-fg-teal::before {
  color: #069494 !important;
}
.before-bd-teal::before {
  border-color: #069494 !important;
}
.after-bg-teal::after {
  background: #069494 !important;
}
.after-fg-teal::after {
  color: #069494 !important;
}
.after-bd-teal::after {
  border-color: #069494 !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: #d43e38 !important;
}
.before-fg-clown::before {
  color: #d43e38 !important;
}
.before-bd-clown::before {
  border-color: #d43e38 !important;
}
.after-bg-clown::after {
  background: #d43e38 !important;
}
.after-fg-clown::after {
  color: #d43e38 !important;
}
.after-bd-clown::after {
  border-color: #d43e38 !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: #ffff00 !important;
}
.before-fg-yellow::before {
  color: #ffff00 !important;
}
.before-bd-yellow::before {
  border-color: #ffff00 !important;
}
.after-bg-yellow::after {
  background: #ffff00 !important;
}
.after-fg-yellow::after {
  color: #ffff00 !important;
}
.after-bd-yellow::after {
  border-color: #ffff00 !important;
}
.before-bg-brown::before {
  background: #aa6432 !important;
}
.before-fg-brown::before {
  color: #aa6432 !important;
}
.before-bd-brown::before {
  border-color: #aa6432 !important;
}
.after-bg-brown::after {
  background: #aa6432 !important;
}
.after-fg-brown::after {
  color: #aa6432 !important;
}
.after-bd-brown::after {
  border-color: #aa6432 !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: #7a6654 !important;
}
.before-fg-taupe::before {
  color: #7a6654 !important;
}
.before-bd-taupe::before {
  border-color: #7a6654 !important;
}
.after-bg-taupe::after {
  background: #7a6654 !important;
}
.after-fg-taupe::after {
  color: #7a6654 !important;
}
.after-bd-taupe::after {
  border-color: #7a6654 !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: #ffffe6 !important;
}
.before-fg-light-yellow::before {
  color: #ffffe6 !important;
}
.before-bd-light-yellow::before {
  border-color: #ffffe6 !important;
}
.after-bg-light-yellow::after {
  background: #ffffe6 !important;
}
.after-fg-light-yellow::after {
  color: #ffffe6 !important;
}
.after-bd-light-yellow::after {
  border-color: #ffffe6 !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: #fffdf7 !important;
}
.before-fg-light-champagne::before {
  color: #fffdf7 !important;
}
.before-bd-light-champagne::before {
  border-color: #fffdf7 !important;
}
.after-bg-light-champagne::after {
  background: #fffdf7 !important;
}
.after-fg-light-champagne::after {
  color: #fffdf7 !important;
}
.after-bd-light-champagne::after {
  border-color: #fffdf7 !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: #f7f5c8 !important;
}
.before-fg-light-bronze::before {
  color: #f7f5c8 !important;
}
.before-bd-light-bronze::before {
  border-color: #f7f5c8 !important;
}
.after-bg-light-bronze::after {
  background: #f7f5c8 !important;
}
.after-fg-light-bronze::after {
  color: #f7f5c8 !important;
}
.after-bd-light-bronze::after {
  border-color: #f7f5c8 !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: #fdebed !important;
}
.before-fg-light-terracotta::before {
  color: #fdebed !important;
}
.before-bd-light-terracotta::before {
  border-color: #fdebed !important;
}
.after-bg-light-terracotta::after {
  background: #fdebed !important;
}
.after-fg-light-terracotta::after {
  color: #fdebed !important;
}
.after-bd-light-terracotta::after {
  border-color: #fdebed !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: #ae0700 !important;
}
.before-fg-dark-clown::before {
  color: #ae0700 !important;
}
.before-bd-dark-clown::before {
  border-color: #ae0700 !important;
}
.after-bg-dark-clown::after {
  background: #ae0700 !important;
}
.after-fg-dark-clown::after {
  color: #ae0700 !important;
}
.after-bd-dark-clown::after {
  border-color: #ae0700 !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: #808000 !important;
}
.before-fg-dark-yellow::before {
  color: #808000 !important;
}
.before-bd-dark-yellow::before {
  border-color: #808000 !important;
}
.after-bg-dark-yellow::after {
  background: #808000 !important;
}
.after-fg-dark-yellow::after {
  color: #808000 !important;
}
.after-bd-dark-yellow::after {
  border-color: #808000 !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: #807973 !important;
}
.before-fg-dark-seashell::before {
  color: #807973 !important;
}
.before-bd-dark-seashell::before {
  border-color: #807973 !important;
}
.after-bg-dark-seashell::after {
  background: #807973 !important;
}
.after-fg-dark-seashell::after {
  color: #807973 !important;
}
.after-bd-dark-seashell::after {
  border-color: #807973 !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: #dd443f !important;
}
.before-fg-sat-clown::before {
  color: #dd443f !important;
}
.before-bd-sat-clown::before {
  border-color: #dd443f !important;
}
.after-bg-sat-clown::after {
  background: #dd443f !important;
}
.after-fg-sat-clown::after {
  color: #dd443f !important;
}
.after-bd-sat-clown::after {
  border-color: #dd443f !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: #d5d500 !important;
}
.before-fg-sat-yellow::before {
  color: #d5d500 !important;
}
.before-bd-sat-yellow::before {
  border-color: #d5d500 !important;
}
.after-bg-sat-yellow::after {
  background: #d5d500 !important;
}
.after-fg-sat-yellow::after {
  color: #d5d500 !important;
}
.after-bd-sat-yellow::after {
  border-color: #d5d500 !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: #b8aea6 !important;
}
.before-fg-sat-seashell::before {
  color: #b8aea6 !important;
}
.before-bd-sat-seashell::before {
  border-color: #b8aea6 !important;
}
.after-bg-sat-seashell::after {
  background: #b8aea6 !important;
}
.after-fg-sat-seashell::after {
  color: #b8aea6 !important;
}
.after-bd-sat-seashell::after {
  border-color: #b8aea6 !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:
    #069494 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:
    #d43e38 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:
    #ffff00 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:
    #aa6432 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:
    #7a6654 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:
    #ffffe6 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:
    #fffdf7 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:
    #f7f5c8 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:
    #fdebed 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:
    #ae0700 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:
    #808000 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:
    #807973 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:
    #dd443f 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:
    #d5d500 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:
    #b8aea6 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: #75b5fd !important;
  background-color: #0366d6 !important;
  border-color: #0366d6 !important;
  color: #ffffff !important;
}
.primary.outline {
  color: #0366d6 !important;
  border-color: #0366d6 !important;
  background-color: transparent !important;
}
.primary.outline.dropdown-toggle::before {
  border-color: #0366d6 !important;
}
@media (hover: hover) {
  .primary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .primary.outline:active {
    color: #ffffff !important;
  }
}
.primary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .primary:hover {
    color: #ffffff !important;
    background-color: #024ea4 !important;
    border-color: #024ea4 !important;
  }
  .primary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .primary:active {
    color: #ffffff !important;
    background-color: #024ea4 !important;
    border-color: #024ea4 !important;
  }
  .primary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .primary.same-color:hover {
    background-color: #0366d6 !important;
    border-color: #0366d6 !important;
  }
}
@media (hover: none) {
  .primary.same-color:active {
    background-color: #0366d6 !important;
    border-color: #0366d6 !important;
  }
}
.secondary {
  outline-color: #cad5e0 !important;
  background-color: #6a89a7 !important;
  border-color: #6a89a7 !important;
  color: #ffffff !important;
}
.secondary.outline {
  color: #6a89a7 !important;
  border-color: #6a89a7 !important;
  background-color: transparent !important;
}
.secondary.outline.dropdown-toggle::before {
  border-color: #6a89a7 !important;
}
@media (hover: hover) {
  .secondary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .secondary.outline:active {
    color: #ffffff !important;
  }
}
.secondary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .secondary:hover {
    color: #ffffff !important;
    background-color: #526f8c !important;
    border-color: #526f8c !important;
  }
  .secondary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .secondary:active {
    color: #ffffff !important;
    background-color: #526f8c !important;
    border-color: #526f8c !important;
  }
  .secondary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .secondary.same-color:hover {
    background-color: #6a89a7 !important;
    border-color: #6a89a7 !important;
  }
}
@media (hover: none) {
  .secondary.same-color:active {
    background-color: #6a89a7 !important;
    border-color: #6a89a7 !important;
  }
}
.success {
  outline-color: #c4edd2 !important;
  background-color: #50c878 !important;
  border-color: #50c878 !important;
  color: #ffffff !important;
}
.success.outline {
  color: #50c878 !important;
  border-color: #50c878 !important;
  background-color: transparent !important;
}
.success.outline.dropdown-toggle::before {
  border-color: #50c878 !important;
}
@media (hover: hover) {
  .success.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .success.outline:active {
    color: #ffffff !important;
  }
}
.success.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .success:hover {
    color: #ffffff !important;
    background-color: #37ae5f !important;
    border-color: #37ae5f !important;
  }
  .success:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .success:active {
    color: #ffffff !important;
    background-color: #37ae5f !important;
    border-color: #37ae5f !important;
  }
  .success:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .success.same-color:hover {
    background-color: #50c878 !important;
    border-color: #50c878 !important;
  }
}
@media (hover: none) {
  .success.same-color:active {
    background-color: #50c878 !important;
    border-color: #50c878 !important;
  }
}
.alert {
  outline-color: #f88ea3 !important;
  background-color: #df0e38 !important;
  border-color: #df0e38 !important;
  color: #ffffff !important;
}
.alert.outline {
  color: #df0e38 !important;
  border-color: #df0e38 !important;
  background-color: transparent !important;
}
.alert.outline.dropdown-toggle::before {
  border-color: #df0e38 !important;
}
@media (hover: hover) {
  .alert.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .alert.outline:active {
    color: #ffffff !important;
  }
}
.alert.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .alert:hover {
    color: #ffffff !important;
    background-color: #af0b2c !important;
    border-color: #af0b2c !important;
  }
  .alert:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .alert:active {
    color: #ffffff !important;
    background-color: #af0b2c !important;
    border-color: #af0b2c !important;
  }
  .alert:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .alert.same-color:hover {
    background-color: #df0e38 !important;
    border-color: #df0e38 !important;
  }
}
@media (hover: none) {
  .alert.same-color:active {
    background-color: #df0e38 !important;
    border-color: #df0e38 !important;
  }
}
.warning {
  outline-color: #ffdb99 !important;
  background-color: #ffa500 !important;
  border-color: #ffa500 !important;
  color: #ffffff !important;
}
.warning.outline {
  color: #ffa500 !important;
  border-color: #ffa500 !important;
  background-color: transparent !important;
}
.warning.outline.dropdown-toggle::before {
  border-color: #ffa500 !important;
}
@media (hover: hover) {
  .warning.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .warning.outline:active {
    color: #ffffff !important;
  }
}
.warning.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .warning:hover {
    color: #ffffff !important;
    background-color: #cc8400 !important;
    border-color: #cc8400 !important;
  }
  .warning:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .warning:active {
    color: #ffffff !important;
    background-color: #cc8400 !important;
    border-color: #cc8400 !important;
  }
  .warning:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .warning.same-color:hover {
    background-color: #ffa500 !important;
    border-color: #ffa500 !important;
  }
}
@media (hover: none) {
  .warning.same-color:active {
    background-color: #ffa500 !important;
    border-color: #ffa500 !important;
  }
}
.yellow {
  outline-color: #ffff99 !important;
  background-color: #ffff00 !important;
  border-color: #ffff00 !important;
  color: #ffffff !important;
}
.yellow.outline {
  color: #ffff00 !important;
  border-color: #ffff00 !important;
  background-color: transparent !important;
}
.yellow.outline.dropdown-toggle::before {
  border-color: #ffff00 !important;
}
@media (hover: hover) {
  .yellow.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .yellow.outline:active {
    color: #ffffff !important;
  }
}
.yellow.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .yellow:hover {
    color: #ffffff !important;
    background-color: #cccc00 !important;
    border-color: #cccc00 !important;
  }
  .yellow:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .yellow:active {
    color: #ffffff !important;
    background-color: #cccc00 !important;
    border-color: #cccc00 !important;
  }
  .yellow:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .yellow.same-color:hover {
    background-color: #ffff00 !important;
    border-color: #ffff00 !important;
  }
}
@media (hover: none) {
  .yellow.same-color:active {
    background-color: #ffff00 !important;
    border-color: #ffff00 !important;
  }
}
.info {
  outline-color: #dfebff !important;
  background-color: #468cff !important;
  border-color: #468cff !important;
  color: #ffffff !important;
}
.info.outline {
  color: #468cff !important;
  border-color: #468cff !important;
  background-color: transparent !important;
}
.info.outline.dropdown-toggle::before {
  border-color: #468cff !important;
}
@media (hover: hover) {
  .info.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .info.outline:active {
    color: #ffffff !important;
  }
}
.info.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .info:hover {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  .info:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .info:active {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  .info:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .info.same-color:hover {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
@media (hover: none) {
  .info.same-color:active {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
.dark {
  outline-color: #9d9d9d !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
  color: #ffffff !important;
}
.dark.outline {
  color: #505050 !important;
  border-color: #505050 !important;
  background-color: transparent !important;
}
.dark.outline.dropdown-toggle::before {
  border-color: #505050 !important;
}
@media (hover: hover) {
  .dark.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .dark.outline:active {
    color: #ffffff !important;
  }
}
.dark.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .dark:hover {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  .dark:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .dark:active {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  .dark:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .dark.same-color:hover {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
@media (hover: none) {
  .dark.same-color:active {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
.light {
  outline-color: #ffffff !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  color: #ffffff !important;
}
.light.outline {
  color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  background-color: transparent !important;
}
.light.outline.dropdown-toggle::before {
  border-color: #f8f8f8 !important;
}
@media (hover: hover) {
  .light.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .light.outline:active {
    color: #ffffff !important;
  }
}
.light.dropdown-toggle::before {
  border-color: #ffffff !important;
}
@media (hover: hover) {
  .light:hover {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  .light:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  .light:active {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  .light:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  .light.same-color:hover {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
@media (hover: none) {
  .light.same-color:active {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
.yellow,
.yellow.outline,
.light,
.light.outline {
  color: #1d1d1d !important;
}
@media (hover: hover) {
  .yellow:hover,
  .yellow.outline:hover,
  .light:hover,
  .light.outline:hover,
  .yellow.outline:hover,
  .yellow.outline.outline:hover,
  .light.outline:hover,
  .light.outline.outline:hover {
    color: #1d1d1d !important;
  }
}
@media (hover: none) {
  .yellow:active,
  .yellow.outline:active,
  .light:active,
  .light.outline:active,
  .yellow.outline:active,
  .yellow.outline.outline:active,
  .light.outline:active,
  .light.outline.outline:active {
    color: #1d1d1d !important;
  }
}
.focusable.primary:active,
.focusable.primary.focus,
.focusable.primary:focus {
  box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.45) !important;
}
.focusable.secondary:active,
.focusable.secondary.focus,
.focusable.secondary:focus {
  box-shadow: 0 0 0 3px rgba(106, 137, 167, 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.yellow:active,
.focusable.yellow.focus,
.focusable.yellow:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 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: #0366d6;
}
.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(3, 102, 214, 0.45);
}
.metro-input.secondary,
.file.secondary,
.input.secondary,
.select.secondary,
.textarea.secondary,
.keypad.secondary,
.tag-input.secondary,
.spinner.secondary {
  border-color: #6a89a7;
}
.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(106, 137, 167, 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.yellow,
.file.yellow,
.input.yellow,
.select.yellow,
.textarea.yellow,
.keypad.yellow,
.tag-input.yellow,
.spinner.yellow {
  border-color: #ffff00;
}
.metro-input.yellow:focus,
.file.yellow:focus,
.input.yellow:focus,
.select.yellow:focus,
.textarea.yellow:focus,
.keypad.yellow:focus,
.tag-input.yellow:focus,
.spinner.yellow:focus,
.metro-input.yellow.focused,
.file.yellow.focused,
.input.yellow.focused,
.select.yellow.focused,
.textarea.yellow.focused,
.keypad.yellow.focused,
.tag-input.yellow.focused,
.spinner.yellow.focused {
  box-shadow: 0 0 0 3px rgba(255, 255, 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),
      #069494,
      #0bf5f5) !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),
      #ffff00,
      #ffff66) !important;
}
.gr-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #aa6432,
      #d4986e) !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),
      #7a6654,
      #ad9987) !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),
      #ffffe6,
      #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),
      #fffdf7,
      #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),
      #f7f5c8,
      #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),
      #fdebed,
      #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),
      #1a1a00,
      #808000) !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),
      #4a4643,
      #807973) !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%,
      #069494,
      #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),
      #3c3c00 10%,
      #ffff00,
      #3c3c00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.gr-text-brown {
  background:
    linear-gradient(
      var(--gradient-direction),
      #0c0703 10%,
      #aa6432,
      #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%,
      #7a6654,
      #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),
      #6e6157 10%,
      #fff1e7,
      #6e6157) !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-white-lime {
  color: #AEFD6C;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-lime {
  color: #AEFD6C;
  -webkit-text-stroke: var(--stroke-width) #AEFD6C;
  text-stroke: var(--stroke-width) #AEFD6C;
}
.stroke-dark-lime {
  color: #AEFD6C;
  -webkit-text-stroke: var(--stroke-width) #557f32;
  text-stroke: var(--stroke-width) #557f32;
}
.stroke-white-green {
  color: #00b500;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-green {
  color: #00b500;
  -webkit-text-stroke: var(--stroke-width) #00b500;
  text-stroke: var(--stroke-width) #00b500;
}
.stroke-dark-green {
  color: #00b500;
  -webkit-text-stroke: var(--stroke-width) #003d00;
  text-stroke: var(--stroke-width) #003d00;
}
.stroke-white-emerald {
  color: #50c878;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-emerald {
  color: #50c878;
  -webkit-text-stroke: var(--stroke-width) #50c878;
  text-stroke: var(--stroke-width) #50c878;
}
.stroke-dark-emerald {
  color: #50c878;
  -webkit-text-stroke: var(--stroke-width) #246339;
  text-stroke: var(--stroke-width) #246339;
}
.stroke-white-blue {
  color: #5e87ff;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-blue {
  color: #5e87ff;
  -webkit-text-stroke: var(--stroke-width) #5e87ff;
  text-stroke: var(--stroke-width) #5e87ff;
}
.stroke-dark-blue {
  color: #5e87ff;
  -webkit-text-stroke: var(--stroke-width) #132a6f;
  text-stroke: var(--stroke-width) #132a6f;
}
.stroke-white-teal {
  color: #069494;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-teal {
  color: #069494;
  -webkit-text-stroke: var(--stroke-width) #069494;
  text-stroke: var(--stroke-width) #069494;
}
.stroke-dark-teal {
  color: #069494;
  -webkit-text-stroke: var(--stroke-width) #014848;
  text-stroke: var(--stroke-width) #014848;
}
.stroke-white-cyan {
  color: #94b6ff;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-cyan {
  color: #94b6ff;
  -webkit-text-stroke: var(--stroke-width) #94b6ff;
  text-stroke: var(--stroke-width) #94b6ff;
}
.stroke-dark-cyan {
  color: #94b6ff;
  -webkit-text-stroke: var(--stroke-width) #456c7e;
  text-stroke: var(--stroke-width) #456c7e;
}
.stroke-white-cobalt {
  color: #0047ab;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-cobalt {
  color: #0047ab;
  -webkit-text-stroke: var(--stroke-width) #0047ab;
  text-stroke: var(--stroke-width) #0047ab;
}
.stroke-dark-cobalt {
  color: #0047ab;
  -webkit-text-stroke: var(--stroke-width) #001f54;
  text-stroke: var(--stroke-width) #001f54;
}
.stroke-white-indigo {
  color: #6400a8;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-indigo {
  color: #6400a8;
  -webkit-text-stroke: var(--stroke-width) #6400a8;
  text-stroke: var(--stroke-width) #6400a8;
}
.stroke-dark-indigo {
  color: #6400a8;
  -webkit-text-stroke: var(--stroke-width) #21003e;
  text-stroke: var(--stroke-width) #21003e;
}
.stroke-white-almost {
  color: #6a2ded;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-almost {
  color: #6a2ded;
  -webkit-text-stroke: var(--stroke-width) #6a2ded;
  text-stroke: var(--stroke-width) #6a2ded;
}
.stroke-dark-almost {
  color: #6a2ded;
  -webkit-text-stroke: var(--stroke-width) #2f0687;
  text-stroke: var(--stroke-width) #2f0687;
}
.stroke-white-violet {
  color: #ee82ee;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-violet {
  color: #ee82ee;
  -webkit-text-stroke: var(--stroke-width) #ee82ee;
  text-stroke: var(--stroke-width) #ee82ee;
}
.stroke-dark-violet {
  color: #ee82ee;
  -webkit-text-stroke: var(--stroke-width) #773e77;
  text-stroke: var(--stroke-width) #773e77;
}
.stroke-white-pink {
  color: #ffc0cb;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-pink {
  color: #ffc0cb;
  -webkit-text-stroke: var(--stroke-width) #ffc0cb;
  text-stroke: var(--stroke-width) #ffc0cb;
}
.stroke-dark-pink {
  color: #ffc0cb;
  -webkit-text-stroke: var(--stroke-width) #805f65;
  text-stroke: var(--stroke-width) #805f65;
}
.stroke-white-magenta {
  color: #ff00ff;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-magenta {
  color: #ff00ff;
  -webkit-text-stroke: var(--stroke-width) #ff00ff;
  text-stroke: var(--stroke-width) #ff00ff;
}
.stroke-dark-magenta {
  color: #ff00ff;
  -webkit-text-stroke: var(--stroke-width) #800080;
  text-stroke: var(--stroke-width) #800080;
}
.stroke-white-crimson {
  color: #df0e38;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-crimson {
  color: #df0e38;
  -webkit-text-stroke: var(--stroke-width) #df0e38;
  text-stroke: var(--stroke-width) #df0e38;
}
.stroke-dark-crimson {
  color: #df0e38;
  -webkit-text-stroke: var(--stroke-width) #6e0519;
  text-stroke: var(--stroke-width) #6e0519;
}
.stroke-white-red {
  color: #ff0000;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-red {
  color: #ff0000;
  -webkit-text-stroke: var(--stroke-width) #ff0000;
  text-stroke: var(--stroke-width) #ff0000;
}
.stroke-dark-red {
  color: #ff0000;
  -webkit-text-stroke: var(--stroke-width) #800000;
  text-stroke: var(--stroke-width) #800000;
}
.stroke-white-orange {
  color: #ffa500;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-orange {
  color: #ffa500;
  -webkit-text-stroke: var(--stroke-width) #ffa500;
  text-stroke: var(--stroke-width) #ffa500;
}
.stroke-dark-orange {
  color: #ffa500;
  -webkit-text-stroke: var(--stroke-width) #805100;
  text-stroke: var(--stroke-width) #805100;
}
.stroke-white-amber {
  color: #ffca2a;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-amber {
  color: #ffca2a;
  -webkit-text-stroke: var(--stroke-width) #ffca2a;
  text-stroke: var(--stroke-width) #ffca2a;
}
.stroke-dark-amber {
  color: #ffca2a;
  -webkit-text-stroke: var(--stroke-width) #805e00;
  text-stroke: var(--stroke-width) #805e00;
}
.stroke-white-yellow {
  color: #ffff00;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-yellow {
  color: #ffff00;
  -webkit-text-stroke: var(--stroke-width) #ffff00;
  text-stroke: var(--stroke-width) #ffff00;
}
.stroke-dark-yellow {
  color: #ffff00;
  -webkit-text-stroke: var(--stroke-width) #808000;
  text-stroke: var(--stroke-width) #808000;
}
.stroke-white-brown {
  color: #aa6432;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-brown {
  color: #aa6432;
  -webkit-text-stroke: var(--stroke-width) #aa6432;
  text-stroke: var(--stroke-width) #aa6432;
}
.stroke-dark-brown {
  color: #aa6432;
  -webkit-text-stroke: var(--stroke-width) #42240f;
  text-stroke: var(--stroke-width) #42240f;
}
.stroke-white-olive {
  color: #a1a100;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-olive {
  color: #a1a100;
  -webkit-text-stroke: var(--stroke-width) #a1a100;
  text-stroke: var(--stroke-width) #a1a100;
}
.stroke-dark-olive {
  color: #a1a100;
  -webkit-text-stroke: var(--stroke-width) #3d3d00;
  text-stroke: var(--stroke-width) #3d3d00;
}
.stroke-white-steel {
  color: #7b91a6;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-steel {
  color: #7b91a6;
  -webkit-text-stroke: var(--stroke-width) #7b91a6;
  text-stroke: var(--stroke-width) #7b91a6;
}
.stroke-dark-steel {
  color: #7b91a6;
  -webkit-text-stroke: var(--stroke-width) #2e3841;
  text-stroke: var(--stroke-width) #2e3841;
}
.stroke-white-mauve {
  color: #e0afff;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-mauve {
  color: #e0afff;
  -webkit-text-stroke: var(--stroke-width) #e0afff;
  text-stroke: var(--stroke-width) #e0afff;
}
.stroke-dark-mauve {
  color: #e0afff;
  -webkit-text-stroke: var(--stroke-width) #705680;
  text-stroke: var(--stroke-width) #705680;
}
.stroke-white-taupe {
  color: #7a6654;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-taupe {
  color: #7a6654;
  -webkit-text-stroke: var(--stroke-width) #7a6654;
  text-stroke: var(--stroke-width) #7a6654;
}
.stroke-dark-taupe {
  color: #7a6654;
  -webkit-text-stroke: var(--stroke-width) #261e18;
  text-stroke: var(--stroke-width) #261e18;
}
.stroke-white-champagne {
  color: #f7e6ca;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-champagne {
  color: #f7e6ca;
  -webkit-text-stroke: var(--stroke-width) #f7e6ca;
  text-stroke: var(--stroke-width) #f7e6ca;
}
.stroke-dark-champagne {
  color: #f7e6ca;
  -webkit-text-stroke: var(--stroke-width) #7c7364;
  text-stroke: var(--stroke-width) #7c7364;
}
.stroke-white-khaki {
  color: #d5c58a;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-khaki {
  color: #d5c58a;
  -webkit-text-stroke: var(--stroke-width) #d5c58a;
  text-stroke: var(--stroke-width) #d5c58a;
}
.stroke-dark-khaki {
  color: #d5c58a;
  -webkit-text-stroke: var(--stroke-width) #6a6142;
  text-stroke: var(--stroke-width) #6a6142;
}
.stroke-white-charcoal {
  color: #989898;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-charcoal {
  color: #989898;
  -webkit-text-stroke: var(--stroke-width) #989898;
  text-stroke: var(--stroke-width) #989898;
}
.stroke-dark-charcoal {
  color: #989898;
  -webkit-text-stroke: var(--stroke-width) #202020;
  text-stroke: var(--stroke-width) #202020;
}
.stroke-white-bronze {
  color: #e48d3e;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-bronze {
  color: #e48d3e;
  -webkit-text-stroke: var(--stroke-width) #e48d3e;
  text-stroke: var(--stroke-width) #e48d3e;
}
.stroke-dark-bronze {
  color: #e48d3e;
  -webkit-text-stroke: var(--stroke-width) #693c13;
  text-stroke: var(--stroke-width) #693c13;
}
.stroke-white-windstorm {
  color: #799ed6;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-windstorm {
  color: #799ed6;
  -webkit-text-stroke: var(--stroke-width) #799ed6;
  text-stroke: var(--stroke-width) #799ed6;
}
.stroke-dark-windstorm {
  color: #799ed6;
  -webkit-text-stroke: var(--stroke-width) #304462;
  text-stroke: var(--stroke-width) #304462;
}
.stroke-white-nude {
  color: #f7d9bc;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-nude {
  color: #f7d9bc;
  -webkit-text-stroke: var(--stroke-width) #f7d9bc;
  text-stroke: var(--stroke-width) #f7d9bc;
}
.stroke-dark-nude {
  color: #f7d9bc;
  -webkit-text-stroke: var(--stroke-width) #7c6c5d;
  text-stroke: var(--stroke-width) #7c6c5d;
}
.stroke-white-terracotta {
  color: #e35336;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-terracotta {
  color: #e35336;
  -webkit-text-stroke: var(--stroke-width) #e35336;
  text-stroke: var(--stroke-width) #e35336;
}
.stroke-dark-terracotta {
  color: #e35336;
  -webkit-text-stroke: var(--stroke-width) #712516;
  text-stroke: var(--stroke-width) #712516;
}
.stroke-white-coral {
  color: #ff8559;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-coral {
  color: #ff8559;
  -webkit-text-stroke: var(--stroke-width) #ff8559;
  text-stroke: var(--stroke-width) #ff8559;
}
.stroke-dark-coral {
  color: #ff8559;
  -webkit-text-stroke: var(--stroke-width) #804028;
  text-stroke: var(--stroke-width) #804028;
}
.stroke-white-army {
  color: #5d6532;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-army {
  color: #5d6532;
  -webkit-text-stroke: var(--stroke-width) #5d6532;
  text-stroke: var(--stroke-width) #5d6532;
}
.stroke-dark-army {
  color: #5d6532;
  -webkit-text-stroke: var(--stroke-width) #2a2f14;
  text-stroke: var(--stroke-width) #2a2f14;
}
.stroke-white-seashell {
  color: #fff1e7;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-seashell {
  color: #fff1e7;
  -webkit-text-stroke: var(--stroke-width) #fff1e7;
  text-stroke: var(--stroke-width) #fff1e7;
}
.stroke-dark-seashell {
  color: #fff1e7;
  -webkit-text-stroke: var(--stroke-width) #807973;
  text-stroke: var(--stroke-width) #807973;
}
.stroke-white-sand {
  color: #f1e0ae;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-sand {
  color: #f1e0ae;
  -webkit-text-stroke: var(--stroke-width) #f1e0ae;
  text-stroke: var(--stroke-width) #f1e0ae;
}
.stroke-dark-sand {
  color: #f1e0ae;
  -webkit-text-stroke: var(--stroke-width) #8f8975;
  text-stroke: var(--stroke-width) #8f8975;
}

/* 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: block;
  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: 0;
  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: 8px;
  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 */
.action-button {
  padding: 0;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  font-size: 0.875rem;
  transition: all 0.15s ease-in-out;
  background-color: #ebebeb;
  color: #1d1d1d;
  cursor: pointer;
  outline: none;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.action-button .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  display: inline-block;
  text-align: center;
  margin-top: 18px;
}
.action-button .icon > * {
  width: 100%;
  max-height: 100%;
  display: inline-block;
}
.action-button.second {
  width: 40px;
  height: 40px;
  line-height: 40px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.action-button.second .icon {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  margin-top: 0;
}
.action-button.prime {
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.action-button:active {
  box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}
.multi-action {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 56px;
  height: 56px;
}
.multi-action .action-button {
  position: absolute;
  z-index: 2;
  margin: 0 !important;
}
.multi-action .actions {
  position: absolute;
  list-style: none inside none;
  margin: 0 0 0 0;
  padding: 0;
  width: auto;
  float: left;
  background-color: transparent;
  top: 8px;
  left: 8px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.multi-action .actions li {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  margin: 0;
  background: #515151;
  color: #ffffff;
  transform: scale(0.2);
  line-height: 40px;
  font-size: 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.multi-action .actions li a {
  background: inherit;
  color: inherit;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}
.multi-action .actions li:active {
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.multi-action .actions.drop-right,
.multi-action .actions.drop-left,
.multi-action .actions.drop-down,
.multi-action .actions.drop-up {
  top: 8px !important;
  left: 8px !important;
}
.multi-action .action-button.active ~ .actions li {
  transition: all 0.3s;
  transform: scale(1);
}
.multi-action .action-button.active ~ .actions li:nth-child(1) {
  margin-top: -56px;
}
.multi-action .action-button.active ~ .actions li:nth-child(2) {
  margin-top: -104px;
}
.multi-action .action-button.active ~ .actions li:nth-child(3) {
  margin-top: -152px;
}
.multi-action .action-button.active ~ .actions li:nth-child(4) {
  margin-top: -200px;
}
.multi-action .action-button.active ~ .actions li:nth-child(5) {
  margin-top: -248px;
}
.multi-action .action-button.active ~ .actions li:nth-child(6) {
  margin-top: -296px;
}
.multi-action .action-button.active ~ .actions li:nth-child(7) {
  margin-top: -344px;
}
.multi-action .action-button.active ~ .actions li:nth-child(8) {
  margin-top: -392px;
}
.multi-action .action-button.active ~ .actions li:nth-child(9) {
  margin-top: -440px;
}
.multi-action .action-button.active ~ .actions li:nth-child(10) {
  margin-top: -488px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(1),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(1) {
  margin-top: 56px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(2),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(2) {
  margin-top: 104px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(3),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(3) {
  margin-top: 152px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(4),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(4) {
  margin-top: 200px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(5),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(5) {
  margin-top: 248px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(6),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(6) {
  margin-top: 296px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(7),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(7) {
  margin-top: 344px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(8),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(8) {
  margin-top: 392px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(9),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(9) {
  margin-top: 440px;
}
.multi-action .action-button.active ~ .actions.drop-bottom li:nth-child(10),
.multi-action .action-button.active ~ .actions.drop-down li:nth-child(10) {
  margin-top: 488px;
}
.multi-action .action-button.active ~ .actions.drop-right li {
  margin-top: 0;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(1) {
  margin-left: 56px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(2) {
  margin-left: 104px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(3) {
  margin-left: 152px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(4) {
  margin-left: 200px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(5) {
  margin-left: 248px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(6) {
  margin-left: 296px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(7) {
  margin-left: 344px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(8) {
  margin-left: 392px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(9) {
  margin-left: 440px;
}
.multi-action .action-button.active ~ .actions.drop-right li:nth-child(10) {
  margin-left: 488px;
}
.multi-action .action-button.active ~ .actions.drop-left li {
  margin-top: 0;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(1) {
  margin-left: -56px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(2) {
  margin-left: -104px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(3) {
  margin-left: -152px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(4) {
  margin-left: -200px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(5) {
  margin-left: -248px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(6) {
  margin-left: -296px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(7) {
  margin-left: -344px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(8) {
  margin-left: -392px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(9) {
  margin-left: -440px;
}
.multi-action .action-button.active ~ .actions.drop-left li:nth-child(10) {
  margin-left: -488px;
}
.multi-action .action-button .icon {
  transition: all 0.3s;
}
.multi-action .action-button.active.rotate .icon {
  transform: rotate(45deg);
}
.multi-action .action-button.active.rotate-minus .icon {
  transform: rotate(-45deg);
}
.action-button.floating-action-top,
.multi-action.floating-action-top {
  z-index: 1080;
  top: 90px;
  left: 16px;
  position: fixed;
}
.action-button.floating-action-bottom,
.multi-action.floating-action-bottom {
  z-index: 1080;
  bottom: 20px;
  right: 20px;
  position: fixed;
}

/* source/components/button/button.less */
:root {
  --button-border-radius: 4px;
  --button-pill-radius: 18px;
  --button-size: 36px;
  --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 {
  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(--button-size);
  transition: all 0.15s ease-in-out;
  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(--button-pill-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 {
  --button-pill-radius: 10px;
  --button-size: 20px;
  --button-font-size: 10px;
}
button.small,
input[type=button].small,
input[type=submit].small,
input[type=reset].small,
.button.small,
.flat-button.small {
  --button-pill-radius: 13px;
  --button-size: 26px;
  --button-font-size: 12px;
}
button.large,
input[type=button].large,
input[type=submit].large,
input[type=reset].large,
.button.large,
.flat-button.large {
  --button-pill-radius: 27px;
  --button-size: 54px;
  --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(--button-size);
  height: var(--button-size);
  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 .load-marker,
input[type=button] .load-marker,
input[type=submit] .load-marker,
input[type=reset] .load-marker,
.button .load-marker {
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
button .load-caption,
input[type=button] .load-caption,
input[type=submit] .load-caption,
input[type=reset] .load-caption,
.button .load-caption {
  margin-left: -16px;
  transition: all 0.3s ease-in-out;
}
button.loading .load-marker,
input[type=button].loading .load-marker,
input[type=submit].loading .load-marker,
input[type=reset].loading .load-marker,
.button.loading .load-marker {
  transform: scale(1);
  opacity: 1;
  animation: spin-loader 1.5s linear infinite;
}
button.loading .load-caption,
input[type=button].loading .load-caption,
input[type=submit].loading .load-caption,
input[type=reset].loading .load-caption,
.button.loading .load-caption {
  margin-left: 0.5rem;
}
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);
  }
}
@keyframes spin-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@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: #069494 !important;
}
@media (hover: hover) {
  .button-soft-teal:hover {
    background: #069494 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-teal:active {
    background: #069494 !important;
    color: #ffffff !important;
  }
}
.button-teal {
  background: #069494 !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: #ffffe6 !important;
  color: #808000 !important;
  border-color: #ffff00 !important;
}
@media (hover: hover) {
  .button-soft-yellow:hover {
    background: #ffff00 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-yellow:active {
    background: #ffff00 !important;
    color: #ffffff !important;
  }
}
.button-yellow {
  background: #ffff00 !important;
  color: #ffffff !important;
  border-color: #d5d500 !important;
}
@media (hover: hover) {
  .button-yellow:hover {
    background: #d5d500 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-yellow:active {
    background: #d5d500 !important;
    color: #ffffff !important;
  }
}
.button-soft-brown {
  background: #ffeed9 !important;
  color: #42240f !important;
  border-color: #aa6432 !important;
}
@media (hover: hover) {
  .button-soft-brown:hover {
    background: #aa6432 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-brown:active {
    background: #aa6432 !important;
    color: #ffffff !important;
  }
}
.button-brown {
  background: #aa6432 !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: #7a6654 !important;
}
@media (hover: hover) {
  .button-soft-taupe:hover {
    background: #7a6654 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-taupe:active {
    background: #7a6654 !important;
    color: #ffffff !important;
  }
}
.button-taupe {
  background: #7a6654 !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: #fffdf7 !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: #f7f5c8 !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: #fdebed !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: #807973 !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: #b8aea6 !important;
}
@media (hover: hover) {
  .button-seashell:hover {
    background: #b8aea6 !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-seashell:active {
    background: #b8aea6 !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;
}

/* 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 #0366d6;
}
.dialog.primary .dialog-title {
  background-color: #0366d6;
  border-bottom-color: #0366d6;
  color: #ffffff;
}
.dialog.primary .dialog-actions {
  border-top-color: #0366d6;
}
.dialog.secondary {
  border: 1px solid #6a89a7;
}
.dialog.secondary .dialog-title {
  background-color: #6a89a7;
  border-bottom-color: #6a89a7;
  color: #ffffff;
}
.dialog.secondary .dialog-actions {
  border-top-color: #6a89a7;
}
.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.yellow {
  border: 1px solid #ffff00;
}
.dialog.yellow .dialog-title {
  background-color: #ffff00;
  border-bottom-color: #ffff00;
  color: #ffffff;
}
.dialog.yellow .dialog-actions {
  border-top-color: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
}
.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: #ffff00;
  }
}
@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);
}
.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);
}
.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 {
  display: inline-flex;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  border-radius: 2px;
  background: var(--analog-clock-background);
  font-weight: 600;
  padding: 1px;
  box-shadow: 0 0 2px 0 var(--analog-clock-inset-shadow) inset;
  font-family: monospace;
}
.analog-clock .digital-clock .dc-hour,
.analog-clock .digital-clock .dc-minute,
.analog-clock .digital-clock .dc-second {
  display: inline-flex;
  padding: 4px 4px;
  position: relative;
}
.analog-clock .digital-clock .dc-minute::before,
.analog-clock .digital-clock .dc-minute::after {
  position: absolute;
  content: ":";
  display: block;
  color: #c6c6c6;
  top: 5px;
  font-size: 8px;
}
.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-background: #ffffff;
  --appbar-color: #191919;
  --appbar-item-background: inherit;
  --appbar-item-color: inherit;
  --appbar-item-color-disabled: #ccc;
  --appbar-item-color-hover: #000000;
  --appbar-item-background-hover: #e8e8e8;
  --appbar-dropdown-toggle-color: #191919;
  --appbar-border-radius: 4px;
  --appbar-z-index: 1030;
  --appbar-hamburger-background: transparent;
  --appbar-hamburger-color: #000000;
}
.dark-side {
  --appbar-background: #1e1f22;
  --appbar-color: #dbdfe7;
  --appbar-item-background: inherit;
  --appbar-item-color: inherit;
  --appbar-item-color-disabled: #a8a8a8;
  --appbar-item-color-hover: #ffffff;
  --appbar-item-background-hover: #2b2d30;
  --appbar-dropdown-toggle-color: #ffffff;
  --appbar-hamburger-background: transparent;
  --appbar-hamburger-color: #ffffff;
}
.app-bar {
  display: flex;
  position: sticky;
  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;
}
.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);
}
.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);
}
.app-bar .app-bar-item-static:hover {
  background-color: var(--appbar-item-background);
  color: var(--appbar-item-color);
}
.app-bar .brand {
  flex-shrink: 0;
  font-size: 1.25rem;
}
.app-bar .brand:hover {
  background-color: var(--appbar-item-background);
}
.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.dropdown-toggle::before {
  border-color: var(--appbar-dropdown-toggle-color) !important;
}
.app-bar .hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  height: 52px;
  width: 52px;
  margin-top: -27px;
  background: var(--appbar-hamburger-background);
}
.app-bar .hamburger .line {
  background-color: var(--appbar-hamburger-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 .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;
}
.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 .marker {
  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 .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 .marker.left-knob {
  left: 0;
}
.slider .marker.right-knob {
  left: auto;
  right: 0;
}
.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.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 */
.media-player {
  display: block;
  position: relative;
  width: 100%;
  background: #000;
  height: auto;
  overflow: hidden;
  z-index: 1;
}
.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: rgba(34, 34, 34, 0.5);
}
.media-player .controls.outside {
  position: relative;
}
.media-player .stream {
  display: block;
  padding: 0.625rem;
  order: 5;
  width: 100%;
  position: relative;
}
.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 .controls > button,
.media-player .info-box,
.media-player .volume {
  background-color: inherit;
  color: #555555;
  flex-shrink: 0;
  height: 36px;
  text-align: center;
}
.media-player .controls > button:hover,
.media-player .info-box:hover,
.media-player .volume:hover {
  color: #ffffff;
}
.media-player .controls > button.active,
.media-player .info-box.active,
.media-player .volume.active {
  background-color: rgba(111, 111, 111, 0.5);
}
.media-player .controls .button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-player .loop {
  order: 1;
  display: none;
}
.media-player .play {
  order: 2;
}
.media-player .stop {
  order: 3;
  display: none;
}
.media-player .info-box {
  position: relative;
  width: auto;
  display: block;
  order: 4;
  background: rgba(34, 34, 34, 0.5);
  color: #ffffff;
  padding: 0.625rem;
  font-size: 0.6875rem;
  text-align: center;
  height: 36px;
  flex-shrink: 1;
  white-space: nowrap;
  border: none;
}
.media-player .mute {
  order: 6;
}
.media-player .volume {
  order: 7;
  width: 96px;
  padding: 0 0.625rem;
  background: rgba(34, 34, 34, 0.5);
  display: none;
}
.media-player .full {
  order: 8;
}
:-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;
}
.media-player.light {
  background-color: #f8f8f8;
}
.media-player.light .controls {
  background-color: inherit;
}
.media-player.light .controls .info-box,
.media-player.light .controls .volume {
  background-color: inherit;
  color: #1d1d1d;
}
.media-player.light .slider .buffer {
  height: 2px !important;
  background-color: #36464e;
}
.media-player.light .controls > button.active {
  background-color: #dfdfdf;
}
.audio-player {
  overflow: visible;
}
.audio-player .controls {
  position: relative;
}
@media screen and (min-width: 576px) {
  .media-player .volume,
  .media-player .loop,
  .media-player .stop {
    display: 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.25em 0.4em;
  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;
}

/* source/components/bottom-nav/bottom-nav.less */
.bottom-nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.16), 0 -1px 5px 0 rgba(0, 0, 0, 0.26);
  z-index: 1030;
}
.bottom-nav .button {
  width: auto;
  height: 100%;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  border-radius: 0;
  line-height: normal;
}
.bottom-nav .button .icon {
  width: 24px;
  height: 24px;
  font-size: 22px;
}
.bottom-nav .button .label {
  display: block;
}

/* source/components/bottom-sheet/bottom-sheet.less */
.bottom-sheet {
  background-color: #ffffff;
  display: block;
  z-index: 1030;
  max-width: 360px;
  left: 50%;
  list-style: none inside;
  padding: 0;
  margin: 0 0 0 -50%;
  width: 100%;
  top: 100%;
  position: fixed;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.bottom-sheet::after {
  display: block;
  clear: both;
  content: "";
}
.bottom-sheet.wide-sm {
  max-width: 576px;
}
.bottom-sheet.wide-ld {
  max-width: 640px;
}
.bottom-sheet.wide-md {
  max-width: 768px;
}
.bottom-sheet.wide-lg {
  max-width: 992px;
}
.bottom-sheet.wide {
  max-width: 100%;
}
.bottom-sheet > .title {
  height: 56px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
}
.bottom-sheet > li,
.bottom-sheet > .item {
  font-size: 16px;
  position: relative;
  height: 48px;
  padding-left: 56px;
  display: block;
  cursor: pointer;
  vertical-align: middle;
  line-height: 48px;
}
.bottom-sheet > li .icon,
.bottom-sheet > .item .icon {
  left: 16px;
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  vertical-align: middle;
  text-align: center;
  top: 50%;
  margin-top: -12px;
  opacity: 0.8;
}
.bottom-sheet > li:hover,
.bottom-sheet > .item:hover,
.bottom-sheet > li.hovered,
.bottom-sheet > .item.hovered,
.bottom-sheet > li.active,
.bottom-sheet > .item.active {
  background-color: rgba(29, 29, 29, 0.1);
}
.bottom-sheet > .divider {
  height: 1px;
  background-color: var(--border-color);
}
.bottom-sheet.grid-style {
  padding: 16px;
}
.bottom-sheet.grid-style > li,
.bottom-sheet.grid-style > .item {
  width: 64px;
  height: 72px;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  display: block;
  float: left;
  margin: 8px;
  padding: 4px;
  font-size: 11px;
}
.bottom-sheet.grid-style > li .icon,
.bottom-sheet.grid-style > .item .icon {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  font-size: 42px;
  margin: 0 0 8px -21px;
  padding: 0;
  top: 0;
  left: 50%;
  line-height: 1;
}
.bottom-sheet.grid-style > .divider {
  display: none;
}
.bottom-sheet.opened {
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, -100%, 0);
}
.bottom-nav ~ .bottom-sheet {
  padding-bottom: 76px;
}

/* 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-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: 16px;
  height: 36px;
  line-height: 36px;
  background: var(--input-background) none;
  background-clip: padding-box;
  min-width: 0;
}
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;
}
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;
}
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);
}
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],
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],
select,
.metro-input {
  padding: 0 8px;
  font-size: var(--input-font-size, 14px);
}
textarea {
  padding: 8px;
  font-size: var(--input-font-size, 14px);
}
textarea.metro-input {
  height: auto;
  padding: 0 0.75rem;
}
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 0.75rem;
  line-height: 1.25rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.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;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

/* 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: 36px;
  line-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: 16px;
  padding: 0 4px !important;
  text-align: center;
}
.spinner input:focus {
  box-shadow: none !important;
}
.spinner .button {
  width: 25px;
  min-width: 25px;
  height: 25px;
  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.input-large {
  height: 50px;
  line-height: 50px;
}
.spinner.input-large input {
  font-size: 1.3rem;
}
.spinner.input-large .spinner-button {
  height: 48px;
  width: 48px;
  min-width: 48px;
  line-height: 48px;
  font-size: 1.3rem;
}
.spinner.input-large .spinner-button [class*=mif-] {
  font-size: 1.3rem;
}
.spinner.input-small {
  height: 28px;
  line-height: 28px;
}
.spinner.input-small input {
  font-size: 0.9rem;
}
.spinner.input-small .spinner-button {
  height: 22px;
  width: 22px;
  min-width: 22px;
  line-height: 22px;
  font-size: 0.9rem;
}
.spinner.input-small .spinner-button [class*=mif-] {
  font-size: 0.9rem;
}

/* source/components/calendar/calendar.less */
:root {
  --today-selection: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfoBhcNJQCUZup9AAAABmJLR0QA/wD/AP+gvaeTAAAaaklEQVR42u1dCXxcVbk/SZuuaZp0ydxZcu+dPfvSZumSJt3bdKe0tBRaCi1QpAVaKUUQBYGHIG6oqA8RRHB77voegvhQUVFAVFxwA5FSla1UCt2Se4//7ztn0nQyTWbSNt3m/n7nN5mZ3DPnfv/zreec7xMie2Wvni65YI1or2sWB2YsEG6sVrglceH6IsL1BoX02EIWm6qNDgg5yi/kmIBq9PdotLH6e48lpGGr+3xh4QbQ7FLhxOtE+6IVon3SDCFnnZkleDcAprUJGYgKt6JeyJIYiBhURB0+mog30A3ECl1/xHZ9oXHSG5wJAi9DO981ghvxutUxglc7hn01vrvKNezLcP961xtahbYQbSrf5w9HAIjhmvH8jsqmXFlQrEAzQgKfiQONraKjbLyQF198eoLgTJknZG6ecINlQtIMHlsi9m67lYAZJb3hcSDquZjdt4AjvoaZ/iTaC2g70faidaDJXpqLdgDtbX3fDrQ/ov0UfX4Jfb8Pv3sWfqvCLYnly/zRiqNKMDGmLRaytP40AGHBSiH9cSHDNQAhBDHjByDlg6QvFAcAa0Cku0CUpzUBnTSIfqSNgH0Z7Uf47ZsB0HRMiCJZMJa51A1VQNRFRPvspacWEB0N04QcXAQZHoWYsIRbPzsHMj0MIlwIYnwD7aV+AqC39hbazzGuazFhKp2yhlzmGhuTyAtdNHXWyQ2EW9EoJOkIKFRSutAFwzHzZkFk/Dce9G9arMgTtP0D4/wMuGaKGyrLU8CUsa6T6y85yZR09WRwRD6ACCmrxxceBSDOwUM9pGfhkRKLuGkP2mto29H+gvYs2h+0nnhOEbRT5xwJ8G+g3QdgJro1k3LJanMWnStkpPrEB2J/8xylGP2KI/BahPfnK0VqtfeRIETMV1mxG/b9aO8GcVZBpEwD4NWwvkLSH/E7gajH8UWKnZKo4frDAXwexf+wVab103sw4+9DPz/TCv5AhuOgMXwY/YVloUdNNo8pnNZ5J6h4CpYLp3wcDxK6YjAIsJSVZd+AoHv+jD7uBTHPx8PXQFQUuk2zc2WhoX0Mm60zEB7AR0UHrCMAIhyYzQAEfktYmc80QciExn3tU+fnwKwuAMfGcO8i9H8j+nlYc1O6XPQs7jtfBiJD6FlJJLuxqhMICPIhaGA0Y/LHkCNWjUHfr0VKpkC8AgJ9GX2sRH8lbmNrLpnDbBaTn1LWIH4rJWblnMyMikkzxd6vPiScCvgZ8Dl4rATqCIzXKhuK92UAbx1++38whn+mMc79LMYMO0LOqWvF2X86/mBUQWkPHant98hQvG7QyjpTIOie2+CkjXNDVXkMAhEtXqs87QwB6O1qv2i1kHWThLsMr1a5ApyMjgh+G9YVW1ke69dpWH6/AYjzmEswXjilYvfWW46T4oZD59KMGxugBzIxuHv6IJchy+H8eYNxtsYghlyyZIg4M87ot2dpn7pAyCIDYrdCibkRY0n/GQCGJthTvYgzMiwugw4bRKaxNCzhNLf1M2eARZlNSZ4bdpNWlJkAsUexfLCOgcDMkqXVABl9bnrn8bUQS+uEO2ep4tBRPrIQPZgoV2rL7XDPsw/tVhkI57P4hsMrJ87oJ2+bHDti8bwCmtHzexloqvYM7lsBQAexqAtXsvzdu/aiE8tIqaxXPhRFFIazbizDeD/bg26EeDPvhMQo4OeitvW6YzxIE4qVWLqEo6lnpakAE43E2efYbCRFSJFXsHf73CUntnMbrhAO6UoQGOKUJhH5U3/qYg2S/tvdaaIXAxQ/cYrFhsOxG1ikggGRQwrph5ajvZIBGCRnN4Olh/JAWTRUiZPlchat4qgwe+lFPtIzFXiOb3V5tu+i/bULp3wIUmQI6RPSK0cfjPrJwqlpVDLVY7Vpuz1dMDBQe5EKoQSVuTlviTgZLxmpgrExTz2DL1jElqEygd/QRs2TnZxTbL5bWrEB9MxuSeQoDmL95cq/IEXlMcej/TkDMH6FWTKRgYTjJo/mwI6XCJsBv2u0j60p+DQU49qItovFls/+ZBcD5y3Q6nw5fCxEXUzIyqMUzmergZphefH6wxRE/zcUXndzt9h8HK9VHMuKV7GZfKpcuy/bxqKILTGmkbUS7V8MSrH1MdDpaUUHkyTJVJ7MA4cJefHlRwhGtFKJmZIIZoL5ie5gmM/pYJ6TBMbP3GKzlHyUHY5kxXgqXm4gwuJIDhtDoCzUAOzE6x14fV7T6BeYzKaa2NYRgHHLxxX6Sm+c3d3cM3+P9mj31TuaHWYle9ukEGO1p/Sim4Q4ckkck2NZbC7Qlud20OCTWpQRTT4tzcgg6QdHldX18YfI8VNWgqV8h0OIDvTNL6QACQrcnMBiisCAJ386XE4gJhwKchYW0+Q9EzQgLvk12pf0EjJFileQ7nH7BMamLXDYYOaed2EOe6CHiqpdSnyZO5I+fx2fLZajvMItreXI7+l0ESDkW0kxjKyw9aAFgDAfQvt/vH8U7UH4YH7WPfGaDAEhFuQdGXYt2l+TCH9PCuVODtJWDrLRoE4hBZ6Z4xxROteO5oJ+14FOtBhHXPIDPYkvlyJPyKZpGQISKhMyVpmLDt6J9q8uhH8cYuzDKfTGl2BxDOfIrD8sTueLOYC8esMaBlDuBW3+jvcU1odOMa/H9zavz0/OYH1ehssgdqqLQPyPdyH+m3h/bRePNAHGX/B5OXMUFHn2Emq1tBhGjWH6yeIEnR5hz56ix4Y1V44cyzo2vc5a2tTepFBZgB07IrqX/QxivTtTiKoNciQsjKbJwp09P4sG0XDBCiGHFiWc6WaA8iyAuJeXgM1Is4xVDJEVaeoRKXK1J2qv1f7Fy+xreIPvwOvfkwB5SAZCBdIf5FhX9uqiT6omCCcIXTyUl5w3g1bfR/uUtGJT3XPW5LnTZmdg7lpxCgI+qCO0tJPjMwDotm57mAxrPi9QFYzJIpAKlJKQWo308TrJvaAX0XDjAQlneUoaq6CyoUX7HsFGNm8N9sJ/g/dr8Pq7JEC+KW0AZ8Yg5uZmqd+rPrHGg2YfxetGGEB+DrssX9PLzRu2qeVLtaa8H68/ZN3hDW5Isqz24bsl7I2P9GSp3hNNpy0gizUR81oDWq6EadwgPaDdrIW9mbultIw6DDc+yoswhvUYFPo6vH4liTt+CsVfyMp/8bIs1XtVA9FE1KNY+kMzAFC5bGwZSDt2Dnt1XHeLcmr8oXKOXBo2LcB8D6w1U++9PQiIYV/F2/mlzFI7XVDgEO5rWSzcmkbDmXfmiI5V6wd0rN7Qww3jpgi9B+ps3h/lDd4Nwv8XXtcl7bp4BcDVsgNU35qldLoKfnyzaJ+5SLxAkxhNzlsm5PQFPQAyc4mQQwpIf9yutm0G7wTh5+H9PUni6mEZLBtK3nz2yuzas/UmsRftrW03i7euukm8+PQzPSAYrxVurHoQm7tG8B4+0BKI0C7E3yaJq+tY8W//Z5bCx1TGmbwdcgx7597gZj5d5As3c8jkICB7pTc0izcqTJyeJdoxBYR2rPsjMfY3/OEZbqjCBCgXJomr5/E/ljzNA4j9Awjtt/KGJoLoT4BTfHpH4R1JgDwibdIf2TDJsQfEwx56m/TYDzqRqmF7W9vy6e8k/XEnA9U0I0uwfgHECC6lMxnuuOZBbrS6vlu4xAhu4TV2MSRLsGMOSDEDsgyAfMANlo6AQ7g2aUNcBzhoGa17dKzakCXYsQfETHDINTIQhUIP3XZw14SO7npDU2hVMHv1i8gySYcsQKNo5HiA81V9YPLgGTtfuIp2g2ev/lPqLRwqofiVN/h40gGcHW4gEpGBrMnbP4Dw1sigxdFIw16M9mJSyP0FcIhFZ86zV38AEq0QbrQ8Z+/GtTkwd89McXr2eYixEtqWn736AxDaaYLGx8u8wYUpzgu+AA8966Wnce1Zt0W45XXCrZ8kXDqmzUe0VZoo2nbqVI0XTqxKHFidhrWqAIHYOlShqwOagUhU+iNZivc4sUuFHN+gdPLQIgIgH4CEIF1qXV+oDHp4lF49hESq5LOavegSWpQPNSSZvFkrKx0w6FBTBFJmWDHRsRST+wbQ7cdoL+o0H7Tp8JfSsD6A76vJweYzjMU9uBKcKEYFGZNPSe3GzZOyfkgPtMsZrnK7eKzpnImi58NMBNIl0hfN4+PgxmGOKvA5ukDU0MlcDj20SX4KseKt92Spn3Iy8xL4aNDoJ2meMNsLh3yLEw7nuHRUoTnF9lLaKC2tUgosdu+UwvG0zDs1u+3nsNEOr70oswQKdHTBmsOcBZ3TvdOKBuFWTRwAQL7S7WZK1jJirHA3XpmlfipAxnK0Y00fUos8LEsiI1KewXTnnCnkoPzE2noyIA/I5rm5smZilvqHs1CVQbQzQ0De5jRSxGFzlyd1Gm9QiskbvLT7jfbj0ooXUGa17JUCEJu34Q7jGZ8plxj2NlnkFW7bOYd22rHxqkRca74+g931xpfgGEZpG2T2SiFdCJRCL3HK1X0A5ON84Gn24sP5IuFqfTbu0DxR3uA8Zq2WtiwCyXRrnq7WlbyhRZlmRnIN+76/rlqb83ZNQ4qOKZlxgHegPJMCSbUN6LXsrsXUeoT2JoQnJO3WSYNDgvc8IaXYPyHFbh5ZXi9k7SSytL6Y4ubvylDFYMrik71S0I5SDxrBGnUINiOR9UGZl99dqXOnQp9PN+xNKW7eDucnyk7Qomze9O6AUGomu0onpcmEQ67kE8zv+qjgY8yUbUGfi9ONTbi6FHrEgfNzLp97GGtlEUjNIbUZmr7t0M1LSTc7526hhMfjhIxWDQShJ0ufPQJNmXB250mqZPP3AYi1ATJanUUgYWFB9rsTZlAckHTIeH0UsCPtFLRkRCUCtzJUKWSwYgy44glpWGfzYUUxUJBdjM8uTpFzcDu4p5QVWPn4LFcsXSmc5tnCmbs01zlvY64MRMdixm/KQGz9QpqxQpkIxctYDTikegQD4rG+LmNVeZTJgY9d+cOmTjCTrISulCOLhfzyw1lAvJaiVSBSJu3SmBsstfC+njMlpafQ72C93TBFd5jIL+jhc+k7obDH8wJKwyTeFAeuuTFFR09BuRfzQEprT18wGlvVCSmTEitbV/LeNdoBSoma00sivZ/3MFDQNpGQWYbKVbpXw2qCYqFFlDvkphs4g5pS7sF4iny8Dv5/A3mmfADlgk2nJyDDR4F2fqLdQrTP8ll+ysRNoZD0xNXvZCBs0NL4/ss2q06dc9dCh5Sqzj3mpQDleSBcxSZcRR24ZBBxz3tTZhilnL10fs44/Swuycee2RqFE20+wqUuKKt3uCJfF6JJR1x9gKXTuEnJnUdU5/7QYAByF+cTpM8pWbLa+FCiMjl3i+d/WNpRzi1IZ0xOl6ujrFaJKpIOHvM9OsnCm8wpgbClKwL1BsjroGsTT/xYCouV/RBO52f7OA2EP1yisjWjFfrUsd5uAUdzN9oqWeRRKZ36mqDrJLqcpWuEHDBcnUH3WLO6WFNfl9GKPNDrgjQL1DwgI2V5lEB639rNKX5oy7sEl2IgYHzhYphiBei8Aij6GJQA53f/Yurc7eYElUUuTziNLae2qCJ9q9JXWXyeRtGATi5PkuHyoWmG33fBbZiq+ukhaQ8nnyFQOjM6Wxfhh+ZxKGUkZ0wr1wVUkpNe0sCi/AMFxaJjysxTEwyfnch2MZzTpR+scXITxHYLJMqKNCtDfFZGKgfCTBZyURo1rpymFpXNhsInXrtSXnN9DgZTI0s4GfI5OnVdMigPAbyAKgUBUBefWsW0pBUjHSuceBXlErv2oCcOhW5YN6N9UCUr6xWMl0CnOg7Vp7u29OpZl6hz64ZViR/8FG70oqNmiLPNrt+m5Fy3H+bHvsX/S6DQCljg1FjMokzcMhTHRCMpYZ7bJbz+mi7l9CJo9a301kEAphgMnVsu3JWr0xvAK8s3CDl4qHD84VGuL1iGmTFCBssHgNDvp3RD+GwMXr+TgkuofRPs62frYVChcGsnnNwWVWWDcKrHqzTjHnNWUr7JRF3Fl9ILuZs/hMQZoxIxR9MfxGtnb9QheGsRCHyVG4gO0aVMS/AeSsuEbrHgMJpPddkmJN0pM6QMlREo/4f/DRGXOfPPFO5JGojsqJssXnnymcQGuAY87x97qImYRgUha5pKaTU2s4G8uuIdiW2lxAnfZw/UsAu5M8rWXGz+gdNsG9aUzl164A538nTptsxUnOIxf4LvawhY145zMv+TyrwNVoiOmokJMKp4G+gRVZYzt/G6OeUk64vU4HKkYzikMkNXQ7gfomisygFlrkb7J1sXHuss/P1Cp8gCpxwsUUEJl63ZcshoFYAj83nFiV1vdu/tn+AwOu1cV2DY4/FcTx5ZqT+Tyr2OIFFFGbH7psjGNVPQTAcezSvQSGF9FTLQkAVctmKTVm7fRLu+W9YgDwFGCYW51uAGPKAq0Jg/Rji1J+beLreyUfBSKtUrbGqlvMVLutQLOdC3YmcQ64YVZv8Ok/nIrItAiO1uKPFB6DhhWX3bNWy/qyLEm3SxyB16U0RHt6iwSqD5D44mG0EP6RXXKuNSrCeMeJq7XG3hweyVYzgrkgfjvbnLKQBacPpOxmvlnCbWbFZrTLnCnXkUEoVyOIU9SnMEXu/WP/Qge6pDRtCS5YVaYR1+AcZj3cJ5VIqtx3BfqyonBPGVM0S4x3GRy62ZBId3tEoeTWZ+SQx+lr2McxQfHP+PMCm36sLJmYBB2b6X8Vo5OYClRynb9xu1LSpTKVgOnDEKP/Z5/aOPgqgxOEqF+izESz0MEN49V9u8Wy94vQ/6yKNq5FLxeoAzb3m/gLBn5TpakIM5PrGzTi+AGMYRCSV+E/G65wDENnx+VuZgUBkkWKI08Whne8lRlgbuJVfADPYrbgkER3cBhURSkzKBrQe6LMp06AMqe5OqMd+td7N8V6cSXOZasTw6HyEHFwj3GMXBOuat4hNLTt1EngCdpZd8YS/Gs5qz56lqa1JZjZhg3tB4LZJ39KHq9OWuHctlKXCsTi7LljmJxRhwSohK/tzVeSDUY53h+kIlOtny3s5jcAavCzzW5WGp/R6fvwuibqPWLzdh4CWuGRPtrQvEgbaVR23Mb7zvNlWpAWKRQHDOXpfj+sO0f2AWnuMjmlsPaI/7f/H5eukPh/mIuOKW9ow5wwAY1XUDmDOO9TqRnL44EXYmVqR8tLfpQZO1dQOHTQxrVZcDPzsx26DM7Y16Fu7tUvH5x/j8Us7N5bWXupFKc98FV+UcmH+O2LP46ICy84ZbdemM+gIQeoqaCNbXlI6wv897aolDfOE45PwIjAXOn/3pzJV3okKEdZFrleYyGGY/ncd0r7hG7+GyqcIMZaHb0sUa+QHVIAe7xzmT88Eg5Pfw/3PAFYt0UftdXUTbT/HdZmnGq/YvXsMlstkPqG4SbqhCvHVR35eH/33zhxiQjsqGfOissOsNloNDQjIQHe2UNwzkoxcl0ZEYF50O+0LGG9wONsr6vUwZK0HR70f/5Or1fC6OjvoemLmezrYv7RKWx0PZN7m+sI2BzdciS2qdsgWm5QSemeTTHEqA53DfnSDOXAAymus2USFLqv4cqRT7558Bz7lB7Lr4ml7H99al7xUd8QpxYNo84dBGwERZVYqwwjJ0/dFR0gi1Yhw3aT247wgcvyfQz2TKYcwrr8ez+JnyaKOJbfg1LIcPDvSXZKG4tPLosS/vUlmB1p4/AWUXg6gah78/pg9Bdi3N+hSvN3uDba4/EnDDlYNk/ihlmvIhySCf6ePy3b4IEVgBp2cni1QSrcMKhROpGojvx3B9dSN4Hr7/pLaadh+Z982i+n70GVTFjSsB/Alwdoatl4lTdX0/VvbXaUcqUSf2Kxj0BHwX0xV7XtZbLT8CItmqEEykntPSqqSbTlI0lUzmb+P79wOg9binzfWGGtFfOZzLCAAJgeBokbhLOz4oa5E3uAS/eSmD6rG/oZ3W1zOom977mobHugy6YhhzXc5g+FONJ9B6wcRpiQ3aOtQCFj7Upqc9wreDWMQVtVq/7GSuMex3YnaTGFvH6aEoRa3HfrqHMMV+vQntZV1xertqXJDrdW12th8lwqcqIfsNjLFBDhypTt7S2cLe0oYfN2Coxi2trBG3BKJUdWeFPjzvHKz8aV0JUVfCSf8NrpD5qq5NfhuX82bdAgvIY/9cmc5pbRjoj0Yi+DxMnuH0fCQZaAn2xA9b109Us4bkO8lxf6SIHkQD095ZHJ72DQeiXmVqsk/zDzaXDfsuzMAbAcjn0J7E+93HEQSHxZ1hb2GTnkt6U/YF6IzqySfZsue4VrXJjlLQUhg7EC3krHXKunq9c9Z57AvxnY835xn2zTrXI9XQ/TwXkvGG1uLzd6Pd38k13XOxHO32Jpvwhn0RfBSfLPAoc5aXc0/yCnQOLfKwRRZVnBMqH8T54w17q648s11tp7G3SW+4HBxlalH3Ba3k6bv7AOY1AOdCalDqV4NAtGhGGyv+hO93pbkXqjcQfoH+boFJ3IJJks8TCRzRMb2NMn+fUps2hDthptrTFNRpoAoNWkkcggeOg9hngag34vMP4e8LXCvud5qmDuCkaZSc02N/FO0xvSPwZa3A/8ZxJ8N+Du3lDAFxtWHwLG/7pMnhDU4GCEUUU2OzmdKM0LjHTRan/OXWN4v2X/6Nl3ZZFJARAMfKCZXlwXwdDXu+aP/Z5ys/g74bMBQOV3w4AIoBoDYQ8ArlXMIcVn7NHxgsAOMa9htou/D362g7tMP6K/z9CNrnOSMFZVzwhmCKR7xupGagKjFLgcCYcMa1QGHXCXn5teK0vDrmLxdO42TRAdPRiVerpF+wXtpnLhDt09q4MibNUmmW6nRGltJJ0E8dsdqBjhnPd/yRYvgyphssL28PltfvK4k3OuHKOteMR2AV+ZxApMgJlg95u3VhDtc+4dBPUDmV4SrmhPaGqSJ79WXNe+FKIQePFAeapnHxYwfgOYEoc5Nrl4l2q1Tsp5keLFfgwqhwKJNbuEK0VzSKPfPPEO2NreLNhUuyxMxevV//AdUscXnNb5N0AAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDI0LTA2LTIzVDEzOjM2OjI1KzAwOjAwlDFp8AAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyNC0wNi0yM1QxMzozNjoyNSswMDowMOVs0UwAAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjQtMDYtMjNUMTM6Mzc6MDArMDA6MDBNprN3AAAAAElFTkSuQmCC);
  --calendar-background: #ffffff;
  --calendar-header-background: #ececec;
  --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: block;
  position: relative;
  width: 280px;
  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);
}
.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;
}
.calendar-header .header-day {
  font-size: 1.2rem;
}
.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.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-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.compact {
  width: 220px;
}
.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;
}
.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);
}
.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 .months .month,
.calendar.compact .years .month,
.calendar.compact .months .year,
.calendar.compact .years .year {
  height: 52px;
}
.calendar-wide {
  flex-flow: row nowrap;
  width: 560px;
}
.calendar-wide::after {
  display: block;
  clear: both;
  content: "";
}
.calendar-wide.calendar-picker {
  width: 460px;
}
.calendar-wide .calendar-header,
.calendar-wide .calendar-footer {
  position: absolute;
  top: 0;
  height: 100%;
  min-height: 100%;
}
.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 .calendar-content {
  margin: 0 96px 0 180px;
}
.calendar-wide.compact {
  width: 454px !important;
}
.calendar-wide.compact.calendar-picker {
  width: 354px !important;
}
.calendar-wide.compact .calendar-header {
  width: 120px;
}
.calendar-wide.compact .calendar-content {
  margin: 0 96px 0 120px;
  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;
}

/* 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-header .avatar {
  float: left;
  width: 2.75rem;
  height: 2.75rem;
  overflow: hidden;
}
.card-header .avatar img {
  width: 100%;
  min-height: 100%;
}
.card-header .name {
  margin-left: 3.375rem;
  font-weight: 500;
}
.card-header .date {
  margin-left: 3.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--body-color-secondary);
}
.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.image-header .card-header .avatar {
  border-radius: 50%;
  border: 2px solid var(--card-avatar-border-color);
}
* + .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-toggle {
  position: relative;
  cursor: pointer;
  padding-right: 1.5rem !important;
  user-select: none;
}
.dropdown-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;
}
.dropdown-toggle.drop-marker-light::before,
.dropdown-toggle.marker-light::before {
  border-color: #ffffff;
}
.dropdown-toggle.no-marker::before {
  display: none;
}
.dropdown-toggle.active-toggle::before,
.dropdown-toggle.active-container::before {
  transform: rotate(135deg);
  transition: all 0.15s ease-in-out;
}
.dropdown-toggle.marker-center::before {
  left: 50%;
  top: 50%;
  margin-left: 0;
  margin-top: 0;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.dropdown-toggle.marker-center.active-toggle::before,
.dropdown-toggle.marker-center.active-container::before {
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transition: all 0.15s ease-in-out;
}
.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;
  line-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;
}
.tag .action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 26px;
  height: 100%;
  line-height: 22px;
  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;
  font-size: 12px;
}
.tag .action:hover {
  font-size: 1.4rem;
}
.tag.short-tag .title {
  max-width: 120px;
}
.tag.small {
  margin: 2px 2px;
  height: 18px;
  line-height: 18px;
}
.tag.small .title {
  font-size: 0.7rem;
  line-height: 18px;
}
.tag.small .action {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 0.8rem;
}
.tag.large {
  margin: 2px 2px;
  height: 36px;
  line-height: 36px;
}
.tag.large .title {
  font-size: 1.3rem;
  line-height: 36px;
}
.tag.large .action {
  width: 35px;
  height: 35px;
  line-height: 33px;
  font-size: 1.6rem;
}
.tag.static {
  background: #d4f0ff;
  color: #1d1d1d;
}
.tag.static .action {
  display: none !important;
}
.tag.primary .action {
  background: #024ea4;
  color: #ffffff;
}
.tag.primary:hover {
  background: #0366d6 !important;
}
.tag.secondary .action {
  background: #526f8c;
  color: #ffffff;
}
.tag.secondary:hover {
  background: #6a89a7 !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.yellow .action {
  background: #cccc00;
  color: #ffffff;
}
.tag.yellow:hover {
  background: #ffff00 !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: #046363;
  color: #ffffff;
}
.tag.normal-teal:hover {
  background: #069494 !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: #ffffb3;
  color: #000000;
}
.tag.soft-yellow:hover {
  background: #ffffe6 !important;
  color: #808000 !important;
}
.tag.normal-yellow .action {
  background: #cccc00;
  color: #ffffff;
}
.tag.normal-yellow:hover {
  background: #ffff00 !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: #834d26;
  color: #ffffff;
}
.tag.normal-brown:hover {
  background: #aa6432 !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: #5c4d3f;
  color: #ffffff;
}
.tag.normal-taupe:hover {
  background: #7a6654 !important;
  color: #ffffff;
}
.tag.soft-champagne .action {
  background: #fff0c4;
  color: #000000;
}
.tag.soft-champagne:hover {
  background: #fffdf7 !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: #f1ed9b;
  color: #000000;
}
.tag.soft-bronze:hover {
  background: #f7f5c8 !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: #f8bdc3;
  color: #000000;
}
.tag.soft-terracotta:hover {
  background: #fdebed !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: #807973 !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 {
  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 .dropdown-toggle {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
}
.select .dropdown-toggle::before {
  margin-left: -1.1rem;
  border-color: var(--select-dropdown-toggle-color);
}
.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);
  font-size: 0.875rem;
  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: 14px;
  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: 16px;
  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;
}
.select .button {
  background-color: var(--select-button-background);
  color: var(--select-button-color);
  height: 34px;
  min-width: 34px;
}
.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 {
  font-family: "Segoe UI Symbol", serif;
  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: 34px;
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select .select-input .icon {
  margin: 0 4px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  display: flex;
  object-fit: cover;
}
.select .select-input .icon * {
  object-fit: cover;
  font-size: 16px;
}
.select .select-input:focus {
  box-shadow: none;
}
.select select[multiple] ~ .select-input {
  padding-left: 4px;
}
.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.dropdown-toggle::before {
  margin-left: -1.1rem;
  left: 100%;
  top: 14px;
  margin-top: 0;
  width: 0.4rem;
  height: 0.4rem;
}
.select.disabled.dropdown-toggle:before {
  border-color: var(--select-disabled-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: 36px;
}
.select.multiple .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
}
.select.multiple > .button-group {
  position: absolute;
  top: 0;
  right: 34px;
}
.select.multiple .select-input {
  height: auto;
  min-height: 36px;
  margin-right: 34px;
}
.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 .dropdown-toggle {
  order: 4;
}
.select .prepend {
  border-top-left-radius: var(--select-border-radius);
  border-bottom-left-radius: var(--select-border-radius);
}
.select.input-large {
  height: 50px;
}
.select.input-large .dropdown-toggle,
.select.input-large > .button-group .button {
  height: 50px;
  width: 50px;
}
.select.input-large .dropdown-toggle::before {
  margin-left: -1.5rem;
}
.select.input-large .select-input,
.select.input-large .prepend,
.select.input-large .append {
  height: 48px;
  font-size: 1.3rem;
  padding: 2px 10px;
  line-height: 48px;
}
.select.input-large.multiple {
  min-height: 50px;
  height: auto;
}
.select.input-large.multiple .select-input {
  height: auto;
  min-height: 48px;
}
.select.input-large.multiple > .button-group {
  right: 50px;
}
.select.input-large.multiple > .button-group:not(.d-none) ~ .select-input {
  margin-right: 100px;
}
.select.input-large.dropdown-toggle::before {
  top: 18px;
  width: 0.6rem;
  height: 0.6rem;
  margin-left: -1.3rem;
}
.select.input-small {
  height: 28px;
}
.select.input-small .dropdown-toggle,
.select.input-small > .button-group .button {
  height: 28px;
  width: 28px;
}
.select.input-small .dropdown-toggle::before {
  margin-left: -1rem;
}
.select.input-small .select-input,
.select.input-small .prepend,
.select.input-small .append {
  height: 26px;
  font-size: 0.9rem;
  padding: 0 4px;
  line-height: 26px;
}
.select.input-small.multiple {
  min-height: 28px;
  height: auto;
}
.select.input-small.multiple .select-input {
  height: auto;
  min-height: 26px;
}
.select.input-small.multiple > .button-group {
  right: 28px;
}
.select.input-small.multiple > .button-group:not(.d-none) ~ .select-input {
  margin-right: 56px;
}
.select.input-small.dropdown-toggle::before {
  top: 10px;
  width: 0.325rem;
  height: 0.325rem;
  margin-left: -0.9rem;
}
.select.input-small .button-group .button {
  padding: 0;
}
.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-toggle,
.select.rtl.dropdown-toggle {
  padding-right: 0 !important;
  padding-left: 0.9rem;
}
.select[dir=rtl].dropdown-toggle::before,
.select.rtl.dropdown-toggle::before {
  margin-left: 0.9rem;
  left: 0;
}
.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 {
  background-color: var(--select-tag-background);
  color: var(--select-tag-color);
  border: 1px solid var(--border-color);
}
.select .tag .remover {
  background-color: var(--select-tag-button-background);
  color: var(--select-tag-button-color);
}
.select.no-icons .option-list a {
  padding: 0 1rem;
}
.select.no-icons .option-list .icon {
  display: none;
}
.select .unselect-option {
  margin-left: 6px;
}

/* 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;
  --input-font-size: 14px;
}
.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;
  height: 34px;
  padding: 0 0.75rem;
  background: transparent;
  color: inherit;
  font-size: var(--input-font-size);
}
.input input:focus {
  box-shadow: none;
}
.input input[placeholder] {
  font-size: var(--input-font-size);
}
.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: 30px;
  width: 30px;
  border: 1px solid var(--input-border-color);
  font-size: var(--input-font-size);
  padding: 0;
}
.input .button:focus,
.input .button:active {
  box-shadow: none !important;
}
.input .input-clear-button,
.input .input-reveal-button,
.input .input-search-button {
  font-family: "Segoe UI Symbol", serif;
  background-color: transparent;
  font-size: var(--input-font-size);
}
.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;
  font-size: var(--input-font-size);
  padding: 0 var(--input-font-size);
}
.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: 1rem;
}
.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.input-large,
input.input-large {
  --input-font-size: 22px;
  height: 50px;
}
.input.input-large input,
input.input-large input {
  height: 48px;
  padding: 0 10px;
  line-height: 48px;
}
.input.input-large .button,
input.input-large .button {
  height: 44px;
  width: 44px;
}
.input.input-large .button .input-clear-button,
input.input-large .button .input-clear-button,
.input.input-large .button .input-reveal-button,
input.input-large .button .input-reveal-button {
  width: 48px;
  padding: 0;
}
.input.input-large .append,
input.input-large .append,
.input.input-large .prepend,
input.input-large .prepend {
  height: 48px;
  line-height: 48px;
}
.input.input-large.pill-input,
input.input-large.pill-input {
  --input-border-radius: 1.5rem;
}
.input.input-small,
input.input-small {
  --input-border-radius: 2px;
  --input-font-size: 14px;
  height: 28px;
}
.input.input-small input,
input.input-small input {
  height: 26px;
  padding: 0 4px;
  line-height: 26px;
}
.input.input-small .button,
input.input-small .button {
  height: 22px;
  width: 22px;
  padding: 0;
}
.input.input-small .append,
input.input-small .append,
.input.input-small .prepend,
input.input-small .prepend {
  height: 26px;
  line-height: 26px;
}
.input.input-small.pill-input,
input.input-small.pill-input {
  --input-border-radius: 0.8rem;
}
.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: 9px;
  font-weight: 100;
  text-transform: uppercase;
  background-color: #0a87c1;
  color: #ffffff;
  border-radius: 6px;
  padding: 2px 4px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.input:hover .badge {
  display: none;
}
.label-for-input {
  font-size: 12px;
  text-transform: uppercase;
}
.label-for-input.rtl {
  text-align: right;
}
@container (min-width: 0) {
  .input.input-large-fs {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-fs input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-fs .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-fs .button .input-clear-button,
  .input.input-large-fs .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-fs .append,
  .input.input-large-fs .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-fs.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-fs {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-fs input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-fs .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-fs .append,
  .input.input-small-fs .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-fs.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 360px) {
  .input.input-large-xs {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-xs input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-xs .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-xs .button .input-clear-button,
  .input.input-large-xs .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-xs .append,
  .input.input-large-xs .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-xs.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-xs {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-xs input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-xs .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-xs .append,
  .input.input-small-xs .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-xs.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 576px) {
  .input.input-large-sm {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-sm input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-sm .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-sm .button .input-clear-button,
  .input.input-large-sm .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-sm .append,
  .input.input-large-sm .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-sm.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-sm {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-sm input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-sm .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-sm .append,
  .input.input-small-sm .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-sm.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 640px) {
  .input.input-large-ld {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-ld input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-ld .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-ld .button .input-clear-button,
  .input.input-large-ld .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-ld .append,
  .input.input-large-ld .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-ld.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-ld {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-ld input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-ld .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-ld .append,
  .input.input-small-ld .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-ld.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 768px) {
  .input.input-large-md {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-md input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-md .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-md .button .input-clear-button,
  .input.input-large-md .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-md .append,
  .input.input-large-md .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-md.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-md {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-md input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-md .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-md .append,
  .input.input-small-md .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-md.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 992px) {
  .input.input-large-lg {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-lg input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-lg .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-lg .button .input-clear-button,
  .input.input-large-lg .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-lg .append,
  .input.input-large-lg .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-lg.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-lg {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-lg input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-lg .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-lg .append,
  .input.input-small-lg .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-lg.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 1200px) {
  .input.input-large-xl {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-xl input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-xl .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-xl .button .input-clear-button,
  .input.input-large-xl .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-xl .append,
  .input.input-large-xl .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-xl.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-xl {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-xl input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-xl .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-xl .append,
  .input.input-small-xl .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-xl.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 1400px) {
  .input.input-large-xxl {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-xxl input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-xxl .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-xxl .button .input-clear-button,
  .input.input-large-xxl .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-xxl .append,
  .input.input-large-xxl .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-xxl.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-xxl {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-xxl input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-xxl .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-xxl .append,
  .input.input-small-xxl .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-xxl.pill-input {
    --input-border-radius: 0.8rem;
  }
}
@container (min-width: 2000px) {
  .input.input-large-xxxl {
    --input-font-size: 22px;
    height: 50px;
  }
  .input.input-large-xxxl input {
    height: 48px;
    padding: 0 10px;
    line-height: 48px;
  }
  .input.input-large-xxxl .button {
    height: 44px;
    width: 44px;
  }
  .input.input-large-xxxl .button .input-clear-button,
  .input.input-large-xxxl .button .input-reveal-button {
    width: 48px;
    padding: 0;
  }
  .input.input-large-xxxl .append,
  .input.input-large-xxxl .prepend {
    height: 48px;
    line-height: 48px;
  }
  .input.input-large-xxxl.pill-input {
    --input-border-radius: 1.5rem;
  }
  .input.input-small-xxxl {
    --input-border-radius: 2px;
    --input-font-size: 14px;
    height: 28px;
  }
  .input.input-small-xxxl input {
    height: 26px;
    padding: 0 4px;
    line-height: 26px;
  }
  .input.input-small-xxxl .button {
    height: 22px;
    width: 22px;
    padding: 0;
  }
  .input.input-small-xxxl .append,
  .input.input-small-xxxl .prepend {
    height: 26px;
    line-height: 26px;
  }
  .input.input-small-xxxl.pill-input {
    --input-border-radius: 0.8rem;
  }
}
.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);
}
.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;
}
.dark-side {
  --chat-background: #343637;
  --chat-color: #dbdfe7;
  --chat-message-background: #4a4d51;
  --chat-message-color: #dbdfe7;
}
.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 {
  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;
  max-width: 100%;
  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-input {
  flex-shrink: 0;
  margin-top: auto;
  padding: 8px;
}
.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;
}
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 4px;
  position: relative;
  white-space: nowrap;
}
.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(--switch-toggle-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: #069494;
}
input[type=checkbox].checkbox-teal::before {
  border-color: #069494;
}
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: #ffff00;
}
input[type=checkbox].checkbox-yellow::before {
  border-color: #ffff00;
}
input[type=checkbox].checkbox-brown {
  border-color: #aa6432;
}
input[type=checkbox].checkbox-brown::before {
  border-color: #aa6432;
}
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: #7a6654;
}
input[type=checkbox].checkbox-taupe::before {
  border-color: #7a6654;
}
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: #024ea4;
  color: #ffffff;
}
.secondary .action {
  background: #526f8c;
  color: #ffffff;
}
.success .action {
  background: #37ae5f;
  color: #ffffff;
}
.alert .action {
  background: #af0b2c;
  color: #ffffff;
}
.warning .action {
  background: #cc8400;
  color: #ffffff;
}
.yellow .action {
  background: #cccc00;
  color: #ffffff;
}
.info .action {
  background: #136cff;
  color: #ffffff;
}
.dark .action {
  background: #373737;
  color: #ffffff;
}
.light .action {
  background: #dfdfdf;
  color: #ffffff;
}
.soft-lime .action {
  background: #92fc3a;
  color: #ffffff;
}
.soft-green .action {
  background: #008200;
  color: #ffffff;
}
.soft-emerald .action {
  background: #37ae5f;
  color: #ffffff;
}
.soft-blue .action {
  background: #2b61ff;
  color: #ffffff;
}
.soft-teal .action {
  background: #046363;
  color: #ffffff;
}
.soft-cyan .action {
  background: #6193ff;
  color: #ffffff;
}
.soft-cobalt .action {
  background: #003278;
  color: #ffffff;
}
.soft-indigo .action {
  background: #460075;
  color: #ffffff;
}
.soft-almost .action {
  background: #5012d5;
  color: #ffffff;
}
.soft-violet .action {
  background: #e855e8;
  color: #ffffff;
}
.soft-pink .action {
  background: #ff8da1;
  color: #ffffff;
}
.soft-magenta .action {
  background: #cc00cc;
  color: #ffffff;
}
.soft-crimson .action {
  background: #af0b2c;
  color: #ffffff;
}
.soft-red .action {
  background: #cc0000;
  color: #ffffff;
}
.soft-orange .action {
  background: #cc8400;
  color: #ffffff;
}
.soft-amber .action {
  background: #f6b900;
  color: #ffffff;
}
.soft-yellow .action {
  background: #cccc00;
  color: #ffffff;
}
.soft-brown .action {
  background: #834d26;
  color: #ffffff;
}
.soft-olive .action {
  background: #6e6e00;
  color: #ffffff;
}
.soft-steel .action {
  background: #60788e;
  color: #ffffff;
}
.soft-mauve .action {
  background: #cc7cff;
  color: #ffffff;
}
.soft-taupe .action {
  background: #5c4d3f;
  color: #ffffff;
}
.soft-champagne .action {
  background: #f0d19e;
  color: #ffffff;
}
.soft-khaki .action {
  background: #c8b264;
  color: #ffffff;
}
.soft-charcoal .action {
  background: #7f7f7f;
  color: #ffffff;
}
.soft-bronze .action {
  background: #d2731d;
  color: #ffffff;
}
.soft-windstorm .action {
  background: #5282ca;
  color: #ffffff;
}
.soft-nude .action {
  background: #f2bf8e;
  color: #ffffff;
}
.soft-terracotta .action {
  background: #ca391c;
  color: #ffffff;
}
.soft-coral .action {
  background: #ff6026;
  color: #ffffff;
}
.soft-army .action {
  background: #3e4321;
  color: #ffffff;
}
.soft-seashell .action {
  background: #ffd3b4;
  color: #ffffff;
}
.soft-sand .action {
  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;
}
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: #069494;
}
input[type=radio].radio-teal::before {
  background-color: #069494;
  border-color: #069494;
}
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: #ffff00;
}
input[type=radio].radio-yellow::before {
  background-color: #ffff00;
  border-color: #ffff00;
}
input[type=radio].radio-brown {
  border-color: #aa6432;
}
input[type=radio].radio-brown::before {
  background-color: #aa6432;
  border-color: #aa6432;
}
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: #7a6654;
}
input[type=radio].radio-taupe::before {
  background-color: #7a6654;
  border-color: #7a6654;
}
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.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 {
  border-color: transparent;
}
.color-picker.focused {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.color-picker input {
  border: none !important;
  order: 1;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  height: 34px;
  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: #1d1d1d;
  height: 30px !important;
  width: 30px !important;
}
.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", 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: #f8f8f8;
  color: #dfdfdf;
}
.color-picker .color-example-box {
  display: block;
  height: 26px;
  width: 26px;
  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;
}
.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.open .color-selector-box {
  display: block !important;
}

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

/* 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 {
  container-name: container-query;
  container-type: inline-size;
}

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

/* 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/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,
.d-menu ul {
  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: 1000;
  box-shadow: 2px 2px 10px var(--d-menu-shadow-color);
}
.d-menu.open,
.d-menu ul.open {
  display: block !important;
}
.d-menu.place-right,
.d-menu ul.place-right {
  left: auto;
  right: 0;
}
.d-menu li,
.d-menu a {
  position: relative;
}
.d-menu li {
  display: block;
  margin: 0 4px;
}
.d-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;
}
.d-menu a:hover {
  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 .dropdown-toggle::before {
  transform: rotate(-135deg);
  border-color: var(--d-menu-dropdown-toogle-color) !important;
}
.d-menu .dropdown-toggle.active-toggle::before {
  transform: rotate(45deg);
}
.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,
.d-menu ul {
  position: absolute;
  left: calc(100% + 4px);
  top: 0;
}
@media screen and (min-width: 0) {
  .d-menu.place-right-fs,
  .d-menu ul.place-right-fs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 360px) {
  .d-menu.place-right-xs,
  .d-menu ul.place-right-xs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 576px) {
  .d-menu.place-right-sm,
  .d-menu ul.place-right-sm {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 640px) {
  .d-menu.place-right-ld,
  .d-menu ul.place-right-ld {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .d-menu.place-right-md,
  .d-menu ul.place-right-md {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .d-menu.place-right-lg,
  .d-menu ul.place-right-lg {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .d-menu.place-right-xl,
  .d-menu ul.place-right-xl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .d-menu.place-right-xxl,
  .d-menu ul.place-right-xxl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 2000px) {
  .d-menu.place-right-xxxl,
  .d-menu ul.place-right-xxxl {
    left: auto;
    right: 0;
  }
}

/* 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 {
  display: block;
  position: relative;
  width: 100%;
  min-width: 220px;
  cursor: default;
  background: var(--input-background);
  color: var(--wheel-picker-color);
  height: 36px;
  user-select: none;
  border-radius: var(--wheel-picker-border-radius);
}
.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: -moz-scrollbars-none;
}
.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%;
}
.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 .button .icon {
  font-family: "Segoe UI Symbol", serif;
}
.date-picker li {
  cursor: pointer;
}

/* 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;
}
.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-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;
}
.directive {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--directive-background);
  color: var(--directive-color);
  padding: 0.5rem 1rem;
  border: 1px solid var(--directive-border-color);
  border-radius: var(--directive-border-radius);
  margin: 1rem 0;
  font-size: 14px;
  line-height: 1.75;
}
.directive .directive-title {
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  color: var(--directive-title-color);
  font-size: 16px;
}
.directive .icon {
  font-size: 1.5rem;
}
.directive.directive-note .icon::before {
  content: "\1f4dc";
}
.directive.directive-info {
  --directive-background: #0095ff0f;
  --directive-border-color: #0095ff33;
  --directive-title-color: #0095ff;
  --code-background: #0095ff1a;
  --code-color: #07f;
}
.directive.directive-info .icon::before {
  content: "\1f4a1";
}
.directive.directive-tip,
.directive.directive-success {
  --directive-background: #079c700f;
  --directive-border-color: #079c7033;
  --directive-title-color: #278359;
  --code-background: #079c701a;
  --code-color: #278359;
}
.directive.directive-tip .icon::before,
.directive.directive-success .icon::before {
  content: "\1f49a";
}
.directive.directive-success .icon::before {
  content: "\1f5f9";
}
.directive.directive-warning {
  --directive-background: #ffc5171a;
  --directive-border-color: #ffc51766;
  --directive-title-color: #ffc517;
  --code-background: #ffc5171a;
  --code-color: #887233;
}
.directive.directive-warning .icon::before {
  content: "\26a0\fe0f";
}
.directive.directive-fuck {
  --directive-background: var(--default-background);
  --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: #ed3c5033;
  --directive-title-color: #ff1f1f;
  --code-background: #ed3c501a;
  --code-color: #ab2131;
}
.directive.directive-caution .icon::before,
.directive.directive-alert .icon::before,
.directive.directive-error .icon::before {
  content: "\26d4";
}
.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.directive-bug .icon::before {
  content: "\1f41e";
}

/* 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: #069494;
}
.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: #ffffb3;
}
.donut-yellow svg .donut-fill {
  stroke: #ffff00;
}
.donut-yellow svg .donut-title {
  fill: #808000;
}
.donut-brown svg .donut-back {
  stroke: #ffd7a6;
}
.donut-brown svg .donut-fill {
  stroke: #aa6432;
}
.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: #7a6654;
}
.donut-taupe svg .donut-title {
  fill: #261e18;
}
.donut-champagne svg .donut-back {
  stroke: #fff0c4;
}
.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: #f1ed9b;
}
.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: #f8bdc3;
}
.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: #807973;
}
.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: #75b5fd;
}
.donut-primary svg .donut-fill {
  stroke: #0366d6;
}
.donut-primary svg .donut-title {
  fill: #0366d6;
}
.donut-secondary svg .donut-back {
  stroke: #cad5e0;
}
.donut-secondary svg .donut-fill {
  stroke: #6a89a7;
}
.donut-secondary svg .donut-title {
  fill: #6a89a7;
}
.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-yellow svg .donut-back {
  stroke: #ffff99;
}
.donut-yellow svg .donut-fill {
  stroke: #ffff00;
}
.donut-yellow svg .donut-title {
  fill: #ffff00;
}
.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 #0366d6;
}

/* 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: 30px;
  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;
  font-family: "Segoe UI Symbol", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.file .button:hover {
  background: var(--file-button-background-hover);
}
.file .caption {
  line-height: 35px;
  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;
}
.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;
}

/* 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/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,
.v-cell-0,
.v-col-0 {
  flex: 0 0 calc(8.333335% * 0 - var(--grid-gap));
  max-width: calc(8.333335% * 0 - var(--grid-gap));
}
.offset-0,
.v-offset-0 {
  margin-left: calc(8.333335% * 0);
}
.cell-1,
.col-1,
.v-cell-1,
.v-col-1 {
  flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
  max-width: calc(8.333335% * 1 - var(--grid-gap));
}
.offset-1,
.v-offset-1 {
  margin-left: calc(8.333335% * 1);
}
.cell-2,
.col-2,
.v-cell-2,
.v-col-2 {
  flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
  max-width: calc(8.333335% * 2 - var(--grid-gap));
}
.offset-2,
.v-offset-2 {
  margin-left: calc(8.333335% * 2);
}
.cell-3,
.col-3,
.v-cell-3,
.v-col-3 {
  flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
  max-width: calc(8.333335% * 3 - var(--grid-gap));
}
.offset-3,
.v-offset-3 {
  margin-left: calc(8.333335% * 3);
}
.cell-4,
.col-4,
.v-cell-4,
.v-col-4 {
  flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
  max-width: calc(8.333335% * 4 - var(--grid-gap));
}
.offset-4,
.v-offset-4 {
  margin-left: calc(8.333335% * 4);
}
.cell-5,
.col-5,
.v-cell-5,
.v-col-5 {
  flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
  max-width: calc(8.333335% * 5 - var(--grid-gap));
}
.offset-5,
.v-offset-5 {
  margin-left: calc(8.333335% * 5);
}
.cell-6,
.col-6,
.v-cell-6,
.v-col-6 {
  flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
  max-width: calc(8.333335% * 6 - var(--grid-gap));
}
.offset-6,
.v-offset-6 {
  margin-left: calc(8.333335% * 6);
}
.cell-7,
.col-7,
.v-cell-7,
.v-col-7 {
  flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
  max-width: calc(8.333335% * 7 - var(--grid-gap));
}
.offset-7,
.v-offset-7 {
  margin-left: calc(8.333335% * 7);
}
.cell-8,
.col-8,
.v-cell-8,
.v-col-8 {
  flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
  max-width: calc(8.333335% * 8 - var(--grid-gap));
}
.offset-8,
.v-offset-8 {
  margin-left: calc(8.333335% * 8);
}
.cell-9,
.col-9,
.v-cell-9,
.v-col-9 {
  flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
  max-width: calc(8.333335% * 9 - var(--grid-gap));
}
.offset-9,
.v-offset-9 {
  margin-left: calc(8.333335% * 9);
}
.cell-10,
.col-10,
.v-cell-10,
.v-col-10 {
  flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
  max-width: calc(8.333335% * 10 - var(--grid-gap));
}
.offset-10,
.v-offset-10 {
  margin-left: calc(8.333335% * 10);
}
.cell-11,
.col-11,
.v-cell-11,
.v-col-11 {
  flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
  max-width: calc(8.333335% * 11 - var(--grid-gap));
}
.offset-11,
.v-offset-11 {
  margin-left: calc(8.333335% * 11);
}
.cell-12,
.col-12,
.v-cell-12,
.v-col-12 {
  flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
  max-width: calc(8.333335% * 12 - var(--grid-gap));
}
.offset-12,
.v-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/head-bar/head-bar.less */
.head-bar {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #1d1d1d;
  height: 56px;
  z-index: 1030;
  padding: 0 4px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.head-bar .app-title {
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  line-height: 48px;
  color: inherit;
  font-size: 20px;
  font-weight: 100;
}
.head-bar .app-title:nth-child(1) {
  padding-left: 10px;
}
.head-bar .header-container {
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.head-bar .tool-button {
  margin: 0 4px;
  background-color: inherit;
  color: inherit;
}
.head-bar .tool-button .icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.head-bar.more {
  height: 112px;
}
.head-bar.more .app-title {
  position: absolute;
  bottom: 22px;
  left: 74px;
  height: 28px;
  font-size: 24px;
}
.head-bar .header-container .input {
  float: left;
  margin-left: 20px;
  width: calc(100% - 80px);
  border: none;
}
.head-bar .header-container .input input {
  border: none;
}
.head-bar .header-container .input input,
.head-bar .header-container .input input::-webkit-input-placeholder {
  color: white;
}

/* 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/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-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 {
  display: inline-flex;
  transition: all 0.3s 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: 14px;
  padding: 0 0.5rem 0 0;
  align-items: center;
  height: 36px;
  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:active,
.image-button.focus,
.image-button:focus {
  box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.45);
}
.image-button .icon,
.image-button .caption {
  transition: all 0.3s ease-in-out;
}
.image-button .icon {
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 1rem;
  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;
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.45);
}
.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: #298cfc !important;
}
.image-button.primary .icon {
  background: #0366d6 !important;
  color: #ffffff !important;
}
.image-button.primary:hover .icon {
  background: #035abd !important;
}
.image-button.secondary {
  background: #9aafc3 !important;
}
.image-button.secondary .icon {
  background: #6a89a7 !important;
  color: #ffffff !important;
}
.image-button.secondary:hover .icon {
  background: #5c7c9c !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.yellow {
  background: #ffff4d !important;
}
.image-button.yellow .icon {
  background: #ffff00 !important;
  color: #ffffff !important;
}
.image-button.yellow:hover .icon {
  background: #e5e600 !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;
}

/* 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-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 {
  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: 36px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 0;
  cursor: pointer;
  gap: 0;
}
.info-button .title,
.info-button .value {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  height: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  margin: 0;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.info-button .icon {
  margin: 0 0.5rem 0 0;
}
.info-button .value {
  background: var(--info-button-background-secondary);
  color: var(--info-button-color-secondary);
  font-size: 11px;
  font-weight: 600;
}
.info-button:hover .title {
  background: var(--info-button-background-hover);
  color: var(--info-button-color-hover);
}
.info-button.primary .title {
  background: #0366d6;
  color: #ffffff;
}
.info-button.primary:hover .title {
  background: #035abd !important;
}
.info-button.secondary .title {
  background: #6a89a7;
  color: #ffffff;
}
.info-button.secondary:hover .title {
  background: #5c7c9c !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.yellow .title {
  background: #ffff00;
  color: #ffffff;
}
.info-button.yellow:hover .title {
  background: #e5e600 !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;
}

/* 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/keylock/keylock.less */
:root {
  --keylock-color: #575757;
  --keylock-background: transparent;
  --keylock-caption-color: #191919;
  --keylock-background-disabled: #e8e8e8;
  --keylock-color-disabled: #c3c3c3;
}
.dark-side {
  --keylock-color: #a6a6a6;
  --keylock-background: transparent;
  --keylock-caption-color: #e8e8e8;
  --keylock-background-disabled: #353535;
  --keylock-color-disabled: #6c6c6c;
}
.keylock {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 36px;
  flex-flow: row nowrap;
  padding: 0 8px;
  line-height: 36px;
  cursor: pointer;
  user-select: none;
}
.keylock input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.keylock .icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  order: 1;
  border: 1px solid var(--keylock-color);
  border-radius: 4px;
  font-family: "Segoe UI Symbol", serif;
}
.keylock .icon * {
  font-size: 24px;
  width: 32px;
  height: 32px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keylock .state-on,
.keylock .caption-state-on {
  display: none;
}
.keylock .state-off,
.keylock .caption-state-off {
  display: flex;
}
.keylock input:checked ~ .icon .state-on,
.keylock input:checked ~ .caption .caption-state-on {
  display: flex;
}
.keylock input:checked ~ .icon .state-off,
.keylock input:checked ~ .caption .caption-state-off {
  display: none;
}
.keylock .caption {
  height: 34px;
  display: flex;
  align-items: center;
  margin: 0 6px;
  order: 2;
  white-space: nowrap;
}
.keylock.caption-left .icon {
  order: 2;
}
.keylock.caption-left .caption {
  order: 1;
}
.keylock input:disabled ~ .icon,
.keylock input:disabled ~ .caption {
  border-color: var(--keylock-background-disabled);
  color: var(--keylock-color-disabled);
}

/* source/components/keypad/keypad.less */
:root {
  --keypad-background: var(--input-background);
  --keypad-color: var(--input-color);
  --keypad-border-color: #E8E8E8;
  --keypad-border-radius: 4px;
}
.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(--keypad-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;
}
.keypad .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;
}
.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);
}

/* 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-background: #ffffff;
  --listview-color: #191919;
  --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-item-background-hover: #2d2d32;
  --listview-item-background-active: #28282c;
  --listview-badge-background: transparent;
  --listview-badge-color: #dbdfe7;
}
.listview {
  position: relative;
  margin: 0;
  padding: 0;
  max-height: 100%;
  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);
}
.listview .node:hover {
  background-color: var(--listview-item-background-hover);
}
.listview .node > .icon {
  text-align: center;
}
.listview .node > .icon img {
  max-width: 100%;
  height: 100%;
}
.listview .node > .icon > * {
  vertical-align: initial;
}
.listview .node .checkbox,
.listview .node .radio,
.listview .node .switch {
  height: auto;
}
.listview ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none inside;
}
.listview .node > .data > .content,
.listview .node > .node-data {
  display: none;
}
.listview:not(.selectable) .checkbox {
  display: none;
}
.listview .node > .data > .caption {
  line-height: 1.2;
  font-size: 12px;
}
.listview .node-group > .data > .caption {
  font-size: 14px;
}
.listview.view-list .node {
  min-width: 160px;
  line-height: 26px;
  height: 26px;
  padding: 0 8px;
  flex-flow: row nowrap;
  align-items: center;
}
.listview.view-list .node > .icon {
  width: 20px;
  height: 20px;
  line-height: 26px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.listview.view-list .node > .data {
  line-height: 26px;
  padding-left: 24px;
}
.listview.view-list .node > .icon ~ .data {
  padding-left: 8px;
}
.listview.view-table {
  display: table;
  width: 100%;
  padding: 0 8px;
}
.listview.view-table .node {
  display: table-row;
  width: 100%;
}
.listview.view-table .node > * {
  display: table-cell;
  vertical-align: middle;
}
.listview.view-table .icon {
  width: 20px;
  height: 20px;
  line-height: 26px;
  font-size: 18px;
}
.listview.view-table .icon > * {
  width: 100%;
}
.listview.view-table > li .data > .caption {
  padding: 0 0.5rem;
  line-height: 26px;
}
.listview.view-table .node-data {
  display: table-cell;
  width: auto;
  line-height: 26px;
}
.listview.view-table label.checkbox {
  width: 32px;
}
.listview.view-content .node {
  width: 100%;
  min-height: 50px;
  padding: 10px 16px;
  flex-flow: row nowrap;
}
.listview.view-content .node > .icon {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 28px;
  margin-left: 16px;
}
.listview.view-content .node > .data {
  padding-left: 64px;
  font-size: 16px;
  line-height: 32px;
  width: 100%;
}
.listview.view-content .node > .data .caption,
.listview.view-content .node > .data .content {
  display: block;
  line-height: 16px;
  height: 16px;
}
.listview.view-content .node > .data .content {
  font-size: 0.8em;
}
.listview.view-content .node > .icon ~ .data {
  padding-left: 16px;
}
.listview.view-content .node + .node {
  border-top: 1px solid var(--border-color);
}
.listview.view-tiles .node {
  width: 250px;
  height: 56px;
  padding: 5px 16px;
  flex-flow: row nowrap;
}
.listview.view-tiles .node > .icon {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 42px;
  margin-left: 16px;
}
.listview.view-tiles .node > .data {
  padding-left: 78px;
  font-size: 16px;
  line-height: 46px;
}
.listview.view-tiles .node > .icon + .data {
  padding-left: 16px;
}
.listview.view-tiles .node .caption {
  font-size: 14px;
}
.listview.view-icons .node,
.listview.view-icons-medium .node,
.listview.view-icons-large .node {
  width: 92px;
  height: 92px;
  padding: 8px 8px 2px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin: 2px;
}
.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-bottom: 4px;
}
.listview.view-icons .node > .data,
.listview.view-icons-medium .node > .data,
.listview.view-icons-large .node > .data {
  line-height: 1.5;
  white-space: normal;
  text-align: center;
}
.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-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 > .data {
  padding-left: 24px;
  line-height: 24px;
  font-size: 18px;
}
.listview .node-group .node-toggle {
  position: relative;
  cursor: pointer;
  padding-right: 1.5rem !important;
  user-select: none;
}
.listview .node-group .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;
}
.listview .node-group .node-toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
}
.listview .node-group .node-toggle::before {
  transform: rotate(-135deg);
}
.listview .node-group.expanded > .node-toggle::before {
  transform: rotate(-45deg);
}
.listview .node-group + .node-group {
  margin-top: 0.5rem;
}
.listview .node-group + .listview {
  margin-top: 0.5rem;
}
.listview .node .badge {
  font-size: 10px;
  margin-bottom: 4px;
  position: relative;
  background-color: var(--listview-badge-background);
  color: var(--listview-badge-color);
}
.listview .node .badges {
  position: absolute;
  top: 8px;
  right: 10px;
  border-color: transparent;
  display: flex;
  flex-flow: column;
}

/* 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 */
.master {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  color: #1d1d1d;
  background-color: #ffffff;
  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;
}
.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 {
  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;
}
.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/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;
}
.pagination .page-item:hover,
.pagination .page-item.service:hover {
  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;
}
.pagination .page-item.no-link:hover {
  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;
}

/* 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;
}
.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 .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;
  }
}
.progress-lime {
  --progress-bar-color: #AEFD6C;
  --progress-bar-back-color: #f2ffe7;
}
.progress-green {
  --progress-bar-color: #00b500;
  --progress-bar-back-color: #e7f6e6;
}
.progress-emerald {
  --progress-bar-color: #50c878;
  --progress-bar-back-color: #d1e6cc;
}
.progress-blue {
  --progress-bar-color: #5e87ff;
  --progress-bar-back-color: #e7eaff;
}
.progress-teal {
  --progress-bar-color: #069494;
  --progress-bar-back-color: #e1f2f3;
}
.progress-cyan {
  --progress-bar-color: #94b6ff;
  --progress-bar-back-color: #e3edff;
}
.progress-cobalt {
  --progress-bar-color: #0047ab;
  --progress-bar-back-color: #d1ecff;
}
.progress-indigo {
  --progress-bar-color: #6400a8;
  --progress-bar-back-color: #f3dcf3;
}
.progress-almost {
  --progress-bar-color: #6a2ded;
  --progress-bar-back-color: #eee5ff;
}
.progress-violet {
  --progress-bar-color: #ee82ee;
  --progress-bar-back-color: #fce2fb;
}
.progress-pink {
  --progress-bar-color: #ffc0cb;
  --progress-bar-back-color: #ffeef1;
}
.progress-magenta {
  --progress-bar-color: #ff00ff;
  --progress-bar-back-color: #ffe2ff;
}
.progress-crimson {
  --progress-bar-color: #df0e38;
  --progress-bar-back-color: #ffd1da;
}
.progress-red {
  --progress-bar-color: #ff0000;
  --progress-bar-back-color: #ffe1e1;
}
.progress-orange {
  --progress-bar-color: #ffa500;
  --progress-bar-back-color: #fff3de;
}
.progress-amber {
  --progress-bar-color: #ffca2a;
  --progress-bar-back-color: #fff8e1;
}
.progress-yellow {
  --progress-bar-color: #ffff00;
  --progress-bar-back-color: #ffffe6;
}
.progress-brown {
  --progress-bar-color: #aa6432;
  --progress-bar-back-color: #ffeed9;
}
.progress-olive {
  --progress-bar-color: #a1a100;
  --progress-bar-back-color: #f8fde7;
}
.progress-steel {
  --progress-bar-color: #7b91a6;
  --progress-bar-back-color: #edeeee;
}
.progress-mauve {
  --progress-bar-color: #e0afff;
  --progress-bar-back-color: #f7ecfe;
}
.progress-taupe {
  --progress-bar-color: #7a6654;
  --progress-bar-back-color: #eadccf;
}
.progress-champagne {
  --progress-bar-color: #f7e6ca;
  --progress-bar-back-color: #fffdf7;
}
.progress-khaki {
  --progress-bar-color: #d5c58a;
  --progress-bar-back-color: #f6f1dd;
}
.progress-charcoal {
  --progress-bar-color: #989898;
  --progress-bar-back-color: #e8e8e8;
}
.progress-bronze {
  --progress-bar-color: #e48d3e;
  --progress-bar-back-color: #f7f5c8;
}
.progress-windstorm {
  --progress-bar-color: #799ed6;
  --progress-bar-back-color: #e6ebf5;
}
.progress-nude {
  --progress-bar-color: #f7d9bc;
  --progress-bar-back-color: #fcf0e4;
}
.progress-terracotta {
  --progress-bar-color: #e35336;
  --progress-bar-back-color: #fdebed;
}
.progress-coral {
  --progress-bar-color: #ff8559;
  --progress-bar-back-color: #ffd8c8;
}
.progress-army {
  --progress-bar-color: #5d6532;
  --progress-bar-back-color: #eceacb;
}
.progress-seashell {
  --progress-bar-color: #fff1e7;
  --progress-bar-back-color: #fff9f8;
}
.progress-sand {
  --progress-bar-color: #f1e0ae;
  --progress-bar-back-color: #f8f3e0;
}
.progress-primary {
  --progress-bar-color: #0366d6;
}
.progress-secondary {
  --progress-bar-color: #6a89a7;
}
.progress-success {
  --progress-bar-color: #50c878;
}
.progress-alert {
  --progress-bar-color: #df0e38;
}
.progress-warning {
  --progress-bar-color: #ffa500;
}
.progress-yellow {
  --progress-bar-color: #ffff00;
}
.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: row nowrap;
  align-items: 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;
  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: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.remark:has(.icon) {
  min-height: 40px;
  padding-left: 60px;
}
.remark.lime {
  border-color: #AEFD6C;
  color: #191919;
  background: #f2ffe7;
}
.remark.lime .icon {
  color: #AEFD6C;
}
.remark.green {
  border-color: #00b500;
  color: #191919;
  background: #e7f6e6;
}
.remark.green .icon {
  color: #00b500;
}
.remark.emerald {
  border-color: #50c878;
  color: #191919;
  background: #d1e6cc;
}
.remark.emerald .icon {
  color: #50c878;
}
.remark.blue {
  border-color: #5e87ff;
  color: #191919;
  background: #e7eaff;
}
.remark.blue .icon {
  color: #5e87ff;
}
.remark.teal {
  border-color: #069494;
  color: #191919;
  background: #e1f2f3;
}
.remark.teal .icon {
  color: #069494;
}
.remark.cyan {
  border-color: #94b6ff;
  color: #191919;
  background: #e3edff;
}
.remark.cyan .icon {
  color: #94b6ff;
}
.remark.cobalt {
  border-color: #0047ab;
  color: #191919;
  background: #d1ecff;
}
.remark.cobalt .icon {
  color: #0047ab;
}
.remark.indigo {
  border-color: #6400a8;
  color: #191919;
  background: #f3dcf3;
}
.remark.indigo .icon {
  color: #6400a8;
}
.remark.almost {
  border-color: #6a2ded;
  color: #191919;
  background: #eee5ff;
}
.remark.almost .icon {
  color: #6a2ded;
}
.remark.violet {
  border-color: #ee82ee;
  color: #191919;
  background: #fce2fb;
}
.remark.violet .icon {
  color: #ee82ee;
}
.remark.pink {
  border-color: #ffc0cb;
  color: #191919;
  background: #ffeef1;
}
.remark.pink .icon {
  color: #ffc0cb;
}
.remark.magenta {
  border-color: #ff00ff;
  color: #191919;
  background: #ffe2ff;
}
.remark.magenta .icon {
  color: #ff00ff;
}
.remark.crimson {
  border-color: #df0e38;
  color: #191919;
  background: #ffd1da;
}
.remark.crimson .icon {
  color: #df0e38;
}
.remark.red {
  border-color: #ff0000;
  color: #191919;
  background: #ffe1e1;
}
.remark.red .icon {
  color: #ff0000;
}
.remark.orange {
  border-color: #ffa500;
  color: #191919;
  background: #fff3de;
}
.remark.orange .icon {
  color: #ffa500;
}
.remark.amber {
  border-color: #ffca2a;
  color: #191919;
  background: #fff8e1;
}
.remark.amber .icon {
  color: #ffca2a;
}
.remark.yellow {
  border-color: #ffff00;
  color: #191919;
  background: #ffffe6;
}
.remark.yellow .icon {
  color: #ffff00;
}
.remark.brown {
  border-color: #aa6432;
  color: #191919;
  background: #ffeed9;
}
.remark.brown .icon {
  color: #aa6432;
}
.remark.olive {
  border-color: #a1a100;
  color: #191919;
  background: #f8fde7;
}
.remark.olive .icon {
  color: #a1a100;
}
.remark.steel {
  border-color: #7b91a6;
  color: #191919;
  background: #edeeee;
}
.remark.steel .icon {
  color: #7b91a6;
}
.remark.mauve {
  border-color: #e0afff;
  color: #191919;
  background: #f7ecfe;
}
.remark.mauve .icon {
  color: #e0afff;
}
.remark.taupe {
  border-color: #7a6654;
  color: #191919;
  background: #eadccf;
}
.remark.taupe .icon {
  color: #7a6654;
}
.remark.champagne {
  border-color: #f7e6ca;
  color: #191919;
  background: #fffdf7;
}
.remark.champagne .icon {
  color: #f7e6ca;
}
.remark.khaki {
  border-color: #d5c58a;
  color: #191919;
  background: #f6f1dd;
}
.remark.khaki .icon {
  color: #d5c58a;
}
.remark.charcoal {
  border-color: #989898;
  color: #191919;
  background: #e8e8e8;
}
.remark.charcoal .icon {
  color: #989898;
}
.remark.bronze {
  border-color: #e48d3e;
  color: #191919;
  background: #f7f5c8;
}
.remark.bronze .icon {
  color: #e48d3e;
}
.remark.windstorm {
  border-color: #799ed6;
  color: #191919;
  background: #e6ebf5;
}
.remark.windstorm .icon {
  color: #799ed6;
}
.remark.nude {
  border-color: #f7d9bc;
  color: #191919;
  background: #fcf0e4;
}
.remark.nude .icon {
  color: #f7d9bc;
}
.remark.terracotta {
  border-color: #e35336;
  color: #191919;
  background: #fdebed;
}
.remark.terracotta .icon {
  color: #e35336;
}
.remark.coral {
  border-color: #ff8559;
  color: #191919;
  background: #ffd8c8;
}
.remark.coral .icon {
  color: #ff8559;
}
.remark.army {
  border-color: #5d6532;
  color: #191919;
  background: #eceacb;
}
.remark.army .icon {
  color: #5d6532;
}
.remark.seashell {
  border-color: #fff1e7;
  color: #191919;
  background: #fff9f8;
}
.remark.seashell .icon {
  color: #fff1e7;
}
.remark.sand {
  border-color: #f1e0ae;
  color: #191919;
  background: #f8f3e0;
}
.remark.sand .icon {
  color: #f1e0ae;
}
.remark.alert {
  border-color: var(--color-red);
  background: var(--color-light-red) !important;
  color: #191919 !important;
}
.remark.alert .icon {
  color: var(--color-red);
}
.remark.warning {
  border-color: var(--color-orange);
  background: var(--color-light-orange) !important;
  color: #191919 !important;
}
.remark.warning .icon {
  color: var(--color-orange);
}
.remark.info {
  border-color: var(--color-blue);
  background: var(--color-light-blue) !important;
  color: #191919 !important;
}
.remark.info .icon {
  color: var(--color-blue);
}
.remark.success {
  border-color: var(--color-green);
  background: var(--color-light-green) !important;
  color: #191919 !important;
}
.remark.success .icon {
  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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xs td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-sm td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-ld td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-md td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-lg td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xl td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxl td {
    border-bottom: 1px solid #ddd;
    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 #ddd;
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxxl td {
    border-bottom: 1px solid #ddd;
    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: #069494;
  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: #ffff00;
  color: #ffffff;
}
.ribbon-yellow::before {
  color: #808000;
}
.ribbon-brown {
  background: #aa6432;
  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: #7a6654;
  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: #807973;
}
.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 {
  display: block;
  position: relative;
}
.ribbon-menu .content-holder {
  background-color: var(--ribbon-menu-tab-background-active);
  border-left: none;
  border-right: none;
}
.ribbon-menu .content-holder .section {
  display: block;
  padding: 4px 4px;
  border-bottom: 1px solid var(--ribbon-menu-border-color);
  justify-content: flex-start;
}
.ribbon-menu .content-holder .section.active {
  display: flex;
}
.ribbon-menu .content-holder .section.non-active {
  display: none;
}
.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 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 24px;
  height: 20px;
  font-size: 11px;
  text-align: center;
  border-top: 1px solid var(--ribbon-menu-border-color);
  white-space: nowrap;
}
.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 {
  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-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;
  height: 24px;
}
.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: 24px;
  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-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: #069494 !important;
}
.sb-teal * {
  scrollbar-color: #069494 #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: #d43e38 !important;
}
.sb-clown * {
  scrollbar-color: #d43e38 #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: #ffff00 !important;
}
.sb-yellow * {
  scrollbar-color: #ffff00 #e8e8e8 !important;
}
.sb-brown ::-webkit-scrollbar-thumb {
  background-color: #aa6432 !important;
}
.sb-brown * {
  scrollbar-color: #aa6432 #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: #7a6654 !important;
}
.sb-taupe * {
  scrollbar-color: #7a6654 #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: #ffffe6 !important;
}
.sb-light-yellow * {
  scrollbar-color: #ffffe6 #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: #fffdf7 !important;
}
.sb-light-champagne * {
  scrollbar-color: #fffdf7 #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: #f7f5c8 !important;
}
.sb-light-bronze * {
  scrollbar-color: #f7f5c8 #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: #fdebed !important;
}
.sb-light-terracotta * {
  scrollbar-color: #fdebed #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: #ae0700 !important;
}
.sb-dark-clown * {
  scrollbar-color: #ae0700 #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: #808000 !important;
}
.sb-dark-yellow * {
  scrollbar-color: #808000 #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: #807973 !important;
}
.sb-dark-seashell * {
  scrollbar-color: #807973 #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: #dd443f !important;
}
.sb-sat-clown * {
  scrollbar-color: #dd443f #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: #d5d500 !important;
}
.sb-sat-yellow * {
  scrollbar-color: #d5d500 #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: #b8aea6 !important;
}
.sb-sat-seashell * {
  scrollbar-color: #b8aea6 #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 #069494;
}
.shadow-3d-border-teal {
  box-shadow: 0 0 0 2px #069494, 8px 8px 0 0 #069494;
}
.shadow-glow-teal {
  box-shadow: 0 0px 30px #069494;
}
.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 #ffff00;
}
.shadow-3d-border-yellow {
  box-shadow: 0 0 0 2px #ffff00, 8px 8px 0 0 #ffff00;
}
.shadow-glow-yellow {
  box-shadow: 0 0px 30px #ffff00;
}
.shadow-glow-soft-yellow {
  box-shadow: 0 9px 30px #ffffe6;
}
.shadow-3d-brown {
  box-shadow: 8px 8px 0 #aa6432;
}
.shadow-3d-border-brown {
  box-shadow: 0 0 0 2px #aa6432, 8px 8px 0 0 #aa6432;
}
.shadow-glow-brown {
  box-shadow: 0 0px 30px #aa6432;
}
.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 #7a6654;
}
.shadow-3d-border-taupe {
  box-shadow: 0 0 0 2px #7a6654, 8px 8px 0 0 #7a6654;
}
.shadow-glow-taupe {
  box-shadow: 0 0px 30px #7a6654;
}
.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 #fffdf7;
}
.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 #f7f5c8;
}
.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 #fdebed;
}
.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 #069494;
}
.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 #ffff00;
}
.text-shadow-glow-brown {
  text-shadow: 0 0 10px #aa6432;
}
.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 #7a6654;
}
.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 {
  --shortcut-border-radius: 6px;
  --shortcut-background: #f8f8f8;
  --shortcut-color: #191919;
  --shortcut-background-hover: #dadada;
  --shortcut-color-hover: #474747;
}
.dark-side {
  --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;
}
.shortcut.no-caption .icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  margin-top: 0;
}
@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;
}

/* 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: -moz-scrollbars-none;
}
.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: -moz-scrollbars-none;
}
.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: -moz-scrollbars-none;
}
.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-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 {
  display: inline-flex;
  flex-flow: row nowrap;
  position: relative;
  width: auto;
  height: 36px;
  line-height: 1;
  gap: 4px;
}
.split-button > *:nth-child(1) {
  order: 1;
}
.split-button > *:nth-child(2) {
  order: 2;
}
.split-button .split {
  padding: 0 0.75rem;
  text-align: center;
  vertical-align: middle;
  background: var(--split-button-background);
  color: var(--split-button-color);
  border: 1px transparent solid;
  border-radius: var(--split-button-border-radius);
  cursor: pointer;
  outline: none;
  font-size: 14px;
  position: relative;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-button .split.dropdown-toggle::before {
  margin-left: -1.25rem;
}
@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;
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.45);
}
.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 .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;
}

/* 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 4px;
  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: #069494 !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: #ffff00 !important;
}
.switch-brown {
  --switch-background-checked: #aa6432 !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: #7a6654 !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/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-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-icon-background: #343637;
  --tabs-item-icon-color: #ffffff;
}
.tabs {
  position: relative;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;
  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 .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 .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;
}
.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: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);
}
.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;
}

/* 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: 36px;
  border-radius: var(--taginput-border-radius);
  overflow: hidden;
}
.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: 26px;
  line-height: 26px;
  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 {
  font-family: "Segoe UI Symbol", serif;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  background-color: transparent;
  height: 30px;
  width: 30px;
}
.tag-input.padding-for-clear {
  padding-right: 48px;
}
.tag-input.input-large {
  min-height: 50px;
}
.tag-input.input-large input {
  height: 48px;
  font-size: 1.3rem;
  padding: 0 10px;
  line-height: 48px;
  min-width: 5em;
}
.tag-input.input-large .button {
  height: 48px;
  min-width: 48px;
  font-size: 1.3rem;
}
.tag-input.input-large .button [class*=mif-] {
  font-size: 1.3rem;
}
.tag-input.input-large .button .input-clear-button {
  width: 48px;
  padding: 0;
}
.tag-input.input-small {
  min-height: 28px;
}
.tag-input.input-small input {
  height: 26px;
  font-size: 0.9rem;
  padding: 0 4px;
  line-height: 26px;
  min-width: 5em;
}
.tag-input.input-small .button {
  height: 26px;
  min-width: 26px;
  font-size: 0.9rem;
}
.tag-input.input-small .button [class*=mif-] {
  font-size: 0.9rem;
}
.tag-input.input-small .input-clear-button {
  width: 26px;
  padding: 0;
  font-family: "Segoe UI Symbol", serif;
}
.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: 2px;
  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/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: center;
  justify-content: center;
  flex: 1;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  position: relative;
}
.time-picker.show-labels .hours,
.time-picker.show-labels .minutes,
.time-picker.show-labels .seconds {
  line-height: 30px;
}
.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: 8px;
  line-height: 12px;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}
.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;
}

/* 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/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;
}
.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-mode {
  --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: #2b2d30;
  --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 {
  padding: 8px;
  overflow: hidden;
}
.treeview li {
  position: relative;
}
.treeview a {
  display: flex;
  align-items: center;
  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;
}
.treeview a:hover {
  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:not(.d-menu) a {
  padding-left: 40px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 60px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 80px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 100px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 120px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 140px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 160px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 180px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) a {
  padding-left: 200px;
}
.treeview .icon {
  margin-right: 6px;
}
.treeview .node-toggle {
  position: relative;
  cursor: pointer;
  padding-right: 1.5rem !important;
  user-select: none;
  position: absolute;
  left: 0;
  top: 4px;
  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:not(.d-menu) .node-toggle {
  left: 20px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 40px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 60px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 80px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 100px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 120px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 140px;
}
.treeview ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) .node-toggle {
  left: 160px;
}
.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 var(--border-color);
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  margin-left: 4px;
}
.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 > ul {
  margin: 0;
  z-index: 3;
}
.treeview .actions-holder > ul li {
  padding-left: 0;
}
.treeview li:hover > .actions-holder,
.treeview .current > .actions-holder {
  display: flex;
}
.treeview.auto-layout ul:not(.d-menu) li {
  padding-left: 40px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 60px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 80px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 100px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 120px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 140px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 160px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 180px;
}
.treeview.auto-layout ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) ul:not(.d-menu) li {
  padding-left: 200px;
}

/* 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.css */
.video-player .controls .button {
  border: none;
}

/* 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-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: 100%;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-right: 2px;
  margin-top: 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::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;
}
.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;
}
.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/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;
}
.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__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;
}
/*# sourceMappingURL=metro.css.map */
