/* ../metroui-lib/source/reset/reset.less */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
[tabindex="-1"]:focus {
  outline: none !important;
}
[hidden] {
  display: none !important;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
svg:not(:root) {
  overflow: hidden;
}
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
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;
}

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

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

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

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

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

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

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

/* ../metroui-lib/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%;
}

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

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

/* ../metroui-lib/source/common-css/font.less */
@font-face {
  font-family: "digital";
  font-weight: 400;
  font-style: normal;
  src: url(data:application/font-woff;base64,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);
}
:root {
  --font-name:
    -apple-system,
    system-ui,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Ubuntu",
    "Helvetica Neue",
    sans-serif;
  --font-symbol:
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    Segoe UI Symbol,
    "Noto Color Emoji";
  --font-size: 1rem;
  --line-height: 1.5;
  --font-style: normal;
  --font-weight: 400;
}
html {
  font-family: var(--font-name);
  font-size: 100%;
}
body {
  font-family: var(--font-name);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-style: var(--font-style);
  font-weight: var(--font-weight);
}

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

/* ../metroui-lib/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: hsl(0, 0%, 55%);
  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;
}

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

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

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

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

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

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

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

/* ../metroui-lib/source/common-css/z-index.less */
:root {
  --z-index-selected: 100;
  --z-index-absolute: 500;
  --z-index-dropdown: 1000;
  --z-index-sticky: 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: var(--z-index-absolute) !important;
}
.z-dropdown {
  z-index: var(--z-index-dropdown) !important;
}
.z-sticky {
  z-index: var(--z-index-sticky) !important;
}
.z-fixed {
  z-index: var(--z-index-fixed) !important;
}
.z-modal-backdrop {
  z-index: var(--z-index-modal-backdrop) !important;
}
.z-modal {
  z-index: var(--z-index-modal) !important;
}
.z-popover {
  z-index: var(--z-index-popover) !important;
}
.z-tooltip {
  z-index: var(--z-index-tooltip) !important;
}
.z-top {
  z-index: var(--z-index-top) !important;
}
.z-notify {
  z-index: var(--z-index-notify) !important;
}
.z-charms {
  z-index: var(--z-index-charms) !important;
}
.z-overlay {
  z-index: var(--z-index-overlay) !important;
}
.z-fullscreen {
  z-index: var(--z-index-fullscreen) !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;
}

/* ../metroui-lib/source/colors-css/vars.less */
:root {
  --color-dark: #1d1d1d;
  --color-light: #f8f8f8;
  --color-gray: hsl(0, 0%, 80%);
  --color-gray-blue: hsl(210, 26%, 54%);
  --color-gray-white: hsl(0, 0%, 96%);
  --color-gray-mouse: hsl(199, 15%, 40%);
  --color-lime: hsl(93, 97%, 71%);
  --color-green: hsl(120, 100%, 35%);
  --color-emerald: hsl(140, 52%, 55%);
  --color-blue: hsl(225, 100%, 68%);
  --color-teal: hsl(180, 77%, 44%);
  --color-cyan: hsl(221, 100%, 79%);
  --color-cobalt: hsl(215, 100%, 34%);
  --color-indigo: hsl(276, 100%, 33%);
  --color-almost: hsl(259, 84%, 55%);
  --color-violet: hsl(300, 76%, 72%);
  --color-pink: hsl(350, 100%, 88%);
  --color-magenta: hsl(300, 100%, 50%);
  --color-crimson: hsl(348, 88%, 46%);
  --color-red: hsl(0, 100%, 50%);
  --color-clown: hsl(3, 100%, 70%);
  --color-orange: hsl(39, 100%, 50%);
  --color-amber: hsl(45, 100%, 58%);
  --color-yellow: hsl(52, 100%, 68%);
  --color-brown: hsl(25, 57%, 51%);
  --color-olive: hsl(60, 100%, 32%);
  --color-steel: hsl(209, 19%, 57%);
  --color-mauve: hsl(277, 100%, 84%);
  --color-taupe: hsl(29, 19%, 50%);
  --color-champagne: hsl(37, 74%, 88%);
  --color-khaki: hsl(47, 47%, 69%);
  --color-charcoal: hsl(0, 0%, 60%);
  --color-bronze: hsl(29, 75%, 57%);
  --color-windstorm: hsl(216, 53%, 66%);
  --color-nude: hsl(29, 79%, 85%);
  --color-terracotta: hsl(10, 76%, 55%);
  --color-coral: hsl(16, 100%, 67%);
  --color-army: hsl(69, 34%, 30%);
  --color-seashell: hsl(25, 100%, 95%);
  --color-sand: hsl(45, 71%, 81%);
  --color-dark-lime: hsl(93, 97%, 46%);
  --color-dark-green: hsl(120, 100%, 10%);
  --color-dark-emerald: hsl(140, 52%, 30%);
  --color-dark-blue: hsl(225, 100%, 43%);
  --color-dark-teal: hsl(180, 77%, 19%);
  --color-dark-cyan: hsl(221, 100%, 54%);
  --color-dark-cobalt: hsl(215, 100%, 9%);
  --color-dark-indigo: hsl(276, 100%, 8%);
  --color-dark-almost: hsl(259, 84%, 30%);
  --color-dark-violet: hsl(300, 76%, 47%);
  --color-dark-pink: hsl(350, 100%, 63%);
  --color-dark-magenta: hsl(300, 100%, 25%);
  --color-dark-crimson: hsl(348, 88%, 21%);
  --color-dark-red: hsl(0, 100%, 25%);
  --color-dark-clown: hsl(3, 100%, 45%);
  --color-dark-orange: hsl(39, 100%, 25%);
  --color-dark-amber: hsl(45, 100%, 33%);
  --color-dark-yellow: hsl(52, 100%, 43%);
  --color-dark-brown: hsl(25, 57%, 26%);
  --color-dark-olive: hsl(60, 100%, 7%);
  --color-dark-steel: hsl(209, 19%, 32%);
  --color-dark-mauve: hsl(277, 100%, 59%);
  --color-dark-taupe: hsl(29, 19%, 25%);
  --color-dark-champagne: hsl(37, 74%, 63%);
  --color-dark-khaki: hsl(47, 47%, 44%);
  --color-dark-charcoal: hsl(0, 0%, 35%);
  --color-dark-bronze: hsl(29, 75%, 32%);
  --color-dark-windstorm: hsl(216, 53%, 41%);
  --color-dark-nude: hsl(29, 79%, 60%);
  --color-dark-terracotta: hsl(10, 76%, 30%);
  --color-dark-coral: hsl(16, 100%, 42%);
  --color-dark-army: hsl(69, 34%, 5%);
  --color-dark-seashell: hsl(25, 100%, 70%);
  --color-dark-sand: hsl(45, 71%, 56%);
  --color-dark-gray: hsl(0, 0%, 55%);
  --color-dark-gray-blue: hsl(210, 26%, 29%);
  --color-dark-gray-mouse: hsl(199, 15%, 15%);
  --color-sat-lime: hsl(93, 97%, 56%);
  --color-sat-green: hsl(120, 100%, 20%);
  --color-sat-emerald: hsl(140, 52%, 40%);
  --color-sat-blue: hsl(225, 100%, 53%);
  --color-sat-teal: hsl(180, 77%, 29%);
  --color-sat-cyan: hsl(221, 100%, 64%);
  --color-sat-cobalt: hsl(215, 100%, 19%);
  --color-sat-indigo: hsl(276, 100%, 18%);
  --color-sat-almost: hsl(259, 84%, 40%);
  --color-sat-violet: hsl(300, 76%, 57%);
  --color-sat-pink: hsl(350, 100%, 73%);
  --color-sat-magenta: hsl(300, 100%, 35%);
  --color-sat-crimson: hsl(348, 88%, 31%);
  --color-sat-red: hsl(0, 100%, 35%);
  --color-sat-clown: hsl(3, 100%, 55%);
  --color-sat-orange: hsl(39, 100%, 35%);
  --color-sat-amber: hsl(45, 100%, 43%);
  --color-sat-yellow: hsl(52, 100%, 53%);
  --color-sat-brown: hsl(25, 57%, 36%);
  --color-sat-olive: hsl(60, 100%, 17%);
  --color-sat-steel: hsl(209, 19%, 42%);
  --color-sat-mauve: hsl(277, 100%, 69%);
  --color-sat-taupe: hsl(29, 19%, 35%);
  --color-sat-champagne: hsl(37, 74%, 73%);
  --color-sat-khaki: hsl(47, 47%, 54%);
  --color-sat-charcoal: hsl(0, 0%, 45%);
  --color-sat-bronze: hsl(29, 75%, 42%);
  --color-sat-windstorm: hsl(216, 53%, 51%);
  --color-sat-nude: hsl(29, 79%, 70%);
  --color-sat-terracotta: hsl(10, 76%, 40%);
  --color-sat-coral: hsl(16, 100%, 52%);
  --color-sat-army: hsl(69, 34%, 15%);
  --color-sat-seashell: hsl(25, 100%, 80%);
  --color-sat-sand: hsl(45, 71%, 66%);
  --color-sat-gray: hsl(0, 0%, 65%);
  --color-sat-gray-blue: hsl(210, 26%, 39%);
  --color-sat-gray-mouse: hsl(199, 15%, 25%);
  --color-light-lime: hsl(93, 97%, 91%);
  --color-light-green: hsl(120, 100%, 80%);
  --color-light-emerald: hsl(140, 52%, 85%);
  --color-light-blue: hsl(225, 100%, 93%);
  --color-light-teal: hsl(180, 77%, 79%);
  --color-light-cyan: hsl(221, 100%, 94%);
  --color-light-cobalt: hsl(215, 100%, 79%);
  --color-light-indigo: hsl(276, 100%, 78%);
  --color-light-almost: hsl(259, 84%, 85%);
  --color-light-violet: hsl(300, 76%, 92%);
  --color-light-pink: hsl(350, 100%, 98%);
  --color-light-magenta: hsl(300, 100%, 90%);
  --color-light-crimson: hsl(348, 88%, 91%);
  --color-light-red: hsl(0, 100%, 85%);
  --color-light-clown: hsl(3, 100%, 95%);
  --color-light-orange: hsl(39, 100%, 90%);
  --color-light-amber: hsl(45, 100%, 78%);
  --color-light-yellow: hsl(52, 100%, 93%);
  --color-light-brown: hsl(25, 57%, 81%);
  --color-light-olive: hsl(60, 100%, 72%);
  --color-light-steel: hsl(209, 19%, 87%);
  --color-light-mauve: hsl(277, 100%, 96%);
  --color-light-taupe: hsl(29, 19%, 80%);
  --color-light-champagne: hsl(37, 74%, 98%);
  --color-light-khaki: hsl(47, 47%, 94%);
  --color-light-charcoal: hsl(0, 0%, 90%);
  --color-light-bronze: hsl(29, 75%, 87%);
  --color-light-windstorm: hsl(216, 53%, 93%);
  --color-light-nude: hsl(29, 79%, 97%);
  --color-light-terracotta: hsl(10, 76%, 85%);
  --color-light-coral: hsl(16, 100%, 92%);
  --color-light-army: hsl(69, 34%, 75%);
  --color-light-seashell: hsl(25, 100%, 98%);
  --color-light-sand: hsl(45, 71%, 96%);
  --color-light-gray: hsl(0, 0%, 95%);
  --color-light-gray-blue: hsl(210, 26%, 84%);
  --color-light-gray-mouse: hsl(199, 15%, 70%);
  --color-minor-lime: hsl(93, 97%, 81%);
  --color-minor-green: hsl(120, 100%, 45%);
  --color-minor-emerald: hsl(140, 52%, 65%);
  --color-minor-blue: hsl(225, 100%, 78%);
  --color-minor-teal: hsl(180, 77%, 54%);
  --color-minor-cyan: hsl(221, 100%, 89%);
  --color-minor-cobalt: hsl(215, 100%, 49%);
  --color-minor-indigo: hsl(276, 100%, 48%);
  --color-minor-almost: hsl(259, 84%, 70%);
  --color-minor-violet: hsl(300, 76%, 82%);
  --color-minor-pink: hsl(350, 100%, 93%);
  --color-minor-magenta: hsl(300, 100%, 75%);
  --color-minor-crimson: hsl(348, 88%, 66%);
  --color-minor-red: hsl(0, 100%, 70%);
  --color-minor-clown: hsl(3, 100%, 85%);
  --color-minor-orange: hsl(39, 100%, 75%);
  --color-minor-amber: hsl(45, 100%, 68%);
  --color-minor-yellow: hsl(52, 100%, 83%);
  --color-minor-brown: hsl(25, 57%, 66%);
  --color-minor-olive: hsl(60, 100%, 42%);
  --color-minor-steel: hsl(209, 19%, 77%);
  --color-minor-mauve: hsl(277, 100%, 90%);
  --color-minor-taupe: hsl(29, 19%, 67%);
  --color-minor-champagne: hsl(37, 74%, 93%);
  --color-minor-khaki: hsl(47, 47%, 84%);
  --color-minor-charcoal: hsl(0, 0%, 80%);
  --color-minor-bronze: hsl(29, 75%, 72%);
  --color-minor-windstorm: hsl(216, 53%, 81%);
  --color-minor-nude: hsl(29, 79%, 92%);
  --color-minor-terracotta: hsl(10, 76%, 70%);
  --color-minor-coral: hsl(16, 100%, 82%);
  --color-minor-army: hsl(69, 34%, 47%);
  --color-minor-seashell: hsl(25, 100%, 97%);
  --color-minor-sand: hsl(45, 71%, 88%);
  --color-minor-gray: hsl(0, 0%, 87%);
  --color-minor-gray-blue: hsl(210, 26%, 69%);
  --color-minor-gray-mouse: hsl(199, 15%, 55%);
  --color-hover-default: rgba(29, 29, 29, 0.1);
  --color-success: green;
  --color-alert: #c10000;
  --color-warning: orange;
  --color-info: #468cff;
  --color-primary: #f75553;
  --color-secondary: #74290a;
  --color-tertiary: #ffbebd;
}

/* ../metroui-lib/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-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: hsl(0, 0%, 80%) !important;
}
.bg-gray-active:active {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-gray-hover:hover {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-gray-focus:focus {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-gray-blue {
  background-color: hsl(210, 26%, 54%) !important;
}
.bg-gray-blue-active:active {
  background-color: hsl(210, 26%, 54%) !important;
}
.bg-gray-blue-hover:hover {
  background-color: hsl(210, 26%, 54%) !important;
}
.bg-gray-blue-focus:focus {
  background-color: hsl(210, 26%, 54%) !important;
}
.bg-gray-white {
  background-color: hsl(0, 0%, 96%) !important;
}
.bg-gray-white-active:active {
  background-color: hsl(0, 0%, 96%) !important;
}
.bg-gray-white-hover:hover {
  background-color: hsl(0, 0%, 96%) !important;
}
.bg-gray-white-focus:focus {
  background-color: hsl(0, 0%, 96%) !important;
}
.bg-gray-mouse {
  background-color: hsl(199, 15%, 40%) !important;
}
.bg-gray-mouse-active:active {
  background-color: hsl(199, 15%, 40%) !important;
}
.bg-gray-mouse-hover:hover {
  background-color: hsl(199, 15%, 40%) !important;
}
.bg-gray-mouse-focus:focus {
  background-color: hsl(199, 15%, 40%) !important;
}
.bg-lime {
  background-color: hsl(93, 97%, 71%) !important;
}
.bg-lime-active:active {
  background-color: hsl(93, 97%, 71%) !important;
}
.bg-lime-hover:hover {
  background-color: hsl(93, 97%, 71%) !important;
}
.bg-lime-focus:focus {
  background-color: hsl(93, 97%, 71%) !important;
}
.bg-green {
  background-color: hsl(120, 100%, 35%) !important;
}
.bg-green-active:active {
  background-color: hsl(120, 100%, 35%) !important;
}
.bg-green-hover:hover {
  background-color: hsl(120, 100%, 35%) !important;
}
.bg-green-focus:focus {
  background-color: hsl(120, 100%, 35%) !important;
}
.bg-emerald {
  background-color: hsl(140, 52%, 55%) !important;
}
.bg-emerald-active:active {
  background-color: hsl(140, 52%, 55%) !important;
}
.bg-emerald-hover:hover {
  background-color: hsl(140, 52%, 55%) !important;
}
.bg-emerald-focus:focus {
  background-color: hsl(140, 52%, 55%) !important;
}
.bg-blue {
  background-color: hsl(225, 100%, 68%) !important;
}
.bg-blue-active:active {
  background-color: hsl(225, 100%, 68%) !important;
}
.bg-blue-hover:hover {
  background-color: hsl(225, 100%, 68%) !important;
}
.bg-blue-focus:focus {
  background-color: hsl(225, 100%, 68%) !important;
}
.bg-teal {
  background-color: hsl(180, 77%, 44%) !important;
}
.bg-teal-active:active {
  background-color: hsl(180, 77%, 44%) !important;
}
.bg-teal-hover:hover {
  background-color: hsl(180, 77%, 44%) !important;
}
.bg-teal-focus:focus {
  background-color: hsl(180, 77%, 44%) !important;
}
.bg-cyan {
  background-color: hsl(221, 100%, 79%) !important;
}
.bg-cyan-active:active {
  background-color: hsl(221, 100%, 79%) !important;
}
.bg-cyan-hover:hover {
  background-color: hsl(221, 100%, 79%) !important;
}
.bg-cyan-focus:focus {
  background-color: hsl(221, 100%, 79%) !important;
}
.bg-cobalt {
  background-color: hsl(215, 100%, 34%) !important;
}
.bg-cobalt-active:active {
  background-color: hsl(215, 100%, 34%) !important;
}
.bg-cobalt-hover:hover {
  background-color: hsl(215, 100%, 34%) !important;
}
.bg-cobalt-focus:focus {
  background-color: hsl(215, 100%, 34%) !important;
}
.bg-indigo {
  background-color: hsl(276, 100%, 33%) !important;
}
.bg-indigo-active:active {
  background-color: hsl(276, 100%, 33%) !important;
}
.bg-indigo-hover:hover {
  background-color: hsl(276, 100%, 33%) !important;
}
.bg-indigo-focus:focus {
  background-color: hsl(276, 100%, 33%) !important;
}
.bg-almost {
  background-color: hsl(259, 84%, 55%) !important;
}
.bg-almost-active:active {
  background-color: hsl(259, 84%, 55%) !important;
}
.bg-almost-hover:hover {
  background-color: hsl(259, 84%, 55%) !important;
}
.bg-almost-focus:focus {
  background-color: hsl(259, 84%, 55%) !important;
}
.bg-violet {
  background-color: hsl(300, 76%, 72%) !important;
}
.bg-violet-active:active {
  background-color: hsl(300, 76%, 72%) !important;
}
.bg-violet-hover:hover {
  background-color: hsl(300, 76%, 72%) !important;
}
.bg-violet-focus:focus {
  background-color: hsl(300, 76%, 72%) !important;
}
.bg-pink {
  background-color: hsl(350, 100%, 88%) !important;
}
.bg-pink-active:active {
  background-color: hsl(350, 100%, 88%) !important;
}
.bg-pink-hover:hover {
  background-color: hsl(350, 100%, 88%) !important;
}
.bg-pink-focus:focus {
  background-color: hsl(350, 100%, 88%) !important;
}
.bg-magenta {
  background-color: hsl(300, 100%, 50%) !important;
}
.bg-magenta-active:active {
  background-color: hsl(300, 100%, 50%) !important;
}
.bg-magenta-hover:hover {
  background-color: hsl(300, 100%, 50%) !important;
}
.bg-magenta-focus:focus {
  background-color: hsl(300, 100%, 50%) !important;
}
.bg-crimson {
  background-color: hsl(348, 88%, 46%) !important;
}
.bg-crimson-active:active {
  background-color: hsl(348, 88%, 46%) !important;
}
.bg-crimson-hover:hover {
  background-color: hsl(348, 88%, 46%) !important;
}
.bg-crimson-focus:focus {
  background-color: hsl(348, 88%, 46%) !important;
}
.bg-red {
  background-color: hsl(0, 100%, 50%) !important;
}
.bg-red-active:active {
  background-color: hsl(0, 100%, 50%) !important;
}
.bg-red-hover:hover {
  background-color: hsl(0, 100%, 50%) !important;
}
.bg-red-focus:focus {
  background-color: hsl(0, 100%, 50%) !important;
}
.bg-clown {
  background-color: hsl(3, 100%, 70%) !important;
}
.bg-clown-active:active {
  background-color: hsl(3, 100%, 70%) !important;
}
.bg-clown-hover:hover {
  background-color: hsl(3, 100%, 70%) !important;
}
.bg-clown-focus:focus {
  background-color: hsl(3, 100%, 70%) !important;
}
.bg-orange {
  background-color: hsl(39, 100%, 50%) !important;
}
.bg-orange-active:active {
  background-color: hsl(39, 100%, 50%) !important;
}
.bg-orange-hover:hover {
  background-color: hsl(39, 100%, 50%) !important;
}
.bg-orange-focus:focus {
  background-color: hsl(39, 100%, 50%) !important;
}
.bg-amber {
  background-color: hsl(45, 100%, 58%) !important;
}
.bg-amber-active:active {
  background-color: hsl(45, 100%, 58%) !important;
}
.bg-amber-hover:hover {
  background-color: hsl(45, 100%, 58%) !important;
}
.bg-amber-focus:focus {
  background-color: hsl(45, 100%, 58%) !important;
}
.bg-yellow {
  background-color: hsl(52, 100%, 68%) !important;
}
.bg-yellow-active:active {
  background-color: hsl(52, 100%, 68%) !important;
}
.bg-yellow-hover:hover {
  background-color: hsl(52, 100%, 68%) !important;
}
.bg-yellow-focus:focus {
  background-color: hsl(52, 100%, 68%) !important;
}
.bg-brown {
  background-color: hsl(25, 57%, 51%) !important;
}
.bg-brown-active:active {
  background-color: hsl(25, 57%, 51%) !important;
}
.bg-brown-hover:hover {
  background-color: hsl(25, 57%, 51%) !important;
}
.bg-brown-focus:focus {
  background-color: hsl(25, 57%, 51%) !important;
}
.bg-olive {
  background-color: hsl(60, 100%, 32%) !important;
}
.bg-olive-active:active {
  background-color: hsl(60, 100%, 32%) !important;
}
.bg-olive-hover:hover {
  background-color: hsl(60, 100%, 32%) !important;
}
.bg-olive-focus:focus {
  background-color: hsl(60, 100%, 32%) !important;
}
.bg-steel {
  background-color: hsl(209, 19%, 57%) !important;
}
.bg-steel-active:active {
  background-color: hsl(209, 19%, 57%) !important;
}
.bg-steel-hover:hover {
  background-color: hsl(209, 19%, 57%) !important;
}
.bg-steel-focus:focus {
  background-color: hsl(209, 19%, 57%) !important;
}
.bg-mauve {
  background-color: hsl(277, 100%, 84%) !important;
}
.bg-mauve-active:active {
  background-color: hsl(277, 100%, 84%) !important;
}
.bg-mauve-hover:hover {
  background-color: hsl(277, 100%, 84%) !important;
}
.bg-mauve-focus:focus {
  background-color: hsl(277, 100%, 84%) !important;
}
.bg-taupe {
  background-color: hsl(29, 19%, 50%) !important;
}
.bg-taupe-active:active {
  background-color: hsl(29, 19%, 50%) !important;
}
.bg-taupe-hover:hover {
  background-color: hsl(29, 19%, 50%) !important;
}
.bg-taupe-focus:focus {
  background-color: hsl(29, 19%, 50%) !important;
}
.bg-champagne {
  background-color: hsl(37, 74%, 88%) !important;
}
.bg-champagne-active:active {
  background-color: hsl(37, 74%, 88%) !important;
}
.bg-champagne-hover:hover {
  background-color: hsl(37, 74%, 88%) !important;
}
.bg-champagne-focus:focus {
  background-color: hsl(37, 74%, 88%) !important;
}
.bg-khaki {
  background-color: hsl(47, 47%, 69%) !important;
}
.bg-khaki-active:active {
  background-color: hsl(47, 47%, 69%) !important;
}
.bg-khaki-hover:hover {
  background-color: hsl(47, 47%, 69%) !important;
}
.bg-khaki-focus:focus {
  background-color: hsl(47, 47%, 69%) !important;
}
.bg-charcoal {
  background-color: hsl(0, 0%, 60%) !important;
}
.bg-charcoal-active:active {
  background-color: hsl(0, 0%, 60%) !important;
}
.bg-charcoal-hover:hover {
  background-color: hsl(0, 0%, 60%) !important;
}
.bg-charcoal-focus:focus {
  background-color: hsl(0, 0%, 60%) !important;
}
.bg-bronze {
  background-color: hsl(29, 75%, 57%) !important;
}
.bg-bronze-active:active {
  background-color: hsl(29, 75%, 57%) !important;
}
.bg-bronze-hover:hover {
  background-color: hsl(29, 75%, 57%) !important;
}
.bg-bronze-focus:focus {
  background-color: hsl(29, 75%, 57%) !important;
}
.bg-windstorm {
  background-color: hsl(216, 53%, 66%) !important;
}
.bg-windstorm-active:active {
  background-color: hsl(216, 53%, 66%) !important;
}
.bg-windstorm-hover:hover {
  background-color: hsl(216, 53%, 66%) !important;
}
.bg-windstorm-focus:focus {
  background-color: hsl(216, 53%, 66%) !important;
}
.bg-nude {
  background-color: hsl(29, 79%, 85%) !important;
}
.bg-nude-active:active {
  background-color: hsl(29, 79%, 85%) !important;
}
.bg-nude-hover:hover {
  background-color: hsl(29, 79%, 85%) !important;
}
.bg-nude-focus:focus {
  background-color: hsl(29, 79%, 85%) !important;
}
.bg-terracotta {
  background-color: hsl(10, 76%, 55%) !important;
}
.bg-terracotta-active:active {
  background-color: hsl(10, 76%, 55%) !important;
}
.bg-terracotta-hover:hover {
  background-color: hsl(10, 76%, 55%) !important;
}
.bg-terracotta-focus:focus {
  background-color: hsl(10, 76%, 55%) !important;
}
.bg-coral {
  background-color: hsl(16, 100%, 67%) !important;
}
.bg-coral-active:active {
  background-color: hsl(16, 100%, 67%) !important;
}
.bg-coral-hover:hover {
  background-color: hsl(16, 100%, 67%) !important;
}
.bg-coral-focus:focus {
  background-color: hsl(16, 100%, 67%) !important;
}
.bg-army {
  background-color: hsl(69, 34%, 30%) !important;
}
.bg-army-active:active {
  background-color: hsl(69, 34%, 30%) !important;
}
.bg-army-hover:hover {
  background-color: hsl(69, 34%, 30%) !important;
}
.bg-army-focus:focus {
  background-color: hsl(69, 34%, 30%) !important;
}
.bg-seashell {
  background-color: hsl(25, 100%, 95%) !important;
}
.bg-seashell-active:active {
  background-color: hsl(25, 100%, 95%) !important;
}
.bg-seashell-hover:hover {
  background-color: hsl(25, 100%, 95%) !important;
}
.bg-seashell-focus:focus {
  background-color: hsl(25, 100%, 95%) !important;
}
.bg-sand {
  background-color: hsl(45, 71%, 81%) !important;
}
.bg-sand-active:active {
  background-color: hsl(45, 71%, 81%) !important;
}
.bg-sand-hover:hover {
  background-color: hsl(45, 71%, 81%) !important;
}
.bg-sand-focus:focus {
  background-color: hsl(45, 71%, 81%) !important;
}
.bg-light-gray {
  background-color: hsl(0, 0%, 95%) !important;
}
.bg-light-gray-active:active {
  background-color: hsl(0, 0%, 95%) !important;
}
.bg-light-gray-hover:hover {
  background-color: hsl(0, 0%, 95%) !important;
}
.bg-light-gray-focus:focus {
  background-color: hsl(0, 0%, 95%) !important;
}
.bg-minor-gray {
  background-color: hsl(0, 0%, 87%) !important;
}
.bg-minor-gray-active:active {
  background-color: hsl(0, 0%, 87%) !important;
}
.bg-minor-gray-hover:hover {
  background-color: hsl(0, 0%, 87%) !important;
}
.bg-minor-gray-focus:focus {
  background-color: hsl(0, 0%, 87%) !important;
}
.bg-sat-gray {
  background-color: hsl(0, 0%, 65%) !important;
}
.bg-sat-gray-active:active {
  background-color: hsl(0, 0%, 65%) !important;
}
.bg-sat-gray-hover:hover {
  background-color: hsl(0, 0%, 65%) !important;
}
.bg-sat-gray-focus:focus {
  background-color: hsl(0, 0%, 65%) !important;
}
.bg-dark-gray {
  background-color: hsl(0, 0%, 55%) !important;
}
.bg-dark-gray-active:active {
  background-color: hsl(0, 0%, 55%) !important;
}
.bg-dark-gray-hover:hover {
  background-color: hsl(0, 0%, 55%) !important;
}
.bg-dark-gray-focus:focus {
  background-color: hsl(0, 0%, 55%) !important;
}
.bg-light-gray-blue {
  background-color: hsl(210, 26%, 84%) !important;
}
.bg-light-gray-blue-active:active {
  background-color: hsl(210, 26%, 84%) !important;
}
.bg-light-gray-blue-hover:hover {
  background-color: hsl(210, 26%, 84%) !important;
}
.bg-light-gray-blue-focus:focus {
  background-color: hsl(210, 26%, 84%) !important;
}
.bg-minor-gray-blue {
  background-color: hsl(210, 26%, 69%) !important;
}
.bg-minor-gray-blue-active:active {
  background-color: hsl(210, 26%, 69%) !important;
}
.bg-minor-gray-blue-hover:hover {
  background-color: hsl(210, 26%, 69%) !important;
}
.bg-minor-gray-blue-focus:focus {
  background-color: hsl(210, 26%, 69%) !important;
}
.bg-sat-gray-blue {
  background-color: hsl(210, 26%, 39%) !important;
}
.bg-sat-gray-blue-active:active {
  background-color: hsl(210, 26%, 39%) !important;
}
.bg-sat-gray-blue-hover:hover {
  background-color: hsl(210, 26%, 39%) !important;
}
.bg-sat-gray-blue-focus:focus {
  background-color: hsl(210, 26%, 39%) !important;
}
.bg-dark-gray-blue {
  background-color: hsl(210, 26%, 29%) !important;
}
.bg-dark-gray-blue-active:active {
  background-color: hsl(210, 26%, 29%) !important;
}
.bg-dark-gray-blue-hover:hover {
  background-color: hsl(210, 26%, 29%) !important;
}
.bg-dark-gray-blue-focus:focus {
  background-color: hsl(210, 26%, 29%) !important;
}
.bg-light-gray-mouse {
  background-color: hsl(199, 15%, 70%) !important;
}
.bg-light-gray-mouse-active:active {
  background-color: hsl(199, 15%, 70%) !important;
}
.bg-light-gray-mouse-hover:hover {
  background-color: hsl(199, 15%, 70%) !important;
}
.bg-light-gray-mouse-focus:focus {
  background-color: hsl(199, 15%, 70%) !important;
}
.bg-minor-gray-mouse {
  background-color: hsl(199, 15%, 55%) !important;
}
.bg-minor-gray-mouse-active:active {
  background-color: hsl(199, 15%, 55%) !important;
}
.bg-minor-gray-mouse-hover:hover {
  background-color: hsl(199, 15%, 55%) !important;
}
.bg-minor-gray-mouse-focus:focus {
  background-color: hsl(199, 15%, 55%) !important;
}
.bg-sat-gray-mouse {
  background-color: hsl(199, 15%, 25%) !important;
}
.bg-sat-gray-mouse-active:active {
  background-color: hsl(199, 15%, 25%) !important;
}
.bg-sat-gray-mouse-hover:hover {
  background-color: hsl(199, 15%, 25%) !important;
}
.bg-sat-gray-mouse-focus:focus {
  background-color: hsl(199, 15%, 25%) !important;
}
.bg-dark-gray-mouse {
  background-color: hsl(199, 15%, 15%) !important;
}
.bg-dark-gray-mouse-active:active {
  background-color: hsl(199, 15%, 15%) !important;
}
.bg-dark-gray-mouse-hover:hover {
  background-color: hsl(199, 15%, 15%) !important;
}
.bg-dark-gray-mouse-focus:focus {
  background-color: hsl(199, 15%, 15%) !important;
}
.bg-light-lime {
  background-color: hsl(93, 97%, 91%) !important;
}
.bg-light-lime-active:active {
  background-color: hsl(93, 97%, 91%) !important;
}
.bg-light-lime-hover:hover {
  background-color: hsl(93, 97%, 91%) !important;
}
.bg-light-lime-focus:focus {
  background-color: hsl(93, 97%, 91%) !important;
}
.bg-minor-lime {
  background-color: hsl(93, 97%, 81%) !important;
}
.bg-minor-lime-active:active {
  background-color: hsl(93, 97%, 81%) !important;
}
.bg-minor-lime-hover:hover {
  background-color: hsl(93, 97%, 81%) !important;
}
.bg-minor-lime-focus:focus {
  background-color: hsl(93, 97%, 81%) !important;
}
.bg-sat-lime {
  background-color: hsl(93, 97%, 56%) !important;
}
.bg-sat-lime-active:active {
  background-color: hsl(93, 97%, 56%) !important;
}
.bg-sat-lime-hover:hover {
  background-color: hsl(93, 97%, 56%) !important;
}
.bg-sat-lime-focus:focus {
  background-color: hsl(93, 97%, 56%) !important;
}
.bg-dark-lime {
  background-color: hsl(93, 97%, 46%) !important;
}
.bg-dark-lime-active:active {
  background-color: hsl(93, 97%, 46%) !important;
}
.bg-dark-lime-hover:hover {
  background-color: hsl(93, 97%, 46%) !important;
}
.bg-dark-lime-focus:focus {
  background-color: hsl(93, 97%, 46%) !important;
}
.bg-light-green {
  background-color: hsl(120, 100%, 80%) !important;
}
.bg-light-green-active:active {
  background-color: hsl(120, 100%, 80%) !important;
}
.bg-light-green-hover:hover {
  background-color: hsl(120, 100%, 80%) !important;
}
.bg-light-green-focus:focus {
  background-color: hsl(120, 100%, 80%) !important;
}
.bg-minor-green {
  background-color: hsl(120, 100%, 45%) !important;
}
.bg-minor-green-active:active {
  background-color: hsl(120, 100%, 45%) !important;
}
.bg-minor-green-hover:hover {
  background-color: hsl(120, 100%, 45%) !important;
}
.bg-minor-green-focus:focus {
  background-color: hsl(120, 100%, 45%) !important;
}
.bg-sat-green {
  background-color: hsl(120, 100%, 20%) !important;
}
.bg-sat-green-active:active {
  background-color: hsl(120, 100%, 20%) !important;
}
.bg-sat-green-hover:hover {
  background-color: hsl(120, 100%, 20%) !important;
}
.bg-sat-green-focus:focus {
  background-color: hsl(120, 100%, 20%) !important;
}
.bg-dark-green {
  background-color: hsl(120, 100%, 10%) !important;
}
.bg-dark-green-active:active {
  background-color: hsl(120, 100%, 10%) !important;
}
.bg-dark-green-hover:hover {
  background-color: hsl(120, 100%, 10%) !important;
}
.bg-dark-green-focus:focus {
  background-color: hsl(120, 100%, 10%) !important;
}
.bg-light-emerald {
  background-color: hsl(140, 52%, 85%) !important;
}
.bg-light-emerald-active:active {
  background-color: hsl(140, 52%, 85%) !important;
}
.bg-light-emerald-hover:hover {
  background-color: hsl(140, 52%, 85%) !important;
}
.bg-light-emerald-focus:focus {
  background-color: hsl(140, 52%, 85%) !important;
}
.bg-minor-emerald {
  background-color: hsl(140, 52%, 65%) !important;
}
.bg-minor-emerald-active:active {
  background-color: hsl(140, 52%, 65%) !important;
}
.bg-minor-emerald-hover:hover {
  background-color: hsl(140, 52%, 65%) !important;
}
.bg-minor-emerald-focus:focus {
  background-color: hsl(140, 52%, 65%) !important;
}
.bg-sat-emerald {
  background-color: hsl(140, 52%, 40%) !important;
}
.bg-sat-emerald-active:active {
  background-color: hsl(140, 52%, 40%) !important;
}
.bg-sat-emerald-hover:hover {
  background-color: hsl(140, 52%, 40%) !important;
}
.bg-sat-emerald-focus:focus {
  background-color: hsl(140, 52%, 40%) !important;
}
.bg-dark-emerald {
  background-color: hsl(140, 52%, 30%) !important;
}
.bg-dark-emerald-active:active {
  background-color: hsl(140, 52%, 30%) !important;
}
.bg-dark-emerald-hover:hover {
  background-color: hsl(140, 52%, 30%) !important;
}
.bg-dark-emerald-focus:focus {
  background-color: hsl(140, 52%, 30%) !important;
}
.bg-light-blue {
  background-color: hsl(225, 100%, 93%) !important;
}
.bg-light-blue-active:active {
  background-color: hsl(225, 100%, 93%) !important;
}
.bg-light-blue-hover:hover {
  background-color: hsl(225, 100%, 93%) !important;
}
.bg-light-blue-focus:focus {
  background-color: hsl(225, 100%, 93%) !important;
}
.bg-minor-blue {
  background-color: hsl(225, 100%, 78%) !important;
}
.bg-minor-blue-active:active {
  background-color: hsl(225, 100%, 78%) !important;
}
.bg-minor-blue-hover:hover {
  background-color: hsl(225, 100%, 78%) !important;
}
.bg-minor-blue-focus:focus {
  background-color: hsl(225, 100%, 78%) !important;
}
.bg-sat-blue {
  background-color: hsl(225, 100%, 53%) !important;
}
.bg-sat-blue-active:active {
  background-color: hsl(225, 100%, 53%) !important;
}
.bg-sat-blue-hover:hover {
  background-color: hsl(225, 100%, 53%) !important;
}
.bg-sat-blue-focus:focus {
  background-color: hsl(225, 100%, 53%) !important;
}
.bg-dark-blue {
  background-color: hsl(225, 100%, 43%) !important;
}
.bg-dark-blue-active:active {
  background-color: hsl(225, 100%, 43%) !important;
}
.bg-dark-blue-hover:hover {
  background-color: hsl(225, 100%, 43%) !important;
}
.bg-dark-blue-focus:focus {
  background-color: hsl(225, 100%, 43%) !important;
}
.bg-light-teal {
  background-color: hsl(180, 77%, 79%) !important;
}
.bg-light-teal-active:active {
  background-color: hsl(180, 77%, 79%) !important;
}
.bg-light-teal-hover:hover {
  background-color: hsl(180, 77%, 79%) !important;
}
.bg-light-teal-focus:focus {
  background-color: hsl(180, 77%, 79%) !important;
}
.bg-minor-teal {
  background-color: hsl(180, 77%, 54%) !important;
}
.bg-minor-teal-active:active {
  background-color: hsl(180, 77%, 54%) !important;
}
.bg-minor-teal-hover:hover {
  background-color: hsl(180, 77%, 54%) !important;
}
.bg-minor-teal-focus:focus {
  background-color: hsl(180, 77%, 54%) !important;
}
.bg-sat-teal {
  background-color: hsl(180, 77%, 29%) !important;
}
.bg-sat-teal-active:active {
  background-color: hsl(180, 77%, 29%) !important;
}
.bg-sat-teal-hover:hover {
  background-color: hsl(180, 77%, 29%) !important;
}
.bg-sat-teal-focus:focus {
  background-color: hsl(180, 77%, 29%) !important;
}
.bg-dark-teal {
  background-color: hsl(180, 77%, 19%) !important;
}
.bg-dark-teal-active:active {
  background-color: hsl(180, 77%, 19%) !important;
}
.bg-dark-teal-hover:hover {
  background-color: hsl(180, 77%, 19%) !important;
}
.bg-dark-teal-focus:focus {
  background-color: hsl(180, 77%, 19%) !important;
}
.bg-light-cyan {
  background-color: hsl(221, 100%, 94%) !important;
}
.bg-light-cyan-active:active {
  background-color: hsl(221, 100%, 94%) !important;
}
.bg-light-cyan-hover:hover {
  background-color: hsl(221, 100%, 94%) !important;
}
.bg-light-cyan-focus:focus {
  background-color: hsl(221, 100%, 94%) !important;
}
.bg-minor-cyan {
  background-color: hsl(221, 100%, 89%) !important;
}
.bg-minor-cyan-active:active {
  background-color: hsl(221, 100%, 89%) !important;
}
.bg-minor-cyan-hover:hover {
  background-color: hsl(221, 100%, 89%) !important;
}
.bg-minor-cyan-focus:focus {
  background-color: hsl(221, 100%, 89%) !important;
}
.bg-sat-cyan {
  background-color: hsl(221, 100%, 64%) !important;
}
.bg-sat-cyan-active:active {
  background-color: hsl(221, 100%, 64%) !important;
}
.bg-sat-cyan-hover:hover {
  background-color: hsl(221, 100%, 64%) !important;
}
.bg-sat-cyan-focus:focus {
  background-color: hsl(221, 100%, 64%) !important;
}
.bg-dark-cyan {
  background-color: hsl(221, 100%, 54%) !important;
}
.bg-dark-cyan-active:active {
  background-color: hsl(221, 100%, 54%) !important;
}
.bg-dark-cyan-hover:hover {
  background-color: hsl(221, 100%, 54%) !important;
}
.bg-dark-cyan-focus:focus {
  background-color: hsl(221, 100%, 54%) !important;
}
.bg-light-cobalt {
  background-color: hsl(215, 100%, 79%) !important;
}
.bg-light-cobalt-active:active {
  background-color: hsl(215, 100%, 79%) !important;
}
.bg-light-cobalt-hover:hover {
  background-color: hsl(215, 100%, 79%) !important;
}
.bg-light-cobalt-focus:focus {
  background-color: hsl(215, 100%, 79%) !important;
}
.bg-minor-cobalt {
  background-color: hsl(215, 100%, 49%) !important;
}
.bg-minor-cobalt-active:active {
  background-color: hsl(215, 100%, 49%) !important;
}
.bg-minor-cobalt-hover:hover {
  background-color: hsl(215, 100%, 49%) !important;
}
.bg-minor-cobalt-focus:focus {
  background-color: hsl(215, 100%, 49%) !important;
}
.bg-sat-cobalt {
  background-color: hsl(215, 100%, 19%) !important;
}
.bg-sat-cobalt-active:active {
  background-color: hsl(215, 100%, 19%) !important;
}
.bg-sat-cobalt-hover:hover {
  background-color: hsl(215, 100%, 19%) !important;
}
.bg-sat-cobalt-focus:focus {
  background-color: hsl(215, 100%, 19%) !important;
}
.bg-dark-cobalt {
  background-color: hsl(215, 100%, 9%) !important;
}
.bg-dark-cobalt-active:active {
  background-color: hsl(215, 100%, 9%) !important;
}
.bg-dark-cobalt-hover:hover {
  background-color: hsl(215, 100%, 9%) !important;
}
.bg-dark-cobalt-focus:focus {
  background-color: hsl(215, 100%, 9%) !important;
}
.bg-light-indigo {
  background-color: hsl(276, 100%, 78%) !important;
}
.bg-light-indigo-active:active {
  background-color: hsl(276, 100%, 78%) !important;
}
.bg-light-indigo-hover:hover {
  background-color: hsl(276, 100%, 78%) !important;
}
.bg-light-indigo-focus:focus {
  background-color: hsl(276, 100%, 78%) !important;
}
.bg-minor-indigo {
  background-color: hsl(276, 100%, 48%) !important;
}
.bg-minor-indigo-active:active {
  background-color: hsl(276, 100%, 48%) !important;
}
.bg-minor-indigo-hover:hover {
  background-color: hsl(276, 100%, 48%) !important;
}
.bg-minor-indigo-focus:focus {
  background-color: hsl(276, 100%, 48%) !important;
}
.bg-sat-indigo {
  background-color: hsl(276, 100%, 18%) !important;
}
.bg-sat-indigo-active:active {
  background-color: hsl(276, 100%, 18%) !important;
}
.bg-sat-indigo-hover:hover {
  background-color: hsl(276, 100%, 18%) !important;
}
.bg-sat-indigo-focus:focus {
  background-color: hsl(276, 100%, 18%) !important;
}
.bg-dark-indigo {
  background-color: hsl(276, 100%, 8%) !important;
}
.bg-dark-indigo-active:active {
  background-color: hsl(276, 100%, 8%) !important;
}
.bg-dark-indigo-hover:hover {
  background-color: hsl(276, 100%, 8%) !important;
}
.bg-dark-indigo-focus:focus {
  background-color: hsl(276, 100%, 8%) !important;
}
.bg-light-almost {
  background-color: hsl(259, 84%, 85%) !important;
}
.bg-light-almost-active:active {
  background-color: hsl(259, 84%, 85%) !important;
}
.bg-light-almost-hover:hover {
  background-color: hsl(259, 84%, 85%) !important;
}
.bg-light-almost-focus:focus {
  background-color: hsl(259, 84%, 85%) !important;
}
.bg-minor-almost {
  background-color: hsl(259, 84%, 70%) !important;
}
.bg-minor-almost-active:active {
  background-color: hsl(259, 84%, 70%) !important;
}
.bg-minor-almost-hover:hover {
  background-color: hsl(259, 84%, 70%) !important;
}
.bg-minor-almost-focus:focus {
  background-color: hsl(259, 84%, 70%) !important;
}
.bg-sat-almost {
  background-color: hsl(259, 84%, 40%) !important;
}
.bg-sat-almost-active:active {
  background-color: hsl(259, 84%, 40%) !important;
}
.bg-sat-almost-hover:hover {
  background-color: hsl(259, 84%, 40%) !important;
}
.bg-sat-almost-focus:focus {
  background-color: hsl(259, 84%, 40%) !important;
}
.bg-dark-almost {
  background-color: hsl(259, 84%, 30%) !important;
}
.bg-dark-almost-active:active {
  background-color: hsl(259, 84%, 30%) !important;
}
.bg-dark-almost-hover:hover {
  background-color: hsl(259, 84%, 30%) !important;
}
.bg-dark-almost-focus:focus {
  background-color: hsl(259, 84%, 30%) !important;
}
.bg-light-violet {
  background-color: hsl(300, 76%, 92%) !important;
}
.bg-light-violet-active:active {
  background-color: hsl(300, 76%, 92%) !important;
}
.bg-light-violet-hover:hover {
  background-color: hsl(300, 76%, 92%) !important;
}
.bg-light-violet-focus:focus {
  background-color: hsl(300, 76%, 92%) !important;
}
.bg-minor-violet {
  background-color: hsl(300, 76%, 82%) !important;
}
.bg-minor-violet-active:active {
  background-color: hsl(300, 76%, 82%) !important;
}
.bg-minor-violet-hover:hover {
  background-color: hsl(300, 76%, 82%) !important;
}
.bg-minor-violet-focus:focus {
  background-color: hsl(300, 76%, 82%) !important;
}
.bg-sat-violet {
  background-color: hsl(300, 76%, 57%) !important;
}
.bg-sat-violet-active:active {
  background-color: hsl(300, 76%, 57%) !important;
}
.bg-sat-violet-hover:hover {
  background-color: hsl(300, 76%, 57%) !important;
}
.bg-sat-violet-focus:focus {
  background-color: hsl(300, 76%, 57%) !important;
}
.bg-dark-violet {
  background-color: hsl(300, 76%, 47%) !important;
}
.bg-dark-violet-active:active {
  background-color: hsl(300, 76%, 47%) !important;
}
.bg-dark-violet-hover:hover {
  background-color: hsl(300, 76%, 47%) !important;
}
.bg-dark-violet-focus:focus {
  background-color: hsl(300, 76%, 47%) !important;
}
.bg-light-pink {
  background-color: hsl(350, 100%, 98%) !important;
}
.bg-light-pink-active:active {
  background-color: hsl(350, 100%, 98%) !important;
}
.bg-light-pink-hover:hover {
  background-color: hsl(350, 100%, 98%) !important;
}
.bg-light-pink-focus:focus {
  background-color: hsl(350, 100%, 98%) !important;
}
.bg-minor-pink {
  background-color: hsl(350, 100%, 93%) !important;
}
.bg-minor-pink-active:active {
  background-color: hsl(350, 100%, 93%) !important;
}
.bg-minor-pink-hover:hover {
  background-color: hsl(350, 100%, 93%) !important;
}
.bg-minor-pink-focus:focus {
  background-color: hsl(350, 100%, 93%) !important;
}
.bg-sat-pink {
  background-color: hsl(350, 100%, 73%) !important;
}
.bg-sat-pink-active:active {
  background-color: hsl(350, 100%, 73%) !important;
}
.bg-sat-pink-hover:hover {
  background-color: hsl(350, 100%, 73%) !important;
}
.bg-sat-pink-focus:focus {
  background-color: hsl(350, 100%, 73%) !important;
}
.bg-dark-pink {
  background-color: hsl(350, 100%, 63%) !important;
}
.bg-dark-pink-active:active {
  background-color: hsl(350, 100%, 63%) !important;
}
.bg-dark-pink-hover:hover {
  background-color: hsl(350, 100%, 63%) !important;
}
.bg-dark-pink-focus:focus {
  background-color: hsl(350, 100%, 63%) !important;
}
.bg-light-magenta {
  background-color: hsl(300, 100%, 90%) !important;
}
.bg-light-magenta-active:active {
  background-color: hsl(300, 100%, 90%) !important;
}
.bg-light-magenta-hover:hover {
  background-color: hsl(300, 100%, 90%) !important;
}
.bg-light-magenta-focus:focus {
  background-color: hsl(300, 100%, 90%) !important;
}
.bg-minor-magenta {
  background-color: hsl(300, 100%, 75%) !important;
}
.bg-minor-magenta-active:active {
  background-color: hsl(300, 100%, 75%) !important;
}
.bg-minor-magenta-hover:hover {
  background-color: hsl(300, 100%, 75%) !important;
}
.bg-minor-magenta-focus:focus {
  background-color: hsl(300, 100%, 75%) !important;
}
.bg-sat-magenta {
  background-color: hsl(300, 100%, 35%) !important;
}
.bg-sat-magenta-active:active {
  background-color: hsl(300, 100%, 35%) !important;
}
.bg-sat-magenta-hover:hover {
  background-color: hsl(300, 100%, 35%) !important;
}
.bg-sat-magenta-focus:focus {
  background-color: hsl(300, 100%, 35%) !important;
}
.bg-dark-magenta {
  background-color: hsl(300, 100%, 25%) !important;
}
.bg-dark-magenta-active:active {
  background-color: hsl(300, 100%, 25%) !important;
}
.bg-dark-magenta-hover:hover {
  background-color: hsl(300, 100%, 25%) !important;
}
.bg-dark-magenta-focus:focus {
  background-color: hsl(300, 100%, 25%) !important;
}
.bg-light-crimson {
  background-color: hsl(348, 88%, 91%) !important;
}
.bg-light-crimson-active:active {
  background-color: hsl(348, 88%, 91%) !important;
}
.bg-light-crimson-hover:hover {
  background-color: hsl(348, 88%, 91%) !important;
}
.bg-light-crimson-focus:focus {
  background-color: hsl(348, 88%, 91%) !important;
}
.bg-minor-crimson {
  background-color: hsl(348, 88%, 66%) !important;
}
.bg-minor-crimson-active:active {
  background-color: hsl(348, 88%, 66%) !important;
}
.bg-minor-crimson-hover:hover {
  background-color: hsl(348, 88%, 66%) !important;
}
.bg-minor-crimson-focus:focus {
  background-color: hsl(348, 88%, 66%) !important;
}
.bg-sat-crimson {
  background-color: hsl(348, 88%, 31%) !important;
}
.bg-sat-crimson-active:active {
  background-color: hsl(348, 88%, 31%) !important;
}
.bg-sat-crimson-hover:hover {
  background-color: hsl(348, 88%, 31%) !important;
}
.bg-sat-crimson-focus:focus {
  background-color: hsl(348, 88%, 31%) !important;
}
.bg-dark-crimson {
  background-color: hsl(348, 88%, 21%) !important;
}
.bg-dark-crimson-active:active {
  background-color: hsl(348, 88%, 21%) !important;
}
.bg-dark-crimson-hover:hover {
  background-color: hsl(348, 88%, 21%) !important;
}
.bg-dark-crimson-focus:focus {
  background-color: hsl(348, 88%, 21%) !important;
}
.bg-light-red {
  background-color: hsl(0, 100%, 85%) !important;
}
.bg-light-red-active:active {
  background-color: hsl(0, 100%, 85%) !important;
}
.bg-light-red-hover:hover {
  background-color: hsl(0, 100%, 85%) !important;
}
.bg-light-red-focus:focus {
  background-color: hsl(0, 100%, 85%) !important;
}
.bg-minor-red {
  background-color: hsl(0, 100%, 70%) !important;
}
.bg-minor-red-active:active {
  background-color: hsl(0, 100%, 70%) !important;
}
.bg-minor-red-hover:hover {
  background-color: hsl(0, 100%, 70%) !important;
}
.bg-minor-red-focus:focus {
  background-color: hsl(0, 100%, 70%) !important;
}
.bg-sat-red {
  background-color: hsl(0, 100%, 35%) !important;
}
.bg-sat-red-active:active {
  background-color: hsl(0, 100%, 35%) !important;
}
.bg-sat-red-hover:hover {
  background-color: hsl(0, 100%, 35%) !important;
}
.bg-sat-red-focus:focus {
  background-color: hsl(0, 100%, 35%) !important;
}
.bg-dark-red {
  background-color: hsl(0, 100%, 25%) !important;
}
.bg-dark-red-active:active {
  background-color: hsl(0, 100%, 25%) !important;
}
.bg-dark-red-hover:hover {
  background-color: hsl(0, 100%, 25%) !important;
}
.bg-dark-red-focus:focus {
  background-color: hsl(0, 100%, 25%) !important;
}
.bg-light-clown {
  background-color: hsl(3, 100%, 95%) !important;
}
.bg-light-clown-active:active {
  background-color: hsl(3, 100%, 95%) !important;
}
.bg-light-clown-hover:hover {
  background-color: hsl(3, 100%, 95%) !important;
}
.bg-light-clown-focus:focus {
  background-color: hsl(3, 100%, 95%) !important;
}
.bg-minor-clown {
  background-color: hsl(3, 100%, 85%) !important;
}
.bg-minor-clown-active:active {
  background-color: hsl(3, 100%, 85%) !important;
}
.bg-minor-clown-hover:hover {
  background-color: hsl(3, 100%, 85%) !important;
}
.bg-minor-clown-focus:focus {
  background-color: hsl(3, 100%, 85%) !important;
}
.bg-sat-clown {
  background-color: hsl(3, 100%, 55%) !important;
}
.bg-sat-clown-active:active {
  background-color: hsl(3, 100%, 55%) !important;
}
.bg-sat-clown-hover:hover {
  background-color: hsl(3, 100%, 55%) !important;
}
.bg-sat-clown-focus:focus {
  background-color: hsl(3, 100%, 55%) !important;
}
.bg-dark-clown {
  background-color: hsl(3, 100%, 45%) !important;
}
.bg-dark-clown-active:active {
  background-color: hsl(3, 100%, 45%) !important;
}
.bg-dark-clown-hover:hover {
  background-color: hsl(3, 100%, 45%) !important;
}
.bg-dark-clown-focus:focus {
  background-color: hsl(3, 100%, 45%) !important;
}
.bg-light-orange {
  background-color: hsl(39, 100%, 90%) !important;
}
.bg-light-orange-active:active {
  background-color: hsl(39, 100%, 90%) !important;
}
.bg-light-orange-hover:hover {
  background-color: hsl(39, 100%, 90%) !important;
}
.bg-light-orange-focus:focus {
  background-color: hsl(39, 100%, 90%) !important;
}
.bg-minor-orange {
  background-color: hsl(39, 100%, 75%) !important;
}
.bg-minor-orange-active:active {
  background-color: hsl(39, 100%, 75%) !important;
}
.bg-minor-orange-hover:hover {
  background-color: hsl(39, 100%, 75%) !important;
}
.bg-minor-orange-focus:focus {
  background-color: hsl(39, 100%, 75%) !important;
}
.bg-sat-orange {
  background-color: hsl(39, 100%, 35%) !important;
}
.bg-sat-orange-active:active {
  background-color: hsl(39, 100%, 35%) !important;
}
.bg-sat-orange-hover:hover {
  background-color: hsl(39, 100%, 35%) !important;
}
.bg-sat-orange-focus:focus {
  background-color: hsl(39, 100%, 35%) !important;
}
.bg-dark-orange {
  background-color: hsl(39, 100%, 25%) !important;
}
.bg-dark-orange-active:active {
  background-color: hsl(39, 100%, 25%) !important;
}
.bg-dark-orange-hover:hover {
  background-color: hsl(39, 100%, 25%) !important;
}
.bg-dark-orange-focus:focus {
  background-color: hsl(39, 100%, 25%) !important;
}
.bg-light-amber {
  background-color: hsl(45, 100%, 78%) !important;
}
.bg-light-amber-active:active {
  background-color: hsl(45, 100%, 78%) !important;
}
.bg-light-amber-hover:hover {
  background-color: hsl(45, 100%, 78%) !important;
}
.bg-light-amber-focus:focus {
  background-color: hsl(45, 100%, 78%) !important;
}
.bg-minor-amber {
  background-color: hsl(45, 100%, 68%) !important;
}
.bg-minor-amber-active:active {
  background-color: hsl(45, 100%, 68%) !important;
}
.bg-minor-amber-hover:hover {
  background-color: hsl(45, 100%, 68%) !important;
}
.bg-minor-amber-focus:focus {
  background-color: hsl(45, 100%, 68%) !important;
}
.bg-sat-amber {
  background-color: hsl(45, 100%, 43%) !important;
}
.bg-sat-amber-active:active {
  background-color: hsl(45, 100%, 43%) !important;
}
.bg-sat-amber-hover:hover {
  background-color: hsl(45, 100%, 43%) !important;
}
.bg-sat-amber-focus:focus {
  background-color: hsl(45, 100%, 43%) !important;
}
.bg-dark-amber {
  background-color: hsl(45, 100%, 33%) !important;
}
.bg-dark-amber-active:active {
  background-color: hsl(45, 100%, 33%) !important;
}
.bg-dark-amber-hover:hover {
  background-color: hsl(45, 100%, 33%) !important;
}
.bg-dark-amber-focus:focus {
  background-color: hsl(45, 100%, 33%) !important;
}
.bg-light-yellow {
  background-color: hsl(52, 100%, 93%) !important;
}
.bg-light-yellow-active:active {
  background-color: hsl(52, 100%, 93%) !important;
}
.bg-light-yellow-hover:hover {
  background-color: hsl(52, 100%, 93%) !important;
}
.bg-light-yellow-focus:focus {
  background-color: hsl(52, 100%, 93%) !important;
}
.bg-minor-yellow {
  background-color: hsl(52, 100%, 83%) !important;
}
.bg-minor-yellow-active:active {
  background-color: hsl(52, 100%, 83%) !important;
}
.bg-minor-yellow-hover:hover {
  background-color: hsl(52, 100%, 83%) !important;
}
.bg-minor-yellow-focus:focus {
  background-color: hsl(52, 100%, 83%) !important;
}
.bg-sat-yellow {
  background-color: hsl(52, 100%, 53%) !important;
}
.bg-sat-yellow-active:active {
  background-color: hsl(52, 100%, 53%) !important;
}
.bg-sat-yellow-hover:hover {
  background-color: hsl(52, 100%, 53%) !important;
}
.bg-sat-yellow-focus:focus {
  background-color: hsl(52, 100%, 53%) !important;
}
.bg-dark-yellow {
  background-color: hsl(52, 100%, 43%) !important;
}
.bg-dark-yellow-active:active {
  background-color: hsl(52, 100%, 43%) !important;
}
.bg-dark-yellow-hover:hover {
  background-color: hsl(52, 100%, 43%) !important;
}
.bg-dark-yellow-focus:focus {
  background-color: hsl(52, 100%, 43%) !important;
}
.bg-light-brown {
  background-color: hsl(25, 57%, 81%) !important;
}
.bg-light-brown-active:active {
  background-color: hsl(25, 57%, 81%) !important;
}
.bg-light-brown-hover:hover {
  background-color: hsl(25, 57%, 81%) !important;
}
.bg-light-brown-focus:focus {
  background-color: hsl(25, 57%, 81%) !important;
}
.bg-minor-brown {
  background-color: hsl(25, 57%, 66%) !important;
}
.bg-minor-brown-active:active {
  background-color: hsl(25, 57%, 66%) !important;
}
.bg-minor-brown-hover:hover {
  background-color: hsl(25, 57%, 66%) !important;
}
.bg-minor-brown-focus:focus {
  background-color: hsl(25, 57%, 66%) !important;
}
.bg-sat-brown {
  background-color: hsl(25, 57%, 36%) !important;
}
.bg-sat-brown-active:active {
  background-color: hsl(25, 57%, 36%) !important;
}
.bg-sat-brown-hover:hover {
  background-color: hsl(25, 57%, 36%) !important;
}
.bg-sat-brown-focus:focus {
  background-color: hsl(25, 57%, 36%) !important;
}
.bg-dark-brown {
  background-color: hsl(25, 57%, 26%) !important;
}
.bg-dark-brown-active:active {
  background-color: hsl(25, 57%, 26%) !important;
}
.bg-dark-brown-hover:hover {
  background-color: hsl(25, 57%, 26%) !important;
}
.bg-dark-brown-focus:focus {
  background-color: hsl(25, 57%, 26%) !important;
}
.bg-light-olive {
  background-color: hsl(60, 100%, 72%) !important;
}
.bg-light-olive-active:active {
  background-color: hsl(60, 100%, 72%) !important;
}
.bg-light-olive-hover:hover {
  background-color: hsl(60, 100%, 72%) !important;
}
.bg-light-olive-focus:focus {
  background-color: hsl(60, 100%, 72%) !important;
}
.bg-minor-olive {
  background-color: hsl(60, 100%, 42%) !important;
}
.bg-minor-olive-active:active {
  background-color: hsl(60, 100%, 42%) !important;
}
.bg-minor-olive-hover:hover {
  background-color: hsl(60, 100%, 42%) !important;
}
.bg-minor-olive-focus:focus {
  background-color: hsl(60, 100%, 42%) !important;
}
.bg-sat-olive {
  background-color: hsl(60, 100%, 17%) !important;
}
.bg-sat-olive-active:active {
  background-color: hsl(60, 100%, 17%) !important;
}
.bg-sat-olive-hover:hover {
  background-color: hsl(60, 100%, 17%) !important;
}
.bg-sat-olive-focus:focus {
  background-color: hsl(60, 100%, 17%) !important;
}
.bg-dark-olive {
  background-color: hsl(60, 100%, 7%) !important;
}
.bg-dark-olive-active:active {
  background-color: hsl(60, 100%, 7%) !important;
}
.bg-dark-olive-hover:hover {
  background-color: hsl(60, 100%, 7%) !important;
}
.bg-dark-olive-focus:focus {
  background-color: hsl(60, 100%, 7%) !important;
}
.bg-light-steel {
  background-color: hsl(209, 19%, 87%) !important;
}
.bg-light-steel-active:active {
  background-color: hsl(209, 19%, 87%) !important;
}
.bg-light-steel-hover:hover {
  background-color: hsl(209, 19%, 87%) !important;
}
.bg-light-steel-focus:focus {
  background-color: hsl(209, 19%, 87%) !important;
}
.bg-minor-steel {
  background-color: hsl(209, 19%, 77%) !important;
}
.bg-minor-steel-active:active {
  background-color: hsl(209, 19%, 77%) !important;
}
.bg-minor-steel-hover:hover {
  background-color: hsl(209, 19%, 77%) !important;
}
.bg-minor-steel-focus:focus {
  background-color: hsl(209, 19%, 77%) !important;
}
.bg-sat-steel {
  background-color: hsl(209, 19%, 42%) !important;
}
.bg-sat-steel-active:active {
  background-color: hsl(209, 19%, 42%) !important;
}
.bg-sat-steel-hover:hover {
  background-color: hsl(209, 19%, 42%) !important;
}
.bg-sat-steel-focus:focus {
  background-color: hsl(209, 19%, 42%) !important;
}
.bg-dark-steel {
  background-color: hsl(209, 19%, 32%) !important;
}
.bg-dark-steel-active:active {
  background-color: hsl(209, 19%, 32%) !important;
}
.bg-dark-steel-hover:hover {
  background-color: hsl(209, 19%, 32%) !important;
}
.bg-dark-steel-focus:focus {
  background-color: hsl(209, 19%, 32%) !important;
}
.bg-light-mauve {
  background-color: hsl(277, 100%, 96%) !important;
}
.bg-light-mauve-active:active {
  background-color: hsl(277, 100%, 96%) !important;
}
.bg-light-mauve-hover:hover {
  background-color: hsl(277, 100%, 96%) !important;
}
.bg-light-mauve-focus:focus {
  background-color: hsl(277, 100%, 96%) !important;
}
.bg-minor-mauve {
  background-color: hsl(277, 100%, 90%) !important;
}
.bg-minor-mauve-active:active {
  background-color: hsl(277, 100%, 90%) !important;
}
.bg-minor-mauve-hover:hover {
  background-color: hsl(277, 100%, 90%) !important;
}
.bg-minor-mauve-focus:focus {
  background-color: hsl(277, 100%, 90%) !important;
}
.bg-sat-mauve {
  background-color: hsl(277, 100%, 69%) !important;
}
.bg-sat-mauve-active:active {
  background-color: hsl(277, 100%, 69%) !important;
}
.bg-sat-mauve-hover:hover {
  background-color: hsl(277, 100%, 69%) !important;
}
.bg-sat-mauve-focus:focus {
  background-color: hsl(277, 100%, 69%) !important;
}
.bg-dark-mauve {
  background-color: hsl(277, 100%, 59%) !important;
}
.bg-dark-mauve-active:active {
  background-color: hsl(277, 100%, 59%) !important;
}
.bg-dark-mauve-hover:hover {
  background-color: hsl(277, 100%, 59%) !important;
}
.bg-dark-mauve-focus:focus {
  background-color: hsl(277, 100%, 59%) !important;
}
.bg-light-taupe {
  background-color: hsl(29, 19%, 80%) !important;
}
.bg-light-taupe-active:active {
  background-color: hsl(29, 19%, 80%) !important;
}
.bg-light-taupe-hover:hover {
  background-color: hsl(29, 19%, 80%) !important;
}
.bg-light-taupe-focus:focus {
  background-color: hsl(29, 19%, 80%) !important;
}
.bg-minor-taupe {
  background-color: hsl(29, 19%, 67%) !important;
}
.bg-minor-taupe-active:active {
  background-color: hsl(29, 19%, 67%) !important;
}
.bg-minor-taupe-hover:hover {
  background-color: hsl(29, 19%, 67%) !important;
}
.bg-minor-taupe-focus:focus {
  background-color: hsl(29, 19%, 67%) !important;
}
.bg-sat-taupe {
  background-color: hsl(29, 19%, 35%) !important;
}
.bg-sat-taupe-active:active {
  background-color: hsl(29, 19%, 35%) !important;
}
.bg-sat-taupe-hover:hover {
  background-color: hsl(29, 19%, 35%) !important;
}
.bg-sat-taupe-focus:focus {
  background-color: hsl(29, 19%, 35%) !important;
}
.bg-dark-taupe {
  background-color: hsl(29, 19%, 25%) !important;
}
.bg-dark-taupe-active:active {
  background-color: hsl(29, 19%, 25%) !important;
}
.bg-dark-taupe-hover:hover {
  background-color: hsl(29, 19%, 25%) !important;
}
.bg-dark-taupe-focus:focus {
  background-color: hsl(29, 19%, 25%) !important;
}
.bg-light-champagne {
  background-color: hsl(37, 74%, 98%) !important;
}
.bg-light-champagne-active:active {
  background-color: hsl(37, 74%, 98%) !important;
}
.bg-light-champagne-hover:hover {
  background-color: hsl(37, 74%, 98%) !important;
}
.bg-light-champagne-focus:focus {
  background-color: hsl(37, 74%, 98%) !important;
}
.bg-minor-champagne {
  background-color: hsl(37, 74%, 93%) !important;
}
.bg-minor-champagne-active:active {
  background-color: hsl(37, 74%, 93%) !important;
}
.bg-minor-champagne-hover:hover {
  background-color: hsl(37, 74%, 93%) !important;
}
.bg-minor-champagne-focus:focus {
  background-color: hsl(37, 74%, 93%) !important;
}
.bg-sat-champagne {
  background-color: hsl(37, 74%, 73%) !important;
}
.bg-sat-champagne-active:active {
  background-color: hsl(37, 74%, 73%) !important;
}
.bg-sat-champagne-hover:hover {
  background-color: hsl(37, 74%, 73%) !important;
}
.bg-sat-champagne-focus:focus {
  background-color: hsl(37, 74%, 73%) !important;
}
.bg-dark-champagne {
  background-color: hsl(37, 74%, 63%) !important;
}
.bg-dark-champagne-active:active {
  background-color: hsl(37, 74%, 63%) !important;
}
.bg-dark-champagne-hover:hover {
  background-color: hsl(37, 74%, 63%) !important;
}
.bg-dark-champagne-focus:focus {
  background-color: hsl(37, 74%, 63%) !important;
}
.bg-light-khaki {
  background-color: hsl(47, 47%, 94%) !important;
}
.bg-light-khaki-active:active {
  background-color: hsl(47, 47%, 94%) !important;
}
.bg-light-khaki-hover:hover {
  background-color: hsl(47, 47%, 94%) !important;
}
.bg-light-khaki-focus:focus {
  background-color: hsl(47, 47%, 94%) !important;
}
.bg-minor-khaki {
  background-color: hsl(47, 47%, 84%) !important;
}
.bg-minor-khaki-active:active {
  background-color: hsl(47, 47%, 84%) !important;
}
.bg-minor-khaki-hover:hover {
  background-color: hsl(47, 47%, 84%) !important;
}
.bg-minor-khaki-focus:focus {
  background-color: hsl(47, 47%, 84%) !important;
}
.bg-sat-khaki {
  background-color: hsl(47, 47%, 54%) !important;
}
.bg-sat-khaki-active:active {
  background-color: hsl(47, 47%, 54%) !important;
}
.bg-sat-khaki-hover:hover {
  background-color: hsl(47, 47%, 54%) !important;
}
.bg-sat-khaki-focus:focus {
  background-color: hsl(47, 47%, 54%) !important;
}
.bg-dark-khaki {
  background-color: hsl(47, 47%, 44%) !important;
}
.bg-dark-khaki-active:active {
  background-color: hsl(47, 47%, 44%) !important;
}
.bg-dark-khaki-hover:hover {
  background-color: hsl(47, 47%, 44%) !important;
}
.bg-dark-khaki-focus:focus {
  background-color: hsl(47, 47%, 44%) !important;
}
.bg-light-charcoal {
  background-color: hsl(0, 0%, 90%) !important;
}
.bg-light-charcoal-active:active {
  background-color: hsl(0, 0%, 90%) !important;
}
.bg-light-charcoal-hover:hover {
  background-color: hsl(0, 0%, 90%) !important;
}
.bg-light-charcoal-focus:focus {
  background-color: hsl(0, 0%, 90%) !important;
}
.bg-minor-charcoal {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-minor-charcoal-active:active {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-minor-charcoal-hover:hover {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-minor-charcoal-focus:focus {
  background-color: hsl(0, 0%, 80%) !important;
}
.bg-sat-charcoal {
  background-color: hsl(0, 0%, 45%) !important;
}
.bg-sat-charcoal-active:active {
  background-color: hsl(0, 0%, 45%) !important;
}
.bg-sat-charcoal-hover:hover {
  background-color: hsl(0, 0%, 45%) !important;
}
.bg-sat-charcoal-focus:focus {
  background-color: hsl(0, 0%, 45%) !important;
}
.bg-dark-charcoal {
  background-color: hsl(0, 0%, 35%) !important;
}
.bg-dark-charcoal-active:active {
  background-color: hsl(0, 0%, 35%) !important;
}
.bg-dark-charcoal-hover:hover {
  background-color: hsl(0, 0%, 35%) !important;
}
.bg-dark-charcoal-focus:focus {
  background-color: hsl(0, 0%, 35%) !important;
}
.bg-light-bronze {
  background-color: hsl(29, 75%, 87%) !important;
}
.bg-light-bronze-active:active {
  background-color: hsl(29, 75%, 87%) !important;
}
.bg-light-bronze-hover:hover {
  background-color: hsl(29, 75%, 87%) !important;
}
.bg-light-bronze-focus:focus {
  background-color: hsl(29, 75%, 87%) !important;
}
.bg-minor-bronze {
  background-color: hsl(29, 75%, 72%) !important;
}
.bg-minor-bronze-active:active {
  background-color: hsl(29, 75%, 72%) !important;
}
.bg-minor-bronze-hover:hover {
  background-color: hsl(29, 75%, 72%) !important;
}
.bg-minor-bronze-focus:focus {
  background-color: hsl(29, 75%, 72%) !important;
}
.bg-sat-bronze {
  background-color: hsl(29, 75%, 42%) !important;
}
.bg-sat-bronze-active:active {
  background-color: hsl(29, 75%, 42%) !important;
}
.bg-sat-bronze-hover:hover {
  background-color: hsl(29, 75%, 42%) !important;
}
.bg-sat-bronze-focus:focus {
  background-color: hsl(29, 75%, 42%) !important;
}
.bg-dark-bronze {
  background-color: hsl(29, 75%, 32%) !important;
}
.bg-dark-bronze-active:active {
  background-color: hsl(29, 75%, 32%) !important;
}
.bg-dark-bronze-hover:hover {
  background-color: hsl(29, 75%, 32%) !important;
}
.bg-dark-bronze-focus:focus {
  background-color: hsl(29, 75%, 32%) !important;
}
.bg-light-windstorm {
  background-color: hsl(216, 53%, 93%) !important;
}
.bg-light-windstorm-active:active {
  background-color: hsl(216, 53%, 93%) !important;
}
.bg-light-windstorm-hover:hover {
  background-color: hsl(216, 53%, 93%) !important;
}
.bg-light-windstorm-focus:focus {
  background-color: hsl(216, 53%, 93%) !important;
}
.bg-minor-windstorm {
  background-color: hsl(216, 53%, 81%) !important;
}
.bg-minor-windstorm-active:active {
  background-color: hsl(216, 53%, 81%) !important;
}
.bg-minor-windstorm-hover:hover {
  background-color: hsl(216, 53%, 81%) !important;
}
.bg-minor-windstorm-focus:focus {
  background-color: hsl(216, 53%, 81%) !important;
}
.bg-sat-windstorm {
  background-color: hsl(216, 53%, 51%) !important;
}
.bg-sat-windstorm-active:active {
  background-color: hsl(216, 53%, 51%) !important;
}
.bg-sat-windstorm-hover:hover {
  background-color: hsl(216, 53%, 51%) !important;
}
.bg-sat-windstorm-focus:focus {
  background-color: hsl(216, 53%, 51%) !important;
}
.bg-dark-windstorm {
  background-color: hsl(216, 53%, 41%) !important;
}
.bg-dark-windstorm-active:active {
  background-color: hsl(216, 53%, 41%) !important;
}
.bg-dark-windstorm-hover:hover {
  background-color: hsl(216, 53%, 41%) !important;
}
.bg-dark-windstorm-focus:focus {
  background-color: hsl(216, 53%, 41%) !important;
}
.bg-light-nude {
  background-color: hsl(29, 79%, 97%) !important;
}
.bg-light-nude-active:active {
  background-color: hsl(29, 79%, 97%) !important;
}
.bg-light-nude-hover:hover {
  background-color: hsl(29, 79%, 97%) !important;
}
.bg-light-nude-focus:focus {
  background-color: hsl(29, 79%, 97%) !important;
}
.bg-minor-nude {
  background-color: hsl(29, 79%, 92%) !important;
}
.bg-minor-nude-active:active {
  background-color: hsl(29, 79%, 92%) !important;
}
.bg-minor-nude-hover:hover {
  background-color: hsl(29, 79%, 92%) !important;
}
.bg-minor-nude-focus:focus {
  background-color: hsl(29, 79%, 92%) !important;
}
.bg-sat-nude {
  background-color: hsl(29, 79%, 70%) !important;
}
.bg-sat-nude-active:active {
  background-color: hsl(29, 79%, 70%) !important;
}
.bg-sat-nude-hover:hover {
  background-color: hsl(29, 79%, 70%) !important;
}
.bg-sat-nude-focus:focus {
  background-color: hsl(29, 79%, 70%) !important;
}
.bg-dark-nude {
  background-color: hsl(29, 79%, 60%) !important;
}
.bg-dark-nude-active:active {
  background-color: hsl(29, 79%, 60%) !important;
}
.bg-dark-nude-hover:hover {
  background-color: hsl(29, 79%, 60%) !important;
}
.bg-dark-nude-focus:focus {
  background-color: hsl(29, 79%, 60%) !important;
}
.bg-light-terracotta {
  background-color: hsl(10, 76%, 85%) !important;
}
.bg-light-terracotta-active:active {
  background-color: hsl(10, 76%, 85%) !important;
}
.bg-light-terracotta-hover:hover {
  background-color: hsl(10, 76%, 85%) !important;
}
.bg-light-terracotta-focus:focus {
  background-color: hsl(10, 76%, 85%) !important;
}
.bg-minor-terracotta {
  background-color: hsl(10, 76%, 70%) !important;
}
.bg-minor-terracotta-active:active {
  background-color: hsl(10, 76%, 70%) !important;
}
.bg-minor-terracotta-hover:hover {
  background-color: hsl(10, 76%, 70%) !important;
}
.bg-minor-terracotta-focus:focus {
  background-color: hsl(10, 76%, 70%) !important;
}
.bg-sat-terracotta {
  background-color: hsl(10, 76%, 40%) !important;
}
.bg-sat-terracotta-active:active {
  background-color: hsl(10, 76%, 40%) !important;
}
.bg-sat-terracotta-hover:hover {
  background-color: hsl(10, 76%, 40%) !important;
}
.bg-sat-terracotta-focus:focus {
  background-color: hsl(10, 76%, 40%) !important;
}
.bg-dark-terracotta {
  background-color: hsl(10, 76%, 30%) !important;
}
.bg-dark-terracotta-active:active {
  background-color: hsl(10, 76%, 30%) !important;
}
.bg-dark-terracotta-hover:hover {
  background-color: hsl(10, 76%, 30%) !important;
}
.bg-dark-terracotta-focus:focus {
  background-color: hsl(10, 76%, 30%) !important;
}
.bg-light-coral {
  background-color: hsl(16, 100%, 92%) !important;
}
.bg-light-coral-active:active {
  background-color: hsl(16, 100%, 92%) !important;
}
.bg-light-coral-hover:hover {
  background-color: hsl(16, 100%, 92%) !important;
}
.bg-light-coral-focus:focus {
  background-color: hsl(16, 100%, 92%) !important;
}
.bg-minor-coral {
  background-color: hsl(16, 100%, 82%) !important;
}
.bg-minor-coral-active:active {
  background-color: hsl(16, 100%, 82%) !important;
}
.bg-minor-coral-hover:hover {
  background-color: hsl(16, 100%, 82%) !important;
}
.bg-minor-coral-focus:focus {
  background-color: hsl(16, 100%, 82%) !important;
}
.bg-sat-coral {
  background-color: hsl(16, 100%, 52%) !important;
}
.bg-sat-coral-active:active {
  background-color: hsl(16, 100%, 52%) !important;
}
.bg-sat-coral-hover:hover {
  background-color: hsl(16, 100%, 52%) !important;
}
.bg-sat-coral-focus:focus {
  background-color: hsl(16, 100%, 52%) !important;
}
.bg-dark-coral {
  background-color: hsl(16, 100%, 42%) !important;
}
.bg-dark-coral-active:active {
  background-color: hsl(16, 100%, 42%) !important;
}
.bg-dark-coral-hover:hover {
  background-color: hsl(16, 100%, 42%) !important;
}
.bg-dark-coral-focus:focus {
  background-color: hsl(16, 100%, 42%) !important;
}
.bg-light-army {
  background-color: hsl(69, 34%, 75%) !important;
}
.bg-light-army-active:active {
  background-color: hsl(69, 34%, 75%) !important;
}
.bg-light-army-hover:hover {
  background-color: hsl(69, 34%, 75%) !important;
}
.bg-light-army-focus:focus {
  background-color: hsl(69, 34%, 75%) !important;
}
.bg-minor-army {
  background-color: hsl(69, 34%, 47%) !important;
}
.bg-minor-army-active:active {
  background-color: hsl(69, 34%, 47%) !important;
}
.bg-minor-army-hover:hover {
  background-color: hsl(69, 34%, 47%) !important;
}
.bg-minor-army-focus:focus {
  background-color: hsl(69, 34%, 47%) !important;
}
.bg-sat-army {
  background-color: hsl(69, 34%, 15%) !important;
}
.bg-sat-army-active:active {
  background-color: hsl(69, 34%, 15%) !important;
}
.bg-sat-army-hover:hover {
  background-color: hsl(69, 34%, 15%) !important;
}
.bg-sat-army-focus:focus {
  background-color: hsl(69, 34%, 15%) !important;
}
.bg-dark-army {
  background-color: hsl(69, 34%, 5%) !important;
}
.bg-dark-army-active:active {
  background-color: hsl(69, 34%, 5%) !important;
}
.bg-dark-army-hover:hover {
  background-color: hsl(69, 34%, 5%) !important;
}
.bg-dark-army-focus:focus {
  background-color: hsl(69, 34%, 5%) !important;
}
.bg-light-seashell {
  background-color: hsl(25, 100%, 98%) !important;
}
.bg-light-seashell-active:active {
  background-color: hsl(25, 100%, 98%) !important;
}
.bg-light-seashell-hover:hover {
  background-color: hsl(25, 100%, 98%) !important;
}
.bg-light-seashell-focus:focus {
  background-color: hsl(25, 100%, 98%) !important;
}
.bg-minor-seashell {
  background-color: hsl(25, 100%, 97%) !important;
}
.bg-minor-seashell-active:active {
  background-color: hsl(25, 100%, 97%) !important;
}
.bg-minor-seashell-hover:hover {
  background-color: hsl(25, 100%, 97%) !important;
}
.bg-minor-seashell-focus:focus {
  background-color: hsl(25, 100%, 97%) !important;
}
.bg-sat-seashell {
  background-color: hsl(25, 100%, 80%) !important;
}
.bg-sat-seashell-active:active {
  background-color: hsl(25, 100%, 80%) !important;
}
.bg-sat-seashell-hover:hover {
  background-color: hsl(25, 100%, 80%) !important;
}
.bg-sat-seashell-focus:focus {
  background-color: hsl(25, 100%, 80%) !important;
}
.bg-dark-seashell {
  background-color: hsl(25, 100%, 70%) !important;
}
.bg-dark-seashell-active:active {
  background-color: hsl(25, 100%, 70%) !important;
}
.bg-dark-seashell-hover:hover {
  background-color: hsl(25, 100%, 70%) !important;
}
.bg-dark-seashell-focus:focus {
  background-color: hsl(25, 100%, 70%) !important;
}
.bg-light-sand {
  background-color: hsl(45, 71%, 96%) !important;
}
.bg-light-sand-active:active {
  background-color: hsl(45, 71%, 96%) !important;
}
.bg-light-sand-hover:hover {
  background-color: hsl(45, 71%, 96%) !important;
}
.bg-light-sand-focus:focus {
  background-color: hsl(45, 71%, 96%) !important;
}
.bg-minor-sand {
  background-color: hsl(45, 71%, 88%) !important;
}
.bg-minor-sand-active:active {
  background-color: hsl(45, 71%, 88%) !important;
}
.bg-minor-sand-hover:hover {
  background-color: hsl(45, 71%, 88%) !important;
}
.bg-minor-sand-focus:focus {
  background-color: hsl(45, 71%, 88%) !important;
}
.bg-sat-sand {
  background-color: hsl(45, 71%, 66%) !important;
}
.bg-sat-sand-active:active {
  background-color: hsl(45, 71%, 66%) !important;
}
.bg-sat-sand-hover:hover {
  background-color: hsl(45, 71%, 66%) !important;
}
.bg-sat-sand-focus:focus {
  background-color: hsl(45, 71%, 66%) !important;
}
.bg-dark-sand {
  background-color: hsl(45, 71%, 56%) !important;
}
.bg-dark-sand-active:active {
  background-color: hsl(45, 71%, 56%) !important;
}
.bg-dark-sand-hover:hover {
  background-color: hsl(45, 71%, 56%) !important;
}
.bg-dark-sand-focus:focus {
  background-color: hsl(45, 71%, 56%) !important;
}
:root {
  --gm-value: 16px;
}
.bg-glassmorphism {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(var(--gm-value)) !important;
}

/* ../metroui-lib/source/colors-css/border.less */
.bd-default {
  border-color: var(--border-color) !important;
}
.bd-transparent {
  border-color: transparent !important;
}
.bd-light-gray {
  border-color: hsl(0, 0%, 95%) !important;
}
.bd-minor-gray {
  border-color: hsl(0, 0%, 87%) !important;
}
.bd-sat-gray {
  border-color: hsl(0, 0%, 65%) !important;
}
.bd-dark-gray {
  border-color: hsl(0, 0%, 55%) !important;
}
.bd-gray {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-gray-active:active {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-gray-hover:hover {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-gray-focus:focus {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-before-gray::before {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-after-gray::after {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-light-gray-blue {
  border-color: hsl(210, 26%, 84%) !important;
}
.bd-minor-gray-blue {
  border-color: hsl(210, 26%, 69%) !important;
}
.bd-sat-gray-blue {
  border-color: hsl(210, 26%, 39%) !important;
}
.bd-dark-gray-blue {
  border-color: hsl(210, 26%, 29%) !important;
}
.bd-gray-blue {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-gray-blue-active:active {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-gray-blue-hover:hover {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-gray-blue-focus:focus {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-before-gray-blue::before {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-after-gray-blue::after {
  border-color: hsl(210, 26%, 54%) !important;
}
.bd-light-gray-mouse {
  border-color: hsl(199, 15%, 70%) !important;
}
.bd-minor-gray-mouse {
  border-color: hsl(199, 15%, 55%) !important;
}
.bd-sat-gray-mouse {
  border-color: hsl(199, 15%, 25%) !important;
}
.bd-dark-gray-mouse {
  border-color: hsl(199, 15%, 15%) !important;
}
.bd-gray-mouse {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-gray-mouse-active:active {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-gray-mouse-hover:hover {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-gray-mouse-focus:focus {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-before-gray-mouse::before {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-after-gray-mouse::after {
  border-color: hsl(199, 15%, 40%) !important;
}
.bd-light-lime {
  border-color: hsl(93, 97%, 91%) !important;
}
.bd-minor-lime {
  border-color: hsl(93, 97%, 81%) !important;
}
.bd-sat-lime {
  border-color: hsl(93, 97%, 56%) !important;
}
.bd-dark-lime {
  border-color: hsl(93, 97%, 46%) !important;
}
.bd-lime {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-lime-active:active {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-lime-hover:hover {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-lime-focus:focus {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-before-lime::before {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-after-lime::after {
  border-color: hsl(93, 97%, 71%) !important;
}
.bd-light-green {
  border-color: hsl(120, 100%, 80%) !important;
}
.bd-minor-green {
  border-color: hsl(120, 100%, 45%) !important;
}
.bd-sat-green {
  border-color: hsl(120, 100%, 20%) !important;
}
.bd-dark-green {
  border-color: hsl(120, 100%, 10%) !important;
}
.bd-green {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-green-active:active {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-green-hover:hover {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-green-focus:focus {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-before-green::before {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-after-green::after {
  border-color: hsl(120, 100%, 35%) !important;
}
.bd-light-emerald {
  border-color: hsl(140, 52%, 85%) !important;
}
.bd-minor-emerald {
  border-color: hsl(140, 52%, 65%) !important;
}
.bd-sat-emerald {
  border-color: hsl(140, 52%, 40%) !important;
}
.bd-dark-emerald {
  border-color: hsl(140, 52%, 30%) !important;
}
.bd-emerald {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-emerald-active:active {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-emerald-hover:hover {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-emerald-focus:focus {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-before-emerald::before {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-after-emerald::after {
  border-color: hsl(140, 52%, 55%) !important;
}
.bd-light-blue {
  border-color: hsl(225, 100%, 93%) !important;
}
.bd-minor-blue {
  border-color: hsl(225, 100%, 78%) !important;
}
.bd-sat-blue {
  border-color: hsl(225, 100%, 53%) !important;
}
.bd-dark-blue {
  border-color: hsl(225, 100%, 43%) !important;
}
.bd-blue {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-blue-active:active {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-blue-hover:hover {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-blue-focus:focus {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-before-blue::before {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-after-blue::after {
  border-color: hsl(225, 100%, 68%) !important;
}
.bd-light-teal {
  border-color: hsl(180, 77%, 79%) !important;
}
.bd-minor-teal {
  border-color: hsl(180, 77%, 54%) !important;
}
.bd-sat-teal {
  border-color: hsl(180, 77%, 29%) !important;
}
.bd-dark-teal {
  border-color: hsl(180, 77%, 19%) !important;
}
.bd-teal {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-teal-active:active {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-teal-hover:hover {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-teal-focus:focus {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-before-teal::before {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-after-teal::after {
  border-color: hsl(180, 77%, 44%) !important;
}
.bd-light-cyan {
  border-color: hsl(221, 100%, 94%) !important;
}
.bd-minor-cyan {
  border-color: hsl(221, 100%, 89%) !important;
}
.bd-sat-cyan {
  border-color: hsl(221, 100%, 64%) !important;
}
.bd-dark-cyan {
  border-color: hsl(221, 100%, 54%) !important;
}
.bd-cyan {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-cyan-active:active {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-cyan-hover:hover {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-cyan-focus:focus {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-before-cyan::before {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-after-cyan::after {
  border-color: hsl(221, 100%, 79%) !important;
}
.bd-light-cobalt {
  border-color: hsl(215, 100%, 79%) !important;
}
.bd-minor-cobalt {
  border-color: hsl(215, 100%, 49%) !important;
}
.bd-sat-cobalt {
  border-color: hsl(215, 100%, 19%) !important;
}
.bd-dark-cobalt {
  border-color: hsl(215, 100%, 9%) !important;
}
.bd-cobalt {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-cobalt-active:active {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-cobalt-hover:hover {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-cobalt-focus:focus {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-before-cobalt::before {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-after-cobalt::after {
  border-color: hsl(215, 100%, 34%) !important;
}
.bd-light-indigo {
  border-color: hsl(276, 100%, 78%) !important;
}
.bd-minor-indigo {
  border-color: hsl(276, 100%, 48%) !important;
}
.bd-sat-indigo {
  border-color: hsl(276, 100%, 18%) !important;
}
.bd-dark-indigo {
  border-color: hsl(276, 100%, 8%) !important;
}
.bd-indigo {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-indigo-active:active {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-indigo-hover:hover {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-indigo-focus:focus {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-before-indigo::before {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-after-indigo::after {
  border-color: hsl(276, 100%, 33%) !important;
}
.bd-light-almost {
  border-color: hsl(259, 84%, 85%) !important;
}
.bd-minor-almost {
  border-color: hsl(259, 84%, 70%) !important;
}
.bd-sat-almost {
  border-color: hsl(259, 84%, 40%) !important;
}
.bd-dark-almost {
  border-color: hsl(259, 84%, 30%) !important;
}
.bd-almost {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-almost-active:active {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-almost-hover:hover {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-almost-focus:focus {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-before-almost::before {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-after-almost::after {
  border-color: hsl(259, 84%, 55%) !important;
}
.bd-light-violet {
  border-color: hsl(300, 76%, 92%) !important;
}
.bd-minor-violet {
  border-color: hsl(300, 76%, 82%) !important;
}
.bd-sat-violet {
  border-color: hsl(300, 76%, 57%) !important;
}
.bd-dark-violet {
  border-color: hsl(300, 76%, 47%) !important;
}
.bd-violet {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-violet-active:active {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-violet-hover:hover {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-violet-focus:focus {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-before-violet::before {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-after-violet::after {
  border-color: hsl(300, 76%, 72%) !important;
}
.bd-light-pink {
  border-color: hsl(350, 100%, 98%) !important;
}
.bd-minor-pink {
  border-color: hsl(350, 100%, 93%) !important;
}
.bd-sat-pink {
  border-color: hsl(350, 100%, 73%) !important;
}
.bd-dark-pink {
  border-color: hsl(350, 100%, 63%) !important;
}
.bd-pink {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-pink-active:active {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-pink-hover:hover {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-pink-focus:focus {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-before-pink::before {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-after-pink::after {
  border-color: hsl(350, 100%, 88%) !important;
}
.bd-light-magenta {
  border-color: hsl(300, 100%, 90%) !important;
}
.bd-minor-magenta {
  border-color: hsl(300, 100%, 75%) !important;
}
.bd-sat-magenta {
  border-color: hsl(300, 100%, 35%) !important;
}
.bd-dark-magenta {
  border-color: hsl(300, 100%, 25%) !important;
}
.bd-magenta {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-magenta-active:active {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-magenta-hover:hover {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-magenta-focus:focus {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-before-magenta::before {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-after-magenta::after {
  border-color: hsl(300, 100%, 50%) !important;
}
.bd-light-crimson {
  border-color: hsl(348, 88%, 91%) !important;
}
.bd-minor-crimson {
  border-color: hsl(348, 88%, 66%) !important;
}
.bd-sat-crimson {
  border-color: hsl(348, 88%, 31%) !important;
}
.bd-dark-crimson {
  border-color: hsl(348, 88%, 21%) !important;
}
.bd-crimson {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-crimson-active:active {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-crimson-hover:hover {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-crimson-focus:focus {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-before-crimson::before {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-after-crimson::after {
  border-color: hsl(348, 88%, 46%) !important;
}
.bd-light-red {
  border-color: hsl(0, 100%, 85%) !important;
}
.bd-minor-red {
  border-color: hsl(0, 100%, 70%) !important;
}
.bd-sat-red {
  border-color: hsl(0, 100%, 35%) !important;
}
.bd-dark-red {
  border-color: hsl(0, 100%, 25%) !important;
}
.bd-red {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-red-active:active {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-red-hover:hover {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-red-focus:focus {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-before-red::before {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-after-red::after {
  border-color: hsl(0, 100%, 50%) !important;
}
.bd-light-clown {
  border-color: hsl(3, 100%, 95%) !important;
}
.bd-minor-clown {
  border-color: hsl(3, 100%, 85%) !important;
}
.bd-sat-clown {
  border-color: hsl(3, 100%, 55%) !important;
}
.bd-dark-clown {
  border-color: hsl(3, 100%, 45%) !important;
}
.bd-clown {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-clown-active:active {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-clown-hover:hover {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-clown-focus:focus {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-before-clown::before {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-after-clown::after {
  border-color: hsl(3, 100%, 70%) !important;
}
.bd-light-orange {
  border-color: hsl(39, 100%, 90%) !important;
}
.bd-minor-orange {
  border-color: hsl(39, 100%, 75%) !important;
}
.bd-sat-orange {
  border-color: hsl(39, 100%, 35%) !important;
}
.bd-dark-orange {
  border-color: hsl(39, 100%, 25%) !important;
}
.bd-orange {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-orange-active:active {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-orange-hover:hover {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-orange-focus:focus {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-before-orange::before {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-after-orange::after {
  border-color: hsl(39, 100%, 50%) !important;
}
.bd-light-amber {
  border-color: hsl(45, 100%, 78%) !important;
}
.bd-minor-amber {
  border-color: hsl(45, 100%, 68%) !important;
}
.bd-sat-amber {
  border-color: hsl(45, 100%, 43%) !important;
}
.bd-dark-amber {
  border-color: hsl(45, 100%, 33%) !important;
}
.bd-amber {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-amber-active:active {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-amber-hover:hover {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-amber-focus:focus {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-before-amber::before {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-after-amber::after {
  border-color: hsl(45, 100%, 58%) !important;
}
.bd-light-yellow {
  border-color: hsl(52, 100%, 93%) !important;
}
.bd-minor-yellow {
  border-color: hsl(52, 100%, 83%) !important;
}
.bd-sat-yellow {
  border-color: hsl(52, 100%, 53%) !important;
}
.bd-dark-yellow {
  border-color: hsl(52, 100%, 43%) !important;
}
.bd-yellow {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-yellow-active:active {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-yellow-hover:hover {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-yellow-focus:focus {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-before-yellow::before {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-after-yellow::after {
  border-color: hsl(52, 100%, 68%) !important;
}
.bd-light-brown {
  border-color: hsl(25, 57%, 81%) !important;
}
.bd-minor-brown {
  border-color: hsl(25, 57%, 66%) !important;
}
.bd-sat-brown {
  border-color: hsl(25, 57%, 36%) !important;
}
.bd-dark-brown {
  border-color: hsl(25, 57%, 26%) !important;
}
.bd-brown {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-brown-active:active {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-brown-hover:hover {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-brown-focus:focus {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-before-brown::before {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-after-brown::after {
  border-color: hsl(25, 57%, 51%) !important;
}
.bd-light-olive {
  border-color: hsl(60, 100%, 72%) !important;
}
.bd-minor-olive {
  border-color: hsl(60, 100%, 42%) !important;
}
.bd-sat-olive {
  border-color: hsl(60, 100%, 17%) !important;
}
.bd-dark-olive {
  border-color: hsl(60, 100%, 7%) !important;
}
.bd-olive {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-olive-active:active {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-olive-hover:hover {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-olive-focus:focus {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-before-olive::before {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-after-olive::after {
  border-color: hsl(60, 100%, 32%) !important;
}
.bd-light-steel {
  border-color: hsl(209, 19%, 87%) !important;
}
.bd-minor-steel {
  border-color: hsl(209, 19%, 77%) !important;
}
.bd-sat-steel {
  border-color: hsl(209, 19%, 42%) !important;
}
.bd-dark-steel {
  border-color: hsl(209, 19%, 32%) !important;
}
.bd-steel {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-steel-active:active {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-steel-hover:hover {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-steel-focus:focus {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-before-steel::before {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-after-steel::after {
  border-color: hsl(209, 19%, 57%) !important;
}
.bd-light-mauve {
  border-color: hsl(277, 100%, 96%) !important;
}
.bd-minor-mauve {
  border-color: hsl(277, 100%, 90%) !important;
}
.bd-sat-mauve {
  border-color: hsl(277, 100%, 69%) !important;
}
.bd-dark-mauve {
  border-color: hsl(277, 100%, 59%) !important;
}
.bd-mauve {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-mauve-active:active {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-mauve-hover:hover {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-mauve-focus:focus {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-before-mauve::before {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-after-mauve::after {
  border-color: hsl(277, 100%, 84%) !important;
}
.bd-light-taupe {
  border-color: hsl(29, 19%, 80%) !important;
}
.bd-minor-taupe {
  border-color: hsl(29, 19%, 67%) !important;
}
.bd-sat-taupe {
  border-color: hsl(29, 19%, 35%) !important;
}
.bd-dark-taupe {
  border-color: hsl(29, 19%, 25%) !important;
}
.bd-taupe {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-taupe-active:active {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-taupe-hover:hover {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-taupe-focus:focus {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-before-taupe::before {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-after-taupe::after {
  border-color: hsl(29, 19%, 50%) !important;
}
.bd-light-champagne {
  border-color: hsl(37, 74%, 98%) !important;
}
.bd-minor-champagne {
  border-color: hsl(37, 74%, 93%) !important;
}
.bd-sat-champagne {
  border-color: hsl(37, 74%, 73%) !important;
}
.bd-dark-champagne {
  border-color: hsl(37, 74%, 63%) !important;
}
.bd-champagne {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-champagne-active:active {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-champagne-hover:hover {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-champagne-focus:focus {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-before-champagne::before {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-after-champagne::after {
  border-color: hsl(37, 74%, 88%) !important;
}
.bd-light-khaki {
  border-color: hsl(47, 47%, 94%) !important;
}
.bd-minor-khaki {
  border-color: hsl(47, 47%, 84%) !important;
}
.bd-sat-khaki {
  border-color: hsl(47, 47%, 54%) !important;
}
.bd-dark-khaki {
  border-color: hsl(47, 47%, 44%) !important;
}
.bd-khaki {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-khaki-active:active {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-khaki-hover:hover {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-khaki-focus:focus {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-before-khaki::before {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-after-khaki::after {
  border-color: hsl(47, 47%, 69%) !important;
}
.bd-light-charcoal {
  border-color: hsl(0, 0%, 90%) !important;
}
.bd-minor-charcoal {
  border-color: hsl(0, 0%, 80%) !important;
}
.bd-sat-charcoal {
  border-color: hsl(0, 0%, 45%) !important;
}
.bd-dark-charcoal {
  border-color: hsl(0, 0%, 35%) !important;
}
.bd-charcoal {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-charcoal-active:active {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-charcoal-hover:hover {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-charcoal-focus:focus {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-before-charcoal::before {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-after-charcoal::after {
  border-color: hsl(0, 0%, 60%) !important;
}
.bd-light-bronze {
  border-color: hsl(29, 75%, 87%) !important;
}
.bd-minor-bronze {
  border-color: hsl(29, 75%, 72%) !important;
}
.bd-sat-bronze {
  border-color: hsl(29, 75%, 42%) !important;
}
.bd-dark-bronze {
  border-color: hsl(29, 75%, 32%) !important;
}
.bd-bronze {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-bronze-active:active {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-bronze-hover:hover {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-bronze-focus:focus {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-before-bronze::before {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-after-bronze::after {
  border-color: hsl(29, 75%, 57%) !important;
}
.bd-light-windstorm {
  border-color: hsl(216, 53%, 93%) !important;
}
.bd-minor-windstorm {
  border-color: hsl(216, 53%, 81%) !important;
}
.bd-sat-windstorm {
  border-color: hsl(216, 53%, 51%) !important;
}
.bd-dark-windstorm {
  border-color: hsl(216, 53%, 41%) !important;
}
.bd-windstorm {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-windstorm-active:active {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-windstorm-hover:hover {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-windstorm-focus:focus {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-before-windstorm::before {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-after-windstorm::after {
  border-color: hsl(216, 53%, 66%) !important;
}
.bd-light-nude {
  border-color: hsl(29, 79%, 97%) !important;
}
.bd-minor-nude {
  border-color: hsl(29, 79%, 92%) !important;
}
.bd-sat-nude {
  border-color: hsl(29, 79%, 70%) !important;
}
.bd-dark-nude {
  border-color: hsl(29, 79%, 60%) !important;
}
.bd-nude {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-nude-active:active {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-nude-hover:hover {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-nude-focus:focus {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-before-nude::before {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-after-nude::after {
  border-color: hsl(29, 79%, 85%) !important;
}
.bd-light-terracotta {
  border-color: hsl(10, 76%, 85%) !important;
}
.bd-minor-terracotta {
  border-color: hsl(10, 76%, 70%) !important;
}
.bd-sat-terracotta {
  border-color: hsl(10, 76%, 40%) !important;
}
.bd-dark-terracotta {
  border-color: hsl(10, 76%, 30%) !important;
}
.bd-terracotta {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-terracotta-active:active {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-terracotta-hover:hover {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-terracotta-focus:focus {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-before-terracotta::before {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-after-terracotta::after {
  border-color: hsl(10, 76%, 55%) !important;
}
.bd-light-coral {
  border-color: hsl(16, 100%, 92%) !important;
}
.bd-minor-coral {
  border-color: hsl(16, 100%, 82%) !important;
}
.bd-sat-coral {
  border-color: hsl(16, 100%, 52%) !important;
}
.bd-dark-coral {
  border-color: hsl(16, 100%, 42%) !important;
}
.bd-coral {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-coral-active:active {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-coral-hover:hover {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-coral-focus:focus {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-before-coral::before {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-after-coral::after {
  border-color: hsl(16, 100%, 67%) !important;
}
.bd-light-army {
  border-color: hsl(69, 34%, 75%) !important;
}
.bd-minor-army {
  border-color: hsl(69, 34%, 47%) !important;
}
.bd-sat-army {
  border-color: hsl(69, 34%, 15%) !important;
}
.bd-dark-army {
  border-color: hsl(69, 34%, 5%) !important;
}
.bd-army {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-army-active:active {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-army-hover:hover {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-army-focus:focus {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-before-army::before {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-after-army::after {
  border-color: hsl(69, 34%, 30%) !important;
}
.bd-light-seashell {
  border-color: hsl(25, 100%, 98%) !important;
}
.bd-minor-seashell {
  border-color: hsl(25, 100%, 97%) !important;
}
.bd-sat-seashell {
  border-color: hsl(25, 100%, 80%) !important;
}
.bd-dark-seashell {
  border-color: hsl(25, 100%, 70%) !important;
}
.bd-seashell {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-seashell-active:active {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-seashell-hover:hover {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-seashell-focus:focus {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-before-seashell::before {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-after-seashell::after {
  border-color: hsl(25, 100%, 95%) !important;
}
.bd-light-sand {
  border-color: hsl(45, 71%, 96%) !important;
}
.bd-minor-sand {
  border-color: hsl(45, 71%, 88%) !important;
}
.bd-sat-sand {
  border-color: hsl(45, 71%, 66%) !important;
}
.bd-dark-sand {
  border-color: hsl(45, 71%, 56%) !important;
}
.bd-sand {
  border-color: hsl(45, 71%, 81%) !important;
}
.bd-sand-active:active {
  border-color: hsl(45, 71%, 81%) !important;
}
.bd-sand-hover:hover {
  border-color: hsl(45, 71%, 81%) !important;
}
.bd-sand-focus:focus {
  border-color: hsl(45, 71%, 81%) !important;
}
.bd-before-sand::before {
  border-color: hsl(45, 71%, 81%) !important;
}
.bd-after-sand::after {
  border-color: hsl(45, 71%, 81%) !important;
}
@property --border-angle { syntax: "<angle>"; initial-value: 0deg; inherits: true; }
@keyframes spin-border {
  from {
    --border-angle: 0deg;
  }
  to {
    --border-angle: 360deg;
  }
}
:root {
  --gradient-border-speed: 3s;
  --gradient-border-size: 2px;
  --gradient-border-colors:
    #ff4545,
    #00ff99,
    #006aff,
    #ff0095,
    #ff4545;
  --gradient-border-transparent-size: 50%;
}
.gradient-border {
  isolation: isolate;
}
.gradient-border::before,
.gradient-border::after {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--gradient-border-size));
  border-radius: inherit;
  background: conic-gradient(from var(--border-angle), var(--gradient-border-colors));
  z-index: -2;
  display: block;
  transition: all 0.3s linear;
}
.gradient-border::after {
  inset: 0;
  z-index: -1;
  background: inherit;
}
.animated-border {
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-hover:hover {
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-black {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), #000000;
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-white {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), #ffffff;
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-dark {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), #1d1d1d;
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-light {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), #f8f8f8;
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-gray {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(0, 0%, 80%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-gray-blue {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(210, 26%, 54%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-gray-white {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(0, 0%, 96%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-gray-mouse {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(199, 15%, 40%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-lime {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(93, 97%, 71%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-green {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(120, 100%, 35%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-emerald {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(140, 52%, 55%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-blue {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(225, 100%, 68%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-teal {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(180, 77%, 44%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-cyan {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(221, 100%, 79%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-cobalt {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(215, 100%, 34%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-indigo {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(276, 100%, 33%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-almost {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(259, 84%, 55%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-violet {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(300, 76%, 72%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-pink {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(350, 100%, 88%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-magenta {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(300, 100%, 50%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-crimson {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(348, 88%, 46%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-red {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(0, 100%, 50%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-clown {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(3, 100%, 70%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-orange {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(39, 100%, 50%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-amber {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(45, 100%, 58%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-yellow {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(52, 100%, 68%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-brown {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(25, 57%, 51%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-olive {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(60, 100%, 32%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-steel {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(209, 19%, 57%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-mauve {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(277, 100%, 84%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-taupe {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(29, 19%, 50%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-champagne {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(37, 74%, 88%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-khaki {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(47, 47%, 69%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-charcoal {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(0, 0%, 60%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-bronze {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(29, 75%, 57%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-windstorm {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(216, 53%, 66%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-nude {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(29, 79%, 85%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-terracotta {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(10, 76%, 55%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-coral {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(16, 100%, 67%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-army {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(69, 34%, 30%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-seashell {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(25, 100%, 95%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}
.animated-border-sand {
  --gradient-border-colors: transparent var(--gradient-border-transparent-size), hsl(45, 71%, 81%);
  animation: spin-border var(--gradient-border-speed) linear infinite;
}

/* ../metroui-lib/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;
}
.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;
}
.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;
}
.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;
}
.fc-gray {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-gray-active:active {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-gray-hover:hover {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-gray-focus:focus {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-gray-blue {
  fill: hsl(210, 26%, 54%) !important;
}
.fc-gray-blue-active:active {
  fill: hsl(210, 26%, 54%) !important;
}
.fc-gray-blue-hover:hover {
  fill: hsl(210, 26%, 54%) !important;
}
.fc-gray-blue-focus:focus {
  fill: hsl(210, 26%, 54%) !important;
}
.fc-gray-white {
  fill: hsl(0, 0%, 96%) !important;
}
.fc-gray-white-active:active {
  fill: hsl(0, 0%, 96%) !important;
}
.fc-gray-white-hover:hover {
  fill: hsl(0, 0%, 96%) !important;
}
.fc-gray-white-focus:focus {
  fill: hsl(0, 0%, 96%) !important;
}
.fc-gray-mouse {
  fill: hsl(199, 15%, 40%) !important;
}
.fc-gray-mouse-active:active {
  fill: hsl(199, 15%, 40%) !important;
}
.fc-gray-mouse-hover:hover {
  fill: hsl(199, 15%, 40%) !important;
}
.fc-gray-mouse-focus:focus {
  fill: hsl(199, 15%, 40%) !important;
}
.fc-lime {
  fill: hsl(93, 97%, 71%) !important;
}
.fc-lime-active:active {
  fill: hsl(93, 97%, 71%) !important;
}
.fc-lime-hover:hover {
  fill: hsl(93, 97%, 71%) !important;
}
.fc-lime-focus:focus {
  fill: hsl(93, 97%, 71%) !important;
}
.fc-green {
  fill: hsl(120, 100%, 35%) !important;
}
.fc-green-active:active {
  fill: hsl(120, 100%, 35%) !important;
}
.fc-green-hover:hover {
  fill: hsl(120, 100%, 35%) !important;
}
.fc-green-focus:focus {
  fill: hsl(120, 100%, 35%) !important;
}
.fc-emerald {
  fill: hsl(140, 52%, 55%) !important;
}
.fc-emerald-active:active {
  fill: hsl(140, 52%, 55%) !important;
}
.fc-emerald-hover:hover {
  fill: hsl(140, 52%, 55%) !important;
}
.fc-emerald-focus:focus {
  fill: hsl(140, 52%, 55%) !important;
}
.fc-blue {
  fill: hsl(225, 100%, 68%) !important;
}
.fc-blue-active:active {
  fill: hsl(225, 100%, 68%) !important;
}
.fc-blue-hover:hover {
  fill: hsl(225, 100%, 68%) !important;
}
.fc-blue-focus:focus {
  fill: hsl(225, 100%, 68%) !important;
}
.fc-teal {
  fill: hsl(180, 77%, 44%) !important;
}
.fc-teal-active:active {
  fill: hsl(180, 77%, 44%) !important;
}
.fc-teal-hover:hover {
  fill: hsl(180, 77%, 44%) !important;
}
.fc-teal-focus:focus {
  fill: hsl(180, 77%, 44%) !important;
}
.fc-cyan {
  fill: hsl(221, 100%, 79%) !important;
}
.fc-cyan-active:active {
  fill: hsl(221, 100%, 79%) !important;
}
.fc-cyan-hover:hover {
  fill: hsl(221, 100%, 79%) !important;
}
.fc-cyan-focus:focus {
  fill: hsl(221, 100%, 79%) !important;
}
.fc-cobalt {
  fill: hsl(215, 100%, 34%) !important;
}
.fc-cobalt-active:active {
  fill: hsl(215, 100%, 34%) !important;
}
.fc-cobalt-hover:hover {
  fill: hsl(215, 100%, 34%) !important;
}
.fc-cobalt-focus:focus {
  fill: hsl(215, 100%, 34%) !important;
}
.fc-indigo {
  fill: hsl(276, 100%, 33%) !important;
}
.fc-indigo-active:active {
  fill: hsl(276, 100%, 33%) !important;
}
.fc-indigo-hover:hover {
  fill: hsl(276, 100%, 33%) !important;
}
.fc-indigo-focus:focus {
  fill: hsl(276, 100%, 33%) !important;
}
.fc-almost {
  fill: hsl(259, 84%, 55%) !important;
}
.fc-almost-active:active {
  fill: hsl(259, 84%, 55%) !important;
}
.fc-almost-hover:hover {
  fill: hsl(259, 84%, 55%) !important;
}
.fc-almost-focus:focus {
  fill: hsl(259, 84%, 55%) !important;
}
.fc-violet {
  fill: hsl(300, 76%, 72%) !important;
}
.fc-violet-active:active {
  fill: hsl(300, 76%, 72%) !important;
}
.fc-violet-hover:hover {
  fill: hsl(300, 76%, 72%) !important;
}
.fc-violet-focus:focus {
  fill: hsl(300, 76%, 72%) !important;
}
.fc-pink {
  fill: hsl(350, 100%, 88%) !important;
}
.fc-pink-active:active {
  fill: hsl(350, 100%, 88%) !important;
}
.fc-pink-hover:hover {
  fill: hsl(350, 100%, 88%) !important;
}
.fc-pink-focus:focus {
  fill: hsl(350, 100%, 88%) !important;
}
.fc-magenta {
  fill: hsl(300, 100%, 50%) !important;
}
.fc-magenta-active:active {
  fill: hsl(300, 100%, 50%) !important;
}
.fc-magenta-hover:hover {
  fill: hsl(300, 100%, 50%) !important;
}
.fc-magenta-focus:focus {
  fill: hsl(300, 100%, 50%) !important;
}
.fc-crimson {
  fill: hsl(348, 88%, 46%) !important;
}
.fc-crimson-active:active {
  fill: hsl(348, 88%, 46%) !important;
}
.fc-crimson-hover:hover {
  fill: hsl(348, 88%, 46%) !important;
}
.fc-crimson-focus:focus {
  fill: hsl(348, 88%, 46%) !important;
}
.fc-red {
  fill: hsl(0, 100%, 50%) !important;
}
.fc-red-active:active {
  fill: hsl(0, 100%, 50%) !important;
}
.fc-red-hover:hover {
  fill: hsl(0, 100%, 50%) !important;
}
.fc-red-focus:focus {
  fill: hsl(0, 100%, 50%) !important;
}
.fc-clown {
  fill: hsl(3, 100%, 70%) !important;
}
.fc-clown-active:active {
  fill: hsl(3, 100%, 70%) !important;
}
.fc-clown-hover:hover {
  fill: hsl(3, 100%, 70%) !important;
}
.fc-clown-focus:focus {
  fill: hsl(3, 100%, 70%) !important;
}
.fc-orange {
  fill: hsl(39, 100%, 50%) !important;
}
.fc-orange-active:active {
  fill: hsl(39, 100%, 50%) !important;
}
.fc-orange-hover:hover {
  fill: hsl(39, 100%, 50%) !important;
}
.fc-orange-focus:focus {
  fill: hsl(39, 100%, 50%) !important;
}
.fc-amber {
  fill: hsl(45, 100%, 58%) !important;
}
.fc-amber-active:active {
  fill: hsl(45, 100%, 58%) !important;
}
.fc-amber-hover:hover {
  fill: hsl(45, 100%, 58%) !important;
}
.fc-amber-focus:focus {
  fill: hsl(45, 100%, 58%) !important;
}
.fc-yellow {
  fill: hsl(52, 100%, 68%) !important;
}
.fc-yellow-active:active {
  fill: hsl(52, 100%, 68%) !important;
}
.fc-yellow-hover:hover {
  fill: hsl(52, 100%, 68%) !important;
}
.fc-yellow-focus:focus {
  fill: hsl(52, 100%, 68%) !important;
}
.fc-brown {
  fill: hsl(25, 57%, 51%) !important;
}
.fc-brown-active:active {
  fill: hsl(25, 57%, 51%) !important;
}
.fc-brown-hover:hover {
  fill: hsl(25, 57%, 51%) !important;
}
.fc-brown-focus:focus {
  fill: hsl(25, 57%, 51%) !important;
}
.fc-olive {
  fill: hsl(60, 100%, 32%) !important;
}
.fc-olive-active:active {
  fill: hsl(60, 100%, 32%) !important;
}
.fc-olive-hover:hover {
  fill: hsl(60, 100%, 32%) !important;
}
.fc-olive-focus:focus {
  fill: hsl(60, 100%, 32%) !important;
}
.fc-steel {
  fill: hsl(209, 19%, 57%) !important;
}
.fc-steel-active:active {
  fill: hsl(209, 19%, 57%) !important;
}
.fc-steel-hover:hover {
  fill: hsl(209, 19%, 57%) !important;
}
.fc-steel-focus:focus {
  fill: hsl(209, 19%, 57%) !important;
}
.fc-mauve {
  fill: hsl(277, 100%, 84%) !important;
}
.fc-mauve-active:active {
  fill: hsl(277, 100%, 84%) !important;
}
.fc-mauve-hover:hover {
  fill: hsl(277, 100%, 84%) !important;
}
.fc-mauve-focus:focus {
  fill: hsl(277, 100%, 84%) !important;
}
.fc-taupe {
  fill: hsl(29, 19%, 50%) !important;
}
.fc-taupe-active:active {
  fill: hsl(29, 19%, 50%) !important;
}
.fc-taupe-hover:hover {
  fill: hsl(29, 19%, 50%) !important;
}
.fc-taupe-focus:focus {
  fill: hsl(29, 19%, 50%) !important;
}
.fc-champagne {
  fill: hsl(37, 74%, 88%) !important;
}
.fc-champagne-active:active {
  fill: hsl(37, 74%, 88%) !important;
}
.fc-champagne-hover:hover {
  fill: hsl(37, 74%, 88%) !important;
}
.fc-champagne-focus:focus {
  fill: hsl(37, 74%, 88%) !important;
}
.fc-khaki {
  fill: hsl(47, 47%, 69%) !important;
}
.fc-khaki-active:active {
  fill: hsl(47, 47%, 69%) !important;
}
.fc-khaki-hover:hover {
  fill: hsl(47, 47%, 69%) !important;
}
.fc-khaki-focus:focus {
  fill: hsl(47, 47%, 69%) !important;
}
.fc-charcoal {
  fill: hsl(0, 0%, 60%) !important;
}
.fc-charcoal-active:active {
  fill: hsl(0, 0%, 60%) !important;
}
.fc-charcoal-hover:hover {
  fill: hsl(0, 0%, 60%) !important;
}
.fc-charcoal-focus:focus {
  fill: hsl(0, 0%, 60%) !important;
}
.fc-bronze {
  fill: hsl(29, 75%, 57%) !important;
}
.fc-bronze-active:active {
  fill: hsl(29, 75%, 57%) !important;
}
.fc-bronze-hover:hover {
  fill: hsl(29, 75%, 57%) !important;
}
.fc-bronze-focus:focus {
  fill: hsl(29, 75%, 57%) !important;
}
.fc-windstorm {
  fill: hsl(216, 53%, 66%) !important;
}
.fc-windstorm-active:active {
  fill: hsl(216, 53%, 66%) !important;
}
.fc-windstorm-hover:hover {
  fill: hsl(216, 53%, 66%) !important;
}
.fc-windstorm-focus:focus {
  fill: hsl(216, 53%, 66%) !important;
}
.fc-nude {
  fill: hsl(29, 79%, 85%) !important;
}
.fc-nude-active:active {
  fill: hsl(29, 79%, 85%) !important;
}
.fc-nude-hover:hover {
  fill: hsl(29, 79%, 85%) !important;
}
.fc-nude-focus:focus {
  fill: hsl(29, 79%, 85%) !important;
}
.fc-terracotta {
  fill: hsl(10, 76%, 55%) !important;
}
.fc-terracotta-active:active {
  fill: hsl(10, 76%, 55%) !important;
}
.fc-terracotta-hover:hover {
  fill: hsl(10, 76%, 55%) !important;
}
.fc-terracotta-focus:focus {
  fill: hsl(10, 76%, 55%) !important;
}
.fc-coral {
  fill: hsl(16, 100%, 67%) !important;
}
.fc-coral-active:active {
  fill: hsl(16, 100%, 67%) !important;
}
.fc-coral-hover:hover {
  fill: hsl(16, 100%, 67%) !important;
}
.fc-coral-focus:focus {
  fill: hsl(16, 100%, 67%) !important;
}
.fc-army {
  fill: hsl(69, 34%, 30%) !important;
}
.fc-army-active:active {
  fill: hsl(69, 34%, 30%) !important;
}
.fc-army-hover:hover {
  fill: hsl(69, 34%, 30%) !important;
}
.fc-army-focus:focus {
  fill: hsl(69, 34%, 30%) !important;
}
.fc-seashell {
  fill: hsl(25, 100%, 95%) !important;
}
.fc-seashell-active:active {
  fill: hsl(25, 100%, 95%) !important;
}
.fc-seashell-hover:hover {
  fill: hsl(25, 100%, 95%) !important;
}
.fc-seashell-focus:focus {
  fill: hsl(25, 100%, 95%) !important;
}
.fc-sand {
  fill: hsl(45, 71%, 81%) !important;
}
.fc-sand-active:active {
  fill: hsl(45, 71%, 81%) !important;
}
.fc-sand-hover:hover {
  fill: hsl(45, 71%, 81%) !important;
}
.fc-sand-focus:focus {
  fill: hsl(45, 71%, 81%) !important;
}
.fc-light-gray {
  fill: hsl(0, 0%, 95%) !important;
}
.fc-light-gray-active:active {
  fill: hsl(0, 0%, 95%) !important;
}
.fc-light-gray-hover:hover {
  fill: hsl(0, 0%, 95%) !important;
}
.fc-light-gray-focus:focus {
  fill: hsl(0, 0%, 95%) !important;
}
.fc-minor-gray {
  fill: hsl(0, 0%, 87%) !important;
}
.fc-minor-gray-active:active {
  fill: hsl(0, 0%, 87%) !important;
}
.fc-minor-gray-hover:hover {
  fill: hsl(0, 0%, 87%) !important;
}
.fc-minor-gray-focus:focus {
  fill: hsl(0, 0%, 87%) !important;
}
.fc-sat-gray {
  fill: hsl(0, 0%, 65%) !important;
}
.fc-sat-gray-active:active {
  fill: hsl(0, 0%, 65%) !important;
}
.fc-sat-gray-hover:hover {
  fill: hsl(0, 0%, 65%) !important;
}
.fc-sat-gray-focus:focus {
  fill: hsl(0, 0%, 65%) !important;
}
.fc-dark-gray {
  fill: hsl(0, 0%, 55%) !important;
}
.fc-dark-gray-active:active {
  fill: hsl(0, 0%, 55%) !important;
}
.fc-dark-gray-hover:hover {
  fill: hsl(0, 0%, 55%) !important;
}
.fc-dark-gray-focus:focus {
  fill: hsl(0, 0%, 55%) !important;
}
.sc-gray {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-gray-active:active {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-gray-hover:hover {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-gray-focus:focus {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-light-gray {
  stroke: hsl(0, 0%, 95%) !important;
}
.sc-light-gray-active:active {
  stroke: hsl(0, 0%, 95%) !important;
}
.sc-light-gray-hover:hover {
  stroke: hsl(0, 0%, 95%) !important;
}
.sc-light-gray-focus:focus {
  stroke: hsl(0, 0%, 95%) !important;
}
.sc-minor-gray {
  stroke: hsl(0, 0%, 87%) !important;
}
.sc-minor-gray-active:active {
  stroke: hsl(0, 0%, 87%) !important;
}
.sc-minor-gray-hover:hover {
  stroke: hsl(0, 0%, 87%) !important;
}
.sc-minor-gray-focus:focus {
  stroke: hsl(0, 0%, 87%) !important;
}
.sc-sat-gray {
  stroke: hsl(0, 0%, 65%) !important;
}
.sc-sat-gray-active:active {
  stroke: hsl(0, 0%, 65%) !important;
}
.sc-sat-gray-hover:hover {
  stroke: hsl(0, 0%, 65%) !important;
}
.sc-sat-gray-focus:focus {
  stroke: hsl(0, 0%, 65%) !important;
}
.sc-dark-gray {
  stroke: hsl(0, 0%, 55%) !important;
}
.sc-dark-gray-active:active {
  stroke: hsl(0, 0%, 55%) !important;
}
.sc-dark-gray-hover:hover {
  stroke: hsl(0, 0%, 55%) !important;
}
.sc-dark-gray-focus:focus {
  stroke: hsl(0, 0%, 55%) !important;
}
.fc-light-gray-blue {
  fill: hsl(210, 26%, 84%) !important;
}
.fc-light-gray-blue-active:active {
  fill: hsl(210, 26%, 84%) !important;
}
.fc-light-gray-blue-hover:hover {
  fill: hsl(210, 26%, 84%) !important;
}
.fc-light-gray-blue-focus:focus {
  fill: hsl(210, 26%, 84%) !important;
}
.fc-minor-gray-blue {
  fill: hsl(210, 26%, 69%) !important;
}
.fc-minor-gray-blue-active:active {
  fill: hsl(210, 26%, 69%) !important;
}
.fc-minor-gray-blue-hover:hover {
  fill: hsl(210, 26%, 69%) !important;
}
.fc-minor-gray-blue-focus:focus {
  fill: hsl(210, 26%, 69%) !important;
}
.fc-sat-gray-blue {
  fill: hsl(210, 26%, 39%) !important;
}
.fc-sat-gray-blue-active:active {
  fill: hsl(210, 26%, 39%) !important;
}
.fc-sat-gray-blue-hover:hover {
  fill: hsl(210, 26%, 39%) !important;
}
.fc-sat-gray-blue-focus:focus {
  fill: hsl(210, 26%, 39%) !important;
}
.fc-dark-gray-blue {
  fill: hsl(210, 26%, 29%) !important;
}
.fc-dark-gray-blue-active:active {
  fill: hsl(210, 26%, 29%) !important;
}
.fc-dark-gray-blue-hover:hover {
  fill: hsl(210, 26%, 29%) !important;
}
.fc-dark-gray-blue-focus:focus {
  fill: hsl(210, 26%, 29%) !important;
}
.sc-gray-blue {
  stroke: hsl(210, 26%, 54%) !important;
}
.sc-gray-blue-active:active {
  stroke: hsl(210, 26%, 54%) !important;
}
.sc-gray-blue-hover:hover {
  stroke: hsl(210, 26%, 54%) !important;
}
.sc-gray-blue-focus:focus {
  stroke: hsl(210, 26%, 54%) !important;
}
.sc-light-gray-blue {
  stroke: hsl(210, 26%, 84%) !important;
}
.sc-light-gray-blue-active:active {
  stroke: hsl(210, 26%, 84%) !important;
}
.sc-light-gray-blue-hover:hover {
  stroke: hsl(210, 26%, 84%) !important;
}
.sc-light-gray-blue-focus:focus {
  stroke: hsl(210, 26%, 84%) !important;
}
.sc-minor-gray-blue {
  stroke: hsl(210, 26%, 69%) !important;
}
.sc-minor-gray-blue-active:active {
  stroke: hsl(210, 26%, 69%) !important;
}
.sc-minor-gray-blue-hover:hover {
  stroke: hsl(210, 26%, 69%) !important;
}
.sc-minor-gray-blue-focus:focus {
  stroke: hsl(210, 26%, 69%) !important;
}
.sc-sat-gray-blue {
  stroke: hsl(210, 26%, 39%) !important;
}
.sc-sat-gray-blue-active:active {
  stroke: hsl(210, 26%, 39%) !important;
}
.sc-sat-gray-blue-hover:hover {
  stroke: hsl(210, 26%, 39%) !important;
}
.sc-sat-gray-blue-focus:focus {
  stroke: hsl(210, 26%, 39%) !important;
}
.sc-dark-gray-blue {
  stroke: hsl(210, 26%, 29%) !important;
}
.sc-dark-gray-blue-active:active {
  stroke: hsl(210, 26%, 29%) !important;
}
.sc-dark-gray-blue-hover:hover {
  stroke: hsl(210, 26%, 29%) !important;
}
.sc-dark-gray-blue-focus:focus {
  stroke: hsl(210, 26%, 29%) !important;
}
.fc-light-gray-mouse {
  fill: hsl(199, 15%, 70%) !important;
}
.fc-light-gray-mouse-active:active {
  fill: hsl(199, 15%, 70%) !important;
}
.fc-light-gray-mouse-hover:hover {
  fill: hsl(199, 15%, 70%) !important;
}
.fc-light-gray-mouse-focus:focus {
  fill: hsl(199, 15%, 70%) !important;
}
.fc-minor-gray-mouse {
  fill: hsl(199, 15%, 55%) !important;
}
.fc-minor-gray-mouse-active:active {
  fill: hsl(199, 15%, 55%) !important;
}
.fc-minor-gray-mouse-hover:hover {
  fill: hsl(199, 15%, 55%) !important;
}
.fc-minor-gray-mouse-focus:focus {
  fill: hsl(199, 15%, 55%) !important;
}
.fc-sat-gray-mouse {
  fill: hsl(199, 15%, 25%) !important;
}
.fc-sat-gray-mouse-active:active {
  fill: hsl(199, 15%, 25%) !important;
}
.fc-sat-gray-mouse-hover:hover {
  fill: hsl(199, 15%, 25%) !important;
}
.fc-sat-gray-mouse-focus:focus {
  fill: hsl(199, 15%, 25%) !important;
}
.fc-dark-gray-mouse {
  fill: hsl(199, 15%, 15%) !important;
}
.fc-dark-gray-mouse-active:active {
  fill: hsl(199, 15%, 15%) !important;
}
.fc-dark-gray-mouse-hover:hover {
  fill: hsl(199, 15%, 15%) !important;
}
.fc-dark-gray-mouse-focus:focus {
  fill: hsl(199, 15%, 15%) !important;
}
.sc-gray-mouse {
  stroke: hsl(199, 15%, 40%) !important;
}
.sc-gray-mouse-active:active {
  stroke: hsl(199, 15%, 40%) !important;
}
.sc-gray-mouse-hover:hover {
  stroke: hsl(199, 15%, 40%) !important;
}
.sc-gray-mouse-focus:focus {
  stroke: hsl(199, 15%, 40%) !important;
}
.sc-light-gray-mouse {
  stroke: hsl(199, 15%, 70%) !important;
}
.sc-light-gray-mouse-active:active {
  stroke: hsl(199, 15%, 70%) !important;
}
.sc-light-gray-mouse-hover:hover {
  stroke: hsl(199, 15%, 70%) !important;
}
.sc-light-gray-mouse-focus:focus {
  stroke: hsl(199, 15%, 70%) !important;
}
.sc-minor-gray-mouse {
  stroke: hsl(199, 15%, 55%) !important;
}
.sc-minor-gray-mouse-active:active {
  stroke: hsl(199, 15%, 55%) !important;
}
.sc-minor-gray-mouse-hover:hover {
  stroke: hsl(199, 15%, 55%) !important;
}
.sc-minor-gray-mouse-focus:focus {
  stroke: hsl(199, 15%, 55%) !important;
}
.sc-sat-gray-mouse {
  stroke: hsl(199, 15%, 25%) !important;
}
.sc-sat-gray-mouse-active:active {
  stroke: hsl(199, 15%, 25%) !important;
}
.sc-sat-gray-mouse-hover:hover {
  stroke: hsl(199, 15%, 25%) !important;
}
.sc-sat-gray-mouse-focus:focus {
  stroke: hsl(199, 15%, 25%) !important;
}
.sc-dark-gray-mouse {
  stroke: hsl(199, 15%, 15%) !important;
}
.sc-dark-gray-mouse-active:active {
  stroke: hsl(199, 15%, 15%) !important;
}
.sc-dark-gray-mouse-hover:hover {
  stroke: hsl(199, 15%, 15%) !important;
}
.sc-dark-gray-mouse-focus:focus {
  stroke: hsl(199, 15%, 15%) !important;
}
.fc-light-lime {
  fill: hsl(93, 97%, 91%) !important;
}
.fc-light-lime-active:active {
  fill: hsl(93, 97%, 91%) !important;
}
.fc-light-lime-hover:hover {
  fill: hsl(93, 97%, 91%) !important;
}
.fc-light-lime-focus:focus {
  fill: hsl(93, 97%, 91%) !important;
}
.fc-minor-lime {
  fill: hsl(93, 97%, 81%) !important;
}
.fc-minor-lime-active:active {
  fill: hsl(93, 97%, 81%) !important;
}
.fc-minor-lime-hover:hover {
  fill: hsl(93, 97%, 81%) !important;
}
.fc-minor-lime-focus:focus {
  fill: hsl(93, 97%, 81%) !important;
}
.fc-sat-lime {
  fill: hsl(93, 97%, 56%) !important;
}
.fc-sat-lime-active:active {
  fill: hsl(93, 97%, 56%) !important;
}
.fc-sat-lime-hover:hover {
  fill: hsl(93, 97%, 56%) !important;
}
.fc-sat-lime-focus:focus {
  fill: hsl(93, 97%, 56%) !important;
}
.fc-dark-lime {
  fill: hsl(93, 97%, 46%) !important;
}
.fc-dark-lime-active:active {
  fill: hsl(93, 97%, 46%) !important;
}
.fc-dark-lime-hover:hover {
  fill: hsl(93, 97%, 46%) !important;
}
.fc-dark-lime-focus:focus {
  fill: hsl(93, 97%, 46%) !important;
}
.sc-lime {
  stroke: hsl(93, 97%, 71%) !important;
}
.sc-lime-active:active {
  stroke: hsl(93, 97%, 71%) !important;
}
.sc-lime-hover:hover {
  stroke: hsl(93, 97%, 71%) !important;
}
.sc-lime-focus:focus {
  stroke: hsl(93, 97%, 71%) !important;
}
.sc-light-lime {
  stroke: hsl(93, 97%, 91%) !important;
}
.sc-light-lime-active:active {
  stroke: hsl(93, 97%, 91%) !important;
}
.sc-light-lime-hover:hover {
  stroke: hsl(93, 97%, 91%) !important;
}
.sc-light-lime-focus:focus {
  stroke: hsl(93, 97%, 91%) !important;
}
.sc-minor-lime {
  stroke: hsl(93, 97%, 81%) !important;
}
.sc-minor-lime-active:active {
  stroke: hsl(93, 97%, 81%) !important;
}
.sc-minor-lime-hover:hover {
  stroke: hsl(93, 97%, 81%) !important;
}
.sc-minor-lime-focus:focus {
  stroke: hsl(93, 97%, 81%) !important;
}
.sc-sat-lime {
  stroke: hsl(93, 97%, 56%) !important;
}
.sc-sat-lime-active:active {
  stroke: hsl(93, 97%, 56%) !important;
}
.sc-sat-lime-hover:hover {
  stroke: hsl(93, 97%, 56%) !important;
}
.sc-sat-lime-focus:focus {
  stroke: hsl(93, 97%, 56%) !important;
}
.sc-dark-lime {
  stroke: hsl(93, 97%, 46%) !important;
}
.sc-dark-lime-active:active {
  stroke: hsl(93, 97%, 46%) !important;
}
.sc-dark-lime-hover:hover {
  stroke: hsl(93, 97%, 46%) !important;
}
.sc-dark-lime-focus:focus {
  stroke: hsl(93, 97%, 46%) !important;
}
.fc-light-green {
  fill: hsl(120, 100%, 80%) !important;
}
.fc-light-green-active:active {
  fill: hsl(120, 100%, 80%) !important;
}
.fc-light-green-hover:hover {
  fill: hsl(120, 100%, 80%) !important;
}
.fc-light-green-focus:focus {
  fill: hsl(120, 100%, 80%) !important;
}
.fc-minor-green {
  fill: hsl(120, 100%, 45%) !important;
}
.fc-minor-green-active:active {
  fill: hsl(120, 100%, 45%) !important;
}
.fc-minor-green-hover:hover {
  fill: hsl(120, 100%, 45%) !important;
}
.fc-minor-green-focus:focus {
  fill: hsl(120, 100%, 45%) !important;
}
.fc-sat-green {
  fill: hsl(120, 100%, 20%) !important;
}
.fc-sat-green-active:active {
  fill: hsl(120, 100%, 20%) !important;
}
.fc-sat-green-hover:hover {
  fill: hsl(120, 100%, 20%) !important;
}
.fc-sat-green-focus:focus {
  fill: hsl(120, 100%, 20%) !important;
}
.fc-dark-green {
  fill: hsl(120, 100%, 10%) !important;
}
.fc-dark-green-active:active {
  fill: hsl(120, 100%, 10%) !important;
}
.fc-dark-green-hover:hover {
  fill: hsl(120, 100%, 10%) !important;
}
.fc-dark-green-focus:focus {
  fill: hsl(120, 100%, 10%) !important;
}
.sc-green {
  stroke: hsl(120, 100%, 35%) !important;
}
.sc-green-active:active {
  stroke: hsl(120, 100%, 35%) !important;
}
.sc-green-hover:hover {
  stroke: hsl(120, 100%, 35%) !important;
}
.sc-green-focus:focus {
  stroke: hsl(120, 100%, 35%) !important;
}
.sc-light-green {
  stroke: hsl(120, 100%, 80%) !important;
}
.sc-light-green-active:active {
  stroke: hsl(120, 100%, 80%) !important;
}
.sc-light-green-hover:hover {
  stroke: hsl(120, 100%, 80%) !important;
}
.sc-light-green-focus:focus {
  stroke: hsl(120, 100%, 80%) !important;
}
.sc-minor-green {
  stroke: hsl(120, 100%, 45%) !important;
}
.sc-minor-green-active:active {
  stroke: hsl(120, 100%, 45%) !important;
}
.sc-minor-green-hover:hover {
  stroke: hsl(120, 100%, 45%) !important;
}
.sc-minor-green-focus:focus {
  stroke: hsl(120, 100%, 45%) !important;
}
.sc-sat-green {
  stroke: hsl(120, 100%, 20%) !important;
}
.sc-sat-green-active:active {
  stroke: hsl(120, 100%, 20%) !important;
}
.sc-sat-green-hover:hover {
  stroke: hsl(120, 100%, 20%) !important;
}
.sc-sat-green-focus:focus {
  stroke: hsl(120, 100%, 20%) !important;
}
.sc-dark-green {
  stroke: hsl(120, 100%, 10%) !important;
}
.sc-dark-green-active:active {
  stroke: hsl(120, 100%, 10%) !important;
}
.sc-dark-green-hover:hover {
  stroke: hsl(120, 100%, 10%) !important;
}
.sc-dark-green-focus:focus {
  stroke: hsl(120, 100%, 10%) !important;
}
.fc-light-emerald {
  fill: hsl(140, 52%, 85%) !important;
}
.fc-light-emerald-active:active {
  fill: hsl(140, 52%, 85%) !important;
}
.fc-light-emerald-hover:hover {
  fill: hsl(140, 52%, 85%) !important;
}
.fc-light-emerald-focus:focus {
  fill: hsl(140, 52%, 85%) !important;
}
.fc-minor-emerald {
  fill: hsl(140, 52%, 65%) !important;
}
.fc-minor-emerald-active:active {
  fill: hsl(140, 52%, 65%) !important;
}
.fc-minor-emerald-hover:hover {
  fill: hsl(140, 52%, 65%) !important;
}
.fc-minor-emerald-focus:focus {
  fill: hsl(140, 52%, 65%) !important;
}
.fc-sat-emerald {
  fill: hsl(140, 52%, 40%) !important;
}
.fc-sat-emerald-active:active {
  fill: hsl(140, 52%, 40%) !important;
}
.fc-sat-emerald-hover:hover {
  fill: hsl(140, 52%, 40%) !important;
}
.fc-sat-emerald-focus:focus {
  fill: hsl(140, 52%, 40%) !important;
}
.fc-dark-emerald {
  fill: hsl(140, 52%, 30%) !important;
}
.fc-dark-emerald-active:active {
  fill: hsl(140, 52%, 30%) !important;
}
.fc-dark-emerald-hover:hover {
  fill: hsl(140, 52%, 30%) !important;
}
.fc-dark-emerald-focus:focus {
  fill: hsl(140, 52%, 30%) !important;
}
.sc-emerald {
  stroke: hsl(140, 52%, 55%) !important;
}
.sc-emerald-active:active {
  stroke: hsl(140, 52%, 55%) !important;
}
.sc-emerald-hover:hover {
  stroke: hsl(140, 52%, 55%) !important;
}
.sc-emerald-focus:focus {
  stroke: hsl(140, 52%, 55%) !important;
}
.sc-light-emerald {
  stroke: hsl(140, 52%, 85%) !important;
}
.sc-light-emerald-active:active {
  stroke: hsl(140, 52%, 85%) !important;
}
.sc-light-emerald-hover:hover {
  stroke: hsl(140, 52%, 85%) !important;
}
.sc-light-emerald-focus:focus {
  stroke: hsl(140, 52%, 85%) !important;
}
.sc-minor-emerald {
  stroke: hsl(140, 52%, 65%) !important;
}
.sc-minor-emerald-active:active {
  stroke: hsl(140, 52%, 65%) !important;
}
.sc-minor-emerald-hover:hover {
  stroke: hsl(140, 52%, 65%) !important;
}
.sc-minor-emerald-focus:focus {
  stroke: hsl(140, 52%, 65%) !important;
}
.sc-sat-emerald {
  stroke: hsl(140, 52%, 40%) !important;
}
.sc-sat-emerald-active:active {
  stroke: hsl(140, 52%, 40%) !important;
}
.sc-sat-emerald-hover:hover {
  stroke: hsl(140, 52%, 40%) !important;
}
.sc-sat-emerald-focus:focus {
  stroke: hsl(140, 52%, 40%) !important;
}
.sc-dark-emerald {
  stroke: hsl(140, 52%, 30%) !important;
}
.sc-dark-emerald-active:active {
  stroke: hsl(140, 52%, 30%) !important;
}
.sc-dark-emerald-hover:hover {
  stroke: hsl(140, 52%, 30%) !important;
}
.sc-dark-emerald-focus:focus {
  stroke: hsl(140, 52%, 30%) !important;
}
.fc-light-blue {
  fill: hsl(225, 100%, 93%) !important;
}
.fc-light-blue-active:active {
  fill: hsl(225, 100%, 93%) !important;
}
.fc-light-blue-hover:hover {
  fill: hsl(225, 100%, 93%) !important;
}
.fc-light-blue-focus:focus {
  fill: hsl(225, 100%, 93%) !important;
}
.fc-minor-blue {
  fill: hsl(225, 100%, 78%) !important;
}
.fc-minor-blue-active:active {
  fill: hsl(225, 100%, 78%) !important;
}
.fc-minor-blue-hover:hover {
  fill: hsl(225, 100%, 78%) !important;
}
.fc-minor-blue-focus:focus {
  fill: hsl(225, 100%, 78%) !important;
}
.fc-sat-blue {
  fill: hsl(225, 100%, 53%) !important;
}
.fc-sat-blue-active:active {
  fill: hsl(225, 100%, 53%) !important;
}
.fc-sat-blue-hover:hover {
  fill: hsl(225, 100%, 53%) !important;
}
.fc-sat-blue-focus:focus {
  fill: hsl(225, 100%, 53%) !important;
}
.fc-dark-blue {
  fill: hsl(225, 100%, 43%) !important;
}
.fc-dark-blue-active:active {
  fill: hsl(225, 100%, 43%) !important;
}
.fc-dark-blue-hover:hover {
  fill: hsl(225, 100%, 43%) !important;
}
.fc-dark-blue-focus:focus {
  fill: hsl(225, 100%, 43%) !important;
}
.sc-blue {
  stroke: hsl(225, 100%, 68%) !important;
}
.sc-blue-active:active {
  stroke: hsl(225, 100%, 68%) !important;
}
.sc-blue-hover:hover {
  stroke: hsl(225, 100%, 68%) !important;
}
.sc-blue-focus:focus {
  stroke: hsl(225, 100%, 68%) !important;
}
.sc-light-blue {
  stroke: hsl(225, 100%, 93%) !important;
}
.sc-light-blue-active:active {
  stroke: hsl(225, 100%, 93%) !important;
}
.sc-light-blue-hover:hover {
  stroke: hsl(225, 100%, 93%) !important;
}
.sc-light-blue-focus:focus {
  stroke: hsl(225, 100%, 93%) !important;
}
.sc-minor-blue {
  stroke: hsl(225, 100%, 78%) !important;
}
.sc-minor-blue-active:active {
  stroke: hsl(225, 100%, 78%) !important;
}
.sc-minor-blue-hover:hover {
  stroke: hsl(225, 100%, 78%) !important;
}
.sc-minor-blue-focus:focus {
  stroke: hsl(225, 100%, 78%) !important;
}
.sc-sat-blue {
  stroke: hsl(225, 100%, 53%) !important;
}
.sc-sat-blue-active:active {
  stroke: hsl(225, 100%, 53%) !important;
}
.sc-sat-blue-hover:hover {
  stroke: hsl(225, 100%, 53%) !important;
}
.sc-sat-blue-focus:focus {
  stroke: hsl(225, 100%, 53%) !important;
}
.sc-dark-blue {
  stroke: hsl(225, 100%, 43%) !important;
}
.sc-dark-blue-active:active {
  stroke: hsl(225, 100%, 43%) !important;
}
.sc-dark-blue-hover:hover {
  stroke: hsl(225, 100%, 43%) !important;
}
.sc-dark-blue-focus:focus {
  stroke: hsl(225, 100%, 43%) !important;
}
.fc-light-teal {
  fill: hsl(180, 77%, 79%) !important;
}
.fc-light-teal-active:active {
  fill: hsl(180, 77%, 79%) !important;
}
.fc-light-teal-hover:hover {
  fill: hsl(180, 77%, 79%) !important;
}
.fc-light-teal-focus:focus {
  fill: hsl(180, 77%, 79%) !important;
}
.fc-minor-teal {
  fill: hsl(180, 77%, 54%) !important;
}
.fc-minor-teal-active:active {
  fill: hsl(180, 77%, 54%) !important;
}
.fc-minor-teal-hover:hover {
  fill: hsl(180, 77%, 54%) !important;
}
.fc-minor-teal-focus:focus {
  fill: hsl(180, 77%, 54%) !important;
}
.fc-sat-teal {
  fill: hsl(180, 77%, 29%) !important;
}
.fc-sat-teal-active:active {
  fill: hsl(180, 77%, 29%) !important;
}
.fc-sat-teal-hover:hover {
  fill: hsl(180, 77%, 29%) !important;
}
.fc-sat-teal-focus:focus {
  fill: hsl(180, 77%, 29%) !important;
}
.fc-dark-teal {
  fill: hsl(180, 77%, 19%) !important;
}
.fc-dark-teal-active:active {
  fill: hsl(180, 77%, 19%) !important;
}
.fc-dark-teal-hover:hover {
  fill: hsl(180, 77%, 19%) !important;
}
.fc-dark-teal-focus:focus {
  fill: hsl(180, 77%, 19%) !important;
}
.sc-teal {
  stroke: hsl(180, 77%, 44%) !important;
}
.sc-teal-active:active {
  stroke: hsl(180, 77%, 44%) !important;
}
.sc-teal-hover:hover {
  stroke: hsl(180, 77%, 44%) !important;
}
.sc-teal-focus:focus {
  stroke: hsl(180, 77%, 44%) !important;
}
.sc-light-teal {
  stroke: hsl(180, 77%, 79%) !important;
}
.sc-light-teal-active:active {
  stroke: hsl(180, 77%, 79%) !important;
}
.sc-light-teal-hover:hover {
  stroke: hsl(180, 77%, 79%) !important;
}
.sc-light-teal-focus:focus {
  stroke: hsl(180, 77%, 79%) !important;
}
.sc-minor-teal {
  stroke: hsl(180, 77%, 54%) !important;
}
.sc-minor-teal-active:active {
  stroke: hsl(180, 77%, 54%) !important;
}
.sc-minor-teal-hover:hover {
  stroke: hsl(180, 77%, 54%) !important;
}
.sc-minor-teal-focus:focus {
  stroke: hsl(180, 77%, 54%) !important;
}
.sc-sat-teal {
  stroke: hsl(180, 77%, 29%) !important;
}
.sc-sat-teal-active:active {
  stroke: hsl(180, 77%, 29%) !important;
}
.sc-sat-teal-hover:hover {
  stroke: hsl(180, 77%, 29%) !important;
}
.sc-sat-teal-focus:focus {
  stroke: hsl(180, 77%, 29%) !important;
}
.sc-dark-teal {
  stroke: hsl(180, 77%, 19%) !important;
}
.sc-dark-teal-active:active {
  stroke: hsl(180, 77%, 19%) !important;
}
.sc-dark-teal-hover:hover {
  stroke: hsl(180, 77%, 19%) !important;
}
.sc-dark-teal-focus:focus {
  stroke: hsl(180, 77%, 19%) !important;
}
.fc-light-cyan {
  fill: hsl(221, 100%, 94%) !important;
}
.fc-light-cyan-active:active {
  fill: hsl(221, 100%, 94%) !important;
}
.fc-light-cyan-hover:hover {
  fill: hsl(221, 100%, 94%) !important;
}
.fc-light-cyan-focus:focus {
  fill: hsl(221, 100%, 94%) !important;
}
.fc-minor-cyan {
  fill: hsl(221, 100%, 89%) !important;
}
.fc-minor-cyan-active:active {
  fill: hsl(221, 100%, 89%) !important;
}
.fc-minor-cyan-hover:hover {
  fill: hsl(221, 100%, 89%) !important;
}
.fc-minor-cyan-focus:focus {
  fill: hsl(221, 100%, 89%) !important;
}
.fc-sat-cyan {
  fill: hsl(221, 100%, 64%) !important;
}
.fc-sat-cyan-active:active {
  fill: hsl(221, 100%, 64%) !important;
}
.fc-sat-cyan-hover:hover {
  fill: hsl(221, 100%, 64%) !important;
}
.fc-sat-cyan-focus:focus {
  fill: hsl(221, 100%, 64%) !important;
}
.fc-dark-cyan {
  fill: hsl(221, 100%, 54%) !important;
}
.fc-dark-cyan-active:active {
  fill: hsl(221, 100%, 54%) !important;
}
.fc-dark-cyan-hover:hover {
  fill: hsl(221, 100%, 54%) !important;
}
.fc-dark-cyan-focus:focus {
  fill: hsl(221, 100%, 54%) !important;
}
.sc-cyan {
  stroke: hsl(221, 100%, 79%) !important;
}
.sc-cyan-active:active {
  stroke: hsl(221, 100%, 79%) !important;
}
.sc-cyan-hover:hover {
  stroke: hsl(221, 100%, 79%) !important;
}
.sc-cyan-focus:focus {
  stroke: hsl(221, 100%, 79%) !important;
}
.sc-light-cyan {
  stroke: hsl(221, 100%, 94%) !important;
}
.sc-light-cyan-active:active {
  stroke: hsl(221, 100%, 94%) !important;
}
.sc-light-cyan-hover:hover {
  stroke: hsl(221, 100%, 94%) !important;
}
.sc-light-cyan-focus:focus {
  stroke: hsl(221, 100%, 94%) !important;
}
.sc-minor-cyan {
  stroke: hsl(221, 100%, 89%) !important;
}
.sc-minor-cyan-active:active {
  stroke: hsl(221, 100%, 89%) !important;
}
.sc-minor-cyan-hover:hover {
  stroke: hsl(221, 100%, 89%) !important;
}
.sc-minor-cyan-focus:focus {
  stroke: hsl(221, 100%, 89%) !important;
}
.sc-sat-cyan {
  stroke: hsl(221, 100%, 64%) !important;
}
.sc-sat-cyan-active:active {
  stroke: hsl(221, 100%, 64%) !important;
}
.sc-sat-cyan-hover:hover {
  stroke: hsl(221, 100%, 64%) !important;
}
.sc-sat-cyan-focus:focus {
  stroke: hsl(221, 100%, 64%) !important;
}
.sc-dark-cyan {
  stroke: hsl(221, 100%, 54%) !important;
}
.sc-dark-cyan-active:active {
  stroke: hsl(221, 100%, 54%) !important;
}
.sc-dark-cyan-hover:hover {
  stroke: hsl(221, 100%, 54%) !important;
}
.sc-dark-cyan-focus:focus {
  stroke: hsl(221, 100%, 54%) !important;
}
.fc-light-cobalt {
  fill: hsl(215, 100%, 79%) !important;
}
.fc-light-cobalt-active:active {
  fill: hsl(215, 100%, 79%) !important;
}
.fc-light-cobalt-hover:hover {
  fill: hsl(215, 100%, 79%) !important;
}
.fc-light-cobalt-focus:focus {
  fill: hsl(215, 100%, 79%) !important;
}
.fc-minor-cobalt {
  fill: hsl(215, 100%, 49%) !important;
}
.fc-minor-cobalt-active:active {
  fill: hsl(215, 100%, 49%) !important;
}
.fc-minor-cobalt-hover:hover {
  fill: hsl(215, 100%, 49%) !important;
}
.fc-minor-cobalt-focus:focus {
  fill: hsl(215, 100%, 49%) !important;
}
.fc-sat-cobalt {
  fill: hsl(215, 100%, 19%) !important;
}
.fc-sat-cobalt-active:active {
  fill: hsl(215, 100%, 19%) !important;
}
.fc-sat-cobalt-hover:hover {
  fill: hsl(215, 100%, 19%) !important;
}
.fc-sat-cobalt-focus:focus {
  fill: hsl(215, 100%, 19%) !important;
}
.fc-dark-cobalt {
  fill: hsl(215, 100%, 9%) !important;
}
.fc-dark-cobalt-active:active {
  fill: hsl(215, 100%, 9%) !important;
}
.fc-dark-cobalt-hover:hover {
  fill: hsl(215, 100%, 9%) !important;
}
.fc-dark-cobalt-focus:focus {
  fill: hsl(215, 100%, 9%) !important;
}
.sc-cobalt {
  stroke: hsl(215, 100%, 34%) !important;
}
.sc-cobalt-active:active {
  stroke: hsl(215, 100%, 34%) !important;
}
.sc-cobalt-hover:hover {
  stroke: hsl(215, 100%, 34%) !important;
}
.sc-cobalt-focus:focus {
  stroke: hsl(215, 100%, 34%) !important;
}
.sc-light-cobalt {
  stroke: hsl(215, 100%, 79%) !important;
}
.sc-light-cobalt-active:active {
  stroke: hsl(215, 100%, 79%) !important;
}
.sc-light-cobalt-hover:hover {
  stroke: hsl(215, 100%, 79%) !important;
}
.sc-light-cobalt-focus:focus {
  stroke: hsl(215, 100%, 79%) !important;
}
.sc-minor-cobalt {
  stroke: hsl(215, 100%, 49%) !important;
}
.sc-minor-cobalt-active:active {
  stroke: hsl(215, 100%, 49%) !important;
}
.sc-minor-cobalt-hover:hover {
  stroke: hsl(215, 100%, 49%) !important;
}
.sc-minor-cobalt-focus:focus {
  stroke: hsl(215, 100%, 49%) !important;
}
.sc-sat-cobalt {
  stroke: hsl(215, 100%, 19%) !important;
}
.sc-sat-cobalt-active:active {
  stroke: hsl(215, 100%, 19%) !important;
}
.sc-sat-cobalt-hover:hover {
  stroke: hsl(215, 100%, 19%) !important;
}
.sc-sat-cobalt-focus:focus {
  stroke: hsl(215, 100%, 19%) !important;
}
.sc-dark-cobalt {
  stroke: hsl(215, 100%, 9%) !important;
}
.sc-dark-cobalt-active:active {
  stroke: hsl(215, 100%, 9%) !important;
}
.sc-dark-cobalt-hover:hover {
  stroke: hsl(215, 100%, 9%) !important;
}
.sc-dark-cobalt-focus:focus {
  stroke: hsl(215, 100%, 9%) !important;
}
.fc-light-indigo {
  fill: hsl(276, 100%, 78%) !important;
}
.fc-light-indigo-active:active {
  fill: hsl(276, 100%, 78%) !important;
}
.fc-light-indigo-hover:hover {
  fill: hsl(276, 100%, 78%) !important;
}
.fc-light-indigo-focus:focus {
  fill: hsl(276, 100%, 78%) !important;
}
.fc-minor-indigo {
  fill: hsl(276, 100%, 48%) !important;
}
.fc-minor-indigo-active:active {
  fill: hsl(276, 100%, 48%) !important;
}
.fc-minor-indigo-hover:hover {
  fill: hsl(276, 100%, 48%) !important;
}
.fc-minor-indigo-focus:focus {
  fill: hsl(276, 100%, 48%) !important;
}
.fc-sat-indigo {
  fill: hsl(276, 100%, 18%) !important;
}
.fc-sat-indigo-active:active {
  fill: hsl(276, 100%, 18%) !important;
}
.fc-sat-indigo-hover:hover {
  fill: hsl(276, 100%, 18%) !important;
}
.fc-sat-indigo-focus:focus {
  fill: hsl(276, 100%, 18%) !important;
}
.fc-dark-indigo {
  fill: hsl(276, 100%, 8%) !important;
}
.fc-dark-indigo-active:active {
  fill: hsl(276, 100%, 8%) !important;
}
.fc-dark-indigo-hover:hover {
  fill: hsl(276, 100%, 8%) !important;
}
.fc-dark-indigo-focus:focus {
  fill: hsl(276, 100%, 8%) !important;
}
.sc-indigo {
  stroke: hsl(276, 100%, 33%) !important;
}
.sc-indigo-active:active {
  stroke: hsl(276, 100%, 33%) !important;
}
.sc-indigo-hover:hover {
  stroke: hsl(276, 100%, 33%) !important;
}
.sc-indigo-focus:focus {
  stroke: hsl(276, 100%, 33%) !important;
}
.sc-light-indigo {
  stroke: hsl(276, 100%, 78%) !important;
}
.sc-light-indigo-active:active {
  stroke: hsl(276, 100%, 78%) !important;
}
.sc-light-indigo-hover:hover {
  stroke: hsl(276, 100%, 78%) !important;
}
.sc-light-indigo-focus:focus {
  stroke: hsl(276, 100%, 78%) !important;
}
.sc-minor-indigo {
  stroke: hsl(276, 100%, 48%) !important;
}
.sc-minor-indigo-active:active {
  stroke: hsl(276, 100%, 48%) !important;
}
.sc-minor-indigo-hover:hover {
  stroke: hsl(276, 100%, 48%) !important;
}
.sc-minor-indigo-focus:focus {
  stroke: hsl(276, 100%, 48%) !important;
}
.sc-sat-indigo {
  stroke: hsl(276, 100%, 18%) !important;
}
.sc-sat-indigo-active:active {
  stroke: hsl(276, 100%, 18%) !important;
}
.sc-sat-indigo-hover:hover {
  stroke: hsl(276, 100%, 18%) !important;
}
.sc-sat-indigo-focus:focus {
  stroke: hsl(276, 100%, 18%) !important;
}
.sc-dark-indigo {
  stroke: hsl(276, 100%, 8%) !important;
}
.sc-dark-indigo-active:active {
  stroke: hsl(276, 100%, 8%) !important;
}
.sc-dark-indigo-hover:hover {
  stroke: hsl(276, 100%, 8%) !important;
}
.sc-dark-indigo-focus:focus {
  stroke: hsl(276, 100%, 8%) !important;
}
.fc-light-almost {
  fill: hsl(259, 84%, 85%) !important;
}
.fc-light-almost-active:active {
  fill: hsl(259, 84%, 85%) !important;
}
.fc-light-almost-hover:hover {
  fill: hsl(259, 84%, 85%) !important;
}
.fc-light-almost-focus:focus {
  fill: hsl(259, 84%, 85%) !important;
}
.fc-minor-almost {
  fill: hsl(259, 84%, 70%) !important;
}
.fc-minor-almost-active:active {
  fill: hsl(259, 84%, 70%) !important;
}
.fc-minor-almost-hover:hover {
  fill: hsl(259, 84%, 70%) !important;
}
.fc-minor-almost-focus:focus {
  fill: hsl(259, 84%, 70%) !important;
}
.fc-sat-almost {
  fill: hsl(259, 84%, 40%) !important;
}
.fc-sat-almost-active:active {
  fill: hsl(259, 84%, 40%) !important;
}
.fc-sat-almost-hover:hover {
  fill: hsl(259, 84%, 40%) !important;
}
.fc-sat-almost-focus:focus {
  fill: hsl(259, 84%, 40%) !important;
}
.fc-dark-almost {
  fill: hsl(259, 84%, 30%) !important;
}
.fc-dark-almost-active:active {
  fill: hsl(259, 84%, 30%) !important;
}
.fc-dark-almost-hover:hover {
  fill: hsl(259, 84%, 30%) !important;
}
.fc-dark-almost-focus:focus {
  fill: hsl(259, 84%, 30%) !important;
}
.sc-almost {
  stroke: hsl(259, 84%, 55%) !important;
}
.sc-almost-active:active {
  stroke: hsl(259, 84%, 55%) !important;
}
.sc-almost-hover:hover {
  stroke: hsl(259, 84%, 55%) !important;
}
.sc-almost-focus:focus {
  stroke: hsl(259, 84%, 55%) !important;
}
.sc-light-almost {
  stroke: hsl(259, 84%, 85%) !important;
}
.sc-light-almost-active:active {
  stroke: hsl(259, 84%, 85%) !important;
}
.sc-light-almost-hover:hover {
  stroke: hsl(259, 84%, 85%) !important;
}
.sc-light-almost-focus:focus {
  stroke: hsl(259, 84%, 85%) !important;
}
.sc-minor-almost {
  stroke: hsl(259, 84%, 70%) !important;
}
.sc-minor-almost-active:active {
  stroke: hsl(259, 84%, 70%) !important;
}
.sc-minor-almost-hover:hover {
  stroke: hsl(259, 84%, 70%) !important;
}
.sc-minor-almost-focus:focus {
  stroke: hsl(259, 84%, 70%) !important;
}
.sc-sat-almost {
  stroke: hsl(259, 84%, 40%) !important;
}
.sc-sat-almost-active:active {
  stroke: hsl(259, 84%, 40%) !important;
}
.sc-sat-almost-hover:hover {
  stroke: hsl(259, 84%, 40%) !important;
}
.sc-sat-almost-focus:focus {
  stroke: hsl(259, 84%, 40%) !important;
}
.sc-dark-almost {
  stroke: hsl(259, 84%, 30%) !important;
}
.sc-dark-almost-active:active {
  stroke: hsl(259, 84%, 30%) !important;
}
.sc-dark-almost-hover:hover {
  stroke: hsl(259, 84%, 30%) !important;
}
.sc-dark-almost-focus:focus {
  stroke: hsl(259, 84%, 30%) !important;
}
.fc-light-violet {
  fill: hsl(300, 76%, 92%) !important;
}
.fc-light-violet-active:active {
  fill: hsl(300, 76%, 92%) !important;
}
.fc-light-violet-hover:hover {
  fill: hsl(300, 76%, 92%) !important;
}
.fc-light-violet-focus:focus {
  fill: hsl(300, 76%, 92%) !important;
}
.fc-minor-violet {
  fill: hsl(300, 76%, 82%) !important;
}
.fc-minor-violet-active:active {
  fill: hsl(300, 76%, 82%) !important;
}
.fc-minor-violet-hover:hover {
  fill: hsl(300, 76%, 82%) !important;
}
.fc-minor-violet-focus:focus {
  fill: hsl(300, 76%, 82%) !important;
}
.fc-sat-violet {
  fill: hsl(300, 76%, 57%) !important;
}
.fc-sat-violet-active:active {
  fill: hsl(300, 76%, 57%) !important;
}
.fc-sat-violet-hover:hover {
  fill: hsl(300, 76%, 57%) !important;
}
.fc-sat-violet-focus:focus {
  fill: hsl(300, 76%, 57%) !important;
}
.fc-dark-violet {
  fill: hsl(300, 76%, 47%) !important;
}
.fc-dark-violet-active:active {
  fill: hsl(300, 76%, 47%) !important;
}
.fc-dark-violet-hover:hover {
  fill: hsl(300, 76%, 47%) !important;
}
.fc-dark-violet-focus:focus {
  fill: hsl(300, 76%, 47%) !important;
}
.sc-violet {
  stroke: hsl(300, 76%, 72%) !important;
}
.sc-violet-active:active {
  stroke: hsl(300, 76%, 72%) !important;
}
.sc-violet-hover:hover {
  stroke: hsl(300, 76%, 72%) !important;
}
.sc-violet-focus:focus {
  stroke: hsl(300, 76%, 72%) !important;
}
.sc-light-violet {
  stroke: hsl(300, 76%, 92%) !important;
}
.sc-light-violet-active:active {
  stroke: hsl(300, 76%, 92%) !important;
}
.sc-light-violet-hover:hover {
  stroke: hsl(300, 76%, 92%) !important;
}
.sc-light-violet-focus:focus {
  stroke: hsl(300, 76%, 92%) !important;
}
.sc-minor-violet {
  stroke: hsl(300, 76%, 82%) !important;
}
.sc-minor-violet-active:active {
  stroke: hsl(300, 76%, 82%) !important;
}
.sc-minor-violet-hover:hover {
  stroke: hsl(300, 76%, 82%) !important;
}
.sc-minor-violet-focus:focus {
  stroke: hsl(300, 76%, 82%) !important;
}
.sc-sat-violet {
  stroke: hsl(300, 76%, 57%) !important;
}
.sc-sat-violet-active:active {
  stroke: hsl(300, 76%, 57%) !important;
}
.sc-sat-violet-hover:hover {
  stroke: hsl(300, 76%, 57%) !important;
}
.sc-sat-violet-focus:focus {
  stroke: hsl(300, 76%, 57%) !important;
}
.sc-dark-violet {
  stroke: hsl(300, 76%, 47%) !important;
}
.sc-dark-violet-active:active {
  stroke: hsl(300, 76%, 47%) !important;
}
.sc-dark-violet-hover:hover {
  stroke: hsl(300, 76%, 47%) !important;
}
.sc-dark-violet-focus:focus {
  stroke: hsl(300, 76%, 47%) !important;
}
.fc-light-pink {
  fill: hsl(350, 100%, 98%) !important;
}
.fc-light-pink-active:active {
  fill: hsl(350, 100%, 98%) !important;
}
.fc-light-pink-hover:hover {
  fill: hsl(350, 100%, 98%) !important;
}
.fc-light-pink-focus:focus {
  fill: hsl(350, 100%, 98%) !important;
}
.fc-minor-pink {
  fill: hsl(350, 100%, 93%) !important;
}
.fc-minor-pink-active:active {
  fill: hsl(350, 100%, 93%) !important;
}
.fc-minor-pink-hover:hover {
  fill: hsl(350, 100%, 93%) !important;
}
.fc-minor-pink-focus:focus {
  fill: hsl(350, 100%, 93%) !important;
}
.fc-sat-pink {
  fill: hsl(350, 100%, 73%) !important;
}
.fc-sat-pink-active:active {
  fill: hsl(350, 100%, 73%) !important;
}
.fc-sat-pink-hover:hover {
  fill: hsl(350, 100%, 73%) !important;
}
.fc-sat-pink-focus:focus {
  fill: hsl(350, 100%, 73%) !important;
}
.fc-dark-pink {
  fill: hsl(350, 100%, 63%) !important;
}
.fc-dark-pink-active:active {
  fill: hsl(350, 100%, 63%) !important;
}
.fc-dark-pink-hover:hover {
  fill: hsl(350, 100%, 63%) !important;
}
.fc-dark-pink-focus:focus {
  fill: hsl(350, 100%, 63%) !important;
}
.sc-pink {
  stroke: hsl(350, 100%, 88%) !important;
}
.sc-pink-active:active {
  stroke: hsl(350, 100%, 88%) !important;
}
.sc-pink-hover:hover {
  stroke: hsl(350, 100%, 88%) !important;
}
.sc-pink-focus:focus {
  stroke: hsl(350, 100%, 88%) !important;
}
.sc-light-pink {
  stroke: hsl(350, 100%, 98%) !important;
}
.sc-light-pink-active:active {
  stroke: hsl(350, 100%, 98%) !important;
}
.sc-light-pink-hover:hover {
  stroke: hsl(350, 100%, 98%) !important;
}
.sc-light-pink-focus:focus {
  stroke: hsl(350, 100%, 98%) !important;
}
.sc-minor-pink {
  stroke: hsl(350, 100%, 93%) !important;
}
.sc-minor-pink-active:active {
  stroke: hsl(350, 100%, 93%) !important;
}
.sc-minor-pink-hover:hover {
  stroke: hsl(350, 100%, 93%) !important;
}
.sc-minor-pink-focus:focus {
  stroke: hsl(350, 100%, 93%) !important;
}
.sc-sat-pink {
  stroke: hsl(350, 100%, 73%) !important;
}
.sc-sat-pink-active:active {
  stroke: hsl(350, 100%, 73%) !important;
}
.sc-sat-pink-hover:hover {
  stroke: hsl(350, 100%, 73%) !important;
}
.sc-sat-pink-focus:focus {
  stroke: hsl(350, 100%, 73%) !important;
}
.sc-dark-pink {
  stroke: hsl(350, 100%, 63%) !important;
}
.sc-dark-pink-active:active {
  stroke: hsl(350, 100%, 63%) !important;
}
.sc-dark-pink-hover:hover {
  stroke: hsl(350, 100%, 63%) !important;
}
.sc-dark-pink-focus:focus {
  stroke: hsl(350, 100%, 63%) !important;
}
.fc-light-magenta {
  fill: hsl(300, 100%, 90%) !important;
}
.fc-light-magenta-active:active {
  fill: hsl(300, 100%, 90%) !important;
}
.fc-light-magenta-hover:hover {
  fill: hsl(300, 100%, 90%) !important;
}
.fc-light-magenta-focus:focus {
  fill: hsl(300, 100%, 90%) !important;
}
.fc-minor-magenta {
  fill: hsl(300, 100%, 75%) !important;
}
.fc-minor-magenta-active:active {
  fill: hsl(300, 100%, 75%) !important;
}
.fc-minor-magenta-hover:hover {
  fill: hsl(300, 100%, 75%) !important;
}
.fc-minor-magenta-focus:focus {
  fill: hsl(300, 100%, 75%) !important;
}
.fc-sat-magenta {
  fill: hsl(300, 100%, 35%) !important;
}
.fc-sat-magenta-active:active {
  fill: hsl(300, 100%, 35%) !important;
}
.fc-sat-magenta-hover:hover {
  fill: hsl(300, 100%, 35%) !important;
}
.fc-sat-magenta-focus:focus {
  fill: hsl(300, 100%, 35%) !important;
}
.fc-dark-magenta {
  fill: hsl(300, 100%, 25%) !important;
}
.fc-dark-magenta-active:active {
  fill: hsl(300, 100%, 25%) !important;
}
.fc-dark-magenta-hover:hover {
  fill: hsl(300, 100%, 25%) !important;
}
.fc-dark-magenta-focus:focus {
  fill: hsl(300, 100%, 25%) !important;
}
.sc-magenta {
  stroke: hsl(300, 100%, 50%) !important;
}
.sc-magenta-active:active {
  stroke: hsl(300, 100%, 50%) !important;
}
.sc-magenta-hover:hover {
  stroke: hsl(300, 100%, 50%) !important;
}
.sc-magenta-focus:focus {
  stroke: hsl(300, 100%, 50%) !important;
}
.sc-light-magenta {
  stroke: hsl(300, 100%, 90%) !important;
}
.sc-light-magenta-active:active {
  stroke: hsl(300, 100%, 90%) !important;
}
.sc-light-magenta-hover:hover {
  stroke: hsl(300, 100%, 90%) !important;
}
.sc-light-magenta-focus:focus {
  stroke: hsl(300, 100%, 90%) !important;
}
.sc-minor-magenta {
  stroke: hsl(300, 100%, 75%) !important;
}
.sc-minor-magenta-active:active {
  stroke: hsl(300, 100%, 75%) !important;
}
.sc-minor-magenta-hover:hover {
  stroke: hsl(300, 100%, 75%) !important;
}
.sc-minor-magenta-focus:focus {
  stroke: hsl(300, 100%, 75%) !important;
}
.sc-sat-magenta {
  stroke: hsl(300, 100%, 35%) !important;
}
.sc-sat-magenta-active:active {
  stroke: hsl(300, 100%, 35%) !important;
}
.sc-sat-magenta-hover:hover {
  stroke: hsl(300, 100%, 35%) !important;
}
.sc-sat-magenta-focus:focus {
  stroke: hsl(300, 100%, 35%) !important;
}
.sc-dark-magenta {
  stroke: hsl(300, 100%, 25%) !important;
}
.sc-dark-magenta-active:active {
  stroke: hsl(300, 100%, 25%) !important;
}
.sc-dark-magenta-hover:hover {
  stroke: hsl(300, 100%, 25%) !important;
}
.sc-dark-magenta-focus:focus {
  stroke: hsl(300, 100%, 25%) !important;
}
.fc-light-crimson {
  fill: hsl(348, 88%, 91%) !important;
}
.fc-light-crimson-active:active {
  fill: hsl(348, 88%, 91%) !important;
}
.fc-light-crimson-hover:hover {
  fill: hsl(348, 88%, 91%) !important;
}
.fc-light-crimson-focus:focus {
  fill: hsl(348, 88%, 91%) !important;
}
.fc-minor-crimson {
  fill: hsl(348, 88%, 66%) !important;
}
.fc-minor-crimson-active:active {
  fill: hsl(348, 88%, 66%) !important;
}
.fc-minor-crimson-hover:hover {
  fill: hsl(348, 88%, 66%) !important;
}
.fc-minor-crimson-focus:focus {
  fill: hsl(348, 88%, 66%) !important;
}
.fc-sat-crimson {
  fill: hsl(348, 88%, 31%) !important;
}
.fc-sat-crimson-active:active {
  fill: hsl(348, 88%, 31%) !important;
}
.fc-sat-crimson-hover:hover {
  fill: hsl(348, 88%, 31%) !important;
}
.fc-sat-crimson-focus:focus {
  fill: hsl(348, 88%, 31%) !important;
}
.fc-dark-crimson {
  fill: hsl(348, 88%, 21%) !important;
}
.fc-dark-crimson-active:active {
  fill: hsl(348, 88%, 21%) !important;
}
.fc-dark-crimson-hover:hover {
  fill: hsl(348, 88%, 21%) !important;
}
.fc-dark-crimson-focus:focus {
  fill: hsl(348, 88%, 21%) !important;
}
.sc-crimson {
  stroke: hsl(348, 88%, 46%) !important;
}
.sc-crimson-active:active {
  stroke: hsl(348, 88%, 46%) !important;
}
.sc-crimson-hover:hover {
  stroke: hsl(348, 88%, 46%) !important;
}
.sc-crimson-focus:focus {
  stroke: hsl(348, 88%, 46%) !important;
}
.sc-light-crimson {
  stroke: hsl(348, 88%, 91%) !important;
}
.sc-light-crimson-active:active {
  stroke: hsl(348, 88%, 91%) !important;
}
.sc-light-crimson-hover:hover {
  stroke: hsl(348, 88%, 91%) !important;
}
.sc-light-crimson-focus:focus {
  stroke: hsl(348, 88%, 91%) !important;
}
.sc-minor-crimson {
  stroke: hsl(348, 88%, 66%) !important;
}
.sc-minor-crimson-active:active {
  stroke: hsl(348, 88%, 66%) !important;
}
.sc-minor-crimson-hover:hover {
  stroke: hsl(348, 88%, 66%) !important;
}
.sc-minor-crimson-focus:focus {
  stroke: hsl(348, 88%, 66%) !important;
}
.sc-sat-crimson {
  stroke: hsl(348, 88%, 31%) !important;
}
.sc-sat-crimson-active:active {
  stroke: hsl(348, 88%, 31%) !important;
}
.sc-sat-crimson-hover:hover {
  stroke: hsl(348, 88%, 31%) !important;
}
.sc-sat-crimson-focus:focus {
  stroke: hsl(348, 88%, 31%) !important;
}
.sc-dark-crimson {
  stroke: hsl(348, 88%, 21%) !important;
}
.sc-dark-crimson-active:active {
  stroke: hsl(348, 88%, 21%) !important;
}
.sc-dark-crimson-hover:hover {
  stroke: hsl(348, 88%, 21%) !important;
}
.sc-dark-crimson-focus:focus {
  stroke: hsl(348, 88%, 21%) !important;
}
.fc-light-red {
  fill: hsl(0, 100%, 85%) !important;
}
.fc-light-red-active:active {
  fill: hsl(0, 100%, 85%) !important;
}
.fc-light-red-hover:hover {
  fill: hsl(0, 100%, 85%) !important;
}
.fc-light-red-focus:focus {
  fill: hsl(0, 100%, 85%) !important;
}
.fc-minor-red {
  fill: hsl(0, 100%, 70%) !important;
}
.fc-minor-red-active:active {
  fill: hsl(0, 100%, 70%) !important;
}
.fc-minor-red-hover:hover {
  fill: hsl(0, 100%, 70%) !important;
}
.fc-minor-red-focus:focus {
  fill: hsl(0, 100%, 70%) !important;
}
.fc-sat-red {
  fill: hsl(0, 100%, 35%) !important;
}
.fc-sat-red-active:active {
  fill: hsl(0, 100%, 35%) !important;
}
.fc-sat-red-hover:hover {
  fill: hsl(0, 100%, 35%) !important;
}
.fc-sat-red-focus:focus {
  fill: hsl(0, 100%, 35%) !important;
}
.fc-dark-red {
  fill: hsl(0, 100%, 25%) !important;
}
.fc-dark-red-active:active {
  fill: hsl(0, 100%, 25%) !important;
}
.fc-dark-red-hover:hover {
  fill: hsl(0, 100%, 25%) !important;
}
.fc-dark-red-focus:focus {
  fill: hsl(0, 100%, 25%) !important;
}
.sc-red {
  stroke: hsl(0, 100%, 50%) !important;
}
.sc-red-active:active {
  stroke: hsl(0, 100%, 50%) !important;
}
.sc-red-hover:hover {
  stroke: hsl(0, 100%, 50%) !important;
}
.sc-red-focus:focus {
  stroke: hsl(0, 100%, 50%) !important;
}
.sc-light-red {
  stroke: hsl(0, 100%, 85%) !important;
}
.sc-light-red-active:active {
  stroke: hsl(0, 100%, 85%) !important;
}
.sc-light-red-hover:hover {
  stroke: hsl(0, 100%, 85%) !important;
}
.sc-light-red-focus:focus {
  stroke: hsl(0, 100%, 85%) !important;
}
.sc-minor-red {
  stroke: hsl(0, 100%, 70%) !important;
}
.sc-minor-red-active:active {
  stroke: hsl(0, 100%, 70%) !important;
}
.sc-minor-red-hover:hover {
  stroke: hsl(0, 100%, 70%) !important;
}
.sc-minor-red-focus:focus {
  stroke: hsl(0, 100%, 70%) !important;
}
.sc-sat-red {
  stroke: hsl(0, 100%, 35%) !important;
}
.sc-sat-red-active:active {
  stroke: hsl(0, 100%, 35%) !important;
}
.sc-sat-red-hover:hover {
  stroke: hsl(0, 100%, 35%) !important;
}
.sc-sat-red-focus:focus {
  stroke: hsl(0, 100%, 35%) !important;
}
.sc-dark-red {
  stroke: hsl(0, 100%, 25%) !important;
}
.sc-dark-red-active:active {
  stroke: hsl(0, 100%, 25%) !important;
}
.sc-dark-red-hover:hover {
  stroke: hsl(0, 100%, 25%) !important;
}
.sc-dark-red-focus:focus {
  stroke: hsl(0, 100%, 25%) !important;
}
.fc-light-clown {
  fill: hsl(3, 100%, 95%) !important;
}
.fc-light-clown-active:active {
  fill: hsl(3, 100%, 95%) !important;
}
.fc-light-clown-hover:hover {
  fill: hsl(3, 100%, 95%) !important;
}
.fc-light-clown-focus:focus {
  fill: hsl(3, 100%, 95%) !important;
}
.fc-minor-clown {
  fill: hsl(3, 100%, 85%) !important;
}
.fc-minor-clown-active:active {
  fill: hsl(3, 100%, 85%) !important;
}
.fc-minor-clown-hover:hover {
  fill: hsl(3, 100%, 85%) !important;
}
.fc-minor-clown-focus:focus {
  fill: hsl(3, 100%, 85%) !important;
}
.fc-sat-clown {
  fill: hsl(3, 100%, 55%) !important;
}
.fc-sat-clown-active:active {
  fill: hsl(3, 100%, 55%) !important;
}
.fc-sat-clown-hover:hover {
  fill: hsl(3, 100%, 55%) !important;
}
.fc-sat-clown-focus:focus {
  fill: hsl(3, 100%, 55%) !important;
}
.fc-dark-clown {
  fill: hsl(3, 100%, 45%) !important;
}
.fc-dark-clown-active:active {
  fill: hsl(3, 100%, 45%) !important;
}
.fc-dark-clown-hover:hover {
  fill: hsl(3, 100%, 45%) !important;
}
.fc-dark-clown-focus:focus {
  fill: hsl(3, 100%, 45%) !important;
}
.sc-clown {
  stroke: hsl(3, 100%, 70%) !important;
}
.sc-clown-active:active {
  stroke: hsl(3, 100%, 70%) !important;
}
.sc-clown-hover:hover {
  stroke: hsl(3, 100%, 70%) !important;
}
.sc-clown-focus:focus {
  stroke: hsl(3, 100%, 70%) !important;
}
.sc-light-clown {
  stroke: hsl(3, 100%, 95%) !important;
}
.sc-light-clown-active:active {
  stroke: hsl(3, 100%, 95%) !important;
}
.sc-light-clown-hover:hover {
  stroke: hsl(3, 100%, 95%) !important;
}
.sc-light-clown-focus:focus {
  stroke: hsl(3, 100%, 95%) !important;
}
.sc-minor-clown {
  stroke: hsl(3, 100%, 85%) !important;
}
.sc-minor-clown-active:active {
  stroke: hsl(3, 100%, 85%) !important;
}
.sc-minor-clown-hover:hover {
  stroke: hsl(3, 100%, 85%) !important;
}
.sc-minor-clown-focus:focus {
  stroke: hsl(3, 100%, 85%) !important;
}
.sc-sat-clown {
  stroke: hsl(3, 100%, 55%) !important;
}
.sc-sat-clown-active:active {
  stroke: hsl(3, 100%, 55%) !important;
}
.sc-sat-clown-hover:hover {
  stroke: hsl(3, 100%, 55%) !important;
}
.sc-sat-clown-focus:focus {
  stroke: hsl(3, 100%, 55%) !important;
}
.sc-dark-clown {
  stroke: hsl(3, 100%, 45%) !important;
}
.sc-dark-clown-active:active {
  stroke: hsl(3, 100%, 45%) !important;
}
.sc-dark-clown-hover:hover {
  stroke: hsl(3, 100%, 45%) !important;
}
.sc-dark-clown-focus:focus {
  stroke: hsl(3, 100%, 45%) !important;
}
.fc-light-orange {
  fill: hsl(39, 100%, 90%) !important;
}
.fc-light-orange-active:active {
  fill: hsl(39, 100%, 90%) !important;
}
.fc-light-orange-hover:hover {
  fill: hsl(39, 100%, 90%) !important;
}
.fc-light-orange-focus:focus {
  fill: hsl(39, 100%, 90%) !important;
}
.fc-minor-orange {
  fill: hsl(39, 100%, 75%) !important;
}
.fc-minor-orange-active:active {
  fill: hsl(39, 100%, 75%) !important;
}
.fc-minor-orange-hover:hover {
  fill: hsl(39, 100%, 75%) !important;
}
.fc-minor-orange-focus:focus {
  fill: hsl(39, 100%, 75%) !important;
}
.fc-sat-orange {
  fill: hsl(39, 100%, 35%) !important;
}
.fc-sat-orange-active:active {
  fill: hsl(39, 100%, 35%) !important;
}
.fc-sat-orange-hover:hover {
  fill: hsl(39, 100%, 35%) !important;
}
.fc-sat-orange-focus:focus {
  fill: hsl(39, 100%, 35%) !important;
}
.fc-dark-orange {
  fill: hsl(39, 100%, 25%) !important;
}
.fc-dark-orange-active:active {
  fill: hsl(39, 100%, 25%) !important;
}
.fc-dark-orange-hover:hover {
  fill: hsl(39, 100%, 25%) !important;
}
.fc-dark-orange-focus:focus {
  fill: hsl(39, 100%, 25%) !important;
}
.sc-orange {
  stroke: hsl(39, 100%, 50%) !important;
}
.sc-orange-active:active {
  stroke: hsl(39, 100%, 50%) !important;
}
.sc-orange-hover:hover {
  stroke: hsl(39, 100%, 50%) !important;
}
.sc-orange-focus:focus {
  stroke: hsl(39, 100%, 50%) !important;
}
.sc-light-orange {
  stroke: hsl(39, 100%, 90%) !important;
}
.sc-light-orange-active:active {
  stroke: hsl(39, 100%, 90%) !important;
}
.sc-light-orange-hover:hover {
  stroke: hsl(39, 100%, 90%) !important;
}
.sc-light-orange-focus:focus {
  stroke: hsl(39, 100%, 90%) !important;
}
.sc-minor-orange {
  stroke: hsl(39, 100%, 75%) !important;
}
.sc-minor-orange-active:active {
  stroke: hsl(39, 100%, 75%) !important;
}
.sc-minor-orange-hover:hover {
  stroke: hsl(39, 100%, 75%) !important;
}
.sc-minor-orange-focus:focus {
  stroke: hsl(39, 100%, 75%) !important;
}
.sc-sat-orange {
  stroke: hsl(39, 100%, 35%) !important;
}
.sc-sat-orange-active:active {
  stroke: hsl(39, 100%, 35%) !important;
}
.sc-sat-orange-hover:hover {
  stroke: hsl(39, 100%, 35%) !important;
}
.sc-sat-orange-focus:focus {
  stroke: hsl(39, 100%, 35%) !important;
}
.sc-dark-orange {
  stroke: hsl(39, 100%, 25%) !important;
}
.sc-dark-orange-active:active {
  stroke: hsl(39, 100%, 25%) !important;
}
.sc-dark-orange-hover:hover {
  stroke: hsl(39, 100%, 25%) !important;
}
.sc-dark-orange-focus:focus {
  stroke: hsl(39, 100%, 25%) !important;
}
.fc-light-amber {
  fill: hsl(45, 100%, 78%) !important;
}
.fc-light-amber-active:active {
  fill: hsl(45, 100%, 78%) !important;
}
.fc-light-amber-hover:hover {
  fill: hsl(45, 100%, 78%) !important;
}
.fc-light-amber-focus:focus {
  fill: hsl(45, 100%, 78%) !important;
}
.fc-minor-amber {
  fill: hsl(45, 100%, 68%) !important;
}
.fc-minor-amber-active:active {
  fill: hsl(45, 100%, 68%) !important;
}
.fc-minor-amber-hover:hover {
  fill: hsl(45, 100%, 68%) !important;
}
.fc-minor-amber-focus:focus {
  fill: hsl(45, 100%, 68%) !important;
}
.fc-sat-amber {
  fill: hsl(45, 100%, 43%) !important;
}
.fc-sat-amber-active:active {
  fill: hsl(45, 100%, 43%) !important;
}
.fc-sat-amber-hover:hover {
  fill: hsl(45, 100%, 43%) !important;
}
.fc-sat-amber-focus:focus {
  fill: hsl(45, 100%, 43%) !important;
}
.fc-dark-amber {
  fill: hsl(45, 100%, 33%) !important;
}
.fc-dark-amber-active:active {
  fill: hsl(45, 100%, 33%) !important;
}
.fc-dark-amber-hover:hover {
  fill: hsl(45, 100%, 33%) !important;
}
.fc-dark-amber-focus:focus {
  fill: hsl(45, 100%, 33%) !important;
}
.sc-amber {
  stroke: hsl(45, 100%, 58%) !important;
}
.sc-amber-active:active {
  stroke: hsl(45, 100%, 58%) !important;
}
.sc-amber-hover:hover {
  stroke: hsl(45, 100%, 58%) !important;
}
.sc-amber-focus:focus {
  stroke: hsl(45, 100%, 58%) !important;
}
.sc-light-amber {
  stroke: hsl(45, 100%, 78%) !important;
}
.sc-light-amber-active:active {
  stroke: hsl(45, 100%, 78%) !important;
}
.sc-light-amber-hover:hover {
  stroke: hsl(45, 100%, 78%) !important;
}
.sc-light-amber-focus:focus {
  stroke: hsl(45, 100%, 78%) !important;
}
.sc-minor-amber {
  stroke: hsl(45, 100%, 68%) !important;
}
.sc-minor-amber-active:active {
  stroke: hsl(45, 100%, 68%) !important;
}
.sc-minor-amber-hover:hover {
  stroke: hsl(45, 100%, 68%) !important;
}
.sc-minor-amber-focus:focus {
  stroke: hsl(45, 100%, 68%) !important;
}
.sc-sat-amber {
  stroke: hsl(45, 100%, 43%) !important;
}
.sc-sat-amber-active:active {
  stroke: hsl(45, 100%, 43%) !important;
}
.sc-sat-amber-hover:hover {
  stroke: hsl(45, 100%, 43%) !important;
}
.sc-sat-amber-focus:focus {
  stroke: hsl(45, 100%, 43%) !important;
}
.sc-dark-amber {
  stroke: hsl(45, 100%, 33%) !important;
}
.sc-dark-amber-active:active {
  stroke: hsl(45, 100%, 33%) !important;
}
.sc-dark-amber-hover:hover {
  stroke: hsl(45, 100%, 33%) !important;
}
.sc-dark-amber-focus:focus {
  stroke: hsl(45, 100%, 33%) !important;
}
.fc-light-yellow {
  fill: hsl(52, 100%, 93%) !important;
}
.fc-light-yellow-active:active {
  fill: hsl(52, 100%, 93%) !important;
}
.fc-light-yellow-hover:hover {
  fill: hsl(52, 100%, 93%) !important;
}
.fc-light-yellow-focus:focus {
  fill: hsl(52, 100%, 93%) !important;
}
.fc-minor-yellow {
  fill: hsl(52, 100%, 83%) !important;
}
.fc-minor-yellow-active:active {
  fill: hsl(52, 100%, 83%) !important;
}
.fc-minor-yellow-hover:hover {
  fill: hsl(52, 100%, 83%) !important;
}
.fc-minor-yellow-focus:focus {
  fill: hsl(52, 100%, 83%) !important;
}
.fc-sat-yellow {
  fill: hsl(52, 100%, 53%) !important;
}
.fc-sat-yellow-active:active {
  fill: hsl(52, 100%, 53%) !important;
}
.fc-sat-yellow-hover:hover {
  fill: hsl(52, 100%, 53%) !important;
}
.fc-sat-yellow-focus:focus {
  fill: hsl(52, 100%, 53%) !important;
}
.fc-dark-yellow {
  fill: hsl(52, 100%, 43%) !important;
}
.fc-dark-yellow-active:active {
  fill: hsl(52, 100%, 43%) !important;
}
.fc-dark-yellow-hover:hover {
  fill: hsl(52, 100%, 43%) !important;
}
.fc-dark-yellow-focus:focus {
  fill: hsl(52, 100%, 43%) !important;
}
.sc-yellow {
  stroke: hsl(52, 100%, 68%) !important;
}
.sc-yellow-active:active {
  stroke: hsl(52, 100%, 68%) !important;
}
.sc-yellow-hover:hover {
  stroke: hsl(52, 100%, 68%) !important;
}
.sc-yellow-focus:focus {
  stroke: hsl(52, 100%, 68%) !important;
}
.sc-light-yellow {
  stroke: hsl(52, 100%, 93%) !important;
}
.sc-light-yellow-active:active {
  stroke: hsl(52, 100%, 93%) !important;
}
.sc-light-yellow-hover:hover {
  stroke: hsl(52, 100%, 93%) !important;
}
.sc-light-yellow-focus:focus {
  stroke: hsl(52, 100%, 93%) !important;
}
.sc-minor-yellow {
  stroke: hsl(52, 100%, 83%) !important;
}
.sc-minor-yellow-active:active {
  stroke: hsl(52, 100%, 83%) !important;
}
.sc-minor-yellow-hover:hover {
  stroke: hsl(52, 100%, 83%) !important;
}
.sc-minor-yellow-focus:focus {
  stroke: hsl(52, 100%, 83%) !important;
}
.sc-sat-yellow {
  stroke: hsl(52, 100%, 53%) !important;
}
.sc-sat-yellow-active:active {
  stroke: hsl(52, 100%, 53%) !important;
}
.sc-sat-yellow-hover:hover {
  stroke: hsl(52, 100%, 53%) !important;
}
.sc-sat-yellow-focus:focus {
  stroke: hsl(52, 100%, 53%) !important;
}
.sc-dark-yellow {
  stroke: hsl(52, 100%, 43%) !important;
}
.sc-dark-yellow-active:active {
  stroke: hsl(52, 100%, 43%) !important;
}
.sc-dark-yellow-hover:hover {
  stroke: hsl(52, 100%, 43%) !important;
}
.sc-dark-yellow-focus:focus {
  stroke: hsl(52, 100%, 43%) !important;
}
.fc-light-brown {
  fill: hsl(25, 57%, 81%) !important;
}
.fc-light-brown-active:active {
  fill: hsl(25, 57%, 81%) !important;
}
.fc-light-brown-hover:hover {
  fill: hsl(25, 57%, 81%) !important;
}
.fc-light-brown-focus:focus {
  fill: hsl(25, 57%, 81%) !important;
}
.fc-minor-brown {
  fill: hsl(25, 57%, 66%) !important;
}
.fc-minor-brown-active:active {
  fill: hsl(25, 57%, 66%) !important;
}
.fc-minor-brown-hover:hover {
  fill: hsl(25, 57%, 66%) !important;
}
.fc-minor-brown-focus:focus {
  fill: hsl(25, 57%, 66%) !important;
}
.fc-sat-brown {
  fill: hsl(25, 57%, 36%) !important;
}
.fc-sat-brown-active:active {
  fill: hsl(25, 57%, 36%) !important;
}
.fc-sat-brown-hover:hover {
  fill: hsl(25, 57%, 36%) !important;
}
.fc-sat-brown-focus:focus {
  fill: hsl(25, 57%, 36%) !important;
}
.fc-dark-brown {
  fill: hsl(25, 57%, 26%) !important;
}
.fc-dark-brown-active:active {
  fill: hsl(25, 57%, 26%) !important;
}
.fc-dark-brown-hover:hover {
  fill: hsl(25, 57%, 26%) !important;
}
.fc-dark-brown-focus:focus {
  fill: hsl(25, 57%, 26%) !important;
}
.sc-brown {
  stroke: hsl(25, 57%, 51%) !important;
}
.sc-brown-active:active {
  stroke: hsl(25, 57%, 51%) !important;
}
.sc-brown-hover:hover {
  stroke: hsl(25, 57%, 51%) !important;
}
.sc-brown-focus:focus {
  stroke: hsl(25, 57%, 51%) !important;
}
.sc-light-brown {
  stroke: hsl(25, 57%, 81%) !important;
}
.sc-light-brown-active:active {
  stroke: hsl(25, 57%, 81%) !important;
}
.sc-light-brown-hover:hover {
  stroke: hsl(25, 57%, 81%) !important;
}
.sc-light-brown-focus:focus {
  stroke: hsl(25, 57%, 81%) !important;
}
.sc-minor-brown {
  stroke: hsl(25, 57%, 66%) !important;
}
.sc-minor-brown-active:active {
  stroke: hsl(25, 57%, 66%) !important;
}
.sc-minor-brown-hover:hover {
  stroke: hsl(25, 57%, 66%) !important;
}
.sc-minor-brown-focus:focus {
  stroke: hsl(25, 57%, 66%) !important;
}
.sc-sat-brown {
  stroke: hsl(25, 57%, 36%) !important;
}
.sc-sat-brown-active:active {
  stroke: hsl(25, 57%, 36%) !important;
}
.sc-sat-brown-hover:hover {
  stroke: hsl(25, 57%, 36%) !important;
}
.sc-sat-brown-focus:focus {
  stroke: hsl(25, 57%, 36%) !important;
}
.sc-dark-brown {
  stroke: hsl(25, 57%, 26%) !important;
}
.sc-dark-brown-active:active {
  stroke: hsl(25, 57%, 26%) !important;
}
.sc-dark-brown-hover:hover {
  stroke: hsl(25, 57%, 26%) !important;
}
.sc-dark-brown-focus:focus {
  stroke: hsl(25, 57%, 26%) !important;
}
.fc-light-olive {
  fill: hsl(60, 100%, 72%) !important;
}
.fc-light-olive-active:active {
  fill: hsl(60, 100%, 72%) !important;
}
.fc-light-olive-hover:hover {
  fill: hsl(60, 100%, 72%) !important;
}
.fc-light-olive-focus:focus {
  fill: hsl(60, 100%, 72%) !important;
}
.fc-minor-olive {
  fill: hsl(60, 100%, 42%) !important;
}
.fc-minor-olive-active:active {
  fill: hsl(60, 100%, 42%) !important;
}
.fc-minor-olive-hover:hover {
  fill: hsl(60, 100%, 42%) !important;
}
.fc-minor-olive-focus:focus {
  fill: hsl(60, 100%, 42%) !important;
}
.fc-sat-olive {
  fill: hsl(60, 100%, 17%) !important;
}
.fc-sat-olive-active:active {
  fill: hsl(60, 100%, 17%) !important;
}
.fc-sat-olive-hover:hover {
  fill: hsl(60, 100%, 17%) !important;
}
.fc-sat-olive-focus:focus {
  fill: hsl(60, 100%, 17%) !important;
}
.fc-dark-olive {
  fill: hsl(60, 100%, 7%) !important;
}
.fc-dark-olive-active:active {
  fill: hsl(60, 100%, 7%) !important;
}
.fc-dark-olive-hover:hover {
  fill: hsl(60, 100%, 7%) !important;
}
.fc-dark-olive-focus:focus {
  fill: hsl(60, 100%, 7%) !important;
}
.sc-olive {
  stroke: hsl(60, 100%, 32%) !important;
}
.sc-olive-active:active {
  stroke: hsl(60, 100%, 32%) !important;
}
.sc-olive-hover:hover {
  stroke: hsl(60, 100%, 32%) !important;
}
.sc-olive-focus:focus {
  stroke: hsl(60, 100%, 32%) !important;
}
.sc-light-olive {
  stroke: hsl(60, 100%, 72%) !important;
}
.sc-light-olive-active:active {
  stroke: hsl(60, 100%, 72%) !important;
}
.sc-light-olive-hover:hover {
  stroke: hsl(60, 100%, 72%) !important;
}
.sc-light-olive-focus:focus {
  stroke: hsl(60, 100%, 72%) !important;
}
.sc-minor-olive {
  stroke: hsl(60, 100%, 42%) !important;
}
.sc-minor-olive-active:active {
  stroke: hsl(60, 100%, 42%) !important;
}
.sc-minor-olive-hover:hover {
  stroke: hsl(60, 100%, 42%) !important;
}
.sc-minor-olive-focus:focus {
  stroke: hsl(60, 100%, 42%) !important;
}
.sc-sat-olive {
  stroke: hsl(60, 100%, 17%) !important;
}
.sc-sat-olive-active:active {
  stroke: hsl(60, 100%, 17%) !important;
}
.sc-sat-olive-hover:hover {
  stroke: hsl(60, 100%, 17%) !important;
}
.sc-sat-olive-focus:focus {
  stroke: hsl(60, 100%, 17%) !important;
}
.sc-dark-olive {
  stroke: hsl(60, 100%, 7%) !important;
}
.sc-dark-olive-active:active {
  stroke: hsl(60, 100%, 7%) !important;
}
.sc-dark-olive-hover:hover {
  stroke: hsl(60, 100%, 7%) !important;
}
.sc-dark-olive-focus:focus {
  stroke: hsl(60, 100%, 7%) !important;
}
.fc-light-steel {
  fill: hsl(209, 19%, 87%) !important;
}
.fc-light-steel-active:active {
  fill: hsl(209, 19%, 87%) !important;
}
.fc-light-steel-hover:hover {
  fill: hsl(209, 19%, 87%) !important;
}
.fc-light-steel-focus:focus {
  fill: hsl(209, 19%, 87%) !important;
}
.fc-minor-steel {
  fill: hsl(209, 19%, 77%) !important;
}
.fc-minor-steel-active:active {
  fill: hsl(209, 19%, 77%) !important;
}
.fc-minor-steel-hover:hover {
  fill: hsl(209, 19%, 77%) !important;
}
.fc-minor-steel-focus:focus {
  fill: hsl(209, 19%, 77%) !important;
}
.fc-sat-steel {
  fill: hsl(209, 19%, 42%) !important;
}
.fc-sat-steel-active:active {
  fill: hsl(209, 19%, 42%) !important;
}
.fc-sat-steel-hover:hover {
  fill: hsl(209, 19%, 42%) !important;
}
.fc-sat-steel-focus:focus {
  fill: hsl(209, 19%, 42%) !important;
}
.fc-dark-steel {
  fill: hsl(209, 19%, 32%) !important;
}
.fc-dark-steel-active:active {
  fill: hsl(209, 19%, 32%) !important;
}
.fc-dark-steel-hover:hover {
  fill: hsl(209, 19%, 32%) !important;
}
.fc-dark-steel-focus:focus {
  fill: hsl(209, 19%, 32%) !important;
}
.sc-steel {
  stroke: hsl(209, 19%, 57%) !important;
}
.sc-steel-active:active {
  stroke: hsl(209, 19%, 57%) !important;
}
.sc-steel-hover:hover {
  stroke: hsl(209, 19%, 57%) !important;
}
.sc-steel-focus:focus {
  stroke: hsl(209, 19%, 57%) !important;
}
.sc-light-steel {
  stroke: hsl(209, 19%, 87%) !important;
}
.sc-light-steel-active:active {
  stroke: hsl(209, 19%, 87%) !important;
}
.sc-light-steel-hover:hover {
  stroke: hsl(209, 19%, 87%) !important;
}
.sc-light-steel-focus:focus {
  stroke: hsl(209, 19%, 87%) !important;
}
.sc-minor-steel {
  stroke: hsl(209, 19%, 77%) !important;
}
.sc-minor-steel-active:active {
  stroke: hsl(209, 19%, 77%) !important;
}
.sc-minor-steel-hover:hover {
  stroke: hsl(209, 19%, 77%) !important;
}
.sc-minor-steel-focus:focus {
  stroke: hsl(209, 19%, 77%) !important;
}
.sc-sat-steel {
  stroke: hsl(209, 19%, 42%) !important;
}
.sc-sat-steel-active:active {
  stroke: hsl(209, 19%, 42%) !important;
}
.sc-sat-steel-hover:hover {
  stroke: hsl(209, 19%, 42%) !important;
}
.sc-sat-steel-focus:focus {
  stroke: hsl(209, 19%, 42%) !important;
}
.sc-dark-steel {
  stroke: hsl(209, 19%, 32%) !important;
}
.sc-dark-steel-active:active {
  stroke: hsl(209, 19%, 32%) !important;
}
.sc-dark-steel-hover:hover {
  stroke: hsl(209, 19%, 32%) !important;
}
.sc-dark-steel-focus:focus {
  stroke: hsl(209, 19%, 32%) !important;
}
.fc-light-mauve {
  fill: hsl(277, 100%, 96%) !important;
}
.fc-light-mauve-active:active {
  fill: hsl(277, 100%, 96%) !important;
}
.fc-light-mauve-hover:hover {
  fill: hsl(277, 100%, 96%) !important;
}
.fc-light-mauve-focus:focus {
  fill: hsl(277, 100%, 96%) !important;
}
.fc-minor-mauve {
  fill: hsl(277, 100%, 90%) !important;
}
.fc-minor-mauve-active:active {
  fill: hsl(277, 100%, 90%) !important;
}
.fc-minor-mauve-hover:hover {
  fill: hsl(277, 100%, 90%) !important;
}
.fc-minor-mauve-focus:focus {
  fill: hsl(277, 100%, 90%) !important;
}
.fc-sat-mauve {
  fill: hsl(277, 100%, 69%) !important;
}
.fc-sat-mauve-active:active {
  fill: hsl(277, 100%, 69%) !important;
}
.fc-sat-mauve-hover:hover {
  fill: hsl(277, 100%, 69%) !important;
}
.fc-sat-mauve-focus:focus {
  fill: hsl(277, 100%, 69%) !important;
}
.fc-dark-mauve {
  fill: hsl(277, 100%, 59%) !important;
}
.fc-dark-mauve-active:active {
  fill: hsl(277, 100%, 59%) !important;
}
.fc-dark-mauve-hover:hover {
  fill: hsl(277, 100%, 59%) !important;
}
.fc-dark-mauve-focus:focus {
  fill: hsl(277, 100%, 59%) !important;
}
.sc-mauve {
  stroke: hsl(277, 100%, 84%) !important;
}
.sc-mauve-active:active {
  stroke: hsl(277, 100%, 84%) !important;
}
.sc-mauve-hover:hover {
  stroke: hsl(277, 100%, 84%) !important;
}
.sc-mauve-focus:focus {
  stroke: hsl(277, 100%, 84%) !important;
}
.sc-light-mauve {
  stroke: hsl(277, 100%, 96%) !important;
}
.sc-light-mauve-active:active {
  stroke: hsl(277, 100%, 96%) !important;
}
.sc-light-mauve-hover:hover {
  stroke: hsl(277, 100%, 96%) !important;
}
.sc-light-mauve-focus:focus {
  stroke: hsl(277, 100%, 96%) !important;
}
.sc-minor-mauve {
  stroke: hsl(277, 100%, 90%) !important;
}
.sc-minor-mauve-active:active {
  stroke: hsl(277, 100%, 90%) !important;
}
.sc-minor-mauve-hover:hover {
  stroke: hsl(277, 100%, 90%) !important;
}
.sc-minor-mauve-focus:focus {
  stroke: hsl(277, 100%, 90%) !important;
}
.sc-sat-mauve {
  stroke: hsl(277, 100%, 69%) !important;
}
.sc-sat-mauve-active:active {
  stroke: hsl(277, 100%, 69%) !important;
}
.sc-sat-mauve-hover:hover {
  stroke: hsl(277, 100%, 69%) !important;
}
.sc-sat-mauve-focus:focus {
  stroke: hsl(277, 100%, 69%) !important;
}
.sc-dark-mauve {
  stroke: hsl(277, 100%, 59%) !important;
}
.sc-dark-mauve-active:active {
  stroke: hsl(277, 100%, 59%) !important;
}
.sc-dark-mauve-hover:hover {
  stroke: hsl(277, 100%, 59%) !important;
}
.sc-dark-mauve-focus:focus {
  stroke: hsl(277, 100%, 59%) !important;
}
.fc-light-taupe {
  fill: hsl(29, 19%, 80%) !important;
}
.fc-light-taupe-active:active {
  fill: hsl(29, 19%, 80%) !important;
}
.fc-light-taupe-hover:hover {
  fill: hsl(29, 19%, 80%) !important;
}
.fc-light-taupe-focus:focus {
  fill: hsl(29, 19%, 80%) !important;
}
.fc-minor-taupe {
  fill: hsl(29, 19%, 67%) !important;
}
.fc-minor-taupe-active:active {
  fill: hsl(29, 19%, 67%) !important;
}
.fc-minor-taupe-hover:hover {
  fill: hsl(29, 19%, 67%) !important;
}
.fc-minor-taupe-focus:focus {
  fill: hsl(29, 19%, 67%) !important;
}
.fc-sat-taupe {
  fill: hsl(29, 19%, 35%) !important;
}
.fc-sat-taupe-active:active {
  fill: hsl(29, 19%, 35%) !important;
}
.fc-sat-taupe-hover:hover {
  fill: hsl(29, 19%, 35%) !important;
}
.fc-sat-taupe-focus:focus {
  fill: hsl(29, 19%, 35%) !important;
}
.fc-dark-taupe {
  fill: hsl(29, 19%, 25%) !important;
}
.fc-dark-taupe-active:active {
  fill: hsl(29, 19%, 25%) !important;
}
.fc-dark-taupe-hover:hover {
  fill: hsl(29, 19%, 25%) !important;
}
.fc-dark-taupe-focus:focus {
  fill: hsl(29, 19%, 25%) !important;
}
.sc-taupe {
  stroke: hsl(29, 19%, 50%) !important;
}
.sc-taupe-active:active {
  stroke: hsl(29, 19%, 50%) !important;
}
.sc-taupe-hover:hover {
  stroke: hsl(29, 19%, 50%) !important;
}
.sc-taupe-focus:focus {
  stroke: hsl(29, 19%, 50%) !important;
}
.sc-light-taupe {
  stroke: hsl(29, 19%, 80%) !important;
}
.sc-light-taupe-active:active {
  stroke: hsl(29, 19%, 80%) !important;
}
.sc-light-taupe-hover:hover {
  stroke: hsl(29, 19%, 80%) !important;
}
.sc-light-taupe-focus:focus {
  stroke: hsl(29, 19%, 80%) !important;
}
.sc-minor-taupe {
  stroke: hsl(29, 19%, 67%) !important;
}
.sc-minor-taupe-active:active {
  stroke: hsl(29, 19%, 67%) !important;
}
.sc-minor-taupe-hover:hover {
  stroke: hsl(29, 19%, 67%) !important;
}
.sc-minor-taupe-focus:focus {
  stroke: hsl(29, 19%, 67%) !important;
}
.sc-sat-taupe {
  stroke: hsl(29, 19%, 35%) !important;
}
.sc-sat-taupe-active:active {
  stroke: hsl(29, 19%, 35%) !important;
}
.sc-sat-taupe-hover:hover {
  stroke: hsl(29, 19%, 35%) !important;
}
.sc-sat-taupe-focus:focus {
  stroke: hsl(29, 19%, 35%) !important;
}
.sc-dark-taupe {
  stroke: hsl(29, 19%, 25%) !important;
}
.sc-dark-taupe-active:active {
  stroke: hsl(29, 19%, 25%) !important;
}
.sc-dark-taupe-hover:hover {
  stroke: hsl(29, 19%, 25%) !important;
}
.sc-dark-taupe-focus:focus {
  stroke: hsl(29, 19%, 25%) !important;
}
.fc-light-champagne {
  fill: hsl(37, 74%, 98%) !important;
}
.fc-light-champagne-active:active {
  fill: hsl(37, 74%, 98%) !important;
}
.fc-light-champagne-hover:hover {
  fill: hsl(37, 74%, 98%) !important;
}
.fc-light-champagne-focus:focus {
  fill: hsl(37, 74%, 98%) !important;
}
.fc-minor-champagne {
  fill: hsl(37, 74%, 93%) !important;
}
.fc-minor-champagne-active:active {
  fill: hsl(37, 74%, 93%) !important;
}
.fc-minor-champagne-hover:hover {
  fill: hsl(37, 74%, 93%) !important;
}
.fc-minor-champagne-focus:focus {
  fill: hsl(37, 74%, 93%) !important;
}
.fc-sat-champagne {
  fill: hsl(37, 74%, 73%) !important;
}
.fc-sat-champagne-active:active {
  fill: hsl(37, 74%, 73%) !important;
}
.fc-sat-champagne-hover:hover {
  fill: hsl(37, 74%, 73%) !important;
}
.fc-sat-champagne-focus:focus {
  fill: hsl(37, 74%, 73%) !important;
}
.fc-dark-champagne {
  fill: hsl(37, 74%, 63%) !important;
}
.fc-dark-champagne-active:active {
  fill: hsl(37, 74%, 63%) !important;
}
.fc-dark-champagne-hover:hover {
  fill: hsl(37, 74%, 63%) !important;
}
.fc-dark-champagne-focus:focus {
  fill: hsl(37, 74%, 63%) !important;
}
.sc-champagne {
  stroke: hsl(37, 74%, 88%) !important;
}
.sc-champagne-active:active {
  stroke: hsl(37, 74%, 88%) !important;
}
.sc-champagne-hover:hover {
  stroke: hsl(37, 74%, 88%) !important;
}
.sc-champagne-focus:focus {
  stroke: hsl(37, 74%, 88%) !important;
}
.sc-light-champagne {
  stroke: hsl(37, 74%, 98%) !important;
}
.sc-light-champagne-active:active {
  stroke: hsl(37, 74%, 98%) !important;
}
.sc-light-champagne-hover:hover {
  stroke: hsl(37, 74%, 98%) !important;
}
.sc-light-champagne-focus:focus {
  stroke: hsl(37, 74%, 98%) !important;
}
.sc-minor-champagne {
  stroke: hsl(37, 74%, 93%) !important;
}
.sc-minor-champagne-active:active {
  stroke: hsl(37, 74%, 93%) !important;
}
.sc-minor-champagne-hover:hover {
  stroke: hsl(37, 74%, 93%) !important;
}
.sc-minor-champagne-focus:focus {
  stroke: hsl(37, 74%, 93%) !important;
}
.sc-sat-champagne {
  stroke: hsl(37, 74%, 73%) !important;
}
.sc-sat-champagne-active:active {
  stroke: hsl(37, 74%, 73%) !important;
}
.sc-sat-champagne-hover:hover {
  stroke: hsl(37, 74%, 73%) !important;
}
.sc-sat-champagne-focus:focus {
  stroke: hsl(37, 74%, 73%) !important;
}
.sc-dark-champagne {
  stroke: hsl(37, 74%, 63%) !important;
}
.sc-dark-champagne-active:active {
  stroke: hsl(37, 74%, 63%) !important;
}
.sc-dark-champagne-hover:hover {
  stroke: hsl(37, 74%, 63%) !important;
}
.sc-dark-champagne-focus:focus {
  stroke: hsl(37, 74%, 63%) !important;
}
.fc-light-khaki {
  fill: hsl(47, 47%, 94%) !important;
}
.fc-light-khaki-active:active {
  fill: hsl(47, 47%, 94%) !important;
}
.fc-light-khaki-hover:hover {
  fill: hsl(47, 47%, 94%) !important;
}
.fc-light-khaki-focus:focus {
  fill: hsl(47, 47%, 94%) !important;
}
.fc-minor-khaki {
  fill: hsl(47, 47%, 84%) !important;
}
.fc-minor-khaki-active:active {
  fill: hsl(47, 47%, 84%) !important;
}
.fc-minor-khaki-hover:hover {
  fill: hsl(47, 47%, 84%) !important;
}
.fc-minor-khaki-focus:focus {
  fill: hsl(47, 47%, 84%) !important;
}
.fc-sat-khaki {
  fill: hsl(47, 47%, 54%) !important;
}
.fc-sat-khaki-active:active {
  fill: hsl(47, 47%, 54%) !important;
}
.fc-sat-khaki-hover:hover {
  fill: hsl(47, 47%, 54%) !important;
}
.fc-sat-khaki-focus:focus {
  fill: hsl(47, 47%, 54%) !important;
}
.fc-dark-khaki {
  fill: hsl(47, 47%, 44%) !important;
}
.fc-dark-khaki-active:active {
  fill: hsl(47, 47%, 44%) !important;
}
.fc-dark-khaki-hover:hover {
  fill: hsl(47, 47%, 44%) !important;
}
.fc-dark-khaki-focus:focus {
  fill: hsl(47, 47%, 44%) !important;
}
.sc-khaki {
  stroke: hsl(47, 47%, 69%) !important;
}
.sc-khaki-active:active {
  stroke: hsl(47, 47%, 69%) !important;
}
.sc-khaki-hover:hover {
  stroke: hsl(47, 47%, 69%) !important;
}
.sc-khaki-focus:focus {
  stroke: hsl(47, 47%, 69%) !important;
}
.sc-light-khaki {
  stroke: hsl(47, 47%, 94%) !important;
}
.sc-light-khaki-active:active {
  stroke: hsl(47, 47%, 94%) !important;
}
.sc-light-khaki-hover:hover {
  stroke: hsl(47, 47%, 94%) !important;
}
.sc-light-khaki-focus:focus {
  stroke: hsl(47, 47%, 94%) !important;
}
.sc-minor-khaki {
  stroke: hsl(47, 47%, 84%) !important;
}
.sc-minor-khaki-active:active {
  stroke: hsl(47, 47%, 84%) !important;
}
.sc-minor-khaki-hover:hover {
  stroke: hsl(47, 47%, 84%) !important;
}
.sc-minor-khaki-focus:focus {
  stroke: hsl(47, 47%, 84%) !important;
}
.sc-sat-khaki {
  stroke: hsl(47, 47%, 54%) !important;
}
.sc-sat-khaki-active:active {
  stroke: hsl(47, 47%, 54%) !important;
}
.sc-sat-khaki-hover:hover {
  stroke: hsl(47, 47%, 54%) !important;
}
.sc-sat-khaki-focus:focus {
  stroke: hsl(47, 47%, 54%) !important;
}
.sc-dark-khaki {
  stroke: hsl(47, 47%, 44%) !important;
}
.sc-dark-khaki-active:active {
  stroke: hsl(47, 47%, 44%) !important;
}
.sc-dark-khaki-hover:hover {
  stroke: hsl(47, 47%, 44%) !important;
}
.sc-dark-khaki-focus:focus {
  stroke: hsl(47, 47%, 44%) !important;
}
.fc-light-charcoal {
  fill: hsl(0, 0%, 90%) !important;
}
.fc-light-charcoal-active:active {
  fill: hsl(0, 0%, 90%) !important;
}
.fc-light-charcoal-hover:hover {
  fill: hsl(0, 0%, 90%) !important;
}
.fc-light-charcoal-focus:focus {
  fill: hsl(0, 0%, 90%) !important;
}
.fc-minor-charcoal {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-minor-charcoal-active:active {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-minor-charcoal-hover:hover {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-minor-charcoal-focus:focus {
  fill: hsl(0, 0%, 80%) !important;
}
.fc-sat-charcoal {
  fill: hsl(0, 0%, 45%) !important;
}
.fc-sat-charcoal-active:active {
  fill: hsl(0, 0%, 45%) !important;
}
.fc-sat-charcoal-hover:hover {
  fill: hsl(0, 0%, 45%) !important;
}
.fc-sat-charcoal-focus:focus {
  fill: hsl(0, 0%, 45%) !important;
}
.fc-dark-charcoal {
  fill: hsl(0, 0%, 35%) !important;
}
.fc-dark-charcoal-active:active {
  fill: hsl(0, 0%, 35%) !important;
}
.fc-dark-charcoal-hover:hover {
  fill: hsl(0, 0%, 35%) !important;
}
.fc-dark-charcoal-focus:focus {
  fill: hsl(0, 0%, 35%) !important;
}
.sc-charcoal {
  stroke: hsl(0, 0%, 60%) !important;
}
.sc-charcoal-active:active {
  stroke: hsl(0, 0%, 60%) !important;
}
.sc-charcoal-hover:hover {
  stroke: hsl(0, 0%, 60%) !important;
}
.sc-charcoal-focus:focus {
  stroke: hsl(0, 0%, 60%) !important;
}
.sc-light-charcoal {
  stroke: hsl(0, 0%, 90%) !important;
}
.sc-light-charcoal-active:active {
  stroke: hsl(0, 0%, 90%) !important;
}
.sc-light-charcoal-hover:hover {
  stroke: hsl(0, 0%, 90%) !important;
}
.sc-light-charcoal-focus:focus {
  stroke: hsl(0, 0%, 90%) !important;
}
.sc-minor-charcoal {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-minor-charcoal-active:active {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-minor-charcoal-hover:hover {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-minor-charcoal-focus:focus {
  stroke: hsl(0, 0%, 80%) !important;
}
.sc-sat-charcoal {
  stroke: hsl(0, 0%, 45%) !important;
}
.sc-sat-charcoal-active:active {
  stroke: hsl(0, 0%, 45%) !important;
}
.sc-sat-charcoal-hover:hover {
  stroke: hsl(0, 0%, 45%) !important;
}
.sc-sat-charcoal-focus:focus {
  stroke: hsl(0, 0%, 45%) !important;
}
.sc-dark-charcoal {
  stroke: hsl(0, 0%, 35%) !important;
}
.sc-dark-charcoal-active:active {
  stroke: hsl(0, 0%, 35%) !important;
}
.sc-dark-charcoal-hover:hover {
  stroke: hsl(0, 0%, 35%) !important;
}
.sc-dark-charcoal-focus:focus {
  stroke: hsl(0, 0%, 35%) !important;
}
.fc-light-bronze {
  fill: hsl(29, 75%, 87%) !important;
}
.fc-light-bronze-active:active {
  fill: hsl(29, 75%, 87%) !important;
}
.fc-light-bronze-hover:hover {
  fill: hsl(29, 75%, 87%) !important;
}
.fc-light-bronze-focus:focus {
  fill: hsl(29, 75%, 87%) !important;
}
.fc-minor-bronze {
  fill: hsl(29, 75%, 72%) !important;
}
.fc-minor-bronze-active:active {
  fill: hsl(29, 75%, 72%) !important;
}
.fc-minor-bronze-hover:hover {
  fill: hsl(29, 75%, 72%) !important;
}
.fc-minor-bronze-focus:focus {
  fill: hsl(29, 75%, 72%) !important;
}
.fc-sat-bronze {
  fill: hsl(29, 75%, 42%) !important;
}
.fc-sat-bronze-active:active {
  fill: hsl(29, 75%, 42%) !important;
}
.fc-sat-bronze-hover:hover {
  fill: hsl(29, 75%, 42%) !important;
}
.fc-sat-bronze-focus:focus {
  fill: hsl(29, 75%, 42%) !important;
}
.fc-dark-bronze {
  fill: hsl(29, 75%, 32%) !important;
}
.fc-dark-bronze-active:active {
  fill: hsl(29, 75%, 32%) !important;
}
.fc-dark-bronze-hover:hover {
  fill: hsl(29, 75%, 32%) !important;
}
.fc-dark-bronze-focus:focus {
  fill: hsl(29, 75%, 32%) !important;
}
.sc-bronze {
  stroke: hsl(29, 75%, 57%) !important;
}
.sc-bronze-active:active {
  stroke: hsl(29, 75%, 57%) !important;
}
.sc-bronze-hover:hover {
  stroke: hsl(29, 75%, 57%) !important;
}
.sc-bronze-focus:focus {
  stroke: hsl(29, 75%, 57%) !important;
}
.sc-light-bronze {
  stroke: hsl(29, 75%, 87%) !important;
}
.sc-light-bronze-active:active {
  stroke: hsl(29, 75%, 87%) !important;
}
.sc-light-bronze-hover:hover {
  stroke: hsl(29, 75%, 87%) !important;
}
.sc-light-bronze-focus:focus {
  stroke: hsl(29, 75%, 87%) !important;
}
.sc-minor-bronze {
  stroke: hsl(29, 75%, 72%) !important;
}
.sc-minor-bronze-active:active {
  stroke: hsl(29, 75%, 72%) !important;
}
.sc-minor-bronze-hover:hover {
  stroke: hsl(29, 75%, 72%) !important;
}
.sc-minor-bronze-focus:focus {
  stroke: hsl(29, 75%, 72%) !important;
}
.sc-sat-bronze {
  stroke: hsl(29, 75%, 42%) !important;
}
.sc-sat-bronze-active:active {
  stroke: hsl(29, 75%, 42%) !important;
}
.sc-sat-bronze-hover:hover {
  stroke: hsl(29, 75%, 42%) !important;
}
.sc-sat-bronze-focus:focus {
  stroke: hsl(29, 75%, 42%) !important;
}
.sc-dark-bronze {
  stroke: hsl(29, 75%, 32%) !important;
}
.sc-dark-bronze-active:active {
  stroke: hsl(29, 75%, 32%) !important;
}
.sc-dark-bronze-hover:hover {
  stroke: hsl(29, 75%, 32%) !important;
}
.sc-dark-bronze-focus:focus {
  stroke: hsl(29, 75%, 32%) !important;
}
.fc-light-windstorm {
  fill: hsl(216, 53%, 93%) !important;
}
.fc-light-windstorm-active:active {
  fill: hsl(216, 53%, 93%) !important;
}
.fc-light-windstorm-hover:hover {
  fill: hsl(216, 53%, 93%) !important;
}
.fc-light-windstorm-focus:focus {
  fill: hsl(216, 53%, 93%) !important;
}
.fc-minor-windstorm {
  fill: hsl(216, 53%, 81%) !important;
}
.fc-minor-windstorm-active:active {
  fill: hsl(216, 53%, 81%) !important;
}
.fc-minor-windstorm-hover:hover {
  fill: hsl(216, 53%, 81%) !important;
}
.fc-minor-windstorm-focus:focus {
  fill: hsl(216, 53%, 81%) !important;
}
.fc-sat-windstorm {
  fill: hsl(216, 53%, 51%) !important;
}
.fc-sat-windstorm-active:active {
  fill: hsl(216, 53%, 51%) !important;
}
.fc-sat-windstorm-hover:hover {
  fill: hsl(216, 53%, 51%) !important;
}
.fc-sat-windstorm-focus:focus {
  fill: hsl(216, 53%, 51%) !important;
}
.fc-dark-windstorm {
  fill: hsl(216, 53%, 41%) !important;
}
.fc-dark-windstorm-active:active {
  fill: hsl(216, 53%, 41%) !important;
}
.fc-dark-windstorm-hover:hover {
  fill: hsl(216, 53%, 41%) !important;
}
.fc-dark-windstorm-focus:focus {
  fill: hsl(216, 53%, 41%) !important;
}
.sc-windstorm {
  stroke: hsl(216, 53%, 66%) !important;
}
.sc-windstorm-active:active {
  stroke: hsl(216, 53%, 66%) !important;
}
.sc-windstorm-hover:hover {
  stroke: hsl(216, 53%, 66%) !important;
}
.sc-windstorm-focus:focus {
  stroke: hsl(216, 53%, 66%) !important;
}
.sc-light-windstorm {
  stroke: hsl(216, 53%, 93%) !important;
}
.sc-light-windstorm-active:active {
  stroke: hsl(216, 53%, 93%) !important;
}
.sc-light-windstorm-hover:hover {
  stroke: hsl(216, 53%, 93%) !important;
}
.sc-light-windstorm-focus:focus {
  stroke: hsl(216, 53%, 93%) !important;
}
.sc-minor-windstorm {
  stroke: hsl(216, 53%, 81%) !important;
}
.sc-minor-windstorm-active:active {
  stroke: hsl(216, 53%, 81%) !important;
}
.sc-minor-windstorm-hover:hover {
  stroke: hsl(216, 53%, 81%) !important;
}
.sc-minor-windstorm-focus:focus {
  stroke: hsl(216, 53%, 81%) !important;
}
.sc-sat-windstorm {
  stroke: hsl(216, 53%, 51%) !important;
}
.sc-sat-windstorm-active:active {
  stroke: hsl(216, 53%, 51%) !important;
}
.sc-sat-windstorm-hover:hover {
  stroke: hsl(216, 53%, 51%) !important;
}
.sc-sat-windstorm-focus:focus {
  stroke: hsl(216, 53%, 51%) !important;
}
.sc-dark-windstorm {
  stroke: hsl(216, 53%, 41%) !important;
}
.sc-dark-windstorm-active:active {
  stroke: hsl(216, 53%, 41%) !important;
}
.sc-dark-windstorm-hover:hover {
  stroke: hsl(216, 53%, 41%) !important;
}
.sc-dark-windstorm-focus:focus {
  stroke: hsl(216, 53%, 41%) !important;
}
.fc-light-nude {
  fill: hsl(29, 79%, 97%) !important;
}
.fc-light-nude-active:active {
  fill: hsl(29, 79%, 97%) !important;
}
.fc-light-nude-hover:hover {
  fill: hsl(29, 79%, 97%) !important;
}
.fc-light-nude-focus:focus {
  fill: hsl(29, 79%, 97%) !important;
}
.fc-minor-nude {
  fill: hsl(29, 79%, 92%) !important;
}
.fc-minor-nude-active:active {
  fill: hsl(29, 79%, 92%) !important;
}
.fc-minor-nude-hover:hover {
  fill: hsl(29, 79%, 92%) !important;
}
.fc-minor-nude-focus:focus {
  fill: hsl(29, 79%, 92%) !important;
}
.fc-sat-nude {
  fill: hsl(29, 79%, 70%) !important;
}
.fc-sat-nude-active:active {
  fill: hsl(29, 79%, 70%) !important;
}
.fc-sat-nude-hover:hover {
  fill: hsl(29, 79%, 70%) !important;
}
.fc-sat-nude-focus:focus {
  fill: hsl(29, 79%, 70%) !important;
}
.fc-dark-nude {
  fill: hsl(29, 79%, 60%) !important;
}
.fc-dark-nude-active:active {
  fill: hsl(29, 79%, 60%) !important;
}
.fc-dark-nude-hover:hover {
  fill: hsl(29, 79%, 60%) !important;
}
.fc-dark-nude-focus:focus {
  fill: hsl(29, 79%, 60%) !important;
}
.sc-nude {
  stroke: hsl(29, 79%, 85%) !important;
}
.sc-nude-active:active {
  stroke: hsl(29, 79%, 85%) !important;
}
.sc-nude-hover:hover {
  stroke: hsl(29, 79%, 85%) !important;
}
.sc-nude-focus:focus {
  stroke: hsl(29, 79%, 85%) !important;
}
.sc-light-nude {
  stroke: hsl(29, 79%, 97%) !important;
}
.sc-light-nude-active:active {
  stroke: hsl(29, 79%, 97%) !important;
}
.sc-light-nude-hover:hover {
  stroke: hsl(29, 79%, 97%) !important;
}
.sc-light-nude-focus:focus {
  stroke: hsl(29, 79%, 97%) !important;
}
.sc-minor-nude {
  stroke: hsl(29, 79%, 92%) !important;
}
.sc-minor-nude-active:active {
  stroke: hsl(29, 79%, 92%) !important;
}
.sc-minor-nude-hover:hover {
  stroke: hsl(29, 79%, 92%) !important;
}
.sc-minor-nude-focus:focus {
  stroke: hsl(29, 79%, 92%) !important;
}
.sc-sat-nude {
  stroke: hsl(29, 79%, 70%) !important;
}
.sc-sat-nude-active:active {
  stroke: hsl(29, 79%, 70%) !important;
}
.sc-sat-nude-hover:hover {
  stroke: hsl(29, 79%, 70%) !important;
}
.sc-sat-nude-focus:focus {
  stroke: hsl(29, 79%, 70%) !important;
}
.sc-dark-nude {
  stroke: hsl(29, 79%, 60%) !important;
}
.sc-dark-nude-active:active {
  stroke: hsl(29, 79%, 60%) !important;
}
.sc-dark-nude-hover:hover {
  stroke: hsl(29, 79%, 60%) !important;
}
.sc-dark-nude-focus:focus {
  stroke: hsl(29, 79%, 60%) !important;
}
.fc-light-terracotta {
  fill: hsl(10, 76%, 85%) !important;
}
.fc-light-terracotta-active:active {
  fill: hsl(10, 76%, 85%) !important;
}
.fc-light-terracotta-hover:hover {
  fill: hsl(10, 76%, 85%) !important;
}
.fc-light-terracotta-focus:focus {
  fill: hsl(10, 76%, 85%) !important;
}
.fc-minor-terracotta {
  fill: hsl(10, 76%, 70%) !important;
}
.fc-minor-terracotta-active:active {
  fill: hsl(10, 76%, 70%) !important;
}
.fc-minor-terracotta-hover:hover {
  fill: hsl(10, 76%, 70%) !important;
}
.fc-minor-terracotta-focus:focus {
  fill: hsl(10, 76%, 70%) !important;
}
.fc-sat-terracotta {
  fill: hsl(10, 76%, 40%) !important;
}
.fc-sat-terracotta-active:active {
  fill: hsl(10, 76%, 40%) !important;
}
.fc-sat-terracotta-hover:hover {
  fill: hsl(10, 76%, 40%) !important;
}
.fc-sat-terracotta-focus:focus {
  fill: hsl(10, 76%, 40%) !important;
}
.fc-dark-terracotta {
  fill: hsl(10, 76%, 30%) !important;
}
.fc-dark-terracotta-active:active {
  fill: hsl(10, 76%, 30%) !important;
}
.fc-dark-terracotta-hover:hover {
  fill: hsl(10, 76%, 30%) !important;
}
.fc-dark-terracotta-focus:focus {
  fill: hsl(10, 76%, 30%) !important;
}
.sc-terracotta {
  stroke: hsl(10, 76%, 55%) !important;
}
.sc-terracotta-active:active {
  stroke: hsl(10, 76%, 55%) !important;
}
.sc-terracotta-hover:hover {
  stroke: hsl(10, 76%, 55%) !important;
}
.sc-terracotta-focus:focus {
  stroke: hsl(10, 76%, 55%) !important;
}
.sc-light-terracotta {
  stroke: hsl(10, 76%, 85%) !important;
}
.sc-light-terracotta-active:active {
  stroke: hsl(10, 76%, 85%) !important;
}
.sc-light-terracotta-hover:hover {
  stroke: hsl(10, 76%, 85%) !important;
}
.sc-light-terracotta-focus:focus {
  stroke: hsl(10, 76%, 85%) !important;
}
.sc-minor-terracotta {
  stroke: hsl(10, 76%, 70%) !important;
}
.sc-minor-terracotta-active:active {
  stroke: hsl(10, 76%, 70%) !important;
}
.sc-minor-terracotta-hover:hover {
  stroke: hsl(10, 76%, 70%) !important;
}
.sc-minor-terracotta-focus:focus {
  stroke: hsl(10, 76%, 70%) !important;
}
.sc-sat-terracotta {
  stroke: hsl(10, 76%, 40%) !important;
}
.sc-sat-terracotta-active:active {
  stroke: hsl(10, 76%, 40%) !important;
}
.sc-sat-terracotta-hover:hover {
  stroke: hsl(10, 76%, 40%) !important;
}
.sc-sat-terracotta-focus:focus {
  stroke: hsl(10, 76%, 40%) !important;
}
.sc-dark-terracotta {
  stroke: hsl(10, 76%, 30%) !important;
}
.sc-dark-terracotta-active:active {
  stroke: hsl(10, 76%, 30%) !important;
}
.sc-dark-terracotta-hover:hover {
  stroke: hsl(10, 76%, 30%) !important;
}
.sc-dark-terracotta-focus:focus {
  stroke: hsl(10, 76%, 30%) !important;
}
.fc-light-coral {
  fill: hsl(16, 100%, 92%) !important;
}
.fc-light-coral-active:active {
  fill: hsl(16, 100%, 92%) !important;
}
.fc-light-coral-hover:hover {
  fill: hsl(16, 100%, 92%) !important;
}
.fc-light-coral-focus:focus {
  fill: hsl(16, 100%, 92%) !important;
}
.fc-minor-coral {
  fill: hsl(16, 100%, 82%) !important;
}
.fc-minor-coral-active:active {
  fill: hsl(16, 100%, 82%) !important;
}
.fc-minor-coral-hover:hover {
  fill: hsl(16, 100%, 82%) !important;
}
.fc-minor-coral-focus:focus {
  fill: hsl(16, 100%, 82%) !important;
}
.fc-sat-coral {
  fill: hsl(16, 100%, 52%) !important;
}
.fc-sat-coral-active:active {
  fill: hsl(16, 100%, 52%) !important;
}
.fc-sat-coral-hover:hover {
  fill: hsl(16, 100%, 52%) !important;
}
.fc-sat-coral-focus:focus {
  fill: hsl(16, 100%, 52%) !important;
}
.fc-dark-coral {
  fill: hsl(16, 100%, 42%) !important;
}
.fc-dark-coral-active:active {
  fill: hsl(16, 100%, 42%) !important;
}
.fc-dark-coral-hover:hover {
  fill: hsl(16, 100%, 42%) !important;
}
.fc-dark-coral-focus:focus {
  fill: hsl(16, 100%, 42%) !important;
}
.sc-coral {
  stroke: hsl(16, 100%, 67%) !important;
}
.sc-coral-active:active {
  stroke: hsl(16, 100%, 67%) !important;
}
.sc-coral-hover:hover {
  stroke: hsl(16, 100%, 67%) !important;
}
.sc-coral-focus:focus {
  stroke: hsl(16, 100%, 67%) !important;
}
.sc-light-coral {
  stroke: hsl(16, 100%, 92%) !important;
}
.sc-light-coral-active:active {
  stroke: hsl(16, 100%, 92%) !important;
}
.sc-light-coral-hover:hover {
  stroke: hsl(16, 100%, 92%) !important;
}
.sc-light-coral-focus:focus {
  stroke: hsl(16, 100%, 92%) !important;
}
.sc-minor-coral {
  stroke: hsl(16, 100%, 82%) !important;
}
.sc-minor-coral-active:active {
  stroke: hsl(16, 100%, 82%) !important;
}
.sc-minor-coral-hover:hover {
  stroke: hsl(16, 100%, 82%) !important;
}
.sc-minor-coral-focus:focus {
  stroke: hsl(16, 100%, 82%) !important;
}
.sc-sat-coral {
  stroke: hsl(16, 100%, 52%) !important;
}
.sc-sat-coral-active:active {
  stroke: hsl(16, 100%, 52%) !important;
}
.sc-sat-coral-hover:hover {
  stroke: hsl(16, 100%, 52%) !important;
}
.sc-sat-coral-focus:focus {
  stroke: hsl(16, 100%, 52%) !important;
}
.sc-dark-coral {
  stroke: hsl(16, 100%, 42%) !important;
}
.sc-dark-coral-active:active {
  stroke: hsl(16, 100%, 42%) !important;
}
.sc-dark-coral-hover:hover {
  stroke: hsl(16, 100%, 42%) !important;
}
.sc-dark-coral-focus:focus {
  stroke: hsl(16, 100%, 42%) !important;
}
.fc-light-army {
  fill: hsl(69, 34%, 75%) !important;
}
.fc-light-army-active:active {
  fill: hsl(69, 34%, 75%) !important;
}
.fc-light-army-hover:hover {
  fill: hsl(69, 34%, 75%) !important;
}
.fc-light-army-focus:focus {
  fill: hsl(69, 34%, 75%) !important;
}
.fc-minor-army {
  fill: hsl(69, 34%, 47%) !important;
}
.fc-minor-army-active:active {
  fill: hsl(69, 34%, 47%) !important;
}
.fc-minor-army-hover:hover {
  fill: hsl(69, 34%, 47%) !important;
}
.fc-minor-army-focus:focus {
  fill: hsl(69, 34%, 47%) !important;
}
.fc-sat-army {
  fill: hsl(69, 34%, 15%) !important;
}
.fc-sat-army-active:active {
  fill: hsl(69, 34%, 15%) !important;
}
.fc-sat-army-hover:hover {
  fill: hsl(69, 34%, 15%) !important;
}
.fc-sat-army-focus:focus {
  fill: hsl(69, 34%, 15%) !important;
}
.fc-dark-army {
  fill: hsl(69, 34%, 5%) !important;
}
.fc-dark-army-active:active {
  fill: hsl(69, 34%, 5%) !important;
}
.fc-dark-army-hover:hover {
  fill: hsl(69, 34%, 5%) !important;
}
.fc-dark-army-focus:focus {
  fill: hsl(69, 34%, 5%) !important;
}
.sc-army {
  stroke: hsl(69, 34%, 30%) !important;
}
.sc-army-active:active {
  stroke: hsl(69, 34%, 30%) !important;
}
.sc-army-hover:hover {
  stroke: hsl(69, 34%, 30%) !important;
}
.sc-army-focus:focus {
  stroke: hsl(69, 34%, 30%) !important;
}
.sc-light-army {
  stroke: hsl(69, 34%, 75%) !important;
}
.sc-light-army-active:active {
  stroke: hsl(69, 34%, 75%) !important;
}
.sc-light-army-hover:hover {
  stroke: hsl(69, 34%, 75%) !important;
}
.sc-light-army-focus:focus {
  stroke: hsl(69, 34%, 75%) !important;
}
.sc-minor-army {
  stroke: hsl(69, 34%, 47%) !important;
}
.sc-minor-army-active:active {
  stroke: hsl(69, 34%, 47%) !important;
}
.sc-minor-army-hover:hover {
  stroke: hsl(69, 34%, 47%) !important;
}
.sc-minor-army-focus:focus {
  stroke: hsl(69, 34%, 47%) !important;
}
.sc-sat-army {
  stroke: hsl(69, 34%, 15%) !important;
}
.sc-sat-army-active:active {
  stroke: hsl(69, 34%, 15%) !important;
}
.sc-sat-army-hover:hover {
  stroke: hsl(69, 34%, 15%) !important;
}
.sc-sat-army-focus:focus {
  stroke: hsl(69, 34%, 15%) !important;
}
.sc-dark-army {
  stroke: hsl(69, 34%, 5%) !important;
}
.sc-dark-army-active:active {
  stroke: hsl(69, 34%, 5%) !important;
}
.sc-dark-army-hover:hover {
  stroke: hsl(69, 34%, 5%) !important;
}
.sc-dark-army-focus:focus {
  stroke: hsl(69, 34%, 5%) !important;
}
.fc-light-seashell {
  fill: hsl(25, 100%, 98%) !important;
}
.fc-light-seashell-active:active {
  fill: hsl(25, 100%, 98%) !important;
}
.fc-light-seashell-hover:hover {
  fill: hsl(25, 100%, 98%) !important;
}
.fc-light-seashell-focus:focus {
  fill: hsl(25, 100%, 98%) !important;
}
.fc-minor-seashell {
  fill: hsl(25, 100%, 97%) !important;
}
.fc-minor-seashell-active:active {
  fill: hsl(25, 100%, 97%) !important;
}
.fc-minor-seashell-hover:hover {
  fill: hsl(25, 100%, 97%) !important;
}
.fc-minor-seashell-focus:focus {
  fill: hsl(25, 100%, 97%) !important;
}
.fc-sat-seashell {
  fill: hsl(25, 100%, 80%) !important;
}
.fc-sat-seashell-active:active {
  fill: hsl(25, 100%, 80%) !important;
}
.fc-sat-seashell-hover:hover {
  fill: hsl(25, 100%, 80%) !important;
}
.fc-sat-seashell-focus:focus {
  fill: hsl(25, 100%, 80%) !important;
}
.fc-dark-seashell {
  fill: hsl(25, 100%, 70%) !important;
}
.fc-dark-seashell-active:active {
  fill: hsl(25, 100%, 70%) !important;
}
.fc-dark-seashell-hover:hover {
  fill: hsl(25, 100%, 70%) !important;
}
.fc-dark-seashell-focus:focus {
  fill: hsl(25, 100%, 70%) !important;
}
.sc-seashell {
  stroke: hsl(25, 100%, 95%) !important;
}
.sc-seashell-active:active {
  stroke: hsl(25, 100%, 95%) !important;
}
.sc-seashell-hover:hover {
  stroke: hsl(25, 100%, 95%) !important;
}
.sc-seashell-focus:focus {
  stroke: hsl(25, 100%, 95%) !important;
}
.sc-light-seashell {
  stroke: hsl(25, 100%, 98%) !important;
}
.sc-light-seashell-active:active {
  stroke: hsl(25, 100%, 98%) !important;
}
.sc-light-seashell-hover:hover {
  stroke: hsl(25, 100%, 98%) !important;
}
.sc-light-seashell-focus:focus {
  stroke: hsl(25, 100%, 98%) !important;
}
.sc-minor-seashell {
  stroke: hsl(25, 100%, 97%) !important;
}
.sc-minor-seashell-active:active {
  stroke: hsl(25, 100%, 97%) !important;
}
.sc-minor-seashell-hover:hover {
  stroke: hsl(25, 100%, 97%) !important;
}
.sc-minor-seashell-focus:focus {
  stroke: hsl(25, 100%, 97%) !important;
}
.sc-sat-seashell {
  stroke: hsl(25, 100%, 80%) !important;
}
.sc-sat-seashell-active:active {
  stroke: hsl(25, 100%, 80%) !important;
}
.sc-sat-seashell-hover:hover {
  stroke: hsl(25, 100%, 80%) !important;
}
.sc-sat-seashell-focus:focus {
  stroke: hsl(25, 100%, 80%) !important;
}
.sc-dark-seashell {
  stroke: hsl(25, 100%, 70%) !important;
}
.sc-dark-seashell-active:active {
  stroke: hsl(25, 100%, 70%) !important;
}
.sc-dark-seashell-hover:hover {
  stroke: hsl(25, 100%, 70%) !important;
}
.sc-dark-seashell-focus:focus {
  stroke: hsl(25, 100%, 70%) !important;
}
.fc-light-sand {
  fill: hsl(45, 71%, 96%) !important;
}
.fc-light-sand-active:active {
  fill: hsl(45, 71%, 96%) !important;
}
.fc-light-sand-hover:hover {
  fill: hsl(45, 71%, 96%) !important;
}
.fc-light-sand-focus:focus {
  fill: hsl(45, 71%, 96%) !important;
}
.fc-minor-sand {
  fill: hsl(45, 71%, 88%) !important;
}
.fc-minor-sand-active:active {
  fill: hsl(45, 71%, 88%) !important;
}
.fc-minor-sand-hover:hover {
  fill: hsl(45, 71%, 88%) !important;
}
.fc-minor-sand-focus:focus {
  fill: hsl(45, 71%, 88%) !important;
}
.fc-sat-sand {
  fill: hsl(45, 71%, 66%) !important;
}
.fc-sat-sand-active:active {
  fill: hsl(45, 71%, 66%) !important;
}
.fc-sat-sand-hover:hover {
  fill: hsl(45, 71%, 66%) !important;
}
.fc-sat-sand-focus:focus {
  fill: hsl(45, 71%, 66%) !important;
}
.fc-dark-sand {
  fill: hsl(45, 71%, 56%) !important;
}
.fc-dark-sand-active:active {
  fill: hsl(45, 71%, 56%) !important;
}
.fc-dark-sand-hover:hover {
  fill: hsl(45, 71%, 56%) !important;
}
.fc-dark-sand-focus:focus {
  fill: hsl(45, 71%, 56%) !important;
}
.sc-sand {
  stroke: hsl(45, 71%, 81%) !important;
}
.sc-sand-active:active {
  stroke: hsl(45, 71%, 81%) !important;
}
.sc-sand-hover:hover {
  stroke: hsl(45, 71%, 81%) !important;
}
.sc-sand-focus:focus {
  stroke: hsl(45, 71%, 81%) !important;
}
.sc-light-sand {
  stroke: hsl(45, 71%, 96%) !important;
}
.sc-light-sand-active:active {
  stroke: hsl(45, 71%, 96%) !important;
}
.sc-light-sand-hover:hover {
  stroke: hsl(45, 71%, 96%) !important;
}
.sc-light-sand-focus:focus {
  stroke: hsl(45, 71%, 96%) !important;
}
.sc-minor-sand {
  stroke: hsl(45, 71%, 88%) !important;
}
.sc-minor-sand-active:active {
  stroke: hsl(45, 71%, 88%) !important;
}
.sc-minor-sand-hover:hover {
  stroke: hsl(45, 71%, 88%) !important;
}
.sc-minor-sand-focus:focus {
  stroke: hsl(45, 71%, 88%) !important;
}
.sc-sat-sand {
  stroke: hsl(45, 71%, 66%) !important;
}
.sc-sat-sand-active:active {
  stroke: hsl(45, 71%, 66%) !important;
}
.sc-sat-sand-hover:hover {
  stroke: hsl(45, 71%, 66%) !important;
}
.sc-sat-sand-focus:focus {
  stroke: hsl(45, 71%, 66%) !important;
}
.sc-dark-sand {
  stroke: hsl(45, 71%, 56%) !important;
}
.sc-dark-sand-active:active {
  stroke: hsl(45, 71%, 56%) !important;
}
.sc-dark-sand-hover:hover {
  stroke: hsl(45, 71%, 56%) !important;
}
.sc-dark-sand-focus:focus {
  stroke: hsl(45, 71%, 56%) !important;
}

/* ../metroui-lib/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: hsl(0, 0%, 80%) !important;
}
.fg-gray-active:active {
  color: hsl(0, 0%, 80%) !important;
}
.fg-gray-hover:hover {
  color: hsl(0, 0%, 80%) !important;
}
.fg-gray-focus:focus {
  color: hsl(0, 0%, 80%) !important;
}
.fg-gray-blue {
  color: hsl(210, 26%, 54%) !important;
}
.fg-gray-blue-active:active {
  color: hsl(210, 26%, 54%) !important;
}
.fg-gray-blue-hover:hover {
  color: hsl(210, 26%, 54%) !important;
}
.fg-gray-blue-focus:focus {
  color: hsl(210, 26%, 54%) !important;
}
.fg-gray-white {
  color: hsl(0, 0%, 96%) !important;
}
.fg-gray-white-active:active {
  color: hsl(0, 0%, 96%) !important;
}
.fg-gray-white-hover:hover {
  color: hsl(0, 0%, 96%) !important;
}
.fg-gray-white-focus:focus {
  color: hsl(0, 0%, 96%) !important;
}
.fg-gray-mouse {
  color: hsl(199, 15%, 40%) !important;
}
.fg-gray-mouse-active:active {
  color: hsl(199, 15%, 40%) !important;
}
.fg-gray-mouse-hover:hover {
  color: hsl(199, 15%, 40%) !important;
}
.fg-gray-mouse-focus:focus {
  color: hsl(199, 15%, 40%) !important;
}
.fg-lime {
  color: hsl(93, 97%, 71%) !important;
}
.fg-lime-active:active {
  color: hsl(93, 97%, 71%) !important;
}
.fg-lime-hover:hover {
  color: hsl(93, 97%, 71%) !important;
}
.fg-lime-focus:focus {
  color: hsl(93, 97%, 71%) !important;
}
.fg-green {
  color: hsl(120, 100%, 35%) !important;
}
.fg-green-active:active {
  color: hsl(120, 100%, 35%) !important;
}
.fg-green-hover:hover {
  color: hsl(120, 100%, 35%) !important;
}
.fg-green-focus:focus {
  color: hsl(120, 100%, 35%) !important;
}
.fg-emerald {
  color: hsl(140, 52%, 55%) !important;
}
.fg-emerald-active:active {
  color: hsl(140, 52%, 55%) !important;
}
.fg-emerald-hover:hover {
  color: hsl(140, 52%, 55%) !important;
}
.fg-emerald-focus:focus {
  color: hsl(140, 52%, 55%) !important;
}
.fg-blue {
  color: hsl(225, 100%, 68%) !important;
}
.fg-blue-active:active {
  color: hsl(225, 100%, 68%) !important;
}
.fg-blue-hover:hover {
  color: hsl(225, 100%, 68%) !important;
}
.fg-blue-focus:focus {
  color: hsl(225, 100%, 68%) !important;
}
.fg-teal {
  color: hsl(180, 77%, 44%) !important;
}
.fg-teal-active:active {
  color: hsl(180, 77%, 44%) !important;
}
.fg-teal-hover:hover {
  color: hsl(180, 77%, 44%) !important;
}
.fg-teal-focus:focus {
  color: hsl(180, 77%, 44%) !important;
}
.fg-cyan {
  color: hsl(221, 100%, 79%) !important;
}
.fg-cyan-active:active {
  color: hsl(221, 100%, 79%) !important;
}
.fg-cyan-hover:hover {
  color: hsl(221, 100%, 79%) !important;
}
.fg-cyan-focus:focus {
  color: hsl(221, 100%, 79%) !important;
}
.fg-cobalt {
  color: hsl(215, 100%, 34%) !important;
}
.fg-cobalt-active:active {
  color: hsl(215, 100%, 34%) !important;
}
.fg-cobalt-hover:hover {
  color: hsl(215, 100%, 34%) !important;
}
.fg-cobalt-focus:focus {
  color: hsl(215, 100%, 34%) !important;
}
.fg-indigo {
  color: hsl(276, 100%, 33%) !important;
}
.fg-indigo-active:active {
  color: hsl(276, 100%, 33%) !important;
}
.fg-indigo-hover:hover {
  color: hsl(276, 100%, 33%) !important;
}
.fg-indigo-focus:focus {
  color: hsl(276, 100%, 33%) !important;
}
.fg-almost {
  color: hsl(259, 84%, 55%) !important;
}
.fg-almost-active:active {
  color: hsl(259, 84%, 55%) !important;
}
.fg-almost-hover:hover {
  color: hsl(259, 84%, 55%) !important;
}
.fg-almost-focus:focus {
  color: hsl(259, 84%, 55%) !important;
}
.fg-violet {
  color: hsl(300, 76%, 72%) !important;
}
.fg-violet-active:active {
  color: hsl(300, 76%, 72%) !important;
}
.fg-violet-hover:hover {
  color: hsl(300, 76%, 72%) !important;
}
.fg-violet-focus:focus {
  color: hsl(300, 76%, 72%) !important;
}
.fg-pink {
  color: hsl(350, 100%, 88%) !important;
}
.fg-pink-active:active {
  color: hsl(350, 100%, 88%) !important;
}
.fg-pink-hover:hover {
  color: hsl(350, 100%, 88%) !important;
}
.fg-pink-focus:focus {
  color: hsl(350, 100%, 88%) !important;
}
.fg-magenta {
  color: hsl(300, 100%, 50%) !important;
}
.fg-magenta-active:active {
  color: hsl(300, 100%, 50%) !important;
}
.fg-magenta-hover:hover {
  color: hsl(300, 100%, 50%) !important;
}
.fg-magenta-focus:focus {
  color: hsl(300, 100%, 50%) !important;
}
.fg-crimson {
  color: hsl(348, 88%, 46%) !important;
}
.fg-crimson-active:active {
  color: hsl(348, 88%, 46%) !important;
}
.fg-crimson-hover:hover {
  color: hsl(348, 88%, 46%) !important;
}
.fg-crimson-focus:focus {
  color: hsl(348, 88%, 46%) !important;
}
.fg-red {
  color: hsl(0, 100%, 50%) !important;
}
.fg-red-active:active {
  color: hsl(0, 100%, 50%) !important;
}
.fg-red-hover:hover {
  color: hsl(0, 100%, 50%) !important;
}
.fg-red-focus:focus {
  color: hsl(0, 100%, 50%) !important;
}
.fg-clown {
  color: hsl(3, 100%, 70%) !important;
}
.fg-clown-active:active {
  color: hsl(3, 100%, 70%) !important;
}
.fg-clown-hover:hover {
  color: hsl(3, 100%, 70%) !important;
}
.fg-clown-focus:focus {
  color: hsl(3, 100%, 70%) !important;
}
.fg-orange {
  color: hsl(39, 100%, 50%) !important;
}
.fg-orange-active:active {
  color: hsl(39, 100%, 50%) !important;
}
.fg-orange-hover:hover {
  color: hsl(39, 100%, 50%) !important;
}
.fg-orange-focus:focus {
  color: hsl(39, 100%, 50%) !important;
}
.fg-amber {
  color: hsl(45, 100%, 58%) !important;
}
.fg-amber-active:active {
  color: hsl(45, 100%, 58%) !important;
}
.fg-amber-hover:hover {
  color: hsl(45, 100%, 58%) !important;
}
.fg-amber-focus:focus {
  color: hsl(45, 100%, 58%) !important;
}
.fg-yellow {
  color: hsl(52, 100%, 68%) !important;
}
.fg-yellow-active:active {
  color: hsl(52, 100%, 68%) !important;
}
.fg-yellow-hover:hover {
  color: hsl(52, 100%, 68%) !important;
}
.fg-yellow-focus:focus {
  color: hsl(52, 100%, 68%) !important;
}
.fg-brown {
  color: hsl(25, 57%, 51%) !important;
}
.fg-brown-active:active {
  color: hsl(25, 57%, 51%) !important;
}
.fg-brown-hover:hover {
  color: hsl(25, 57%, 51%) !important;
}
.fg-brown-focus:focus {
  color: hsl(25, 57%, 51%) !important;
}
.fg-olive {
  color: hsl(60, 100%, 32%) !important;
}
.fg-olive-active:active {
  color: hsl(60, 100%, 32%) !important;
}
.fg-olive-hover:hover {
  color: hsl(60, 100%, 32%) !important;
}
.fg-olive-focus:focus {
  color: hsl(60, 100%, 32%) !important;
}
.fg-steel {
  color: hsl(209, 19%, 57%) !important;
}
.fg-steel-active:active {
  color: hsl(209, 19%, 57%) !important;
}
.fg-steel-hover:hover {
  color: hsl(209, 19%, 57%) !important;
}
.fg-steel-focus:focus {
  color: hsl(209, 19%, 57%) !important;
}
.fg-mauve {
  color: hsl(277, 100%, 84%) !important;
}
.fg-mauve-active:active {
  color: hsl(277, 100%, 84%) !important;
}
.fg-mauve-hover:hover {
  color: hsl(277, 100%, 84%) !important;
}
.fg-mauve-focus:focus {
  color: hsl(277, 100%, 84%) !important;
}
.fg-taupe {
  color: hsl(29, 19%, 50%) !important;
}
.fg-taupe-active:active {
  color: hsl(29, 19%, 50%) !important;
}
.fg-taupe-hover:hover {
  color: hsl(29, 19%, 50%) !important;
}
.fg-taupe-focus:focus {
  color: hsl(29, 19%, 50%) !important;
}
.fg-champagne {
  color: hsl(37, 74%, 88%) !important;
}
.fg-champagne-active:active {
  color: hsl(37, 74%, 88%) !important;
}
.fg-champagne-hover:hover {
  color: hsl(37, 74%, 88%) !important;
}
.fg-champagne-focus:focus {
  color: hsl(37, 74%, 88%) !important;
}
.fg-khaki {
  color: hsl(47, 47%, 69%) !important;
}
.fg-khaki-active:active {
  color: hsl(47, 47%, 69%) !important;
}
.fg-khaki-hover:hover {
  color: hsl(47, 47%, 69%) !important;
}
.fg-khaki-focus:focus {
  color: hsl(47, 47%, 69%) !important;
}
.fg-charcoal {
  color: hsl(0, 0%, 60%) !important;
}
.fg-charcoal-active:active {
  color: hsl(0, 0%, 60%) !important;
}
.fg-charcoal-hover:hover {
  color: hsl(0, 0%, 60%) !important;
}
.fg-charcoal-focus:focus {
  color: hsl(0, 0%, 60%) !important;
}
.fg-bronze {
  color: hsl(29, 75%, 57%) !important;
}
.fg-bronze-active:active {
  color: hsl(29, 75%, 57%) !important;
}
.fg-bronze-hover:hover {
  color: hsl(29, 75%, 57%) !important;
}
.fg-bronze-focus:focus {
  color: hsl(29, 75%, 57%) !important;
}
.fg-windstorm {
  color: hsl(216, 53%, 66%) !important;
}
.fg-windstorm-active:active {
  color: hsl(216, 53%, 66%) !important;
}
.fg-windstorm-hover:hover {
  color: hsl(216, 53%, 66%) !important;
}
.fg-windstorm-focus:focus {
  color: hsl(216, 53%, 66%) !important;
}
.fg-nude {
  color: hsl(29, 79%, 85%) !important;
}
.fg-nude-active:active {
  color: hsl(29, 79%, 85%) !important;
}
.fg-nude-hover:hover {
  color: hsl(29, 79%, 85%) !important;
}
.fg-nude-focus:focus {
  color: hsl(29, 79%, 85%) !important;
}
.fg-terracotta {
  color: hsl(10, 76%, 55%) !important;
}
.fg-terracotta-active:active {
  color: hsl(10, 76%, 55%) !important;
}
.fg-terracotta-hover:hover {
  color: hsl(10, 76%, 55%) !important;
}
.fg-terracotta-focus:focus {
  color: hsl(10, 76%, 55%) !important;
}
.fg-coral {
  color: hsl(16, 100%, 67%) !important;
}
.fg-coral-active:active {
  color: hsl(16, 100%, 67%) !important;
}
.fg-coral-hover:hover {
  color: hsl(16, 100%, 67%) !important;
}
.fg-coral-focus:focus {
  color: hsl(16, 100%, 67%) !important;
}
.fg-army {
  color: hsl(69, 34%, 30%) !important;
}
.fg-army-active:active {
  color: hsl(69, 34%, 30%) !important;
}
.fg-army-hover:hover {
  color: hsl(69, 34%, 30%) !important;
}
.fg-army-focus:focus {
  color: hsl(69, 34%, 30%) !important;
}
.fg-seashell {
  color: hsl(25, 100%, 95%) !important;
}
.fg-seashell-active:active {
  color: hsl(25, 100%, 95%) !important;
}
.fg-seashell-hover:hover {
  color: hsl(25, 100%, 95%) !important;
}
.fg-seashell-focus:focus {
  color: hsl(25, 100%, 95%) !important;
}
.fg-sand {
  color: hsl(45, 71%, 81%) !important;
}
.fg-sand-active:active {
  color: hsl(45, 71%, 81%) !important;
}
.fg-sand-hover:hover {
  color: hsl(45, 71%, 81%) !important;
}
.fg-sand-focus:focus {
  color: hsl(45, 71%, 81%) !important;
}
.fg-light-gray {
  color: hsl(0, 0%, 95%) !important;
}
.fg-light-gray-active:active {
  color: hsl(0, 0%, 95%) !important;
}
.fg-light-gray-hover:hover {
  color: hsl(0, 0%, 95%) !important;
}
.fg-light-gray-focus:focus {
  color: hsl(0, 0%, 95%) !important;
}
.fg-minor-gray {
  color: hsl(0, 0%, 87%) !important;
}
.fg-minor-gray-active:active {
  color: hsl(0, 0%, 87%) !important;
}
.fg-minor-gray-hover:hover {
  color: hsl(0, 0%, 87%) !important;
}
.fg-minor-gray-focus:focus {
  color: hsl(0, 0%, 87%) !important;
}
.fg-sat-gray {
  color: hsl(0, 0%, 65%) !important;
}
.fg-sat-gray-active:active {
  color: hsl(0, 0%, 65%) !important;
}
.fg-sat-gray-hover:hover {
  color: hsl(0, 0%, 65%) !important;
}
.fg-sat-gray-focus:focus {
  color: hsl(0, 0%, 65%) !important;
}
.fg-dark-gray {
  color: hsl(0, 0%, 55%) !important;
}
.fg-dark-gray-active:active {
  color: hsl(0, 0%, 55%) !important;
}
.fg-dark-gray-hover:hover {
  color: hsl(0, 0%, 55%) !important;
}
.fg-dark-gray-focus:focus {
  color: hsl(0, 0%, 55%) !important;
}
.fg-light-gray-blue {
  color: hsl(210, 26%, 84%) !important;
}
.fg-light-gray-blue-active:active {
  color: hsl(210, 26%, 84%) !important;
}
.fg-light-gray-blue-hover:hover {
  color: hsl(210, 26%, 84%) !important;
}
.fg-light-gray-blue-focus:focus {
  color: hsl(210, 26%, 84%) !important;
}
.fg-minor-gray-blue {
  color: hsl(210, 26%, 69%) !important;
}
.fg-minor-gray-blue-active:active {
  color: hsl(210, 26%, 69%) !important;
}
.fg-minor-gray-blue-hover:hover {
  color: hsl(210, 26%, 69%) !important;
}
.fg-minor-gray-blue-focus:focus {
  color: hsl(210, 26%, 69%) !important;
}
.fg-sat-gray-blue {
  color: hsl(210, 26%, 39%) !important;
}
.fg-sat-gray-blue-active:active {
  color: hsl(210, 26%, 39%) !important;
}
.fg-sat-gray-blue-hover:hover {
  color: hsl(210, 26%, 39%) !important;
}
.fg-sat-gray-blue-focus:focus {
  color: hsl(210, 26%, 39%) !important;
}
.fg-dark-gray-blue {
  color: hsl(210, 26%, 29%) !important;
}
.fg-dark-gray-blue-active:active {
  color: hsl(210, 26%, 29%) !important;
}
.fg-dark-gray-blue-hover:hover {
  color: hsl(210, 26%, 29%) !important;
}
.fg-dark-gray-blue-focus:focus {
  color: hsl(210, 26%, 29%) !important;
}
.fg-light-gray-mouse {
  color: hsl(199, 15%, 70%) !important;
}
.fg-light-gray-mouse-active:active {
  color: hsl(199, 15%, 70%) !important;
}
.fg-light-gray-mouse-hover:hover {
  color: hsl(199, 15%, 70%) !important;
}
.fg-light-gray-mouse-focus:focus {
  color: hsl(199, 15%, 70%) !important;
}
.fg-minor-gray-mouse {
  color: hsl(199, 15%, 55%) !important;
}
.fg-minor-gray-mouse-active:active {
  color: hsl(199, 15%, 55%) !important;
}
.fg-minor-gray-mouse-hover:hover {
  color: hsl(199, 15%, 55%) !important;
}
.fg-minor-gray-mouse-focus:focus {
  color: hsl(199, 15%, 55%) !important;
}
.fg-sat-gray-mouse {
  color: hsl(199, 15%, 25%) !important;
}
.fg-sat-gray-mouse-active:active {
  color: hsl(199, 15%, 25%) !important;
}
.fg-sat-gray-mouse-hover:hover {
  color: hsl(199, 15%, 25%) !important;
}
.fg-sat-gray-mouse-focus:focus {
  color: hsl(199, 15%, 25%) !important;
}
.fg-dark-gray-mouse {
  color: hsl(199, 15%, 15%) !important;
}
.fg-dark-gray-mouse-active:active {
  color: hsl(199, 15%, 15%) !important;
}
.fg-dark-gray-mouse-hover:hover {
  color: hsl(199, 15%, 15%) !important;
}
.fg-dark-gray-mouse-focus:focus {
  color: hsl(199, 15%, 15%) !important;
}
.fg-light-lime {
  color: hsl(93, 97%, 91%) !important;
}
.fg-light-lime-active:active {
  color: hsl(93, 97%, 91%) !important;
}
.fg-light-lime-hover:hover {
  color: hsl(93, 97%, 91%) !important;
}
.fg-light-lime-focus:focus {
  color: hsl(93, 97%, 91%) !important;
}
.fg-minor-lime {
  color: hsl(93, 97%, 81%) !important;
}
.fg-minor-lime-active:active {
  color: hsl(93, 97%, 81%) !important;
}
.fg-minor-lime-hover:hover {
  color: hsl(93, 97%, 81%) !important;
}
.fg-minor-lime-focus:focus {
  color: hsl(93, 97%, 81%) !important;
}
.fg-sat-lime {
  color: hsl(93, 97%, 56%) !important;
}
.fg-sat-lime-active:active {
  color: hsl(93, 97%, 56%) !important;
}
.fg-sat-lime-hover:hover {
  color: hsl(93, 97%, 56%) !important;
}
.fg-sat-lime-focus:focus {
  color: hsl(93, 97%, 56%) !important;
}
.fg-dark-lime {
  color: hsl(93, 97%, 46%) !important;
}
.fg-dark-lime-active:active {
  color: hsl(93, 97%, 46%) !important;
}
.fg-dark-lime-hover:hover {
  color: hsl(93, 97%, 46%) !important;
}
.fg-dark-lime-focus:focus {
  color: hsl(93, 97%, 46%) !important;
}
.fg-light-green {
  color: hsl(120, 100%, 80%) !important;
}
.fg-light-green-active:active {
  color: hsl(120, 100%, 80%) !important;
}
.fg-light-green-hover:hover {
  color: hsl(120, 100%, 80%) !important;
}
.fg-light-green-focus:focus {
  color: hsl(120, 100%, 80%) !important;
}
.fg-minor-green {
  color: hsl(120, 100%, 45%) !important;
}
.fg-minor-green-active:active {
  color: hsl(120, 100%, 45%) !important;
}
.fg-minor-green-hover:hover {
  color: hsl(120, 100%, 45%) !important;
}
.fg-minor-green-focus:focus {
  color: hsl(120, 100%, 45%) !important;
}
.fg-sat-green {
  color: hsl(120, 100%, 20%) !important;
}
.fg-sat-green-active:active {
  color: hsl(120, 100%, 20%) !important;
}
.fg-sat-green-hover:hover {
  color: hsl(120, 100%, 20%) !important;
}
.fg-sat-green-focus:focus {
  color: hsl(120, 100%, 20%) !important;
}
.fg-dark-green {
  color: hsl(120, 100%, 10%) !important;
}
.fg-dark-green-active:active {
  color: hsl(120, 100%, 10%) !important;
}
.fg-dark-green-hover:hover {
  color: hsl(120, 100%, 10%) !important;
}
.fg-dark-green-focus:focus {
  color: hsl(120, 100%, 10%) !important;
}
.fg-light-emerald {
  color: hsl(140, 52%, 85%) !important;
}
.fg-light-emerald-active:active {
  color: hsl(140, 52%, 85%) !important;
}
.fg-light-emerald-hover:hover {
  color: hsl(140, 52%, 85%) !important;
}
.fg-light-emerald-focus:focus {
  color: hsl(140, 52%, 85%) !important;
}
.fg-minor-emerald {
  color: hsl(140, 52%, 65%) !important;
}
.fg-minor-emerald-active:active {
  color: hsl(140, 52%, 65%) !important;
}
.fg-minor-emerald-hover:hover {
  color: hsl(140, 52%, 65%) !important;
}
.fg-minor-emerald-focus:focus {
  color: hsl(140, 52%, 65%) !important;
}
.fg-sat-emerald {
  color: hsl(140, 52%, 40%) !important;
}
.fg-sat-emerald-active:active {
  color: hsl(140, 52%, 40%) !important;
}
.fg-sat-emerald-hover:hover {
  color: hsl(140, 52%, 40%) !important;
}
.fg-sat-emerald-focus:focus {
  color: hsl(140, 52%, 40%) !important;
}
.fg-dark-emerald {
  color: hsl(140, 52%, 30%) !important;
}
.fg-dark-emerald-active:active {
  color: hsl(140, 52%, 30%) !important;
}
.fg-dark-emerald-hover:hover {
  color: hsl(140, 52%, 30%) !important;
}
.fg-dark-emerald-focus:focus {
  color: hsl(140, 52%, 30%) !important;
}
.fg-light-blue {
  color: hsl(225, 100%, 93%) !important;
}
.fg-light-blue-active:active {
  color: hsl(225, 100%, 93%) !important;
}
.fg-light-blue-hover:hover {
  color: hsl(225, 100%, 93%) !important;
}
.fg-light-blue-focus:focus {
  color: hsl(225, 100%, 93%) !important;
}
.fg-minor-blue {
  color: hsl(225, 100%, 78%) !important;
}
.fg-minor-blue-active:active {
  color: hsl(225, 100%, 78%) !important;
}
.fg-minor-blue-hover:hover {
  color: hsl(225, 100%, 78%) !important;
}
.fg-minor-blue-focus:focus {
  color: hsl(225, 100%, 78%) !important;
}
.fg-sat-blue {
  color: hsl(225, 100%, 53%) !important;
}
.fg-sat-blue-active:active {
  color: hsl(225, 100%, 53%) !important;
}
.fg-sat-blue-hover:hover {
  color: hsl(225, 100%, 53%) !important;
}
.fg-sat-blue-focus:focus {
  color: hsl(225, 100%, 53%) !important;
}
.fg-dark-blue {
  color: hsl(225, 100%, 43%) !important;
}
.fg-dark-blue-active:active {
  color: hsl(225, 100%, 43%) !important;
}
.fg-dark-blue-hover:hover {
  color: hsl(225, 100%, 43%) !important;
}
.fg-dark-blue-focus:focus {
  color: hsl(225, 100%, 43%) !important;
}
.fg-light-teal {
  color: hsl(180, 77%, 79%) !important;
}
.fg-light-teal-active:active {
  color: hsl(180, 77%, 79%) !important;
}
.fg-light-teal-hover:hover {
  color: hsl(180, 77%, 79%) !important;
}
.fg-light-teal-focus:focus {
  color: hsl(180, 77%, 79%) !important;
}
.fg-minor-teal {
  color: hsl(180, 77%, 54%) !important;
}
.fg-minor-teal-active:active {
  color: hsl(180, 77%, 54%) !important;
}
.fg-minor-teal-hover:hover {
  color: hsl(180, 77%, 54%) !important;
}
.fg-minor-teal-focus:focus {
  color: hsl(180, 77%, 54%) !important;
}
.fg-sat-teal {
  color: hsl(180, 77%, 29%) !important;
}
.fg-sat-teal-active:active {
  color: hsl(180, 77%, 29%) !important;
}
.fg-sat-teal-hover:hover {
  color: hsl(180, 77%, 29%) !important;
}
.fg-sat-teal-focus:focus {
  color: hsl(180, 77%, 29%) !important;
}
.fg-dark-teal {
  color: hsl(180, 77%, 19%) !important;
}
.fg-dark-teal-active:active {
  color: hsl(180, 77%, 19%) !important;
}
.fg-dark-teal-hover:hover {
  color: hsl(180, 77%, 19%) !important;
}
.fg-dark-teal-focus:focus {
  color: hsl(180, 77%, 19%) !important;
}
.fg-light-cyan {
  color: hsl(221, 100%, 94%) !important;
}
.fg-light-cyan-active:active {
  color: hsl(221, 100%, 94%) !important;
}
.fg-light-cyan-hover:hover {
  color: hsl(221, 100%, 94%) !important;
}
.fg-light-cyan-focus:focus {
  color: hsl(221, 100%, 94%) !important;
}
.fg-minor-cyan {
  color: hsl(221, 100%, 89%) !important;
}
.fg-minor-cyan-active:active {
  color: hsl(221, 100%, 89%) !important;
}
.fg-minor-cyan-hover:hover {
  color: hsl(221, 100%, 89%) !important;
}
.fg-minor-cyan-focus:focus {
  color: hsl(221, 100%, 89%) !important;
}
.fg-sat-cyan {
  color: hsl(221, 100%, 64%) !important;
}
.fg-sat-cyan-active:active {
  color: hsl(221, 100%, 64%) !important;
}
.fg-sat-cyan-hover:hover {
  color: hsl(221, 100%, 64%) !important;
}
.fg-sat-cyan-focus:focus {
  color: hsl(221, 100%, 64%) !important;
}
.fg-dark-cyan {
  color: hsl(221, 100%, 54%) !important;
}
.fg-dark-cyan-active:active {
  color: hsl(221, 100%, 54%) !important;
}
.fg-dark-cyan-hover:hover {
  color: hsl(221, 100%, 54%) !important;
}
.fg-dark-cyan-focus:focus {
  color: hsl(221, 100%, 54%) !important;
}
.fg-light-cobalt {
  color: hsl(215, 100%, 79%) !important;
}
.fg-light-cobalt-active:active {
  color: hsl(215, 100%, 79%) !important;
}
.fg-light-cobalt-hover:hover {
  color: hsl(215, 100%, 79%) !important;
}
.fg-light-cobalt-focus:focus {
  color: hsl(215, 100%, 79%) !important;
}
.fg-minor-cobalt {
  color: hsl(215, 100%, 49%) !important;
}
.fg-minor-cobalt-active:active {
  color: hsl(215, 100%, 49%) !important;
}
.fg-minor-cobalt-hover:hover {
  color: hsl(215, 100%, 49%) !important;
}
.fg-minor-cobalt-focus:focus {
  color: hsl(215, 100%, 49%) !important;
}
.fg-sat-cobalt {
  color: hsl(215, 100%, 19%) !important;
}
.fg-sat-cobalt-active:active {
  color: hsl(215, 100%, 19%) !important;
}
.fg-sat-cobalt-hover:hover {
  color: hsl(215, 100%, 19%) !important;
}
.fg-sat-cobalt-focus:focus {
  color: hsl(215, 100%, 19%) !important;
}
.fg-dark-cobalt {
  color: hsl(215, 100%, 9%) !important;
}
.fg-dark-cobalt-active:active {
  color: hsl(215, 100%, 9%) !important;
}
.fg-dark-cobalt-hover:hover {
  color: hsl(215, 100%, 9%) !important;
}
.fg-dark-cobalt-focus:focus {
  color: hsl(215, 100%, 9%) !important;
}
.fg-light-indigo {
  color: hsl(276, 100%, 78%) !important;
}
.fg-light-indigo-active:active {
  color: hsl(276, 100%, 78%) !important;
}
.fg-light-indigo-hover:hover {
  color: hsl(276, 100%, 78%) !important;
}
.fg-light-indigo-focus:focus {
  color: hsl(276, 100%, 78%) !important;
}
.fg-minor-indigo {
  color: hsl(276, 100%, 48%) !important;
}
.fg-minor-indigo-active:active {
  color: hsl(276, 100%, 48%) !important;
}
.fg-minor-indigo-hover:hover {
  color: hsl(276, 100%, 48%) !important;
}
.fg-minor-indigo-focus:focus {
  color: hsl(276, 100%, 48%) !important;
}
.fg-sat-indigo {
  color: hsl(276, 100%, 18%) !important;
}
.fg-sat-indigo-active:active {
  color: hsl(276, 100%, 18%) !important;
}
.fg-sat-indigo-hover:hover {
  color: hsl(276, 100%, 18%) !important;
}
.fg-sat-indigo-focus:focus {
  color: hsl(276, 100%, 18%) !important;
}
.fg-dark-indigo {
  color: hsl(276, 100%, 8%) !important;
}
.fg-dark-indigo-active:active {
  color: hsl(276, 100%, 8%) !important;
}
.fg-dark-indigo-hover:hover {
  color: hsl(276, 100%, 8%) !important;
}
.fg-dark-indigo-focus:focus {
  color: hsl(276, 100%, 8%) !important;
}
.fg-light-almost {
  color: hsl(259, 84%, 85%) !important;
}
.fg-light-almost-active:active {
  color: hsl(259, 84%, 85%) !important;
}
.fg-light-almost-hover:hover {
  color: hsl(259, 84%, 85%) !important;
}
.fg-light-almost-focus:focus {
  color: hsl(259, 84%, 85%) !important;
}
.fg-minor-almost {
  color: hsl(259, 84%, 70%) !important;
}
.fg-minor-almost-active:active {
  color: hsl(259, 84%, 70%) !important;
}
.fg-minor-almost-hover:hover {
  color: hsl(259, 84%, 70%) !important;
}
.fg-minor-almost-focus:focus {
  color: hsl(259, 84%, 70%) !important;
}
.fg-sat-almost {
  color: hsl(259, 84%, 40%) !important;
}
.fg-sat-almost-active:active {
  color: hsl(259, 84%, 40%) !important;
}
.fg-sat-almost-hover:hover {
  color: hsl(259, 84%, 40%) !important;
}
.fg-sat-almost-focus:focus {
  color: hsl(259, 84%, 40%) !important;
}
.fg-dark-almost {
  color: hsl(259, 84%, 30%) !important;
}
.fg-dark-almost-active:active {
  color: hsl(259, 84%, 30%) !important;
}
.fg-dark-almost-hover:hover {
  color: hsl(259, 84%, 30%) !important;
}
.fg-dark-almost-focus:focus {
  color: hsl(259, 84%, 30%) !important;
}
.fg-light-violet {
  color: hsl(300, 76%, 92%) !important;
}
.fg-light-violet-active:active {
  color: hsl(300, 76%, 92%) !important;
}
.fg-light-violet-hover:hover {
  color: hsl(300, 76%, 92%) !important;
}
.fg-light-violet-focus:focus {
  color: hsl(300, 76%, 92%) !important;
}
.fg-minor-violet {
  color: hsl(300, 76%, 82%) !important;
}
.fg-minor-violet-active:active {
  color: hsl(300, 76%, 82%) !important;
}
.fg-minor-violet-hover:hover {
  color: hsl(300, 76%, 82%) !important;
}
.fg-minor-violet-focus:focus {
  color: hsl(300, 76%, 82%) !important;
}
.fg-sat-violet {
  color: hsl(300, 76%, 57%) !important;
}
.fg-sat-violet-active:active {
  color: hsl(300, 76%, 57%) !important;
}
.fg-sat-violet-hover:hover {
  color: hsl(300, 76%, 57%) !important;
}
.fg-sat-violet-focus:focus {
  color: hsl(300, 76%, 57%) !important;
}
.fg-dark-violet {
  color: hsl(300, 76%, 47%) !important;
}
.fg-dark-violet-active:active {
  color: hsl(300, 76%, 47%) !important;
}
.fg-dark-violet-hover:hover {
  color: hsl(300, 76%, 47%) !important;
}
.fg-dark-violet-focus:focus {
  color: hsl(300, 76%, 47%) !important;
}
.fg-light-pink {
  color: hsl(350, 100%, 98%) !important;
}
.fg-light-pink-active:active {
  color: hsl(350, 100%, 98%) !important;
}
.fg-light-pink-hover:hover {
  color: hsl(350, 100%, 98%) !important;
}
.fg-light-pink-focus:focus {
  color: hsl(350, 100%, 98%) !important;
}
.fg-minor-pink {
  color: hsl(350, 100%, 93%) !important;
}
.fg-minor-pink-active:active {
  color: hsl(350, 100%, 93%) !important;
}
.fg-minor-pink-hover:hover {
  color: hsl(350, 100%, 93%) !important;
}
.fg-minor-pink-focus:focus {
  color: hsl(350, 100%, 93%) !important;
}
.fg-sat-pink {
  color: hsl(350, 100%, 73%) !important;
}
.fg-sat-pink-active:active {
  color: hsl(350, 100%, 73%) !important;
}
.fg-sat-pink-hover:hover {
  color: hsl(350, 100%, 73%) !important;
}
.fg-sat-pink-focus:focus {
  color: hsl(350, 100%, 73%) !important;
}
.fg-dark-pink {
  color: hsl(350, 100%, 63%) !important;
}
.fg-dark-pink-active:active {
  color: hsl(350, 100%, 63%) !important;
}
.fg-dark-pink-hover:hover {
  color: hsl(350, 100%, 63%) !important;
}
.fg-dark-pink-focus:focus {
  color: hsl(350, 100%, 63%) !important;
}
.fg-light-magenta {
  color: hsl(300, 100%, 90%) !important;
}
.fg-light-magenta-active:active {
  color: hsl(300, 100%, 90%) !important;
}
.fg-light-magenta-hover:hover {
  color: hsl(300, 100%, 90%) !important;
}
.fg-light-magenta-focus:focus {
  color: hsl(300, 100%, 90%) !important;
}
.fg-minor-magenta {
  color: hsl(300, 100%, 75%) !important;
}
.fg-minor-magenta-active:active {
  color: hsl(300, 100%, 75%) !important;
}
.fg-minor-magenta-hover:hover {
  color: hsl(300, 100%, 75%) !important;
}
.fg-minor-magenta-focus:focus {
  color: hsl(300, 100%, 75%) !important;
}
.fg-sat-magenta {
  color: hsl(300, 100%, 35%) !important;
}
.fg-sat-magenta-active:active {
  color: hsl(300, 100%, 35%) !important;
}
.fg-sat-magenta-hover:hover {
  color: hsl(300, 100%, 35%) !important;
}
.fg-sat-magenta-focus:focus {
  color: hsl(300, 100%, 35%) !important;
}
.fg-dark-magenta {
  color: hsl(300, 100%, 25%) !important;
}
.fg-dark-magenta-active:active {
  color: hsl(300, 100%, 25%) !important;
}
.fg-dark-magenta-hover:hover {
  color: hsl(300, 100%, 25%) !important;
}
.fg-dark-magenta-focus:focus {
  color: hsl(300, 100%, 25%) !important;
}
.fg-light-crimson {
  color: hsl(348, 88%, 91%) !important;
}
.fg-light-crimson-active:active {
  color: hsl(348, 88%, 91%) !important;
}
.fg-light-crimson-hover:hover {
  color: hsl(348, 88%, 91%) !important;
}
.fg-light-crimson-focus:focus {
  color: hsl(348, 88%, 91%) !important;
}
.fg-minor-crimson {
  color: hsl(348, 88%, 66%) !important;
}
.fg-minor-crimson-active:active {
  color: hsl(348, 88%, 66%) !important;
}
.fg-minor-crimson-hover:hover {
  color: hsl(348, 88%, 66%) !important;
}
.fg-minor-crimson-focus:focus {
  color: hsl(348, 88%, 66%) !important;
}
.fg-sat-crimson {
  color: hsl(348, 88%, 31%) !important;
}
.fg-sat-crimson-active:active {
  color: hsl(348, 88%, 31%) !important;
}
.fg-sat-crimson-hover:hover {
  color: hsl(348, 88%, 31%) !important;
}
.fg-sat-crimson-focus:focus {
  color: hsl(348, 88%, 31%) !important;
}
.fg-dark-crimson {
  color: hsl(348, 88%, 21%) !important;
}
.fg-dark-crimson-active:active {
  color: hsl(348, 88%, 21%) !important;
}
.fg-dark-crimson-hover:hover {
  color: hsl(348, 88%, 21%) !important;
}
.fg-dark-crimson-focus:focus {
  color: hsl(348, 88%, 21%) !important;
}
.fg-light-red {
  color: hsl(0, 100%, 85%) !important;
}
.fg-light-red-active:active {
  color: hsl(0, 100%, 85%) !important;
}
.fg-light-red-hover:hover {
  color: hsl(0, 100%, 85%) !important;
}
.fg-light-red-focus:focus {
  color: hsl(0, 100%, 85%) !important;
}
.fg-minor-red {
  color: hsl(0, 100%, 70%) !important;
}
.fg-minor-red-active:active {
  color: hsl(0, 100%, 70%) !important;
}
.fg-minor-red-hover:hover {
  color: hsl(0, 100%, 70%) !important;
}
.fg-minor-red-focus:focus {
  color: hsl(0, 100%, 70%) !important;
}
.fg-sat-red {
  color: hsl(0, 100%, 35%) !important;
}
.fg-sat-red-active:active {
  color: hsl(0, 100%, 35%) !important;
}
.fg-sat-red-hover:hover {
  color: hsl(0, 100%, 35%) !important;
}
.fg-sat-red-focus:focus {
  color: hsl(0, 100%, 35%) !important;
}
.fg-dark-red {
  color: hsl(0, 100%, 25%) !important;
}
.fg-dark-red-active:active {
  color: hsl(0, 100%, 25%) !important;
}
.fg-dark-red-hover:hover {
  color: hsl(0, 100%, 25%) !important;
}
.fg-dark-red-focus:focus {
  color: hsl(0, 100%, 25%) !important;
}
.fg-light-clown {
  color: hsl(3, 100%, 95%) !important;
}
.fg-light-clown-active:active {
  color: hsl(3, 100%, 95%) !important;
}
.fg-light-clown-hover:hover {
  color: hsl(3, 100%, 95%) !important;
}
.fg-light-clown-focus:focus {
  color: hsl(3, 100%, 95%) !important;
}
.fg-minor-clown {
  color: hsl(3, 100%, 85%) !important;
}
.fg-minor-clown-active:active {
  color: hsl(3, 100%, 85%) !important;
}
.fg-minor-clown-hover:hover {
  color: hsl(3, 100%, 85%) !important;
}
.fg-minor-clown-focus:focus {
  color: hsl(3, 100%, 85%) !important;
}
.fg-sat-clown {
  color: hsl(3, 100%, 55%) !important;
}
.fg-sat-clown-active:active {
  color: hsl(3, 100%, 55%) !important;
}
.fg-sat-clown-hover:hover {
  color: hsl(3, 100%, 55%) !important;
}
.fg-sat-clown-focus:focus {
  color: hsl(3, 100%, 55%) !important;
}
.fg-dark-clown {
  color: hsl(3, 100%, 45%) !important;
}
.fg-dark-clown-active:active {
  color: hsl(3, 100%, 45%) !important;
}
.fg-dark-clown-hover:hover {
  color: hsl(3, 100%, 45%) !important;
}
.fg-dark-clown-focus:focus {
  color: hsl(3, 100%, 45%) !important;
}
.fg-light-orange {
  color: hsl(39, 100%, 90%) !important;
}
.fg-light-orange-active:active {
  color: hsl(39, 100%, 90%) !important;
}
.fg-light-orange-hover:hover {
  color: hsl(39, 100%, 90%) !important;
}
.fg-light-orange-focus:focus {
  color: hsl(39, 100%, 90%) !important;
}
.fg-minor-orange {
  color: hsl(39, 100%, 75%) !important;
}
.fg-minor-orange-active:active {
  color: hsl(39, 100%, 75%) !important;
}
.fg-minor-orange-hover:hover {
  color: hsl(39, 100%, 75%) !important;
}
.fg-minor-orange-focus:focus {
  color: hsl(39, 100%, 75%) !important;
}
.fg-sat-orange {
  color: hsl(39, 100%, 35%) !important;
}
.fg-sat-orange-active:active {
  color: hsl(39, 100%, 35%) !important;
}
.fg-sat-orange-hover:hover {
  color: hsl(39, 100%, 35%) !important;
}
.fg-sat-orange-focus:focus {
  color: hsl(39, 100%, 35%) !important;
}
.fg-dark-orange {
  color: hsl(39, 100%, 25%) !important;
}
.fg-dark-orange-active:active {
  color: hsl(39, 100%, 25%) !important;
}
.fg-dark-orange-hover:hover {
  color: hsl(39, 100%, 25%) !important;
}
.fg-dark-orange-focus:focus {
  color: hsl(39, 100%, 25%) !important;
}
.fg-light-amber {
  color: hsl(45, 100%, 78%) !important;
}
.fg-light-amber-active:active {
  color: hsl(45, 100%, 78%) !important;
}
.fg-light-amber-hover:hover {
  color: hsl(45, 100%, 78%) !important;
}
.fg-light-amber-focus:focus {
  color: hsl(45, 100%, 78%) !important;
}
.fg-minor-amber {
  color: hsl(45, 100%, 68%) !important;
}
.fg-minor-amber-active:active {
  color: hsl(45, 100%, 68%) !important;
}
.fg-minor-amber-hover:hover {
  color: hsl(45, 100%, 68%) !important;
}
.fg-minor-amber-focus:focus {
  color: hsl(45, 100%, 68%) !important;
}
.fg-sat-amber {
  color: hsl(45, 100%, 43%) !important;
}
.fg-sat-amber-active:active {
  color: hsl(45, 100%, 43%) !important;
}
.fg-sat-amber-hover:hover {
  color: hsl(45, 100%, 43%) !important;
}
.fg-sat-amber-focus:focus {
  color: hsl(45, 100%, 43%) !important;
}
.fg-dark-amber {
  color: hsl(45, 100%, 33%) !important;
}
.fg-dark-amber-active:active {
  color: hsl(45, 100%, 33%) !important;
}
.fg-dark-amber-hover:hover {
  color: hsl(45, 100%, 33%) !important;
}
.fg-dark-amber-focus:focus {
  color: hsl(45, 100%, 33%) !important;
}
.fg-light-yellow {
  color: hsl(52, 100%, 93%) !important;
}
.fg-light-yellow-active:active {
  color: hsl(52, 100%, 93%) !important;
}
.fg-light-yellow-hover:hover {
  color: hsl(52, 100%, 93%) !important;
}
.fg-light-yellow-focus:focus {
  color: hsl(52, 100%, 93%) !important;
}
.fg-minor-yellow {
  color: hsl(52, 100%, 83%) !important;
}
.fg-minor-yellow-active:active {
  color: hsl(52, 100%, 83%) !important;
}
.fg-minor-yellow-hover:hover {
  color: hsl(52, 100%, 83%) !important;
}
.fg-minor-yellow-focus:focus {
  color: hsl(52, 100%, 83%) !important;
}
.fg-sat-yellow {
  color: hsl(52, 100%, 53%) !important;
}
.fg-sat-yellow-active:active {
  color: hsl(52, 100%, 53%) !important;
}
.fg-sat-yellow-hover:hover {
  color: hsl(52, 100%, 53%) !important;
}
.fg-sat-yellow-focus:focus {
  color: hsl(52, 100%, 53%) !important;
}
.fg-dark-yellow {
  color: hsl(52, 100%, 43%) !important;
}
.fg-dark-yellow-active:active {
  color: hsl(52, 100%, 43%) !important;
}
.fg-dark-yellow-hover:hover {
  color: hsl(52, 100%, 43%) !important;
}
.fg-dark-yellow-focus:focus {
  color: hsl(52, 100%, 43%) !important;
}
.fg-light-brown {
  color: hsl(25, 57%, 81%) !important;
}
.fg-light-brown-active:active {
  color: hsl(25, 57%, 81%) !important;
}
.fg-light-brown-hover:hover {
  color: hsl(25, 57%, 81%) !important;
}
.fg-light-brown-focus:focus {
  color: hsl(25, 57%, 81%) !important;
}
.fg-minor-brown {
  color: hsl(25, 57%, 66%) !important;
}
.fg-minor-brown-active:active {
  color: hsl(25, 57%, 66%) !important;
}
.fg-minor-brown-hover:hover {
  color: hsl(25, 57%, 66%) !important;
}
.fg-minor-brown-focus:focus {
  color: hsl(25, 57%, 66%) !important;
}
.fg-sat-brown {
  color: hsl(25, 57%, 36%) !important;
}
.fg-sat-brown-active:active {
  color: hsl(25, 57%, 36%) !important;
}
.fg-sat-brown-hover:hover {
  color: hsl(25, 57%, 36%) !important;
}
.fg-sat-brown-focus:focus {
  color: hsl(25, 57%, 36%) !important;
}
.fg-dark-brown {
  color: hsl(25, 57%, 26%) !important;
}
.fg-dark-brown-active:active {
  color: hsl(25, 57%, 26%) !important;
}
.fg-dark-brown-hover:hover {
  color: hsl(25, 57%, 26%) !important;
}
.fg-dark-brown-focus:focus {
  color: hsl(25, 57%, 26%) !important;
}
.fg-light-olive {
  color: hsl(60, 100%, 72%) !important;
}
.fg-light-olive-active:active {
  color: hsl(60, 100%, 72%) !important;
}
.fg-light-olive-hover:hover {
  color: hsl(60, 100%, 72%) !important;
}
.fg-light-olive-focus:focus {
  color: hsl(60, 100%, 72%) !important;
}
.fg-minor-olive {
  color: hsl(60, 100%, 42%) !important;
}
.fg-minor-olive-active:active {
  color: hsl(60, 100%, 42%) !important;
}
.fg-minor-olive-hover:hover {
  color: hsl(60, 100%, 42%) !important;
}
.fg-minor-olive-focus:focus {
  color: hsl(60, 100%, 42%) !important;
}
.fg-sat-olive {
  color: hsl(60, 100%, 17%) !important;
}
.fg-sat-olive-active:active {
  color: hsl(60, 100%, 17%) !important;
}
.fg-sat-olive-hover:hover {
  color: hsl(60, 100%, 17%) !important;
}
.fg-sat-olive-focus:focus {
  color: hsl(60, 100%, 17%) !important;
}
.fg-dark-olive {
  color: hsl(60, 100%, 7%) !important;
}
.fg-dark-olive-active:active {
  color: hsl(60, 100%, 7%) !important;
}
.fg-dark-olive-hover:hover {
  color: hsl(60, 100%, 7%) !important;
}
.fg-dark-olive-focus:focus {
  color: hsl(60, 100%, 7%) !important;
}
.fg-light-steel {
  color: hsl(209, 19%, 87%) !important;
}
.fg-light-steel-active:active {
  color: hsl(209, 19%, 87%) !important;
}
.fg-light-steel-hover:hover {
  color: hsl(209, 19%, 87%) !important;
}
.fg-light-steel-focus:focus {
  color: hsl(209, 19%, 87%) !important;
}
.fg-minor-steel {
  color: hsl(209, 19%, 77%) !important;
}
.fg-minor-steel-active:active {
  color: hsl(209, 19%, 77%) !important;
}
.fg-minor-steel-hover:hover {
  color: hsl(209, 19%, 77%) !important;
}
.fg-minor-steel-focus:focus {
  color: hsl(209, 19%, 77%) !important;
}
.fg-sat-steel {
  color: hsl(209, 19%, 42%) !important;
}
.fg-sat-steel-active:active {
  color: hsl(209, 19%, 42%) !important;
}
.fg-sat-steel-hover:hover {
  color: hsl(209, 19%, 42%) !important;
}
.fg-sat-steel-focus:focus {
  color: hsl(209, 19%, 42%) !important;
}
.fg-dark-steel {
  color: hsl(209, 19%, 32%) !important;
}
.fg-dark-steel-active:active {
  color: hsl(209, 19%, 32%) !important;
}
.fg-dark-steel-hover:hover {
  color: hsl(209, 19%, 32%) !important;
}
.fg-dark-steel-focus:focus {
  color: hsl(209, 19%, 32%) !important;
}
.fg-light-mauve {
  color: hsl(277, 100%, 96%) !important;
}
.fg-light-mauve-active:active {
  color: hsl(277, 100%, 96%) !important;
}
.fg-light-mauve-hover:hover {
  color: hsl(277, 100%, 96%) !important;
}
.fg-light-mauve-focus:focus {
  color: hsl(277, 100%, 96%) !important;
}
.fg-minor-mauve {
  color: hsl(277, 100%, 90%) !important;
}
.fg-minor-mauve-active:active {
  color: hsl(277, 100%, 90%) !important;
}
.fg-minor-mauve-hover:hover {
  color: hsl(277, 100%, 90%) !important;
}
.fg-minor-mauve-focus:focus {
  color: hsl(277, 100%, 90%) !important;
}
.fg-sat-mauve {
  color: hsl(277, 100%, 69%) !important;
}
.fg-sat-mauve-active:active {
  color: hsl(277, 100%, 69%) !important;
}
.fg-sat-mauve-hover:hover {
  color: hsl(277, 100%, 69%) !important;
}
.fg-sat-mauve-focus:focus {
  color: hsl(277, 100%, 69%) !important;
}
.fg-dark-mauve {
  color: hsl(277, 100%, 59%) !important;
}
.fg-dark-mauve-active:active {
  color: hsl(277, 100%, 59%) !important;
}
.fg-dark-mauve-hover:hover {
  color: hsl(277, 100%, 59%) !important;
}
.fg-dark-mauve-focus:focus {
  color: hsl(277, 100%, 59%) !important;
}
.fg-light-taupe {
  color: hsl(29, 19%, 80%) !important;
}
.fg-light-taupe-active:active {
  color: hsl(29, 19%, 80%) !important;
}
.fg-light-taupe-hover:hover {
  color: hsl(29, 19%, 80%) !important;
}
.fg-light-taupe-focus:focus {
  color: hsl(29, 19%, 80%) !important;
}
.fg-minor-taupe {
  color: hsl(29, 19%, 67%) !important;
}
.fg-minor-taupe-active:active {
  color: hsl(29, 19%, 67%) !important;
}
.fg-minor-taupe-hover:hover {
  color: hsl(29, 19%, 67%) !important;
}
.fg-minor-taupe-focus:focus {
  color: hsl(29, 19%, 67%) !important;
}
.fg-sat-taupe {
  color: hsl(29, 19%, 35%) !important;
}
.fg-sat-taupe-active:active {
  color: hsl(29, 19%, 35%) !important;
}
.fg-sat-taupe-hover:hover {
  color: hsl(29, 19%, 35%) !important;
}
.fg-sat-taupe-focus:focus {
  color: hsl(29, 19%, 35%) !important;
}
.fg-dark-taupe {
  color: hsl(29, 19%, 25%) !important;
}
.fg-dark-taupe-active:active {
  color: hsl(29, 19%, 25%) !important;
}
.fg-dark-taupe-hover:hover {
  color: hsl(29, 19%, 25%) !important;
}
.fg-dark-taupe-focus:focus {
  color: hsl(29, 19%, 25%) !important;
}
.fg-light-champagne {
  color: hsl(37, 74%, 98%) !important;
}
.fg-light-champagne-active:active {
  color: hsl(37, 74%, 98%) !important;
}
.fg-light-champagne-hover:hover {
  color: hsl(37, 74%, 98%) !important;
}
.fg-light-champagne-focus:focus {
  color: hsl(37, 74%, 98%) !important;
}
.fg-minor-champagne {
  color: hsl(37, 74%, 93%) !important;
}
.fg-minor-champagne-active:active {
  color: hsl(37, 74%, 93%) !important;
}
.fg-minor-champagne-hover:hover {
  color: hsl(37, 74%, 93%) !important;
}
.fg-minor-champagne-focus:focus {
  color: hsl(37, 74%, 93%) !important;
}
.fg-sat-champagne {
  color: hsl(37, 74%, 73%) !important;
}
.fg-sat-champagne-active:active {
  color: hsl(37, 74%, 73%) !important;
}
.fg-sat-champagne-hover:hover {
  color: hsl(37, 74%, 73%) !important;
}
.fg-sat-champagne-focus:focus {
  color: hsl(37, 74%, 73%) !important;
}
.fg-dark-champagne {
  color: hsl(37, 74%, 63%) !important;
}
.fg-dark-champagne-active:active {
  color: hsl(37, 74%, 63%) !important;
}
.fg-dark-champagne-hover:hover {
  color: hsl(37, 74%, 63%) !important;
}
.fg-dark-champagne-focus:focus {
  color: hsl(37, 74%, 63%) !important;
}
.fg-light-khaki {
  color: hsl(47, 47%, 94%) !important;
}
.fg-light-khaki-active:active {
  color: hsl(47, 47%, 94%) !important;
}
.fg-light-khaki-hover:hover {
  color: hsl(47, 47%, 94%) !important;
}
.fg-light-khaki-focus:focus {
  color: hsl(47, 47%, 94%) !important;
}
.fg-minor-khaki {
  color: hsl(47, 47%, 84%) !important;
}
.fg-minor-khaki-active:active {
  color: hsl(47, 47%, 84%) !important;
}
.fg-minor-khaki-hover:hover {
  color: hsl(47, 47%, 84%) !important;
}
.fg-minor-khaki-focus:focus {
  color: hsl(47, 47%, 84%) !important;
}
.fg-sat-khaki {
  color: hsl(47, 47%, 54%) !important;
}
.fg-sat-khaki-active:active {
  color: hsl(47, 47%, 54%) !important;
}
.fg-sat-khaki-hover:hover {
  color: hsl(47, 47%, 54%) !important;
}
.fg-sat-khaki-focus:focus {
  color: hsl(47, 47%, 54%) !important;
}
.fg-dark-khaki {
  color: hsl(47, 47%, 44%) !important;
}
.fg-dark-khaki-active:active {
  color: hsl(47, 47%, 44%) !important;
}
.fg-dark-khaki-hover:hover {
  color: hsl(47, 47%, 44%) !important;
}
.fg-dark-khaki-focus:focus {
  color: hsl(47, 47%, 44%) !important;
}
.fg-light-charcoal {
  color: hsl(0, 0%, 90%) !important;
}
.fg-light-charcoal-active:active {
  color: hsl(0, 0%, 90%) !important;
}
.fg-light-charcoal-hover:hover {
  color: hsl(0, 0%, 90%) !important;
}
.fg-light-charcoal-focus:focus {
  color: hsl(0, 0%, 90%) !important;
}
.fg-minor-charcoal {
  color: hsl(0, 0%, 80%) !important;
}
.fg-minor-charcoal-active:active {
  color: hsl(0, 0%, 80%) !important;
}
.fg-minor-charcoal-hover:hover {
  color: hsl(0, 0%, 80%) !important;
}
.fg-minor-charcoal-focus:focus {
  color: hsl(0, 0%, 80%) !important;
}
.fg-sat-charcoal {
  color: hsl(0, 0%, 45%) !important;
}
.fg-sat-charcoal-active:active {
  color: hsl(0, 0%, 45%) !important;
}
.fg-sat-charcoal-hover:hover {
  color: hsl(0, 0%, 45%) !important;
}
.fg-sat-charcoal-focus:focus {
  color: hsl(0, 0%, 45%) !important;
}
.fg-dark-charcoal {
  color: hsl(0, 0%, 35%) !important;
}
.fg-dark-charcoal-active:active {
  color: hsl(0, 0%, 35%) !important;
}
.fg-dark-charcoal-hover:hover {
  color: hsl(0, 0%, 35%) !important;
}
.fg-dark-charcoal-focus:focus {
  color: hsl(0, 0%, 35%) !important;
}
.fg-light-bronze {
  color: hsl(29, 75%, 87%) !important;
}
.fg-light-bronze-active:active {
  color: hsl(29, 75%, 87%) !important;
}
.fg-light-bronze-hover:hover {
  color: hsl(29, 75%, 87%) !important;
}
.fg-light-bronze-focus:focus {
  color: hsl(29, 75%, 87%) !important;
}
.fg-minor-bronze {
  color: hsl(29, 75%, 72%) !important;
}
.fg-minor-bronze-active:active {
  color: hsl(29, 75%, 72%) !important;
}
.fg-minor-bronze-hover:hover {
  color: hsl(29, 75%, 72%) !important;
}
.fg-minor-bronze-focus:focus {
  color: hsl(29, 75%, 72%) !important;
}
.fg-sat-bronze {
  color: hsl(29, 75%, 42%) !important;
}
.fg-sat-bronze-active:active {
  color: hsl(29, 75%, 42%) !important;
}
.fg-sat-bronze-hover:hover {
  color: hsl(29, 75%, 42%) !important;
}
.fg-sat-bronze-focus:focus {
  color: hsl(29, 75%, 42%) !important;
}
.fg-dark-bronze {
  color: hsl(29, 75%, 32%) !important;
}
.fg-dark-bronze-active:active {
  color: hsl(29, 75%, 32%) !important;
}
.fg-dark-bronze-hover:hover {
  color: hsl(29, 75%, 32%) !important;
}
.fg-dark-bronze-focus:focus {
  color: hsl(29, 75%, 32%) !important;
}
.fg-light-windstorm {
  color: hsl(216, 53%, 93%) !important;
}
.fg-light-windstorm-active:active {
  color: hsl(216, 53%, 93%) !important;
}
.fg-light-windstorm-hover:hover {
  color: hsl(216, 53%, 93%) !important;
}
.fg-light-windstorm-focus:focus {
  color: hsl(216, 53%, 93%) !important;
}
.fg-minor-windstorm {
  color: hsl(216, 53%, 81%) !important;
}
.fg-minor-windstorm-active:active {
  color: hsl(216, 53%, 81%) !important;
}
.fg-minor-windstorm-hover:hover {
  color: hsl(216, 53%, 81%) !important;
}
.fg-minor-windstorm-focus:focus {
  color: hsl(216, 53%, 81%) !important;
}
.fg-sat-windstorm {
  color: hsl(216, 53%, 51%) !important;
}
.fg-sat-windstorm-active:active {
  color: hsl(216, 53%, 51%) !important;
}
.fg-sat-windstorm-hover:hover {
  color: hsl(216, 53%, 51%) !important;
}
.fg-sat-windstorm-focus:focus {
  color: hsl(216, 53%, 51%) !important;
}
.fg-dark-windstorm {
  color: hsl(216, 53%, 41%) !important;
}
.fg-dark-windstorm-active:active {
  color: hsl(216, 53%, 41%) !important;
}
.fg-dark-windstorm-hover:hover {
  color: hsl(216, 53%, 41%) !important;
}
.fg-dark-windstorm-focus:focus {
  color: hsl(216, 53%, 41%) !important;
}
.fg-light-nude {
  color: hsl(29, 79%, 97%) !important;
}
.fg-light-nude-active:active {
  color: hsl(29, 79%, 97%) !important;
}
.fg-light-nude-hover:hover {
  color: hsl(29, 79%, 97%) !important;
}
.fg-light-nude-focus:focus {
  color: hsl(29, 79%, 97%) !important;
}
.fg-minor-nude {
  color: hsl(29, 79%, 92%) !important;
}
.fg-minor-nude-active:active {
  color: hsl(29, 79%, 92%) !important;
}
.fg-minor-nude-hover:hover {
  color: hsl(29, 79%, 92%) !important;
}
.fg-minor-nude-focus:focus {
  color: hsl(29, 79%, 92%) !important;
}
.fg-sat-nude {
  color: hsl(29, 79%, 70%) !important;
}
.fg-sat-nude-active:active {
  color: hsl(29, 79%, 70%) !important;
}
.fg-sat-nude-hover:hover {
  color: hsl(29, 79%, 70%) !important;
}
.fg-sat-nude-focus:focus {
  color: hsl(29, 79%, 70%) !important;
}
.fg-dark-nude {
  color: hsl(29, 79%, 60%) !important;
}
.fg-dark-nude-active:active {
  color: hsl(29, 79%, 60%) !important;
}
.fg-dark-nude-hover:hover {
  color: hsl(29, 79%, 60%) !important;
}
.fg-dark-nude-focus:focus {
  color: hsl(29, 79%, 60%) !important;
}
.fg-light-terracotta {
  color: hsl(10, 76%, 85%) !important;
}
.fg-light-terracotta-active:active {
  color: hsl(10, 76%, 85%) !important;
}
.fg-light-terracotta-hover:hover {
  color: hsl(10, 76%, 85%) !important;
}
.fg-light-terracotta-focus:focus {
  color: hsl(10, 76%, 85%) !important;
}
.fg-minor-terracotta {
  color: hsl(10, 76%, 70%) !important;
}
.fg-minor-terracotta-active:active {
  color: hsl(10, 76%, 70%) !important;
}
.fg-minor-terracotta-hover:hover {
  color: hsl(10, 76%, 70%) !important;
}
.fg-minor-terracotta-focus:focus {
  color: hsl(10, 76%, 70%) !important;
}
.fg-sat-terracotta {
  color: hsl(10, 76%, 40%) !important;
}
.fg-sat-terracotta-active:active {
  color: hsl(10, 76%, 40%) !important;
}
.fg-sat-terracotta-hover:hover {
  color: hsl(10, 76%, 40%) !important;
}
.fg-sat-terracotta-focus:focus {
  color: hsl(10, 76%, 40%) !important;
}
.fg-dark-terracotta {
  color: hsl(10, 76%, 30%) !important;
}
.fg-dark-terracotta-active:active {
  color: hsl(10, 76%, 30%) !important;
}
.fg-dark-terracotta-hover:hover {
  color: hsl(10, 76%, 30%) !important;
}
.fg-dark-terracotta-focus:focus {
  color: hsl(10, 76%, 30%) !important;
}
.fg-light-coral {
  color: hsl(16, 100%, 92%) !important;
}
.fg-light-coral-active:active {
  color: hsl(16, 100%, 92%) !important;
}
.fg-light-coral-hover:hover {
  color: hsl(16, 100%, 92%) !important;
}
.fg-light-coral-focus:focus {
  color: hsl(16, 100%, 92%) !important;
}
.fg-minor-coral {
  color: hsl(16, 100%, 82%) !important;
}
.fg-minor-coral-active:active {
  color: hsl(16, 100%, 82%) !important;
}
.fg-minor-coral-hover:hover {
  color: hsl(16, 100%, 82%) !important;
}
.fg-minor-coral-focus:focus {
  color: hsl(16, 100%, 82%) !important;
}
.fg-sat-coral {
  color: hsl(16, 100%, 52%) !important;
}
.fg-sat-coral-active:active {
  color: hsl(16, 100%, 52%) !important;
}
.fg-sat-coral-hover:hover {
  color: hsl(16, 100%, 52%) !important;
}
.fg-sat-coral-focus:focus {
  color: hsl(16, 100%, 52%) !important;
}
.fg-dark-coral {
  color: hsl(16, 100%, 42%) !important;
}
.fg-dark-coral-active:active {
  color: hsl(16, 100%, 42%) !important;
}
.fg-dark-coral-hover:hover {
  color: hsl(16, 100%, 42%) !important;
}
.fg-dark-coral-focus:focus {
  color: hsl(16, 100%, 42%) !important;
}
.fg-light-army {
  color: hsl(69, 34%, 75%) !important;
}
.fg-light-army-active:active {
  color: hsl(69, 34%, 75%) !important;
}
.fg-light-army-hover:hover {
  color: hsl(69, 34%, 75%) !important;
}
.fg-light-army-focus:focus {
  color: hsl(69, 34%, 75%) !important;
}
.fg-minor-army {
  color: hsl(69, 34%, 47%) !important;
}
.fg-minor-army-active:active {
  color: hsl(69, 34%, 47%) !important;
}
.fg-minor-army-hover:hover {
  color: hsl(69, 34%, 47%) !important;
}
.fg-minor-army-focus:focus {
  color: hsl(69, 34%, 47%) !important;
}
.fg-sat-army {
  color: hsl(69, 34%, 15%) !important;
}
.fg-sat-army-active:active {
  color: hsl(69, 34%, 15%) !important;
}
.fg-sat-army-hover:hover {
  color: hsl(69, 34%, 15%) !important;
}
.fg-sat-army-focus:focus {
  color: hsl(69, 34%, 15%) !important;
}
.fg-dark-army {
  color: hsl(69, 34%, 5%) !important;
}
.fg-dark-army-active:active {
  color: hsl(69, 34%, 5%) !important;
}
.fg-dark-army-hover:hover {
  color: hsl(69, 34%, 5%) !important;
}
.fg-dark-army-focus:focus {
  color: hsl(69, 34%, 5%) !important;
}
.fg-light-seashell {
  color: hsl(25, 100%, 98%) !important;
}
.fg-light-seashell-active:active {
  color: hsl(25, 100%, 98%) !important;
}
.fg-light-seashell-hover:hover {
  color: hsl(25, 100%, 98%) !important;
}
.fg-light-seashell-focus:focus {
  color: hsl(25, 100%, 98%) !important;
}
.fg-minor-seashell {
  color: hsl(25, 100%, 97%) !important;
}
.fg-minor-seashell-active:active {
  color: hsl(25, 100%, 97%) !important;
}
.fg-minor-seashell-hover:hover {
  color: hsl(25, 100%, 97%) !important;
}
.fg-minor-seashell-focus:focus {
  color: hsl(25, 100%, 97%) !important;
}
.fg-sat-seashell {
  color: hsl(25, 100%, 80%) !important;
}
.fg-sat-seashell-active:active {
  color: hsl(25, 100%, 80%) !important;
}
.fg-sat-seashell-hover:hover {
  color: hsl(25, 100%, 80%) !important;
}
.fg-sat-seashell-focus:focus {
  color: hsl(25, 100%, 80%) !important;
}
.fg-dark-seashell {
  color: hsl(25, 100%, 70%) !important;
}
.fg-dark-seashell-active:active {
  color: hsl(25, 100%, 70%) !important;
}
.fg-dark-seashell-hover:hover {
  color: hsl(25, 100%, 70%) !important;
}
.fg-dark-seashell-focus:focus {
  color: hsl(25, 100%, 70%) !important;
}
.fg-light-sand {
  color: hsl(45, 71%, 96%) !important;
}
.fg-light-sand-active:active {
  color: hsl(45, 71%, 96%) !important;
}
.fg-light-sand-hover:hover {
  color: hsl(45, 71%, 96%) !important;
}
.fg-light-sand-focus:focus {
  color: hsl(45, 71%, 96%) !important;
}
.fg-minor-sand {
  color: hsl(45, 71%, 88%) !important;
}
.fg-minor-sand-active:active {
  color: hsl(45, 71%, 88%) !important;
}
.fg-minor-sand-hover:hover {
  color: hsl(45, 71%, 88%) !important;
}
.fg-minor-sand-focus:focus {
  color: hsl(45, 71%, 88%) !important;
}
.fg-sat-sand {
  color: hsl(45, 71%, 66%) !important;
}
.fg-sat-sand-active:active {
  color: hsl(45, 71%, 66%) !important;
}
.fg-sat-sand-hover:hover {
  color: hsl(45, 71%, 66%) !important;
}
.fg-sat-sand-focus:focus {
  color: hsl(45, 71%, 66%) !important;
}
.fg-dark-sand {
  color: hsl(45, 71%, 56%) !important;
}
.fg-dark-sand-active:active {
  color: hsl(45, 71%, 56%) !important;
}
.fg-dark-sand-hover:hover {
  color: hsl(45, 71%, 56%) !important;
}
.fg-dark-sand-focus:focus {
  color: hsl(45, 71%, 56%) !important;
}

/* ../metroui-lib/source/colors-css/opacity.less */
.op-default {
  background-color: hsl(from #f75553 h s l / 0.5) !important;
}
.op-black {
  background-color: hsl(from #000000 h s l / 0.5) !important;
}
.op-black-hi {
  background-color: hsl(from #000000 h s l / 0.2) !important;
}
.op-black-low {
  background-color: hsl(from #000000 h s l / 0.8) !important;
}
.op-white {
  background-color: hsl(from #ffffff h s l / 0.5) !important;
}
.op-white-hi {
  background-color: hsl(from #ffffff h s l / 0.2) !important;
}
.op-white-low {
  background-color: hsl(from #ffffff h s l / 0.8) !important;
}
.op-dark {
  background-color: hsl(from #1d1d1d h s l / 0.5) !important;
}
.op-dark-hi {
  background-color: hsl(from #1d1d1d h s l / 0.2) !important;
}
.op-dark-low {
  background-color: hsl(from #1d1d1d h s l / 0.8) !important;
}
.op-light {
  background-color: hsl(from #f8f8f8 h s l / 0.5) !important;
}
.op-light-hi {
  background-color: hsl(from #f8f8f8 h s l / 0.2) !important;
}
.op-light-low {
  background-color: hsl(from #f8f8f8 h s l / 0.8) !important;
}
.op-gray {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.5) !important;
}
.op-gray-hi {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.2) !important;
}
.op-gray-low {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.8) !important;
}
.op-gray-blue {
  background-color: hsl(from hsl(210, 26%, 54%) h s l / 0.5) !important;
}
.op-gray-blue-hi {
  background-color: hsl(from hsl(210, 26%, 54%) h s l / 0.2) !important;
}
.op-gray-blue-low {
  background-color: hsl(from hsl(210, 26%, 54%) h s l / 0.8) !important;
}
.op-gray-white {
  background-color: hsl(from hsl(0, 0%, 96%) h s l / 0.5) !important;
}
.op-gray-white-hi {
  background-color: hsl(from hsl(0, 0%, 96%) h s l / 0.2) !important;
}
.op-gray-white-low {
  background-color: hsl(from hsl(0, 0%, 96%) h s l / 0.8) !important;
}
.op-gray-mouse {
  background-color: hsl(from hsl(199, 15%, 40%) h s l / 0.5) !important;
}
.op-gray-mouse-hi {
  background-color: hsl(from hsl(199, 15%, 40%) h s l / 0.2) !important;
}
.op-gray-mouse-low {
  background-color: hsl(from hsl(199, 15%, 40%) h s l / 0.8) !important;
}
.op-lime {
  background-color: hsl(from hsl(93, 97%, 71%) h s l / 0.5) !important;
}
.op-lime-hi {
  background-color: hsl(from hsl(93, 97%, 71%) h s l / 0.2) !important;
}
.op-lime-low {
  background-color: hsl(from hsl(93, 97%, 71%) h s l / 0.8) !important;
}
.op-green {
  background-color: hsl(from hsl(120, 100%, 35%) h s l / 0.5) !important;
}
.op-green-hi {
  background-color: hsl(from hsl(120, 100%, 35%) h s l / 0.2) !important;
}
.op-green-low {
  background-color: hsl(from hsl(120, 100%, 35%) h s l / 0.8) !important;
}
.op-emerald {
  background-color: hsl(from hsl(140, 52%, 55%) h s l / 0.5) !important;
}
.op-emerald-hi {
  background-color: hsl(from hsl(140, 52%, 55%) h s l / 0.2) !important;
}
.op-emerald-low {
  background-color: hsl(from hsl(140, 52%, 55%) h s l / 0.8) !important;
}
.op-blue {
  background-color: hsl(from hsl(225, 100%, 68%) h s l / 0.5) !important;
}
.op-blue-hi {
  background-color: hsl(from hsl(225, 100%, 68%) h s l / 0.2) !important;
}
.op-blue-low {
  background-color: hsl(from hsl(225, 100%, 68%) h s l / 0.8) !important;
}
.op-teal {
  background-color: hsl(from hsl(180, 77%, 44%) h s l / 0.5) !important;
}
.op-teal-hi {
  background-color: hsl(from hsl(180, 77%, 44%) h s l / 0.2) !important;
}
.op-teal-low {
  background-color: hsl(from hsl(180, 77%, 44%) h s l / 0.8) !important;
}
.op-cyan {
  background-color: hsl(from hsl(221, 100%, 79%) h s l / 0.5) !important;
}
.op-cyan-hi {
  background-color: hsl(from hsl(221, 100%, 79%) h s l / 0.2) !important;
}
.op-cyan-low {
  background-color: hsl(from hsl(221, 100%, 79%) h s l / 0.8) !important;
}
.op-cobalt {
  background-color: hsl(from hsl(215, 100%, 34%) h s l / 0.5) !important;
}
.op-cobalt-hi {
  background-color: hsl(from hsl(215, 100%, 34%) h s l / 0.2) !important;
}
.op-cobalt-low {
  background-color: hsl(from hsl(215, 100%, 34%) h s l / 0.8) !important;
}
.op-indigo {
  background-color: hsl(from hsl(276, 100%, 33%) h s l / 0.5) !important;
}
.op-indigo-hi {
  background-color: hsl(from hsl(276, 100%, 33%) h s l / 0.2) !important;
}
.op-indigo-low {
  background-color: hsl(from hsl(276, 100%, 33%) h s l / 0.8) !important;
}
.op-almost {
  background-color: hsl(from hsl(259, 84%, 55%) h s l / 0.5) !important;
}
.op-almost-hi {
  background-color: hsl(from hsl(259, 84%, 55%) h s l / 0.2) !important;
}
.op-almost-low {
  background-color: hsl(from hsl(259, 84%, 55%) h s l / 0.8) !important;
}
.op-violet {
  background-color: hsl(from hsl(300, 76%, 72%) h s l / 0.5) !important;
}
.op-violet-hi {
  background-color: hsl(from hsl(300, 76%, 72%) h s l / 0.2) !important;
}
.op-violet-low {
  background-color: hsl(from hsl(300, 76%, 72%) h s l / 0.8) !important;
}
.op-pink {
  background-color: hsl(from hsl(350, 100%, 88%) h s l / 0.5) !important;
}
.op-pink-hi {
  background-color: hsl(from hsl(350, 100%, 88%) h s l / 0.2) !important;
}
.op-pink-low {
  background-color: hsl(from hsl(350, 100%, 88%) h s l / 0.8) !important;
}
.op-magenta {
  background-color: hsl(from hsl(300, 100%, 50%) h s l / 0.5) !important;
}
.op-magenta-hi {
  background-color: hsl(from hsl(300, 100%, 50%) h s l / 0.2) !important;
}
.op-magenta-low {
  background-color: hsl(from hsl(300, 100%, 50%) h s l / 0.8) !important;
}
.op-crimson {
  background-color: hsl(from hsl(348, 88%, 46%) h s l / 0.5) !important;
}
.op-crimson-hi {
  background-color: hsl(from hsl(348, 88%, 46%) h s l / 0.2) !important;
}
.op-crimson-low {
  background-color: hsl(from hsl(348, 88%, 46%) h s l / 0.8) !important;
}
.op-red {
  background-color: hsl(from hsl(0, 100%, 50%) h s l / 0.5) !important;
}
.op-red-hi {
  background-color: hsl(from hsl(0, 100%, 50%) h s l / 0.2) !important;
}
.op-red-low {
  background-color: hsl(from hsl(0, 100%, 50%) h s l / 0.8) !important;
}
.op-clown {
  background-color: hsl(from hsl(3, 100%, 70%) h s l / 0.5) !important;
}
.op-clown-hi {
  background-color: hsl(from hsl(3, 100%, 70%) h s l / 0.2) !important;
}
.op-clown-low {
  background-color: hsl(from hsl(3, 100%, 70%) h s l / 0.8) !important;
}
.op-orange {
  background-color: hsl(from hsl(39, 100%, 50%) h s l / 0.5) !important;
}
.op-orange-hi {
  background-color: hsl(from hsl(39, 100%, 50%) h s l / 0.2) !important;
}
.op-orange-low {
  background-color: hsl(from hsl(39, 100%, 50%) h s l / 0.8) !important;
}
.op-amber {
  background-color: hsl(from hsl(45, 100%, 58%) h s l / 0.5) !important;
}
.op-amber-hi {
  background-color: hsl(from hsl(45, 100%, 58%) h s l / 0.2) !important;
}
.op-amber-low {
  background-color: hsl(from hsl(45, 100%, 58%) h s l / 0.8) !important;
}
.op-yellow {
  background-color: hsl(from hsl(52, 100%, 68%) h s l / 0.5) !important;
}
.op-yellow-hi {
  background-color: hsl(from hsl(52, 100%, 68%) h s l / 0.2) !important;
}
.op-yellow-low {
  background-color: hsl(from hsl(52, 100%, 68%) h s l / 0.8) !important;
}
.op-brown {
  background-color: hsl(from hsl(25, 57%, 51%) h s l / 0.5) !important;
}
.op-brown-hi {
  background-color: hsl(from hsl(25, 57%, 51%) h s l / 0.2) !important;
}
.op-brown-low {
  background-color: hsl(from hsl(25, 57%, 51%) h s l / 0.8) !important;
}
.op-olive {
  background-color: hsl(from hsl(60, 100%, 32%) h s l / 0.5) !important;
}
.op-olive-hi {
  background-color: hsl(from hsl(60, 100%, 32%) h s l / 0.2) !important;
}
.op-olive-low {
  background-color: hsl(from hsl(60, 100%, 32%) h s l / 0.8) !important;
}
.op-steel {
  background-color: hsl(from hsl(209, 19%, 57%) h s l / 0.5) !important;
}
.op-steel-hi {
  background-color: hsl(from hsl(209, 19%, 57%) h s l / 0.2) !important;
}
.op-steel-low {
  background-color: hsl(from hsl(209, 19%, 57%) h s l / 0.8) !important;
}
.op-mauve {
  background-color: hsl(from hsl(277, 100%, 84%) h s l / 0.5) !important;
}
.op-mauve-hi {
  background-color: hsl(from hsl(277, 100%, 84%) h s l / 0.2) !important;
}
.op-mauve-low {
  background-color: hsl(from hsl(277, 100%, 84%) h s l / 0.8) !important;
}
.op-taupe {
  background-color: hsl(from hsl(29, 19%, 50%) h s l / 0.5) !important;
}
.op-taupe-hi {
  background-color: hsl(from hsl(29, 19%, 50%) h s l / 0.2) !important;
}
.op-taupe-low {
  background-color: hsl(from hsl(29, 19%, 50%) h s l / 0.8) !important;
}
.op-champagne {
  background-color: hsl(from hsl(37, 74%, 88%) h s l / 0.5) !important;
}
.op-champagne-hi {
  background-color: hsl(from hsl(37, 74%, 88%) h s l / 0.2) !important;
}
.op-champagne-low {
  background-color: hsl(from hsl(37, 74%, 88%) h s l / 0.8) !important;
}
.op-khaki {
  background-color: hsl(from hsl(47, 47%, 69%) h s l / 0.5) !important;
}
.op-khaki-hi {
  background-color: hsl(from hsl(47, 47%, 69%) h s l / 0.2) !important;
}
.op-khaki-low {
  background-color: hsl(from hsl(47, 47%, 69%) h s l / 0.8) !important;
}
.op-charcoal {
  background-color: hsl(from hsl(0, 0%, 60%) h s l / 0.5) !important;
}
.op-charcoal-hi {
  background-color: hsl(from hsl(0, 0%, 60%) h s l / 0.2) !important;
}
.op-charcoal-low {
  background-color: hsl(from hsl(0, 0%, 60%) h s l / 0.8) !important;
}
.op-bronze {
  background-color: hsl(from hsl(29, 75%, 57%) h s l / 0.5) !important;
}
.op-bronze-hi {
  background-color: hsl(from hsl(29, 75%, 57%) h s l / 0.2) !important;
}
.op-bronze-low {
  background-color: hsl(from hsl(29, 75%, 57%) h s l / 0.8) !important;
}
.op-windstorm {
  background-color: hsl(from hsl(216, 53%, 66%) h s l / 0.5) !important;
}
.op-windstorm-hi {
  background-color: hsl(from hsl(216, 53%, 66%) h s l / 0.2) !important;
}
.op-windstorm-low {
  background-color: hsl(from hsl(216, 53%, 66%) h s l / 0.8) !important;
}
.op-nude {
  background-color: hsl(from hsl(29, 79%, 85%) h s l / 0.5) !important;
}
.op-nude-hi {
  background-color: hsl(from hsl(29, 79%, 85%) h s l / 0.2) !important;
}
.op-nude-low {
  background-color: hsl(from hsl(29, 79%, 85%) h s l / 0.8) !important;
}
.op-terracotta {
  background-color: hsl(from hsl(10, 76%, 55%) h s l / 0.5) !important;
}
.op-terracotta-hi {
  background-color: hsl(from hsl(10, 76%, 55%) h s l / 0.2) !important;
}
.op-terracotta-low {
  background-color: hsl(from hsl(10, 76%, 55%) h s l / 0.8) !important;
}
.op-coral {
  background-color: hsl(from hsl(16, 100%, 67%) h s l / 0.5) !important;
}
.op-coral-hi {
  background-color: hsl(from hsl(16, 100%, 67%) h s l / 0.2) !important;
}
.op-coral-low {
  background-color: hsl(from hsl(16, 100%, 67%) h s l / 0.8) !important;
}
.op-army {
  background-color: hsl(from hsl(69, 34%, 30%) h s l / 0.5) !important;
}
.op-army-hi {
  background-color: hsl(from hsl(69, 34%, 30%) h s l / 0.2) !important;
}
.op-army-low {
  background-color: hsl(from hsl(69, 34%, 30%) h s l / 0.8) !important;
}
.op-seashell {
  background-color: hsl(from hsl(25, 100%, 95%) h s l / 0.5) !important;
}
.op-seashell-hi {
  background-color: hsl(from hsl(25, 100%, 95%) h s l / 0.2) !important;
}
.op-seashell-low {
  background-color: hsl(from hsl(25, 100%, 95%) h s l / 0.8) !important;
}
.op-sand {
  background-color: hsl(from hsl(45, 71%, 81%) h s l / 0.5) !important;
}
.op-sand-hi {
  background-color: hsl(from hsl(45, 71%, 81%) h s l / 0.2) !important;
}
.op-sand-low {
  background-color: hsl(from hsl(45, 71%, 81%) h s l / 0.8) !important;
}
.op-light-gray {
  background-color: hsl(from hsl(0, 0%, 95%) h s l / 0.5) !important;
}
.op-light-gray-hi {
  background-color: hsl(from hsl(0, 0%, 95%) h s l / 0.2) !important;
}
.op-light-gray-low {
  background-color: hsl(from hsl(0, 0%, 95%) h s l / 0.8) !important;
}
.op-minor-gray {
  background-color: hsl(from hsl(0, 0%, 87%) h s l / 0.5) !important;
}
.op-minor-gray-hi {
  background-color: hsl(from hsl(0, 0%, 87%) h s l / 0.2) !important;
}
.op-minor-gray-low {
  background-color: hsl(from hsl(0, 0%, 87%) h s l / 0.8) !important;
}
.op-sat-gray {
  background-color: hsl(from hsl(0, 0%, 65%) h s l / 0.5) !important;
}
.op-sat-gray-hi {
  background-color: hsl(from hsl(0, 0%, 65%) h s l / 0.2) !important;
}
.op-sat-gray-low {
  background-color: hsl(from hsl(0, 0%, 65%) h s l / 0.8) !important;
}
.op-dark-gray {
  background-color: hsl(from hsl(0, 0%, 55%) h s l / 0.5) !important;
}
.op-dark-gray-hi {
  background-color: hsl(from hsl(0, 0%, 55%) h s l / 0.2) !important;
}
.op-dark-gray-low {
  background-color: hsl(from hsl(0, 0%, 55%) h s l / 0.8) !important;
}
.op-light-gray-blue {
  background-color: hsl(from hsl(210, 26%, 84%) h s l / 0.5) !important;
}
.op-light-gray-blue-hi {
  background-color: hsl(from hsl(210, 26%, 84%) h s l / 0.2) !important;
}
.op-light-gray-blue-low {
  background-color: hsl(from hsl(210, 26%, 84%) h s l / 0.8) !important;
}
.op-minor-gray-blue {
  background-color: hsl(from hsl(210, 26%, 69%) h s l / 0.5) !important;
}
.op-minor-gray-blue-hi {
  background-color: hsl(from hsl(210, 26%, 69%) h s l / 0.2) !important;
}
.op-minor-gray-blue-low {
  background-color: hsl(from hsl(210, 26%, 69%) h s l / 0.8) !important;
}
.op-sat-gray-blue {
  background-color: hsl(from hsl(210, 26%, 39%) h s l / 0.5) !important;
}
.op-sat-gray-blue-hi {
  background-color: hsl(from hsl(210, 26%, 39%) h s l / 0.2) !important;
}
.op-sat-gray-blue-low {
  background-color: hsl(from hsl(210, 26%, 39%) h s l / 0.8) !important;
}
.op-dark-gray-blue {
  background-color: hsl(from hsl(210, 26%, 29%) h s l / 0.5) !important;
}
.op-dark-gray-blue-hi {
  background-color: hsl(from hsl(210, 26%, 29%) h s l / 0.2) !important;
}
.op-dark-gray-blue-low {
  background-color: hsl(from hsl(210, 26%, 29%) h s l / 0.8) !important;
}
.op-light-gray-mouse {
  background-color: hsl(from hsl(199, 15%, 70%) h s l / 0.5) !important;
}
.op-light-gray-mouse-hi {
  background-color: hsl(from hsl(199, 15%, 70%) h s l / 0.2) !important;
}
.op-light-gray-mouse-low {
  background-color: hsl(from hsl(199, 15%, 70%) h s l / 0.8) !important;
}
.op-minor-gray-mouse {
  background-color: hsl(from hsl(199, 15%, 55%) h s l / 0.5) !important;
}
.op-minor-gray-mouse-hi {
  background-color: hsl(from hsl(199, 15%, 55%) h s l / 0.2) !important;
}
.op-minor-gray-mouse-low {
  background-color: hsl(from hsl(199, 15%, 55%) h s l / 0.8) !important;
}
.op-sat-gray-mouse {
  background-color: hsl(from hsl(199, 15%, 25%) h s l / 0.5) !important;
}
.op-sat-gray-mouse-hi {
  background-color: hsl(from hsl(199, 15%, 25%) h s l / 0.2) !important;
}
.op-sat-gray-mouse-low {
  background-color: hsl(from hsl(199, 15%, 25%) h s l / 0.8) !important;
}
.op-dark-gray-mouse {
  background-color: hsl(from hsl(199, 15%, 15%) h s l / 0.5) !important;
}
.op-dark-gray-mouse-hi {
  background-color: hsl(from hsl(199, 15%, 15%) h s l / 0.2) !important;
}
.op-dark-gray-mouse-low {
  background-color: hsl(from hsl(199, 15%, 15%) h s l / 0.8) !important;
}
.op-light-lime {
  background-color: hsl(from hsl(93, 97%, 91%) h s l / 0.5) !important;
}
.op-light-lime-hi {
  background-color: hsl(from hsl(93, 97%, 91%) h s l / 0.2) !important;
}
.op-light-lime-low {
  background-color: hsl(from hsl(93, 97%, 91%) h s l / 0.8) !important;
}
.op-minor-lime {
  background-color: hsl(from hsl(93, 97%, 81%) h s l / 0.5) !important;
}
.op-minor-lime-hi {
  background-color: hsl(from hsl(93, 97%, 81%) h s l / 0.2) !important;
}
.op-minor-lime-low {
  background-color: hsl(from hsl(93, 97%, 81%) h s l / 0.8) !important;
}
.op-sat-lime {
  background-color: hsl(from hsl(93, 97%, 56%) h s l / 0.5) !important;
}
.op-sat-lime-hi {
  background-color: hsl(from hsl(93, 97%, 56%) h s l / 0.2) !important;
}
.op-sat-lime-low {
  background-color: hsl(from hsl(93, 97%, 56%) h s l / 0.8) !important;
}
.op-dark-lime {
  background-color: hsl(from hsl(93, 97%, 46%) h s l / 0.5) !important;
}
.op-dark-lime-hi {
  background-color: hsl(from hsl(93, 97%, 46%) h s l / 0.2) !important;
}
.op-dark-lime-low {
  background-color: hsl(from hsl(93, 97%, 46%) h s l / 0.8) !important;
}
.op-light-green {
  background-color: hsl(from hsl(120, 100%, 80%) h s l / 0.5) !important;
}
.op-light-green-hi {
  background-color: hsl(from hsl(120, 100%, 80%) h s l / 0.2) !important;
}
.op-light-green-low {
  background-color: hsl(from hsl(120, 100%, 80%) h s l / 0.8) !important;
}
.op-minor-green {
  background-color: hsl(from hsl(120, 100%, 45%) h s l / 0.5) !important;
}
.op-minor-green-hi {
  background-color: hsl(from hsl(120, 100%, 45%) h s l / 0.2) !important;
}
.op-minor-green-low {
  background-color: hsl(from hsl(120, 100%, 45%) h s l / 0.8) !important;
}
.op-sat-green {
  background-color: hsl(from hsl(120, 100%, 20%) h s l / 0.5) !important;
}
.op-sat-green-hi {
  background-color: hsl(from hsl(120, 100%, 20%) h s l / 0.2) !important;
}
.op-sat-green-low {
  background-color: hsl(from hsl(120, 100%, 20%) h s l / 0.8) !important;
}
.op-dark-green {
  background-color: hsl(from hsl(120, 100%, 10%) h s l / 0.5) !important;
}
.op-dark-green-hi {
  background-color: hsl(from hsl(120, 100%, 10%) h s l / 0.2) !important;
}
.op-dark-green-low {
  background-color: hsl(from hsl(120, 100%, 10%) h s l / 0.8) !important;
}
.op-light-emerald {
  background-color: hsl(from hsl(140, 52%, 85%) h s l / 0.5) !important;
}
.op-light-emerald-hi {
  background-color: hsl(from hsl(140, 52%, 85%) h s l / 0.2) !important;
}
.op-light-emerald-low {
  background-color: hsl(from hsl(140, 52%, 85%) h s l / 0.8) !important;
}
.op-minor-emerald {
  background-color: hsl(from hsl(140, 52%, 65%) h s l / 0.5) !important;
}
.op-minor-emerald-hi {
  background-color: hsl(from hsl(140, 52%, 65%) h s l / 0.2) !important;
}
.op-minor-emerald-low {
  background-color: hsl(from hsl(140, 52%, 65%) h s l / 0.8) !important;
}
.op-sat-emerald {
  background-color: hsl(from hsl(140, 52%, 40%) h s l / 0.5) !important;
}
.op-sat-emerald-hi {
  background-color: hsl(from hsl(140, 52%, 40%) h s l / 0.2) !important;
}
.op-sat-emerald-low {
  background-color: hsl(from hsl(140, 52%, 40%) h s l / 0.8) !important;
}
.op-dark-emerald {
  background-color: hsl(from hsl(140, 52%, 30%) h s l / 0.5) !important;
}
.op-dark-emerald-hi {
  background-color: hsl(from hsl(140, 52%, 30%) h s l / 0.2) !important;
}
.op-dark-emerald-low {
  background-color: hsl(from hsl(140, 52%, 30%) h s l / 0.8) !important;
}
.op-light-blue {
  background-color: hsl(from hsl(225, 100%, 93%) h s l / 0.5) !important;
}
.op-light-blue-hi {
  background-color: hsl(from hsl(225, 100%, 93%) h s l / 0.2) !important;
}
.op-light-blue-low {
  background-color: hsl(from hsl(225, 100%, 93%) h s l / 0.8) !important;
}
.op-minor-blue {
  background-color: hsl(from hsl(225, 100%, 78%) h s l / 0.5) !important;
}
.op-minor-blue-hi {
  background-color: hsl(from hsl(225, 100%, 78%) h s l / 0.2) !important;
}
.op-minor-blue-low {
  background-color: hsl(from hsl(225, 100%, 78%) h s l / 0.8) !important;
}
.op-sat-blue {
  background-color: hsl(from hsl(225, 100%, 53%) h s l / 0.5) !important;
}
.op-sat-blue-hi {
  background-color: hsl(from hsl(225, 100%, 53%) h s l / 0.2) !important;
}
.op-sat-blue-low {
  background-color: hsl(from hsl(225, 100%, 53%) h s l / 0.8) !important;
}
.op-dark-blue {
  background-color: hsl(from hsl(225, 100%, 43%) h s l / 0.5) !important;
}
.op-dark-blue-hi {
  background-color: hsl(from hsl(225, 100%, 43%) h s l / 0.2) !important;
}
.op-dark-blue-low {
  background-color: hsl(from hsl(225, 100%, 43%) h s l / 0.8) !important;
}
.op-light-teal {
  background-color: hsl(from hsl(180, 77%, 79%) h s l / 0.5) !important;
}
.op-light-teal-hi {
  background-color: hsl(from hsl(180, 77%, 79%) h s l / 0.2) !important;
}
.op-light-teal-low {
  background-color: hsl(from hsl(180, 77%, 79%) h s l / 0.8) !important;
}
.op-minor-teal {
  background-color: hsl(from hsl(180, 77%, 54%) h s l / 0.5) !important;
}
.op-minor-teal-hi {
  background-color: hsl(from hsl(180, 77%, 54%) h s l / 0.2) !important;
}
.op-minor-teal-low {
  background-color: hsl(from hsl(180, 77%, 54%) h s l / 0.8) !important;
}
.op-sat-teal {
  background-color: hsl(from hsl(180, 77%, 29%) h s l / 0.5) !important;
}
.op-sat-teal-hi {
  background-color: hsl(from hsl(180, 77%, 29%) h s l / 0.2) !important;
}
.op-sat-teal-low {
  background-color: hsl(from hsl(180, 77%, 29%) h s l / 0.8) !important;
}
.op-dark-teal {
  background-color: hsl(from hsl(180, 77%, 19%) h s l / 0.5) !important;
}
.op-dark-teal-hi {
  background-color: hsl(from hsl(180, 77%, 19%) h s l / 0.2) !important;
}
.op-dark-teal-low {
  background-color: hsl(from hsl(180, 77%, 19%) h s l / 0.8) !important;
}
.op-light-cyan {
  background-color: hsl(from hsl(221, 100%, 94%) h s l / 0.5) !important;
}
.op-light-cyan-hi {
  background-color: hsl(from hsl(221, 100%, 94%) h s l / 0.2) !important;
}
.op-light-cyan-low {
  background-color: hsl(from hsl(221, 100%, 94%) h s l / 0.8) !important;
}
.op-minor-cyan {
  background-color: hsl(from hsl(221, 100%, 89%) h s l / 0.5) !important;
}
.op-minor-cyan-hi {
  background-color: hsl(from hsl(221, 100%, 89%) h s l / 0.2) !important;
}
.op-minor-cyan-low {
  background-color: hsl(from hsl(221, 100%, 89%) h s l / 0.8) !important;
}
.op-sat-cyan {
  background-color: hsl(from hsl(221, 100%, 64%) h s l / 0.5) !important;
}
.op-sat-cyan-hi {
  background-color: hsl(from hsl(221, 100%, 64%) h s l / 0.2) !important;
}
.op-sat-cyan-low {
  background-color: hsl(from hsl(221, 100%, 64%) h s l / 0.8) !important;
}
.op-dark-cyan {
  background-color: hsl(from hsl(221, 100%, 54%) h s l / 0.5) !important;
}
.op-dark-cyan-hi {
  background-color: hsl(from hsl(221, 100%, 54%) h s l / 0.2) !important;
}
.op-dark-cyan-low {
  background-color: hsl(from hsl(221, 100%, 54%) h s l / 0.8) !important;
}
.op-light-cobalt {
  background-color: hsl(from hsl(215, 100%, 79%) h s l / 0.5) !important;
}
.op-light-cobalt-hi {
  background-color: hsl(from hsl(215, 100%, 79%) h s l / 0.2) !important;
}
.op-light-cobalt-low {
  background-color: hsl(from hsl(215, 100%, 79%) h s l / 0.8) !important;
}
.op-minor-cobalt {
  background-color: hsl(from hsl(215, 100%, 49%) h s l / 0.5) !important;
}
.op-minor-cobalt-hi {
  background-color: hsl(from hsl(215, 100%, 49%) h s l / 0.2) !important;
}
.op-minor-cobalt-low {
  background-color: hsl(from hsl(215, 100%, 49%) h s l / 0.8) !important;
}
.op-sat-cobalt {
  background-color: hsl(from hsl(215, 100%, 19%) h s l / 0.5) !important;
}
.op-sat-cobalt-hi {
  background-color: hsl(from hsl(215, 100%, 19%) h s l / 0.2) !important;
}
.op-sat-cobalt-low {
  background-color: hsl(from hsl(215, 100%, 19%) h s l / 0.8) !important;
}
.op-dark-cobalt {
  background-color: hsl(from hsl(215, 100%, 9%) h s l / 0.5) !important;
}
.op-dark-cobalt-hi {
  background-color: hsl(from hsl(215, 100%, 9%) h s l / 0.2) !important;
}
.op-dark-cobalt-low {
  background-color: hsl(from hsl(215, 100%, 9%) h s l / 0.8) !important;
}
.op-light-indigo {
  background-color: hsl(from hsl(276, 100%, 78%) h s l / 0.5) !important;
}
.op-light-indigo-hi {
  background-color: hsl(from hsl(276, 100%, 78%) h s l / 0.2) !important;
}
.op-light-indigo-low {
  background-color: hsl(from hsl(276, 100%, 78%) h s l / 0.8) !important;
}
.op-minor-indigo {
  background-color: hsl(from hsl(276, 100%, 48%) h s l / 0.5) !important;
}
.op-minor-indigo-hi {
  background-color: hsl(from hsl(276, 100%, 48%) h s l / 0.2) !important;
}
.op-minor-indigo-low {
  background-color: hsl(from hsl(276, 100%, 48%) h s l / 0.8) !important;
}
.op-sat-indigo {
  background-color: hsl(from hsl(276, 100%, 18%) h s l / 0.5) !important;
}
.op-sat-indigo-hi {
  background-color: hsl(from hsl(276, 100%, 18%) h s l / 0.2) !important;
}
.op-sat-indigo-low {
  background-color: hsl(from hsl(276, 100%, 18%) h s l / 0.8) !important;
}
.op-dark-indigo {
  background-color: hsl(from hsl(276, 100%, 8%) h s l / 0.5) !important;
}
.op-dark-indigo-hi {
  background-color: hsl(from hsl(276, 100%, 8%) h s l / 0.2) !important;
}
.op-dark-indigo-low {
  background-color: hsl(from hsl(276, 100%, 8%) h s l / 0.8) !important;
}
.op-light-almost {
  background-color: hsl(from hsl(259, 84%, 85%) h s l / 0.5) !important;
}
.op-light-almost-hi {
  background-color: hsl(from hsl(259, 84%, 85%) h s l / 0.2) !important;
}
.op-light-almost-low {
  background-color: hsl(from hsl(259, 84%, 85%) h s l / 0.8) !important;
}
.op-minor-almost {
  background-color: hsl(from hsl(259, 84%, 70%) h s l / 0.5) !important;
}
.op-minor-almost-hi {
  background-color: hsl(from hsl(259, 84%, 70%) h s l / 0.2) !important;
}
.op-minor-almost-low {
  background-color: hsl(from hsl(259, 84%, 70%) h s l / 0.8) !important;
}
.op-sat-almost {
  background-color: hsl(from hsl(259, 84%, 40%) h s l / 0.5) !important;
}
.op-sat-almost-hi {
  background-color: hsl(from hsl(259, 84%, 40%) h s l / 0.2) !important;
}
.op-sat-almost-low {
  background-color: hsl(from hsl(259, 84%, 40%) h s l / 0.8) !important;
}
.op-dark-almost {
  background-color: hsl(from hsl(259, 84%, 30%) h s l / 0.5) !important;
}
.op-dark-almost-hi {
  background-color: hsl(from hsl(259, 84%, 30%) h s l / 0.2) !important;
}
.op-dark-almost-low {
  background-color: hsl(from hsl(259, 84%, 30%) h s l / 0.8) !important;
}
.op-light-violet {
  background-color: hsl(from hsl(300, 76%, 92%) h s l / 0.5) !important;
}
.op-light-violet-hi {
  background-color: hsl(from hsl(300, 76%, 92%) h s l / 0.2) !important;
}
.op-light-violet-low {
  background-color: hsl(from hsl(300, 76%, 92%) h s l / 0.8) !important;
}
.op-minor-violet {
  background-color: hsl(from hsl(300, 76%, 82%) h s l / 0.5) !important;
}
.op-minor-violet-hi {
  background-color: hsl(from hsl(300, 76%, 82%) h s l / 0.2) !important;
}
.op-minor-violet-low {
  background-color: hsl(from hsl(300, 76%, 82%) h s l / 0.8) !important;
}
.op-sat-violet {
  background-color: hsl(from hsl(300, 76%, 57%) h s l / 0.5) !important;
}
.op-sat-violet-hi {
  background-color: hsl(from hsl(300, 76%, 57%) h s l / 0.2) !important;
}
.op-sat-violet-low {
  background-color: hsl(from hsl(300, 76%, 57%) h s l / 0.8) !important;
}
.op-dark-violet {
  background-color: hsl(from hsl(300, 76%, 47%) h s l / 0.5) !important;
}
.op-dark-violet-hi {
  background-color: hsl(from hsl(300, 76%, 47%) h s l / 0.2) !important;
}
.op-dark-violet-low {
  background-color: hsl(from hsl(300, 76%, 47%) h s l / 0.8) !important;
}
.op-light-pink {
  background-color: hsl(from hsl(350, 100%, 98%) h s l / 0.5) !important;
}
.op-light-pink-hi {
  background-color: hsl(from hsl(350, 100%, 98%) h s l / 0.2) !important;
}
.op-light-pink-low {
  background-color: hsl(from hsl(350, 100%, 98%) h s l / 0.8) !important;
}
.op-minor-pink {
  background-color: hsl(from hsl(350, 100%, 93%) h s l / 0.5) !important;
}
.op-minor-pink-hi {
  background-color: hsl(from hsl(350, 100%, 93%) h s l / 0.2) !important;
}
.op-minor-pink-low {
  background-color: hsl(from hsl(350, 100%, 93%) h s l / 0.8) !important;
}
.op-sat-pink {
  background-color: hsl(from hsl(350, 100%, 73%) h s l / 0.5) !important;
}
.op-sat-pink-hi {
  background-color: hsl(from hsl(350, 100%, 73%) h s l / 0.2) !important;
}
.op-sat-pink-low {
  background-color: hsl(from hsl(350, 100%, 73%) h s l / 0.8) !important;
}
.op-dark-pink {
  background-color: hsl(from hsl(350, 100%, 63%) h s l / 0.5) !important;
}
.op-dark-pink-hi {
  background-color: hsl(from hsl(350, 100%, 63%) h s l / 0.2) !important;
}
.op-dark-pink-low {
  background-color: hsl(from hsl(350, 100%, 63%) h s l / 0.8) !important;
}
.op-light-magenta {
  background-color: hsl(from hsl(300, 100%, 90%) h s l / 0.5) !important;
}
.op-light-magenta-hi {
  background-color: hsl(from hsl(300, 100%, 90%) h s l / 0.2) !important;
}
.op-light-magenta-low {
  background-color: hsl(from hsl(300, 100%, 90%) h s l / 0.8) !important;
}
.op-minor-magenta {
  background-color: hsl(from hsl(300, 100%, 75%) h s l / 0.5) !important;
}
.op-minor-magenta-hi {
  background-color: hsl(from hsl(300, 100%, 75%) h s l / 0.2) !important;
}
.op-minor-magenta-low {
  background-color: hsl(from hsl(300, 100%, 75%) h s l / 0.8) !important;
}
.op-sat-magenta {
  background-color: hsl(from hsl(300, 100%, 35%) h s l / 0.5) !important;
}
.op-sat-magenta-hi {
  background-color: hsl(from hsl(300, 100%, 35%) h s l / 0.2) !important;
}
.op-sat-magenta-low {
  background-color: hsl(from hsl(300, 100%, 35%) h s l / 0.8) !important;
}
.op-dark-magenta {
  background-color: hsl(from hsl(300, 100%, 25%) h s l / 0.5) !important;
}
.op-dark-magenta-hi {
  background-color: hsl(from hsl(300, 100%, 25%) h s l / 0.2) !important;
}
.op-dark-magenta-low {
  background-color: hsl(from hsl(300, 100%, 25%) h s l / 0.8) !important;
}
.op-light-crimson {
  background-color: hsl(from hsl(348, 88%, 91%) h s l / 0.5) !important;
}
.op-light-crimson-hi {
  background-color: hsl(from hsl(348, 88%, 91%) h s l / 0.2) !important;
}
.op-light-crimson-low {
  background-color: hsl(from hsl(348, 88%, 91%) h s l / 0.8) !important;
}
.op-minor-crimson {
  background-color: hsl(from hsl(348, 88%, 66%) h s l / 0.5) !important;
}
.op-minor-crimson-hi {
  background-color: hsl(from hsl(348, 88%, 66%) h s l / 0.2) !important;
}
.op-minor-crimson-low {
  background-color: hsl(from hsl(348, 88%, 66%) h s l / 0.8) !important;
}
.op-sat-crimson {
  background-color: hsl(from hsl(348, 88%, 31%) h s l / 0.5) !important;
}
.op-sat-crimson-hi {
  background-color: hsl(from hsl(348, 88%, 31%) h s l / 0.2) !important;
}
.op-sat-crimson-low {
  background-color: hsl(from hsl(348, 88%, 31%) h s l / 0.8) !important;
}
.op-dark-crimson {
  background-color: hsl(from hsl(348, 88%, 21%) h s l / 0.5) !important;
}
.op-dark-crimson-hi {
  background-color: hsl(from hsl(348, 88%, 21%) h s l / 0.2) !important;
}
.op-dark-crimson-low {
  background-color: hsl(from hsl(348, 88%, 21%) h s l / 0.8) !important;
}
.op-light-red {
  background-color: hsl(from hsl(0, 100%, 85%) h s l / 0.5) !important;
}
.op-light-red-hi {
  background-color: hsl(from hsl(0, 100%, 85%) h s l / 0.2) !important;
}
.op-light-red-low {
  background-color: hsl(from hsl(0, 100%, 85%) h s l / 0.8) !important;
}
.op-minor-red {
  background-color: hsl(from hsl(0, 100%, 70%) h s l / 0.5) !important;
}
.op-minor-red-hi {
  background-color: hsl(from hsl(0, 100%, 70%) h s l / 0.2) !important;
}
.op-minor-red-low {
  background-color: hsl(from hsl(0, 100%, 70%) h s l / 0.8) !important;
}
.op-sat-red {
  background-color: hsl(from hsl(0, 100%, 35%) h s l / 0.5) !important;
}
.op-sat-red-hi {
  background-color: hsl(from hsl(0, 100%, 35%) h s l / 0.2) !important;
}
.op-sat-red-low {
  background-color: hsl(from hsl(0, 100%, 35%) h s l / 0.8) !important;
}
.op-dark-red {
  background-color: hsl(from hsl(0, 100%, 25%) h s l / 0.5) !important;
}
.op-dark-red-hi {
  background-color: hsl(from hsl(0, 100%, 25%) h s l / 0.2) !important;
}
.op-dark-red-low {
  background-color: hsl(from hsl(0, 100%, 25%) h s l / 0.8) !important;
}
.op-light-clown {
  background-color: hsl(from hsl(3, 100%, 95%) h s l / 0.5) !important;
}
.op-light-clown-hi {
  background-color: hsl(from hsl(3, 100%, 95%) h s l / 0.2) !important;
}
.op-light-clown-low {
  background-color: hsl(from hsl(3, 100%, 95%) h s l / 0.8) !important;
}
.op-minor-clown {
  background-color: hsl(from hsl(3, 100%, 85%) h s l / 0.5) !important;
}
.op-minor-clown-hi {
  background-color: hsl(from hsl(3, 100%, 85%) h s l / 0.2) !important;
}
.op-minor-clown-low {
  background-color: hsl(from hsl(3, 100%, 85%) h s l / 0.8) !important;
}
.op-sat-clown {
  background-color: hsl(from hsl(3, 100%, 55%) h s l / 0.5) !important;
}
.op-sat-clown-hi {
  background-color: hsl(from hsl(3, 100%, 55%) h s l / 0.2) !important;
}
.op-sat-clown-low {
  background-color: hsl(from hsl(3, 100%, 55%) h s l / 0.8) !important;
}
.op-dark-clown {
  background-color: hsl(from hsl(3, 100%, 45%) h s l / 0.5) !important;
}
.op-dark-clown-hi {
  background-color: hsl(from hsl(3, 100%, 45%) h s l / 0.2) !important;
}
.op-dark-clown-low {
  background-color: hsl(from hsl(3, 100%, 45%) h s l / 0.8) !important;
}
.op-light-orange {
  background-color: hsl(from hsl(39, 100%, 90%) h s l / 0.5) !important;
}
.op-light-orange-hi {
  background-color: hsl(from hsl(39, 100%, 90%) h s l / 0.2) !important;
}
.op-light-orange-low {
  background-color: hsl(from hsl(39, 100%, 90%) h s l / 0.8) !important;
}
.op-minor-orange {
  background-color: hsl(from hsl(39, 100%, 75%) h s l / 0.5) !important;
}
.op-minor-orange-hi {
  background-color: hsl(from hsl(39, 100%, 75%) h s l / 0.2) !important;
}
.op-minor-orange-low {
  background-color: hsl(from hsl(39, 100%, 75%) h s l / 0.8) !important;
}
.op-sat-orange {
  background-color: hsl(from hsl(39, 100%, 35%) h s l / 0.5) !important;
}
.op-sat-orange-hi {
  background-color: hsl(from hsl(39, 100%, 35%) h s l / 0.2) !important;
}
.op-sat-orange-low {
  background-color: hsl(from hsl(39, 100%, 35%) h s l / 0.8) !important;
}
.op-dark-orange {
  background-color: hsl(from hsl(39, 100%, 25%) h s l / 0.5) !important;
}
.op-dark-orange-hi {
  background-color: hsl(from hsl(39, 100%, 25%) h s l / 0.2) !important;
}
.op-dark-orange-low {
  background-color: hsl(from hsl(39, 100%, 25%) h s l / 0.8) !important;
}
.op-light-amber {
  background-color: hsl(from hsl(45, 100%, 78%) h s l / 0.5) !important;
}
.op-light-amber-hi {
  background-color: hsl(from hsl(45, 100%, 78%) h s l / 0.2) !important;
}
.op-light-amber-low {
  background-color: hsl(from hsl(45, 100%, 78%) h s l / 0.8) !important;
}
.op-minor-amber {
  background-color: hsl(from hsl(45, 100%, 68%) h s l / 0.5) !important;
}
.op-minor-amber-hi {
  background-color: hsl(from hsl(45, 100%, 68%) h s l / 0.2) !important;
}
.op-minor-amber-low {
  background-color: hsl(from hsl(45, 100%, 68%) h s l / 0.8) !important;
}
.op-sat-amber {
  background-color: hsl(from hsl(45, 100%, 43%) h s l / 0.5) !important;
}
.op-sat-amber-hi {
  background-color: hsl(from hsl(45, 100%, 43%) h s l / 0.2) !important;
}
.op-sat-amber-low {
  background-color: hsl(from hsl(45, 100%, 43%) h s l / 0.8) !important;
}
.op-dark-amber {
  background-color: hsl(from hsl(45, 100%, 33%) h s l / 0.5) !important;
}
.op-dark-amber-hi {
  background-color: hsl(from hsl(45, 100%, 33%) h s l / 0.2) !important;
}
.op-dark-amber-low {
  background-color: hsl(from hsl(45, 100%, 33%) h s l / 0.8) !important;
}
.op-light-yellow {
  background-color: hsl(from hsl(52, 100%, 93%) h s l / 0.5) !important;
}
.op-light-yellow-hi {
  background-color: hsl(from hsl(52, 100%, 93%) h s l / 0.2) !important;
}
.op-light-yellow-low {
  background-color: hsl(from hsl(52, 100%, 93%) h s l / 0.8) !important;
}
.op-minor-yellow {
  background-color: hsl(from hsl(52, 100%, 83%) h s l / 0.5) !important;
}
.op-minor-yellow-hi {
  background-color: hsl(from hsl(52, 100%, 83%) h s l / 0.2) !important;
}
.op-minor-yellow-low {
  background-color: hsl(from hsl(52, 100%, 83%) h s l / 0.8) !important;
}
.op-sat-yellow {
  background-color: hsl(from hsl(52, 100%, 53%) h s l / 0.5) !important;
}
.op-sat-yellow-hi {
  background-color: hsl(from hsl(52, 100%, 53%) h s l / 0.2) !important;
}
.op-sat-yellow-low {
  background-color: hsl(from hsl(52, 100%, 53%) h s l / 0.8) !important;
}
.op-dark-yellow {
  background-color: hsl(from hsl(52, 100%, 43%) h s l / 0.5) !important;
}
.op-dark-yellow-hi {
  background-color: hsl(from hsl(52, 100%, 43%) h s l / 0.2) !important;
}
.op-dark-yellow-low {
  background-color: hsl(from hsl(52, 100%, 43%) h s l / 0.8) !important;
}
.op-light-brown {
  background-color: hsl(from hsl(25, 57%, 81%) h s l / 0.5) !important;
}
.op-light-brown-hi {
  background-color: hsl(from hsl(25, 57%, 81%) h s l / 0.2) !important;
}
.op-light-brown-low {
  background-color: hsl(from hsl(25, 57%, 81%) h s l / 0.8) !important;
}
.op-minor-brown {
  background-color: hsl(from hsl(25, 57%, 66%) h s l / 0.5) !important;
}
.op-minor-brown-hi {
  background-color: hsl(from hsl(25, 57%, 66%) h s l / 0.2) !important;
}
.op-minor-brown-low {
  background-color: hsl(from hsl(25, 57%, 66%) h s l / 0.8) !important;
}
.op-sat-brown {
  background-color: hsl(from hsl(25, 57%, 36%) h s l / 0.5) !important;
}
.op-sat-brown-hi {
  background-color: hsl(from hsl(25, 57%, 36%) h s l / 0.2) !important;
}
.op-sat-brown-low {
  background-color: hsl(from hsl(25, 57%, 36%) h s l / 0.8) !important;
}
.op-dark-brown {
  background-color: hsl(from hsl(25, 57%, 26%) h s l / 0.5) !important;
}
.op-dark-brown-hi {
  background-color: hsl(from hsl(25, 57%, 26%) h s l / 0.2) !important;
}
.op-dark-brown-low {
  background-color: hsl(from hsl(25, 57%, 26%) h s l / 0.8) !important;
}
.op-light-olive {
  background-color: hsl(from hsl(60, 100%, 72%) h s l / 0.5) !important;
}
.op-light-olive-hi {
  background-color: hsl(from hsl(60, 100%, 72%) h s l / 0.2) !important;
}
.op-light-olive-low {
  background-color: hsl(from hsl(60, 100%, 72%) h s l / 0.8) !important;
}
.op-minor-olive {
  background-color: hsl(from hsl(60, 100%, 42%) h s l / 0.5) !important;
}
.op-minor-olive-hi {
  background-color: hsl(from hsl(60, 100%, 42%) h s l / 0.2) !important;
}
.op-minor-olive-low {
  background-color: hsl(from hsl(60, 100%, 42%) h s l / 0.8) !important;
}
.op-sat-olive {
  background-color: hsl(from hsl(60, 100%, 17%) h s l / 0.5) !important;
}
.op-sat-olive-hi {
  background-color: hsl(from hsl(60, 100%, 17%) h s l / 0.2) !important;
}
.op-sat-olive-low {
  background-color: hsl(from hsl(60, 100%, 17%) h s l / 0.8) !important;
}
.op-dark-olive {
  background-color: hsl(from hsl(60, 100%, 7%) h s l / 0.5) !important;
}
.op-dark-olive-hi {
  background-color: hsl(from hsl(60, 100%, 7%) h s l / 0.2) !important;
}
.op-dark-olive-low {
  background-color: hsl(from hsl(60, 100%, 7%) h s l / 0.8) !important;
}
.op-light-steel {
  background-color: hsl(from hsl(209, 19%, 87%) h s l / 0.5) !important;
}
.op-light-steel-hi {
  background-color: hsl(from hsl(209, 19%, 87%) h s l / 0.2) !important;
}
.op-light-steel-low {
  background-color: hsl(from hsl(209, 19%, 87%) h s l / 0.8) !important;
}
.op-minor-steel {
  background-color: hsl(from hsl(209, 19%, 77%) h s l / 0.5) !important;
}
.op-minor-steel-hi {
  background-color: hsl(from hsl(209, 19%, 77%) h s l / 0.2) !important;
}
.op-minor-steel-low {
  background-color: hsl(from hsl(209, 19%, 77%) h s l / 0.8) !important;
}
.op-sat-steel {
  background-color: hsl(from hsl(209, 19%, 42%) h s l / 0.5) !important;
}
.op-sat-steel-hi {
  background-color: hsl(from hsl(209, 19%, 42%) h s l / 0.2) !important;
}
.op-sat-steel-low {
  background-color: hsl(from hsl(209, 19%, 42%) h s l / 0.8) !important;
}
.op-dark-steel {
  background-color: hsl(from hsl(209, 19%, 32%) h s l / 0.5) !important;
}
.op-dark-steel-hi {
  background-color: hsl(from hsl(209, 19%, 32%) h s l / 0.2) !important;
}
.op-dark-steel-low {
  background-color: hsl(from hsl(209, 19%, 32%) h s l / 0.8) !important;
}
.op-light-mauve {
  background-color: hsl(from hsl(277, 100%, 96%) h s l / 0.5) !important;
}
.op-light-mauve-hi {
  background-color: hsl(from hsl(277, 100%, 96%) h s l / 0.2) !important;
}
.op-light-mauve-low {
  background-color: hsl(from hsl(277, 100%, 96%) h s l / 0.8) !important;
}
.op-minor-mauve {
  background-color: hsl(from hsl(277, 100%, 90%) h s l / 0.5) !important;
}
.op-minor-mauve-hi {
  background-color: hsl(from hsl(277, 100%, 90%) h s l / 0.2) !important;
}
.op-minor-mauve-low {
  background-color: hsl(from hsl(277, 100%, 90%) h s l / 0.8) !important;
}
.op-sat-mauve {
  background-color: hsl(from hsl(277, 100%, 69%) h s l / 0.5) !important;
}
.op-sat-mauve-hi {
  background-color: hsl(from hsl(277, 100%, 69%) h s l / 0.2) !important;
}
.op-sat-mauve-low {
  background-color: hsl(from hsl(277, 100%, 69%) h s l / 0.8) !important;
}
.op-dark-mauve {
  background-color: hsl(from hsl(277, 100%, 59%) h s l / 0.5) !important;
}
.op-dark-mauve-hi {
  background-color: hsl(from hsl(277, 100%, 59%) h s l / 0.2) !important;
}
.op-dark-mauve-low {
  background-color: hsl(from hsl(277, 100%, 59%) h s l / 0.8) !important;
}
.op-light-taupe {
  background-color: hsl(from hsl(29, 19%, 80%) h s l / 0.5) !important;
}
.op-light-taupe-hi {
  background-color: hsl(from hsl(29, 19%, 80%) h s l / 0.2) !important;
}
.op-light-taupe-low {
  background-color: hsl(from hsl(29, 19%, 80%) h s l / 0.8) !important;
}
.op-minor-taupe {
  background-color: hsl(from hsl(29, 19%, 67%) h s l / 0.5) !important;
}
.op-minor-taupe-hi {
  background-color: hsl(from hsl(29, 19%, 67%) h s l / 0.2) !important;
}
.op-minor-taupe-low {
  background-color: hsl(from hsl(29, 19%, 67%) h s l / 0.8) !important;
}
.op-sat-taupe {
  background-color: hsl(from hsl(29, 19%, 35%) h s l / 0.5) !important;
}
.op-sat-taupe-hi {
  background-color: hsl(from hsl(29, 19%, 35%) h s l / 0.2) !important;
}
.op-sat-taupe-low {
  background-color: hsl(from hsl(29, 19%, 35%) h s l / 0.8) !important;
}
.op-dark-taupe {
  background-color: hsl(from hsl(29, 19%, 25%) h s l / 0.5) !important;
}
.op-dark-taupe-hi {
  background-color: hsl(from hsl(29, 19%, 25%) h s l / 0.2) !important;
}
.op-dark-taupe-low {
  background-color: hsl(from hsl(29, 19%, 25%) h s l / 0.8) !important;
}
.op-light-champagne {
  background-color: hsl(from hsl(37, 74%, 98%) h s l / 0.5) !important;
}
.op-light-champagne-hi {
  background-color: hsl(from hsl(37, 74%, 98%) h s l / 0.2) !important;
}
.op-light-champagne-low {
  background-color: hsl(from hsl(37, 74%, 98%) h s l / 0.8) !important;
}
.op-minor-champagne {
  background-color: hsl(from hsl(37, 74%, 93%) h s l / 0.5) !important;
}
.op-minor-champagne-hi {
  background-color: hsl(from hsl(37, 74%, 93%) h s l / 0.2) !important;
}
.op-minor-champagne-low {
  background-color: hsl(from hsl(37, 74%, 93%) h s l / 0.8) !important;
}
.op-sat-champagne {
  background-color: hsl(from hsl(37, 74%, 73%) h s l / 0.5) !important;
}
.op-sat-champagne-hi {
  background-color: hsl(from hsl(37, 74%, 73%) h s l / 0.2) !important;
}
.op-sat-champagne-low {
  background-color: hsl(from hsl(37, 74%, 73%) h s l / 0.8) !important;
}
.op-dark-champagne {
  background-color: hsl(from hsl(37, 74%, 63%) h s l / 0.5) !important;
}
.op-dark-champagne-hi {
  background-color: hsl(from hsl(37, 74%, 63%) h s l / 0.2) !important;
}
.op-dark-champagne-low {
  background-color: hsl(from hsl(37, 74%, 63%) h s l / 0.8) !important;
}
.op-light-khaki {
  background-color: hsl(from hsl(47, 47%, 94%) h s l / 0.5) !important;
}
.op-light-khaki-hi {
  background-color: hsl(from hsl(47, 47%, 94%) h s l / 0.2) !important;
}
.op-light-khaki-low {
  background-color: hsl(from hsl(47, 47%, 94%) h s l / 0.8) !important;
}
.op-minor-khaki {
  background-color: hsl(from hsl(47, 47%, 84%) h s l / 0.5) !important;
}
.op-minor-khaki-hi {
  background-color: hsl(from hsl(47, 47%, 84%) h s l / 0.2) !important;
}
.op-minor-khaki-low {
  background-color: hsl(from hsl(47, 47%, 84%) h s l / 0.8) !important;
}
.op-sat-khaki {
  background-color: hsl(from hsl(47, 47%, 54%) h s l / 0.5) !important;
}
.op-sat-khaki-hi {
  background-color: hsl(from hsl(47, 47%, 54%) h s l / 0.2) !important;
}
.op-sat-khaki-low {
  background-color: hsl(from hsl(47, 47%, 54%) h s l / 0.8) !important;
}
.op-dark-khaki {
  background-color: hsl(from hsl(47, 47%, 44%) h s l / 0.5) !important;
}
.op-dark-khaki-hi {
  background-color: hsl(from hsl(47, 47%, 44%) h s l / 0.2) !important;
}
.op-dark-khaki-low {
  background-color: hsl(from hsl(47, 47%, 44%) h s l / 0.8) !important;
}
.op-light-charcoal {
  background-color: hsl(from hsl(0, 0%, 90%) h s l / 0.5) !important;
}
.op-light-charcoal-hi {
  background-color: hsl(from hsl(0, 0%, 90%) h s l / 0.2) !important;
}
.op-light-charcoal-low {
  background-color: hsl(from hsl(0, 0%, 90%) h s l / 0.8) !important;
}
.op-minor-charcoal {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.5) !important;
}
.op-minor-charcoal-hi {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.2) !important;
}
.op-minor-charcoal-low {
  background-color: hsl(from hsl(0, 0%, 80%) h s l / 0.8) !important;
}
.op-sat-charcoal {
  background-color: hsl(from hsl(0, 0%, 45%) h s l / 0.5) !important;
}
.op-sat-charcoal-hi {
  background-color: hsl(from hsl(0, 0%, 45%) h s l / 0.2) !important;
}
.op-sat-charcoal-low {
  background-color: hsl(from hsl(0, 0%, 45%) h s l / 0.8) !important;
}
.op-dark-charcoal {
  background-color: hsl(from hsl(0, 0%, 35%) h s l / 0.5) !important;
}
.op-dark-charcoal-hi {
  background-color: hsl(from hsl(0, 0%, 35%) h s l / 0.2) !important;
}
.op-dark-charcoal-low {
  background-color: hsl(from hsl(0, 0%, 35%) h s l / 0.8) !important;
}
.op-light-bronze {
  background-color: hsl(from hsl(29, 75%, 87%) h s l / 0.5) !important;
}
.op-light-bronze-hi {
  background-color: hsl(from hsl(29, 75%, 87%) h s l / 0.2) !important;
}
.op-light-bronze-low {
  background-color: hsl(from hsl(29, 75%, 87%) h s l / 0.8) !important;
}
.op-minor-bronze {
  background-color: hsl(from hsl(29, 75%, 72%) h s l / 0.5) !important;
}
.op-minor-bronze-hi {
  background-color: hsl(from hsl(29, 75%, 72%) h s l / 0.2) !important;
}
.op-minor-bronze-low {
  background-color: hsl(from hsl(29, 75%, 72%) h s l / 0.8) !important;
}
.op-sat-bronze {
  background-color: hsl(from hsl(29, 75%, 42%) h s l / 0.5) !important;
}
.op-sat-bronze-hi {
  background-color: hsl(from hsl(29, 75%, 42%) h s l / 0.2) !important;
}
.op-sat-bronze-low {
  background-color: hsl(from hsl(29, 75%, 42%) h s l / 0.8) !important;
}
.op-dark-bronze {
  background-color: hsl(from hsl(29, 75%, 32%) h s l / 0.5) !important;
}
.op-dark-bronze-hi {
  background-color: hsl(from hsl(29, 75%, 32%) h s l / 0.2) !important;
}
.op-dark-bronze-low {
  background-color: hsl(from hsl(29, 75%, 32%) h s l / 0.8) !important;
}
.op-light-windstorm {
  background-color: hsl(from hsl(216, 53%, 93%) h s l / 0.5) !important;
}
.op-light-windstorm-hi {
  background-color: hsl(from hsl(216, 53%, 93%) h s l / 0.2) !important;
}
.op-light-windstorm-low {
  background-color: hsl(from hsl(216, 53%, 93%) h s l / 0.8) !important;
}
.op-minor-windstorm {
  background-color: hsl(from hsl(216, 53%, 81%) h s l / 0.5) !important;
}
.op-minor-windstorm-hi {
  background-color: hsl(from hsl(216, 53%, 81%) h s l / 0.2) !important;
}
.op-minor-windstorm-low {
  background-color: hsl(from hsl(216, 53%, 81%) h s l / 0.8) !important;
}
.op-sat-windstorm {
  background-color: hsl(from hsl(216, 53%, 51%) h s l / 0.5) !important;
}
.op-sat-windstorm-hi {
  background-color: hsl(from hsl(216, 53%, 51%) h s l / 0.2) !important;
}
.op-sat-windstorm-low {
  background-color: hsl(from hsl(216, 53%, 51%) h s l / 0.8) !important;
}
.op-dark-windstorm {
  background-color: hsl(from hsl(216, 53%, 41%) h s l / 0.5) !important;
}
.op-dark-windstorm-hi {
  background-color: hsl(from hsl(216, 53%, 41%) h s l / 0.2) !important;
}
.op-dark-windstorm-low {
  background-color: hsl(from hsl(216, 53%, 41%) h s l / 0.8) !important;
}
.op-light-nude {
  background-color: hsl(from hsl(29, 79%, 97%) h s l / 0.5) !important;
}
.op-light-nude-hi {
  background-color: hsl(from hsl(29, 79%, 97%) h s l / 0.2) !important;
}
.op-light-nude-low {
  background-color: hsl(from hsl(29, 79%, 97%) h s l / 0.8) !important;
}
.op-minor-nude {
  background-color: hsl(from hsl(29, 79%, 92%) h s l / 0.5) !important;
}
.op-minor-nude-hi {
  background-color: hsl(from hsl(29, 79%, 92%) h s l / 0.2) !important;
}
.op-minor-nude-low {
  background-color: hsl(from hsl(29, 79%, 92%) h s l / 0.8) !important;
}
.op-sat-nude {
  background-color: hsl(from hsl(29, 79%, 70%) h s l / 0.5) !important;
}
.op-sat-nude-hi {
  background-color: hsl(from hsl(29, 79%, 70%) h s l / 0.2) !important;
}
.op-sat-nude-low {
  background-color: hsl(from hsl(29, 79%, 70%) h s l / 0.8) !important;
}
.op-dark-nude {
  background-color: hsl(from hsl(29, 79%, 60%) h s l / 0.5) !important;
}
.op-dark-nude-hi {
  background-color: hsl(from hsl(29, 79%, 60%) h s l / 0.2) !important;
}
.op-dark-nude-low {
  background-color: hsl(from hsl(29, 79%, 60%) h s l / 0.8) !important;
}
.op-light-terracotta {
  background-color: hsl(from hsl(10, 76%, 85%) h s l / 0.5) !important;
}
.op-light-terracotta-hi {
  background-color: hsl(from hsl(10, 76%, 85%) h s l / 0.2) !important;
}
.op-light-terracotta-low {
  background-color: hsl(from hsl(10, 76%, 85%) h s l / 0.8) !important;
}
.op-minor-terracotta {
  background-color: hsl(from hsl(10, 76%, 70%) h s l / 0.5) !important;
}
.op-minor-terracotta-hi {
  background-color: hsl(from hsl(10, 76%, 70%) h s l / 0.2) !important;
}
.op-minor-terracotta-low {
  background-color: hsl(from hsl(10, 76%, 70%) h s l / 0.8) !important;
}
.op-sat-terracotta {
  background-color: hsl(from hsl(10, 76%, 40%) h s l / 0.5) !important;
}
.op-sat-terracotta-hi {
  background-color: hsl(from hsl(10, 76%, 40%) h s l / 0.2) !important;
}
.op-sat-terracotta-low {
  background-color: hsl(from hsl(10, 76%, 40%) h s l / 0.8) !important;
}
.op-dark-terracotta {
  background-color: hsl(from hsl(10, 76%, 30%) h s l / 0.5) !important;
}
.op-dark-terracotta-hi {
  background-color: hsl(from hsl(10, 76%, 30%) h s l / 0.2) !important;
}
.op-dark-terracotta-low {
  background-color: hsl(from hsl(10, 76%, 30%) h s l / 0.8) !important;
}
.op-light-coral {
  background-color: hsl(from hsl(16, 100%, 92%) h s l / 0.5) !important;
}
.op-light-coral-hi {
  background-color: hsl(from hsl(16, 100%, 92%) h s l / 0.2) !important;
}
.op-light-coral-low {
  background-color: hsl(from hsl(16, 100%, 92%) h s l / 0.8) !important;
}
.op-minor-coral {
  background-color: hsl(from hsl(16, 100%, 82%) h s l / 0.5) !important;
}
.op-minor-coral-hi {
  background-color: hsl(from hsl(16, 100%, 82%) h s l / 0.2) !important;
}
.op-minor-coral-low {
  background-color: hsl(from hsl(16, 100%, 82%) h s l / 0.8) !important;
}
.op-sat-coral {
  background-color: hsl(from hsl(16, 100%, 52%) h s l / 0.5) !important;
}
.op-sat-coral-hi {
  background-color: hsl(from hsl(16, 100%, 52%) h s l / 0.2) !important;
}
.op-sat-coral-low {
  background-color: hsl(from hsl(16, 100%, 52%) h s l / 0.8) !important;
}
.op-dark-coral {
  background-color: hsl(from hsl(16, 100%, 42%) h s l / 0.5) !important;
}
.op-dark-coral-hi {
  background-color: hsl(from hsl(16, 100%, 42%) h s l / 0.2) !important;
}
.op-dark-coral-low {
  background-color: hsl(from hsl(16, 100%, 42%) h s l / 0.8) !important;
}
.op-light-army {
  background-color: hsl(from hsl(69, 34%, 75%) h s l / 0.5) !important;
}
.op-light-army-hi {
  background-color: hsl(from hsl(69, 34%, 75%) h s l / 0.2) !important;
}
.op-light-army-low {
  background-color: hsl(from hsl(69, 34%, 75%) h s l / 0.8) !important;
}
.op-minor-army {
  background-color: hsl(from hsl(69, 34%, 47%) h s l / 0.5) !important;
}
.op-minor-army-hi {
  background-color: hsl(from hsl(69, 34%, 47%) h s l / 0.2) !important;
}
.op-minor-army-low {
  background-color: hsl(from hsl(69, 34%, 47%) h s l / 0.8) !important;
}
.op-sat-army {
  background-color: hsl(from hsl(69, 34%, 15%) h s l / 0.5) !important;
}
.op-sat-army-hi {
  background-color: hsl(from hsl(69, 34%, 15%) h s l / 0.2) !important;
}
.op-sat-army-low {
  background-color: hsl(from hsl(69, 34%, 15%) h s l / 0.8) !important;
}
.op-dark-army {
  background-color: hsl(from hsl(69, 34%, 5%) h s l / 0.5) !important;
}
.op-dark-army-hi {
  background-color: hsl(from hsl(69, 34%, 5%) h s l / 0.2) !important;
}
.op-dark-army-low {
  background-color: hsl(from hsl(69, 34%, 5%) h s l / 0.8) !important;
}
.op-light-seashell {
  background-color: hsl(from hsl(25, 100%, 98%) h s l / 0.5) !important;
}
.op-light-seashell-hi {
  background-color: hsl(from hsl(25, 100%, 98%) h s l / 0.2) !important;
}
.op-light-seashell-low {
  background-color: hsl(from hsl(25, 100%, 98%) h s l / 0.8) !important;
}
.op-minor-seashell {
  background-color: hsl(from hsl(25, 100%, 97%) h s l / 0.5) !important;
}
.op-minor-seashell-hi {
  background-color: hsl(from hsl(25, 100%, 97%) h s l / 0.2) !important;
}
.op-minor-seashell-low {
  background-color: hsl(from hsl(25, 100%, 97%) h s l / 0.8) !important;
}
.op-sat-seashell {
  background-color: hsl(from hsl(25, 100%, 80%) h s l / 0.5) !important;
}
.op-sat-seashell-hi {
  background-color: hsl(from hsl(25, 100%, 80%) h s l / 0.2) !important;
}
.op-sat-seashell-low {
  background-color: hsl(from hsl(25, 100%, 80%) h s l / 0.8) !important;
}
.op-dark-seashell {
  background-color: hsl(from hsl(25, 100%, 70%) h s l / 0.5) !important;
}
.op-dark-seashell-hi {
  background-color: hsl(from hsl(25, 100%, 70%) h s l / 0.2) !important;
}
.op-dark-seashell-low {
  background-color: hsl(from hsl(25, 100%, 70%) h s l / 0.8) !important;
}
.op-light-sand {
  background-color: hsl(from hsl(45, 71%, 96%) h s l / 0.5) !important;
}
.op-light-sand-hi {
  background-color: hsl(from hsl(45, 71%, 96%) h s l / 0.2) !important;
}
.op-light-sand-low {
  background-color: hsl(from hsl(45, 71%, 96%) h s l / 0.8) !important;
}
.op-minor-sand {
  background-color: hsl(from hsl(45, 71%, 88%) h s l / 0.5) !important;
}
.op-minor-sand-hi {
  background-color: hsl(from hsl(45, 71%, 88%) h s l / 0.2) !important;
}
.op-minor-sand-low {
  background-color: hsl(from hsl(45, 71%, 88%) h s l / 0.8) !important;
}
.op-sat-sand {
  background-color: hsl(from hsl(45, 71%, 66%) h s l / 0.5) !important;
}
.op-sat-sand-hi {
  background-color: hsl(from hsl(45, 71%, 66%) h s l / 0.2) !important;
}
.op-sat-sand-low {
  background-color: hsl(from hsl(45, 71%, 66%) h s l / 0.8) !important;
}
.op-dark-sand {
  background-color: hsl(from hsl(45, 71%, 56%) h s l / 0.5) !important;
}
.op-dark-sand-hi {
  background-color: hsl(from hsl(45, 71%, 56%) h s l / 0.2) !important;
}
.op-dark-sand-low {
  background-color: hsl(from hsl(45, 71%, 56%) h s l / 0.8) !important;
}

/* ../metroui-lib/source/colors-css/outline.less */
.ol-gray {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-gray-active:active {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-gray-hover:hover {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-gray-focus:focus {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-light-gray {
  outline-color: hsl(0, 0%, 95%) !important;
}
.ol-light-gray-active:active {
  outline-color: hsl(0, 0%, 95%) !important;
}
.ol-light-gray-hover:hover {
  outline-color: hsl(0, 0%, 95%) !important;
}
.ol-light-gray-focus:focus {
  outline-color: hsl(0, 0%, 95%) !important;
}
.ol-minor-gray {
  outline-color: hsl(0, 0%, 87%) !important;
}
.ol-minor-gray-active:active {
  outline-color: hsl(0, 0%, 87%) !important;
}
.ol-minor-gray-hover:hover {
  outline-color: hsl(0, 0%, 87%) !important;
}
.ol-minor-gray-focus:focus {
  outline-color: hsl(0, 0%, 87%) !important;
}
.ol-sat-gray {
  outline-color: hsl(0, 0%, 65%) !important;
}
.ol-sat-gray-active:active {
  outline-color: hsl(0, 0%, 65%) !important;
}
.ol-sat-gray-hover:hover {
  outline-color: hsl(0, 0%, 65%) !important;
}
.ol-sat-gray-focus:focus {
  outline-color: hsl(0, 0%, 65%) !important;
}
.ol-dark-gray {
  outline-color: hsl(0, 0%, 55%) !important;
}
.ol-dark-gray-active:active {
  outline-color: hsl(0, 0%, 55%) !important;
}
.ol-dark-gray-hover:hover {
  outline-color: hsl(0, 0%, 55%) !important;
}
.ol-dark-gray-focus:focus {
  outline-color: hsl(0, 0%, 55%) !important;
}
.ol-gray-blue {
  outline-color: hsl(210, 26%, 54%) !important;
}
.ol-gray-blue-active:active {
  outline-color: hsl(210, 26%, 54%) !important;
}
.ol-gray-blue-hover:hover {
  outline-color: hsl(210, 26%, 54%) !important;
}
.ol-gray-blue-focus:focus {
  outline-color: hsl(210, 26%, 54%) !important;
}
.ol-light-gray-blue {
  outline-color: hsl(210, 26%, 84%) !important;
}
.ol-light-gray-blue-active:active {
  outline-color: hsl(210, 26%, 84%) !important;
}
.ol-light-gray-blue-hover:hover {
  outline-color: hsl(210, 26%, 84%) !important;
}
.ol-light-gray-blue-focus:focus {
  outline-color: hsl(210, 26%, 84%) !important;
}
.ol-minor-gray-blue {
  outline-color: hsl(210, 26%, 69%) !important;
}
.ol-minor-gray-blue-active:active {
  outline-color: hsl(210, 26%, 69%) !important;
}
.ol-minor-gray-blue-hover:hover {
  outline-color: hsl(210, 26%, 69%) !important;
}
.ol-minor-gray-blue-focus:focus {
  outline-color: hsl(210, 26%, 69%) !important;
}
.ol-sat-gray-blue {
  outline-color: hsl(210, 26%, 39%) !important;
}
.ol-sat-gray-blue-active:active {
  outline-color: hsl(210, 26%, 39%) !important;
}
.ol-sat-gray-blue-hover:hover {
  outline-color: hsl(210, 26%, 39%) !important;
}
.ol-sat-gray-blue-focus:focus {
  outline-color: hsl(210, 26%, 39%) !important;
}
.ol-dark-gray-blue {
  outline-color: hsl(210, 26%, 29%) !important;
}
.ol-dark-gray-blue-active:active {
  outline-color: hsl(210, 26%, 29%) !important;
}
.ol-dark-gray-blue-hover:hover {
  outline-color: hsl(210, 26%, 29%) !important;
}
.ol-dark-gray-blue-focus:focus {
  outline-color: hsl(210, 26%, 29%) !important;
}
.ol-gray-mouse {
  outline-color: hsl(199, 15%, 40%) !important;
}
.ol-gray-mouse-active:active {
  outline-color: hsl(199, 15%, 40%) !important;
}
.ol-gray-mouse-hover:hover {
  outline-color: hsl(199, 15%, 40%) !important;
}
.ol-gray-mouse-focus:focus {
  outline-color: hsl(199, 15%, 40%) !important;
}
.ol-light-gray-mouse {
  outline-color: hsl(199, 15%, 70%) !important;
}
.ol-light-gray-mouse-active:active {
  outline-color: hsl(199, 15%, 70%) !important;
}
.ol-light-gray-mouse-hover:hover {
  outline-color: hsl(199, 15%, 70%) !important;
}
.ol-light-gray-mouse-focus:focus {
  outline-color: hsl(199, 15%, 70%) !important;
}
.ol-minor-gray-mouse {
  outline-color: hsl(199, 15%, 55%) !important;
}
.ol-minor-gray-mouse-active:active {
  outline-color: hsl(199, 15%, 55%) !important;
}
.ol-minor-gray-mouse-hover:hover {
  outline-color: hsl(199, 15%, 55%) !important;
}
.ol-minor-gray-mouse-focus:focus {
  outline-color: hsl(199, 15%, 55%) !important;
}
.ol-sat-gray-mouse {
  outline-color: hsl(199, 15%, 25%) !important;
}
.ol-sat-gray-mouse-active:active {
  outline-color: hsl(199, 15%, 25%) !important;
}
.ol-sat-gray-mouse-hover:hover {
  outline-color: hsl(199, 15%, 25%) !important;
}
.ol-sat-gray-mouse-focus:focus {
  outline-color: hsl(199, 15%, 25%) !important;
}
.ol-dark-gray-mouse {
  outline-color: hsl(199, 15%, 15%) !important;
}
.ol-dark-gray-mouse-active:active {
  outline-color: hsl(199, 15%, 15%) !important;
}
.ol-dark-gray-mouse-hover:hover {
  outline-color: hsl(199, 15%, 15%) !important;
}
.ol-dark-gray-mouse-focus:focus {
  outline-color: hsl(199, 15%, 15%) !important;
}
.ol-lime {
  outline-color: hsl(93, 97%, 71%) !important;
}
.ol-lime-active:active {
  outline-color: hsl(93, 97%, 71%) !important;
}
.ol-lime-hover:hover {
  outline-color: hsl(93, 97%, 71%) !important;
}
.ol-lime-focus:focus {
  outline-color: hsl(93, 97%, 71%) !important;
}
.ol-light-lime {
  outline-color: hsl(93, 97%, 91%) !important;
}
.ol-light-lime-active:active {
  outline-color: hsl(93, 97%, 91%) !important;
}
.ol-light-lime-hover:hover {
  outline-color: hsl(93, 97%, 91%) !important;
}
.ol-light-lime-focus:focus {
  outline-color: hsl(93, 97%, 91%) !important;
}
.ol-minor-lime {
  outline-color: hsl(93, 97%, 81%) !important;
}
.ol-minor-lime-active:active {
  outline-color: hsl(93, 97%, 81%) !important;
}
.ol-minor-lime-hover:hover {
  outline-color: hsl(93, 97%, 81%) !important;
}
.ol-minor-lime-focus:focus {
  outline-color: hsl(93, 97%, 81%) !important;
}
.ol-sat-lime {
  outline-color: hsl(93, 97%, 56%) !important;
}
.ol-sat-lime-active:active {
  outline-color: hsl(93, 97%, 56%) !important;
}
.ol-sat-lime-hover:hover {
  outline-color: hsl(93, 97%, 56%) !important;
}
.ol-sat-lime-focus:focus {
  outline-color: hsl(93, 97%, 56%) !important;
}
.ol-dark-lime {
  outline-color: hsl(93, 97%, 46%) !important;
}
.ol-dark-lime-active:active {
  outline-color: hsl(93, 97%, 46%) !important;
}
.ol-dark-lime-hover:hover {
  outline-color: hsl(93, 97%, 46%) !important;
}
.ol-dark-lime-focus:focus {
  outline-color: hsl(93, 97%, 46%) !important;
}
.ol-green {
  outline-color: hsl(120, 100%, 35%) !important;
}
.ol-green-active:active {
  outline-color: hsl(120, 100%, 35%) !important;
}
.ol-green-hover:hover {
  outline-color: hsl(120, 100%, 35%) !important;
}
.ol-green-focus:focus {
  outline-color: hsl(120, 100%, 35%) !important;
}
.ol-light-green {
  outline-color: hsl(120, 100%, 80%) !important;
}
.ol-light-green-active:active {
  outline-color: hsl(120, 100%, 80%) !important;
}
.ol-light-green-hover:hover {
  outline-color: hsl(120, 100%, 80%) !important;
}
.ol-light-green-focus:focus {
  outline-color: hsl(120, 100%, 80%) !important;
}
.ol-minor-green {
  outline-color: hsl(120, 100%, 45%) !important;
}
.ol-minor-green-active:active {
  outline-color: hsl(120, 100%, 45%) !important;
}
.ol-minor-green-hover:hover {
  outline-color: hsl(120, 100%, 45%) !important;
}
.ol-minor-green-focus:focus {
  outline-color: hsl(120, 100%, 45%) !important;
}
.ol-sat-green {
  outline-color: hsl(120, 100%, 20%) !important;
}
.ol-sat-green-active:active {
  outline-color: hsl(120, 100%, 20%) !important;
}
.ol-sat-green-hover:hover {
  outline-color: hsl(120, 100%, 20%) !important;
}
.ol-sat-green-focus:focus {
  outline-color: hsl(120, 100%, 20%) !important;
}
.ol-dark-green {
  outline-color: hsl(120, 100%, 10%) !important;
}
.ol-dark-green-active:active {
  outline-color: hsl(120, 100%, 10%) !important;
}
.ol-dark-green-hover:hover {
  outline-color: hsl(120, 100%, 10%) !important;
}
.ol-dark-green-focus:focus {
  outline-color: hsl(120, 100%, 10%) !important;
}
.ol-emerald {
  outline-color: hsl(140, 52%, 55%) !important;
}
.ol-emerald-active:active {
  outline-color: hsl(140, 52%, 55%) !important;
}
.ol-emerald-hover:hover {
  outline-color: hsl(140, 52%, 55%) !important;
}
.ol-emerald-focus:focus {
  outline-color: hsl(140, 52%, 55%) !important;
}
.ol-light-emerald {
  outline-color: hsl(140, 52%, 85%) !important;
}
.ol-light-emerald-active:active {
  outline-color: hsl(140, 52%, 85%) !important;
}
.ol-light-emerald-hover:hover {
  outline-color: hsl(140, 52%, 85%) !important;
}
.ol-light-emerald-focus:focus {
  outline-color: hsl(140, 52%, 85%) !important;
}
.ol-minor-emerald {
  outline-color: hsl(140, 52%, 65%) !important;
}
.ol-minor-emerald-active:active {
  outline-color: hsl(140, 52%, 65%) !important;
}
.ol-minor-emerald-hover:hover {
  outline-color: hsl(140, 52%, 65%) !important;
}
.ol-minor-emerald-focus:focus {
  outline-color: hsl(140, 52%, 65%) !important;
}
.ol-sat-emerald {
  outline-color: hsl(140, 52%, 40%) !important;
}
.ol-sat-emerald-active:active {
  outline-color: hsl(140, 52%, 40%) !important;
}
.ol-sat-emerald-hover:hover {
  outline-color: hsl(140, 52%, 40%) !important;
}
.ol-sat-emerald-focus:focus {
  outline-color: hsl(140, 52%, 40%) !important;
}
.ol-dark-emerald {
  outline-color: hsl(140, 52%, 30%) !important;
}
.ol-dark-emerald-active:active {
  outline-color: hsl(140, 52%, 30%) !important;
}
.ol-dark-emerald-hover:hover {
  outline-color: hsl(140, 52%, 30%) !important;
}
.ol-dark-emerald-focus:focus {
  outline-color: hsl(140, 52%, 30%) !important;
}
.ol-blue {
  outline-color: hsl(225, 100%, 68%) !important;
}
.ol-blue-active:active {
  outline-color: hsl(225, 100%, 68%) !important;
}
.ol-blue-hover:hover {
  outline-color: hsl(225, 100%, 68%) !important;
}
.ol-blue-focus:focus {
  outline-color: hsl(225, 100%, 68%) !important;
}
.ol-light-blue {
  outline-color: hsl(225, 100%, 93%) !important;
}
.ol-light-blue-active:active {
  outline-color: hsl(225, 100%, 93%) !important;
}
.ol-light-blue-hover:hover {
  outline-color: hsl(225, 100%, 93%) !important;
}
.ol-light-blue-focus:focus {
  outline-color: hsl(225, 100%, 93%) !important;
}
.ol-minor-blue {
  outline-color: hsl(225, 100%, 78%) !important;
}
.ol-minor-blue-active:active {
  outline-color: hsl(225, 100%, 78%) !important;
}
.ol-minor-blue-hover:hover {
  outline-color: hsl(225, 100%, 78%) !important;
}
.ol-minor-blue-focus:focus {
  outline-color: hsl(225, 100%, 78%) !important;
}
.ol-sat-blue {
  outline-color: hsl(225, 100%, 53%) !important;
}
.ol-sat-blue-active:active {
  outline-color: hsl(225, 100%, 53%) !important;
}
.ol-sat-blue-hover:hover {
  outline-color: hsl(225, 100%, 53%) !important;
}
.ol-sat-blue-focus:focus {
  outline-color: hsl(225, 100%, 53%) !important;
}
.ol-dark-blue {
  outline-color: hsl(225, 100%, 43%) !important;
}
.ol-dark-blue-active:active {
  outline-color: hsl(225, 100%, 43%) !important;
}
.ol-dark-blue-hover:hover {
  outline-color: hsl(225, 100%, 43%) !important;
}
.ol-dark-blue-focus:focus {
  outline-color: hsl(225, 100%, 43%) !important;
}
.ol-teal {
  outline-color: hsl(180, 77%, 44%) !important;
}
.ol-teal-active:active {
  outline-color: hsl(180, 77%, 44%) !important;
}
.ol-teal-hover:hover {
  outline-color: hsl(180, 77%, 44%) !important;
}
.ol-teal-focus:focus {
  outline-color: hsl(180, 77%, 44%) !important;
}
.ol-light-teal {
  outline-color: hsl(180, 77%, 79%) !important;
}
.ol-light-teal-active:active {
  outline-color: hsl(180, 77%, 79%) !important;
}
.ol-light-teal-hover:hover {
  outline-color: hsl(180, 77%, 79%) !important;
}
.ol-light-teal-focus:focus {
  outline-color: hsl(180, 77%, 79%) !important;
}
.ol-minor-teal {
  outline-color: hsl(180, 77%, 54%) !important;
}
.ol-minor-teal-active:active {
  outline-color: hsl(180, 77%, 54%) !important;
}
.ol-minor-teal-hover:hover {
  outline-color: hsl(180, 77%, 54%) !important;
}
.ol-minor-teal-focus:focus {
  outline-color: hsl(180, 77%, 54%) !important;
}
.ol-sat-teal {
  outline-color: hsl(180, 77%, 29%) !important;
}
.ol-sat-teal-active:active {
  outline-color: hsl(180, 77%, 29%) !important;
}
.ol-sat-teal-hover:hover {
  outline-color: hsl(180, 77%, 29%) !important;
}
.ol-sat-teal-focus:focus {
  outline-color: hsl(180, 77%, 29%) !important;
}
.ol-dark-teal {
  outline-color: hsl(180, 77%, 19%) !important;
}
.ol-dark-teal-active:active {
  outline-color: hsl(180, 77%, 19%) !important;
}
.ol-dark-teal-hover:hover {
  outline-color: hsl(180, 77%, 19%) !important;
}
.ol-dark-teal-focus:focus {
  outline-color: hsl(180, 77%, 19%) !important;
}
.ol-cyan {
  outline-color: hsl(221, 100%, 79%) !important;
}
.ol-cyan-active:active {
  outline-color: hsl(221, 100%, 79%) !important;
}
.ol-cyan-hover:hover {
  outline-color: hsl(221, 100%, 79%) !important;
}
.ol-cyan-focus:focus {
  outline-color: hsl(221, 100%, 79%) !important;
}
.ol-light-cyan {
  outline-color: hsl(221, 100%, 94%) !important;
}
.ol-light-cyan-active:active {
  outline-color: hsl(221, 100%, 94%) !important;
}
.ol-light-cyan-hover:hover {
  outline-color: hsl(221, 100%, 94%) !important;
}
.ol-light-cyan-focus:focus {
  outline-color: hsl(221, 100%, 94%) !important;
}
.ol-minor-cyan {
  outline-color: hsl(221, 100%, 89%) !important;
}
.ol-minor-cyan-active:active {
  outline-color: hsl(221, 100%, 89%) !important;
}
.ol-minor-cyan-hover:hover {
  outline-color: hsl(221, 100%, 89%) !important;
}
.ol-minor-cyan-focus:focus {
  outline-color: hsl(221, 100%, 89%) !important;
}
.ol-sat-cyan {
  outline-color: hsl(221, 100%, 64%) !important;
}
.ol-sat-cyan-active:active {
  outline-color: hsl(221, 100%, 64%) !important;
}
.ol-sat-cyan-hover:hover {
  outline-color: hsl(221, 100%, 64%) !important;
}
.ol-sat-cyan-focus:focus {
  outline-color: hsl(221, 100%, 64%) !important;
}
.ol-dark-cyan {
  outline-color: hsl(221, 100%, 54%) !important;
}
.ol-dark-cyan-active:active {
  outline-color: hsl(221, 100%, 54%) !important;
}
.ol-dark-cyan-hover:hover {
  outline-color: hsl(221, 100%, 54%) !important;
}
.ol-dark-cyan-focus:focus {
  outline-color: hsl(221, 100%, 54%) !important;
}
.ol-cobalt {
  outline-color: hsl(215, 100%, 34%) !important;
}
.ol-cobalt-active:active {
  outline-color: hsl(215, 100%, 34%) !important;
}
.ol-cobalt-hover:hover {
  outline-color: hsl(215, 100%, 34%) !important;
}
.ol-cobalt-focus:focus {
  outline-color: hsl(215, 100%, 34%) !important;
}
.ol-light-cobalt {
  outline-color: hsl(215, 100%, 79%) !important;
}
.ol-light-cobalt-active:active {
  outline-color: hsl(215, 100%, 79%) !important;
}
.ol-light-cobalt-hover:hover {
  outline-color: hsl(215, 100%, 79%) !important;
}
.ol-light-cobalt-focus:focus {
  outline-color: hsl(215, 100%, 79%) !important;
}
.ol-minor-cobalt {
  outline-color: hsl(215, 100%, 49%) !important;
}
.ol-minor-cobalt-active:active {
  outline-color: hsl(215, 100%, 49%) !important;
}
.ol-minor-cobalt-hover:hover {
  outline-color: hsl(215, 100%, 49%) !important;
}
.ol-minor-cobalt-focus:focus {
  outline-color: hsl(215, 100%, 49%) !important;
}
.ol-sat-cobalt {
  outline-color: hsl(215, 100%, 19%) !important;
}
.ol-sat-cobalt-active:active {
  outline-color: hsl(215, 100%, 19%) !important;
}
.ol-sat-cobalt-hover:hover {
  outline-color: hsl(215, 100%, 19%) !important;
}
.ol-sat-cobalt-focus:focus {
  outline-color: hsl(215, 100%, 19%) !important;
}
.ol-dark-cobalt {
  outline-color: hsl(215, 100%, 9%) !important;
}
.ol-dark-cobalt-active:active {
  outline-color: hsl(215, 100%, 9%) !important;
}
.ol-dark-cobalt-hover:hover {
  outline-color: hsl(215, 100%, 9%) !important;
}
.ol-dark-cobalt-focus:focus {
  outline-color: hsl(215, 100%, 9%) !important;
}
.ol-indigo {
  outline-color: hsl(276, 100%, 33%) !important;
}
.ol-indigo-active:active {
  outline-color: hsl(276, 100%, 33%) !important;
}
.ol-indigo-hover:hover {
  outline-color: hsl(276, 100%, 33%) !important;
}
.ol-indigo-focus:focus {
  outline-color: hsl(276, 100%, 33%) !important;
}
.ol-light-indigo {
  outline-color: hsl(276, 100%, 78%) !important;
}
.ol-light-indigo-active:active {
  outline-color: hsl(276, 100%, 78%) !important;
}
.ol-light-indigo-hover:hover {
  outline-color: hsl(276, 100%, 78%) !important;
}
.ol-light-indigo-focus:focus {
  outline-color: hsl(276, 100%, 78%) !important;
}
.ol-minor-indigo {
  outline-color: hsl(276, 100%, 48%) !important;
}
.ol-minor-indigo-active:active {
  outline-color: hsl(276, 100%, 48%) !important;
}
.ol-minor-indigo-hover:hover {
  outline-color: hsl(276, 100%, 48%) !important;
}
.ol-minor-indigo-focus:focus {
  outline-color: hsl(276, 100%, 48%) !important;
}
.ol-sat-indigo {
  outline-color: hsl(276, 100%, 18%) !important;
}
.ol-sat-indigo-active:active {
  outline-color: hsl(276, 100%, 18%) !important;
}
.ol-sat-indigo-hover:hover {
  outline-color: hsl(276, 100%, 18%) !important;
}
.ol-sat-indigo-focus:focus {
  outline-color: hsl(276, 100%, 18%) !important;
}
.ol-dark-indigo {
  outline-color: hsl(276, 100%, 8%) !important;
}
.ol-dark-indigo-active:active {
  outline-color: hsl(276, 100%, 8%) !important;
}
.ol-dark-indigo-hover:hover {
  outline-color: hsl(276, 100%, 8%) !important;
}
.ol-dark-indigo-focus:focus {
  outline-color: hsl(276, 100%, 8%) !important;
}
.ol-almost {
  outline-color: hsl(259, 84%, 55%) !important;
}
.ol-almost-active:active {
  outline-color: hsl(259, 84%, 55%) !important;
}
.ol-almost-hover:hover {
  outline-color: hsl(259, 84%, 55%) !important;
}
.ol-almost-focus:focus {
  outline-color: hsl(259, 84%, 55%) !important;
}
.ol-light-almost {
  outline-color: hsl(259, 84%, 85%) !important;
}
.ol-light-almost-active:active {
  outline-color: hsl(259, 84%, 85%) !important;
}
.ol-light-almost-hover:hover {
  outline-color: hsl(259, 84%, 85%) !important;
}
.ol-light-almost-focus:focus {
  outline-color: hsl(259, 84%, 85%) !important;
}
.ol-minor-almost {
  outline-color: hsl(259, 84%, 70%) !important;
}
.ol-minor-almost-active:active {
  outline-color: hsl(259, 84%, 70%) !important;
}
.ol-minor-almost-hover:hover {
  outline-color: hsl(259, 84%, 70%) !important;
}
.ol-minor-almost-focus:focus {
  outline-color: hsl(259, 84%, 70%) !important;
}
.ol-sat-almost {
  outline-color: hsl(259, 84%, 40%) !important;
}
.ol-sat-almost-active:active {
  outline-color: hsl(259, 84%, 40%) !important;
}
.ol-sat-almost-hover:hover {
  outline-color: hsl(259, 84%, 40%) !important;
}
.ol-sat-almost-focus:focus {
  outline-color: hsl(259, 84%, 40%) !important;
}
.ol-dark-almost {
  outline-color: hsl(259, 84%, 30%) !important;
}
.ol-dark-almost-active:active {
  outline-color: hsl(259, 84%, 30%) !important;
}
.ol-dark-almost-hover:hover {
  outline-color: hsl(259, 84%, 30%) !important;
}
.ol-dark-almost-focus:focus {
  outline-color: hsl(259, 84%, 30%) !important;
}
.ol-violet {
  outline-color: hsl(300, 76%, 72%) !important;
}
.ol-violet-active:active {
  outline-color: hsl(300, 76%, 72%) !important;
}
.ol-violet-hover:hover {
  outline-color: hsl(300, 76%, 72%) !important;
}
.ol-violet-focus:focus {
  outline-color: hsl(300, 76%, 72%) !important;
}
.ol-light-violet {
  outline-color: hsl(300, 76%, 92%) !important;
}
.ol-light-violet-active:active {
  outline-color: hsl(300, 76%, 92%) !important;
}
.ol-light-violet-hover:hover {
  outline-color: hsl(300, 76%, 92%) !important;
}
.ol-light-violet-focus:focus {
  outline-color: hsl(300, 76%, 92%) !important;
}
.ol-minor-violet {
  outline-color: hsl(300, 76%, 82%) !important;
}
.ol-minor-violet-active:active {
  outline-color: hsl(300, 76%, 82%) !important;
}
.ol-minor-violet-hover:hover {
  outline-color: hsl(300, 76%, 82%) !important;
}
.ol-minor-violet-focus:focus {
  outline-color: hsl(300, 76%, 82%) !important;
}
.ol-sat-violet {
  outline-color: hsl(300, 76%, 57%) !important;
}
.ol-sat-violet-active:active {
  outline-color: hsl(300, 76%, 57%) !important;
}
.ol-sat-violet-hover:hover {
  outline-color: hsl(300, 76%, 57%) !important;
}
.ol-sat-violet-focus:focus {
  outline-color: hsl(300, 76%, 57%) !important;
}
.ol-dark-violet {
  outline-color: hsl(300, 76%, 47%) !important;
}
.ol-dark-violet-active:active {
  outline-color: hsl(300, 76%, 47%) !important;
}
.ol-dark-violet-hover:hover {
  outline-color: hsl(300, 76%, 47%) !important;
}
.ol-dark-violet-focus:focus {
  outline-color: hsl(300, 76%, 47%) !important;
}
.ol-pink {
  outline-color: hsl(350, 100%, 88%) !important;
}
.ol-pink-active:active {
  outline-color: hsl(350, 100%, 88%) !important;
}
.ol-pink-hover:hover {
  outline-color: hsl(350, 100%, 88%) !important;
}
.ol-pink-focus:focus {
  outline-color: hsl(350, 100%, 88%) !important;
}
.ol-light-pink {
  outline-color: hsl(350, 100%, 98%) !important;
}
.ol-light-pink-active:active {
  outline-color: hsl(350, 100%, 98%) !important;
}
.ol-light-pink-hover:hover {
  outline-color: hsl(350, 100%, 98%) !important;
}
.ol-light-pink-focus:focus {
  outline-color: hsl(350, 100%, 98%) !important;
}
.ol-minor-pink {
  outline-color: hsl(350, 100%, 93%) !important;
}
.ol-minor-pink-active:active {
  outline-color: hsl(350, 100%, 93%) !important;
}
.ol-minor-pink-hover:hover {
  outline-color: hsl(350, 100%, 93%) !important;
}
.ol-minor-pink-focus:focus {
  outline-color: hsl(350, 100%, 93%) !important;
}
.ol-sat-pink {
  outline-color: hsl(350, 100%, 73%) !important;
}
.ol-sat-pink-active:active {
  outline-color: hsl(350, 100%, 73%) !important;
}
.ol-sat-pink-hover:hover {
  outline-color: hsl(350, 100%, 73%) !important;
}
.ol-sat-pink-focus:focus {
  outline-color: hsl(350, 100%, 73%) !important;
}
.ol-dark-pink {
  outline-color: hsl(350, 100%, 63%) !important;
}
.ol-dark-pink-active:active {
  outline-color: hsl(350, 100%, 63%) !important;
}
.ol-dark-pink-hover:hover {
  outline-color: hsl(350, 100%, 63%) !important;
}
.ol-dark-pink-focus:focus {
  outline-color: hsl(350, 100%, 63%) !important;
}
.ol-magenta {
  outline-color: hsl(300, 100%, 50%) !important;
}
.ol-magenta-active:active {
  outline-color: hsl(300, 100%, 50%) !important;
}
.ol-magenta-hover:hover {
  outline-color: hsl(300, 100%, 50%) !important;
}
.ol-magenta-focus:focus {
  outline-color: hsl(300, 100%, 50%) !important;
}
.ol-light-magenta {
  outline-color: hsl(300, 100%, 90%) !important;
}
.ol-light-magenta-active:active {
  outline-color: hsl(300, 100%, 90%) !important;
}
.ol-light-magenta-hover:hover {
  outline-color: hsl(300, 100%, 90%) !important;
}
.ol-light-magenta-focus:focus {
  outline-color: hsl(300, 100%, 90%) !important;
}
.ol-minor-magenta {
  outline-color: hsl(300, 100%, 75%) !important;
}
.ol-minor-magenta-active:active {
  outline-color: hsl(300, 100%, 75%) !important;
}
.ol-minor-magenta-hover:hover {
  outline-color: hsl(300, 100%, 75%) !important;
}
.ol-minor-magenta-focus:focus {
  outline-color: hsl(300, 100%, 75%) !important;
}
.ol-sat-magenta {
  outline-color: hsl(300, 100%, 35%) !important;
}
.ol-sat-magenta-active:active {
  outline-color: hsl(300, 100%, 35%) !important;
}
.ol-sat-magenta-hover:hover {
  outline-color: hsl(300, 100%, 35%) !important;
}
.ol-sat-magenta-focus:focus {
  outline-color: hsl(300, 100%, 35%) !important;
}
.ol-dark-magenta {
  outline-color: hsl(300, 100%, 25%) !important;
}
.ol-dark-magenta-active:active {
  outline-color: hsl(300, 100%, 25%) !important;
}
.ol-dark-magenta-hover:hover {
  outline-color: hsl(300, 100%, 25%) !important;
}
.ol-dark-magenta-focus:focus {
  outline-color: hsl(300, 100%, 25%) !important;
}
.ol-crimson {
  outline-color: hsl(348, 88%, 46%) !important;
}
.ol-crimson-active:active {
  outline-color: hsl(348, 88%, 46%) !important;
}
.ol-crimson-hover:hover {
  outline-color: hsl(348, 88%, 46%) !important;
}
.ol-crimson-focus:focus {
  outline-color: hsl(348, 88%, 46%) !important;
}
.ol-light-crimson {
  outline-color: hsl(348, 88%, 91%) !important;
}
.ol-light-crimson-active:active {
  outline-color: hsl(348, 88%, 91%) !important;
}
.ol-light-crimson-hover:hover {
  outline-color: hsl(348, 88%, 91%) !important;
}
.ol-light-crimson-focus:focus {
  outline-color: hsl(348, 88%, 91%) !important;
}
.ol-minor-crimson {
  outline-color: hsl(348, 88%, 66%) !important;
}
.ol-minor-crimson-active:active {
  outline-color: hsl(348, 88%, 66%) !important;
}
.ol-minor-crimson-hover:hover {
  outline-color: hsl(348, 88%, 66%) !important;
}
.ol-minor-crimson-focus:focus {
  outline-color: hsl(348, 88%, 66%) !important;
}
.ol-sat-crimson {
  outline-color: hsl(348, 88%, 31%) !important;
}
.ol-sat-crimson-active:active {
  outline-color: hsl(348, 88%, 31%) !important;
}
.ol-sat-crimson-hover:hover {
  outline-color: hsl(348, 88%, 31%) !important;
}
.ol-sat-crimson-focus:focus {
  outline-color: hsl(348, 88%, 31%) !important;
}
.ol-dark-crimson {
  outline-color: hsl(348, 88%, 21%) !important;
}
.ol-dark-crimson-active:active {
  outline-color: hsl(348, 88%, 21%) !important;
}
.ol-dark-crimson-hover:hover {
  outline-color: hsl(348, 88%, 21%) !important;
}
.ol-dark-crimson-focus:focus {
  outline-color: hsl(348, 88%, 21%) !important;
}
.ol-red {
  outline-color: hsl(0, 100%, 50%) !important;
}
.ol-red-active:active {
  outline-color: hsl(0, 100%, 50%) !important;
}
.ol-red-hover:hover {
  outline-color: hsl(0, 100%, 50%) !important;
}
.ol-red-focus:focus {
  outline-color: hsl(0, 100%, 50%) !important;
}
.ol-light-red {
  outline-color: hsl(0, 100%, 85%) !important;
}
.ol-light-red-active:active {
  outline-color: hsl(0, 100%, 85%) !important;
}
.ol-light-red-hover:hover {
  outline-color: hsl(0, 100%, 85%) !important;
}
.ol-light-red-focus:focus {
  outline-color: hsl(0, 100%, 85%) !important;
}
.ol-minor-red {
  outline-color: hsl(0, 100%, 70%) !important;
}
.ol-minor-red-active:active {
  outline-color: hsl(0, 100%, 70%) !important;
}
.ol-minor-red-hover:hover {
  outline-color: hsl(0, 100%, 70%) !important;
}
.ol-minor-red-focus:focus {
  outline-color: hsl(0, 100%, 70%) !important;
}
.ol-sat-red {
  outline-color: hsl(0, 100%, 35%) !important;
}
.ol-sat-red-active:active {
  outline-color: hsl(0, 100%, 35%) !important;
}
.ol-sat-red-hover:hover {
  outline-color: hsl(0, 100%, 35%) !important;
}
.ol-sat-red-focus:focus {
  outline-color: hsl(0, 100%, 35%) !important;
}
.ol-dark-red {
  outline-color: hsl(0, 100%, 25%) !important;
}
.ol-dark-red-active:active {
  outline-color: hsl(0, 100%, 25%) !important;
}
.ol-dark-red-hover:hover {
  outline-color: hsl(0, 100%, 25%) !important;
}
.ol-dark-red-focus:focus {
  outline-color: hsl(0, 100%, 25%) !important;
}
.ol-clown {
  outline-color: hsl(3, 100%, 70%) !important;
}
.ol-clown-active:active {
  outline-color: hsl(3, 100%, 70%) !important;
}
.ol-clown-hover:hover {
  outline-color: hsl(3, 100%, 70%) !important;
}
.ol-clown-focus:focus {
  outline-color: hsl(3, 100%, 70%) !important;
}
.ol-light-clown {
  outline-color: hsl(3, 100%, 95%) !important;
}
.ol-light-clown-active:active {
  outline-color: hsl(3, 100%, 95%) !important;
}
.ol-light-clown-hover:hover {
  outline-color: hsl(3, 100%, 95%) !important;
}
.ol-light-clown-focus:focus {
  outline-color: hsl(3, 100%, 95%) !important;
}
.ol-minor-clown {
  outline-color: hsl(3, 100%, 85%) !important;
}
.ol-minor-clown-active:active {
  outline-color: hsl(3, 100%, 85%) !important;
}
.ol-minor-clown-hover:hover {
  outline-color: hsl(3, 100%, 85%) !important;
}
.ol-minor-clown-focus:focus {
  outline-color: hsl(3, 100%, 85%) !important;
}
.ol-sat-clown {
  outline-color: hsl(3, 100%, 55%) !important;
}
.ol-sat-clown-active:active {
  outline-color: hsl(3, 100%, 55%) !important;
}
.ol-sat-clown-hover:hover {
  outline-color: hsl(3, 100%, 55%) !important;
}
.ol-sat-clown-focus:focus {
  outline-color: hsl(3, 100%, 55%) !important;
}
.ol-dark-clown {
  outline-color: hsl(3, 100%, 45%) !important;
}
.ol-dark-clown-active:active {
  outline-color: hsl(3, 100%, 45%) !important;
}
.ol-dark-clown-hover:hover {
  outline-color: hsl(3, 100%, 45%) !important;
}
.ol-dark-clown-focus:focus {
  outline-color: hsl(3, 100%, 45%) !important;
}
.ol-orange {
  outline-color: hsl(39, 100%, 50%) !important;
}
.ol-orange-active:active {
  outline-color: hsl(39, 100%, 50%) !important;
}
.ol-orange-hover:hover {
  outline-color: hsl(39, 100%, 50%) !important;
}
.ol-orange-focus:focus {
  outline-color: hsl(39, 100%, 50%) !important;
}
.ol-light-orange {
  outline-color: hsl(39, 100%, 90%) !important;
}
.ol-light-orange-active:active {
  outline-color: hsl(39, 100%, 90%) !important;
}
.ol-light-orange-hover:hover {
  outline-color: hsl(39, 100%, 90%) !important;
}
.ol-light-orange-focus:focus {
  outline-color: hsl(39, 100%, 90%) !important;
}
.ol-minor-orange {
  outline-color: hsl(39, 100%, 75%) !important;
}
.ol-minor-orange-active:active {
  outline-color: hsl(39, 100%, 75%) !important;
}
.ol-minor-orange-hover:hover {
  outline-color: hsl(39, 100%, 75%) !important;
}
.ol-minor-orange-focus:focus {
  outline-color: hsl(39, 100%, 75%) !important;
}
.ol-sat-orange {
  outline-color: hsl(39, 100%, 35%) !important;
}
.ol-sat-orange-active:active {
  outline-color: hsl(39, 100%, 35%) !important;
}
.ol-sat-orange-hover:hover {
  outline-color: hsl(39, 100%, 35%) !important;
}
.ol-sat-orange-focus:focus {
  outline-color: hsl(39, 100%, 35%) !important;
}
.ol-dark-orange {
  outline-color: hsl(39, 100%, 25%) !important;
}
.ol-dark-orange-active:active {
  outline-color: hsl(39, 100%, 25%) !important;
}
.ol-dark-orange-hover:hover {
  outline-color: hsl(39, 100%, 25%) !important;
}
.ol-dark-orange-focus:focus {
  outline-color: hsl(39, 100%, 25%) !important;
}
.ol-amber {
  outline-color: hsl(45, 100%, 58%) !important;
}
.ol-amber-active:active {
  outline-color: hsl(45, 100%, 58%) !important;
}
.ol-amber-hover:hover {
  outline-color: hsl(45, 100%, 58%) !important;
}
.ol-amber-focus:focus {
  outline-color: hsl(45, 100%, 58%) !important;
}
.ol-light-amber {
  outline-color: hsl(45, 100%, 78%) !important;
}
.ol-light-amber-active:active {
  outline-color: hsl(45, 100%, 78%) !important;
}
.ol-light-amber-hover:hover {
  outline-color: hsl(45, 100%, 78%) !important;
}
.ol-light-amber-focus:focus {
  outline-color: hsl(45, 100%, 78%) !important;
}
.ol-minor-amber {
  outline-color: hsl(45, 100%, 68%) !important;
}
.ol-minor-amber-active:active {
  outline-color: hsl(45, 100%, 68%) !important;
}
.ol-minor-amber-hover:hover {
  outline-color: hsl(45, 100%, 68%) !important;
}
.ol-minor-amber-focus:focus {
  outline-color: hsl(45, 100%, 68%) !important;
}
.ol-sat-amber {
  outline-color: hsl(45, 100%, 43%) !important;
}
.ol-sat-amber-active:active {
  outline-color: hsl(45, 100%, 43%) !important;
}
.ol-sat-amber-hover:hover {
  outline-color: hsl(45, 100%, 43%) !important;
}
.ol-sat-amber-focus:focus {
  outline-color: hsl(45, 100%, 43%) !important;
}
.ol-dark-amber {
  outline-color: hsl(45, 100%, 33%) !important;
}
.ol-dark-amber-active:active {
  outline-color: hsl(45, 100%, 33%) !important;
}
.ol-dark-amber-hover:hover {
  outline-color: hsl(45, 100%, 33%) !important;
}
.ol-dark-amber-focus:focus {
  outline-color: hsl(45, 100%, 33%) !important;
}
.ol-yellow {
  outline-color: hsl(52, 100%, 68%) !important;
}
.ol-yellow-active:active {
  outline-color: hsl(52, 100%, 68%) !important;
}
.ol-yellow-hover:hover {
  outline-color: hsl(52, 100%, 68%) !important;
}
.ol-yellow-focus:focus {
  outline-color: hsl(52, 100%, 68%) !important;
}
.ol-light-yellow {
  outline-color: hsl(52, 100%, 93%) !important;
}
.ol-light-yellow-active:active {
  outline-color: hsl(52, 100%, 93%) !important;
}
.ol-light-yellow-hover:hover {
  outline-color: hsl(52, 100%, 93%) !important;
}
.ol-light-yellow-focus:focus {
  outline-color: hsl(52, 100%, 93%) !important;
}
.ol-minor-yellow {
  outline-color: hsl(52, 100%, 83%) !important;
}
.ol-minor-yellow-active:active {
  outline-color: hsl(52, 100%, 83%) !important;
}
.ol-minor-yellow-hover:hover {
  outline-color: hsl(52, 100%, 83%) !important;
}
.ol-minor-yellow-focus:focus {
  outline-color: hsl(52, 100%, 83%) !important;
}
.ol-sat-yellow {
  outline-color: hsl(52, 100%, 53%) !important;
}
.ol-sat-yellow-active:active {
  outline-color: hsl(52, 100%, 53%) !important;
}
.ol-sat-yellow-hover:hover {
  outline-color: hsl(52, 100%, 53%) !important;
}
.ol-sat-yellow-focus:focus {
  outline-color: hsl(52, 100%, 53%) !important;
}
.ol-dark-yellow {
  outline-color: hsl(52, 100%, 43%) !important;
}
.ol-dark-yellow-active:active {
  outline-color: hsl(52, 100%, 43%) !important;
}
.ol-dark-yellow-hover:hover {
  outline-color: hsl(52, 100%, 43%) !important;
}
.ol-dark-yellow-focus:focus {
  outline-color: hsl(52, 100%, 43%) !important;
}
.ol-brown {
  outline-color: hsl(25, 57%, 51%) !important;
}
.ol-brown-active:active {
  outline-color: hsl(25, 57%, 51%) !important;
}
.ol-brown-hover:hover {
  outline-color: hsl(25, 57%, 51%) !important;
}
.ol-brown-focus:focus {
  outline-color: hsl(25, 57%, 51%) !important;
}
.ol-light-brown {
  outline-color: hsl(25, 57%, 81%) !important;
}
.ol-light-brown-active:active {
  outline-color: hsl(25, 57%, 81%) !important;
}
.ol-light-brown-hover:hover {
  outline-color: hsl(25, 57%, 81%) !important;
}
.ol-light-brown-focus:focus {
  outline-color: hsl(25, 57%, 81%) !important;
}
.ol-minor-brown {
  outline-color: hsl(25, 57%, 66%) !important;
}
.ol-minor-brown-active:active {
  outline-color: hsl(25, 57%, 66%) !important;
}
.ol-minor-brown-hover:hover {
  outline-color: hsl(25, 57%, 66%) !important;
}
.ol-minor-brown-focus:focus {
  outline-color: hsl(25, 57%, 66%) !important;
}
.ol-sat-brown {
  outline-color: hsl(25, 57%, 36%) !important;
}
.ol-sat-brown-active:active {
  outline-color: hsl(25, 57%, 36%) !important;
}
.ol-sat-brown-hover:hover {
  outline-color: hsl(25, 57%, 36%) !important;
}
.ol-sat-brown-focus:focus {
  outline-color: hsl(25, 57%, 36%) !important;
}
.ol-dark-brown {
  outline-color: hsl(25, 57%, 26%) !important;
}
.ol-dark-brown-active:active {
  outline-color: hsl(25, 57%, 26%) !important;
}
.ol-dark-brown-hover:hover {
  outline-color: hsl(25, 57%, 26%) !important;
}
.ol-dark-brown-focus:focus {
  outline-color: hsl(25, 57%, 26%) !important;
}
.ol-olive {
  outline-color: hsl(60, 100%, 32%) !important;
}
.ol-olive-active:active {
  outline-color: hsl(60, 100%, 32%) !important;
}
.ol-olive-hover:hover {
  outline-color: hsl(60, 100%, 32%) !important;
}
.ol-olive-focus:focus {
  outline-color: hsl(60, 100%, 32%) !important;
}
.ol-light-olive {
  outline-color: hsl(60, 100%, 72%) !important;
}
.ol-light-olive-active:active {
  outline-color: hsl(60, 100%, 72%) !important;
}
.ol-light-olive-hover:hover {
  outline-color: hsl(60, 100%, 72%) !important;
}
.ol-light-olive-focus:focus {
  outline-color: hsl(60, 100%, 72%) !important;
}
.ol-minor-olive {
  outline-color: hsl(60, 100%, 42%) !important;
}
.ol-minor-olive-active:active {
  outline-color: hsl(60, 100%, 42%) !important;
}
.ol-minor-olive-hover:hover {
  outline-color: hsl(60, 100%, 42%) !important;
}
.ol-minor-olive-focus:focus {
  outline-color: hsl(60, 100%, 42%) !important;
}
.ol-sat-olive {
  outline-color: hsl(60, 100%, 17%) !important;
}
.ol-sat-olive-active:active {
  outline-color: hsl(60, 100%, 17%) !important;
}
.ol-sat-olive-hover:hover {
  outline-color: hsl(60, 100%, 17%) !important;
}
.ol-sat-olive-focus:focus {
  outline-color: hsl(60, 100%, 17%) !important;
}
.ol-dark-olive {
  outline-color: hsl(60, 100%, 7%) !important;
}
.ol-dark-olive-active:active {
  outline-color: hsl(60, 100%, 7%) !important;
}
.ol-dark-olive-hover:hover {
  outline-color: hsl(60, 100%, 7%) !important;
}
.ol-dark-olive-focus:focus {
  outline-color: hsl(60, 100%, 7%) !important;
}
.ol-steel {
  outline-color: hsl(209, 19%, 57%) !important;
}
.ol-steel-active:active {
  outline-color: hsl(209, 19%, 57%) !important;
}
.ol-steel-hover:hover {
  outline-color: hsl(209, 19%, 57%) !important;
}
.ol-steel-focus:focus {
  outline-color: hsl(209, 19%, 57%) !important;
}
.ol-light-steel {
  outline-color: hsl(209, 19%, 87%) !important;
}
.ol-light-steel-active:active {
  outline-color: hsl(209, 19%, 87%) !important;
}
.ol-light-steel-hover:hover {
  outline-color: hsl(209, 19%, 87%) !important;
}
.ol-light-steel-focus:focus {
  outline-color: hsl(209, 19%, 87%) !important;
}
.ol-minor-steel {
  outline-color: hsl(209, 19%, 77%) !important;
}
.ol-minor-steel-active:active {
  outline-color: hsl(209, 19%, 77%) !important;
}
.ol-minor-steel-hover:hover {
  outline-color: hsl(209, 19%, 77%) !important;
}
.ol-minor-steel-focus:focus {
  outline-color: hsl(209, 19%, 77%) !important;
}
.ol-sat-steel {
  outline-color: hsl(209, 19%, 42%) !important;
}
.ol-sat-steel-active:active {
  outline-color: hsl(209, 19%, 42%) !important;
}
.ol-sat-steel-hover:hover {
  outline-color: hsl(209, 19%, 42%) !important;
}
.ol-sat-steel-focus:focus {
  outline-color: hsl(209, 19%, 42%) !important;
}
.ol-dark-steel {
  outline-color: hsl(209, 19%, 32%) !important;
}
.ol-dark-steel-active:active {
  outline-color: hsl(209, 19%, 32%) !important;
}
.ol-dark-steel-hover:hover {
  outline-color: hsl(209, 19%, 32%) !important;
}
.ol-dark-steel-focus:focus {
  outline-color: hsl(209, 19%, 32%) !important;
}
.ol-mauve {
  outline-color: hsl(277, 100%, 84%) !important;
}
.ol-mauve-active:active {
  outline-color: hsl(277, 100%, 84%) !important;
}
.ol-mauve-hover:hover {
  outline-color: hsl(277, 100%, 84%) !important;
}
.ol-mauve-focus:focus {
  outline-color: hsl(277, 100%, 84%) !important;
}
.ol-light-mauve {
  outline-color: hsl(277, 100%, 96%) !important;
}
.ol-light-mauve-active:active {
  outline-color: hsl(277, 100%, 96%) !important;
}
.ol-light-mauve-hover:hover {
  outline-color: hsl(277, 100%, 96%) !important;
}
.ol-light-mauve-focus:focus {
  outline-color: hsl(277, 100%, 96%) !important;
}
.ol-minor-mauve {
  outline-color: hsl(277, 100%, 90%) !important;
}
.ol-minor-mauve-active:active {
  outline-color: hsl(277, 100%, 90%) !important;
}
.ol-minor-mauve-hover:hover {
  outline-color: hsl(277, 100%, 90%) !important;
}
.ol-minor-mauve-focus:focus {
  outline-color: hsl(277, 100%, 90%) !important;
}
.ol-sat-mauve {
  outline-color: hsl(277, 100%, 69%) !important;
}
.ol-sat-mauve-active:active {
  outline-color: hsl(277, 100%, 69%) !important;
}
.ol-sat-mauve-hover:hover {
  outline-color: hsl(277, 100%, 69%) !important;
}
.ol-sat-mauve-focus:focus {
  outline-color: hsl(277, 100%, 69%) !important;
}
.ol-dark-mauve {
  outline-color: hsl(277, 100%, 59%) !important;
}
.ol-dark-mauve-active:active {
  outline-color: hsl(277, 100%, 59%) !important;
}
.ol-dark-mauve-hover:hover {
  outline-color: hsl(277, 100%, 59%) !important;
}
.ol-dark-mauve-focus:focus {
  outline-color: hsl(277, 100%, 59%) !important;
}
.ol-taupe {
  outline-color: hsl(29, 19%, 50%) !important;
}
.ol-taupe-active:active {
  outline-color: hsl(29, 19%, 50%) !important;
}
.ol-taupe-hover:hover {
  outline-color: hsl(29, 19%, 50%) !important;
}
.ol-taupe-focus:focus {
  outline-color: hsl(29, 19%, 50%) !important;
}
.ol-light-taupe {
  outline-color: hsl(29, 19%, 80%) !important;
}
.ol-light-taupe-active:active {
  outline-color: hsl(29, 19%, 80%) !important;
}
.ol-light-taupe-hover:hover {
  outline-color: hsl(29, 19%, 80%) !important;
}
.ol-light-taupe-focus:focus {
  outline-color: hsl(29, 19%, 80%) !important;
}
.ol-minor-taupe {
  outline-color: hsl(29, 19%, 67%) !important;
}
.ol-minor-taupe-active:active {
  outline-color: hsl(29, 19%, 67%) !important;
}
.ol-minor-taupe-hover:hover {
  outline-color: hsl(29, 19%, 67%) !important;
}
.ol-minor-taupe-focus:focus {
  outline-color: hsl(29, 19%, 67%) !important;
}
.ol-sat-taupe {
  outline-color: hsl(29, 19%, 35%) !important;
}
.ol-sat-taupe-active:active {
  outline-color: hsl(29, 19%, 35%) !important;
}
.ol-sat-taupe-hover:hover {
  outline-color: hsl(29, 19%, 35%) !important;
}
.ol-sat-taupe-focus:focus {
  outline-color: hsl(29, 19%, 35%) !important;
}
.ol-dark-taupe {
  outline-color: hsl(29, 19%, 25%) !important;
}
.ol-dark-taupe-active:active {
  outline-color: hsl(29, 19%, 25%) !important;
}
.ol-dark-taupe-hover:hover {
  outline-color: hsl(29, 19%, 25%) !important;
}
.ol-dark-taupe-focus:focus {
  outline-color: hsl(29, 19%, 25%) !important;
}
.ol-champagne {
  outline-color: hsl(37, 74%, 88%) !important;
}
.ol-champagne-active:active {
  outline-color: hsl(37, 74%, 88%) !important;
}
.ol-champagne-hover:hover {
  outline-color: hsl(37, 74%, 88%) !important;
}
.ol-champagne-focus:focus {
  outline-color: hsl(37, 74%, 88%) !important;
}
.ol-light-champagne {
  outline-color: hsl(37, 74%, 98%) !important;
}
.ol-light-champagne-active:active {
  outline-color: hsl(37, 74%, 98%) !important;
}
.ol-light-champagne-hover:hover {
  outline-color: hsl(37, 74%, 98%) !important;
}
.ol-light-champagne-focus:focus {
  outline-color: hsl(37, 74%, 98%) !important;
}
.ol-minor-champagne {
  outline-color: hsl(37, 74%, 93%) !important;
}
.ol-minor-champagne-active:active {
  outline-color: hsl(37, 74%, 93%) !important;
}
.ol-minor-champagne-hover:hover {
  outline-color: hsl(37, 74%, 93%) !important;
}
.ol-minor-champagne-focus:focus {
  outline-color: hsl(37, 74%, 93%) !important;
}
.ol-sat-champagne {
  outline-color: hsl(37, 74%, 73%) !important;
}
.ol-sat-champagne-active:active {
  outline-color: hsl(37, 74%, 73%) !important;
}
.ol-sat-champagne-hover:hover {
  outline-color: hsl(37, 74%, 73%) !important;
}
.ol-sat-champagne-focus:focus {
  outline-color: hsl(37, 74%, 73%) !important;
}
.ol-dark-champagne {
  outline-color: hsl(37, 74%, 63%) !important;
}
.ol-dark-champagne-active:active {
  outline-color: hsl(37, 74%, 63%) !important;
}
.ol-dark-champagne-hover:hover {
  outline-color: hsl(37, 74%, 63%) !important;
}
.ol-dark-champagne-focus:focus {
  outline-color: hsl(37, 74%, 63%) !important;
}
.ol-khaki {
  outline-color: hsl(47, 47%, 69%) !important;
}
.ol-khaki-active:active {
  outline-color: hsl(47, 47%, 69%) !important;
}
.ol-khaki-hover:hover {
  outline-color: hsl(47, 47%, 69%) !important;
}
.ol-khaki-focus:focus {
  outline-color: hsl(47, 47%, 69%) !important;
}
.ol-light-khaki {
  outline-color: hsl(47, 47%, 94%) !important;
}
.ol-light-khaki-active:active {
  outline-color: hsl(47, 47%, 94%) !important;
}
.ol-light-khaki-hover:hover {
  outline-color: hsl(47, 47%, 94%) !important;
}
.ol-light-khaki-focus:focus {
  outline-color: hsl(47, 47%, 94%) !important;
}
.ol-minor-khaki {
  outline-color: hsl(47, 47%, 84%) !important;
}
.ol-minor-khaki-active:active {
  outline-color: hsl(47, 47%, 84%) !important;
}
.ol-minor-khaki-hover:hover {
  outline-color: hsl(47, 47%, 84%) !important;
}
.ol-minor-khaki-focus:focus {
  outline-color: hsl(47, 47%, 84%) !important;
}
.ol-sat-khaki {
  outline-color: hsl(47, 47%, 54%) !important;
}
.ol-sat-khaki-active:active {
  outline-color: hsl(47, 47%, 54%) !important;
}
.ol-sat-khaki-hover:hover {
  outline-color: hsl(47, 47%, 54%) !important;
}
.ol-sat-khaki-focus:focus {
  outline-color: hsl(47, 47%, 54%) !important;
}
.ol-dark-khaki {
  outline-color: hsl(47, 47%, 44%) !important;
}
.ol-dark-khaki-active:active {
  outline-color: hsl(47, 47%, 44%) !important;
}
.ol-dark-khaki-hover:hover {
  outline-color: hsl(47, 47%, 44%) !important;
}
.ol-dark-khaki-focus:focus {
  outline-color: hsl(47, 47%, 44%) !important;
}
.ol-charcoal {
  outline-color: hsl(0, 0%, 60%) !important;
}
.ol-charcoal-active:active {
  outline-color: hsl(0, 0%, 60%) !important;
}
.ol-charcoal-hover:hover {
  outline-color: hsl(0, 0%, 60%) !important;
}
.ol-charcoal-focus:focus {
  outline-color: hsl(0, 0%, 60%) !important;
}
.ol-light-charcoal {
  outline-color: hsl(0, 0%, 90%) !important;
}
.ol-light-charcoal-active:active {
  outline-color: hsl(0, 0%, 90%) !important;
}
.ol-light-charcoal-hover:hover {
  outline-color: hsl(0, 0%, 90%) !important;
}
.ol-light-charcoal-focus:focus {
  outline-color: hsl(0, 0%, 90%) !important;
}
.ol-minor-charcoal {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-minor-charcoal-active:active {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-minor-charcoal-hover:hover {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-minor-charcoal-focus:focus {
  outline-color: hsl(0, 0%, 80%) !important;
}
.ol-sat-charcoal {
  outline-color: hsl(0, 0%, 45%) !important;
}
.ol-sat-charcoal-active:active {
  outline-color: hsl(0, 0%, 45%) !important;
}
.ol-sat-charcoal-hover:hover {
  outline-color: hsl(0, 0%, 45%) !important;
}
.ol-sat-charcoal-focus:focus {
  outline-color: hsl(0, 0%, 45%) !important;
}
.ol-dark-charcoal {
  outline-color: hsl(0, 0%, 35%) !important;
}
.ol-dark-charcoal-active:active {
  outline-color: hsl(0, 0%, 35%) !important;
}
.ol-dark-charcoal-hover:hover {
  outline-color: hsl(0, 0%, 35%) !important;
}
.ol-dark-charcoal-focus:focus {
  outline-color: hsl(0, 0%, 35%) !important;
}
.ol-bronze {
  outline-color: hsl(29, 75%, 57%) !important;
}
.ol-bronze-active:active {
  outline-color: hsl(29, 75%, 57%) !important;
}
.ol-bronze-hover:hover {
  outline-color: hsl(29, 75%, 57%) !important;
}
.ol-bronze-focus:focus {
  outline-color: hsl(29, 75%, 57%) !important;
}
.ol-light-bronze {
  outline-color: hsl(29, 75%, 87%) !important;
}
.ol-light-bronze-active:active {
  outline-color: hsl(29, 75%, 87%) !important;
}
.ol-light-bronze-hover:hover {
  outline-color: hsl(29, 75%, 87%) !important;
}
.ol-light-bronze-focus:focus {
  outline-color: hsl(29, 75%, 87%) !important;
}
.ol-minor-bronze {
  outline-color: hsl(29, 75%, 72%) !important;
}
.ol-minor-bronze-active:active {
  outline-color: hsl(29, 75%, 72%) !important;
}
.ol-minor-bronze-hover:hover {
  outline-color: hsl(29, 75%, 72%) !important;
}
.ol-minor-bronze-focus:focus {
  outline-color: hsl(29, 75%, 72%) !important;
}
.ol-sat-bronze {
  outline-color: hsl(29, 75%, 42%) !important;
}
.ol-sat-bronze-active:active {
  outline-color: hsl(29, 75%, 42%) !important;
}
.ol-sat-bronze-hover:hover {
  outline-color: hsl(29, 75%, 42%) !important;
}
.ol-sat-bronze-focus:focus {
  outline-color: hsl(29, 75%, 42%) !important;
}
.ol-dark-bronze {
  outline-color: hsl(29, 75%, 32%) !important;
}
.ol-dark-bronze-active:active {
  outline-color: hsl(29, 75%, 32%) !important;
}
.ol-dark-bronze-hover:hover {
  outline-color: hsl(29, 75%, 32%) !important;
}
.ol-dark-bronze-focus:focus {
  outline-color: hsl(29, 75%, 32%) !important;
}
.ol-windstorm {
  outline-color: hsl(216, 53%, 66%) !important;
}
.ol-windstorm-active:active {
  outline-color: hsl(216, 53%, 66%) !important;
}
.ol-windstorm-hover:hover {
  outline-color: hsl(216, 53%, 66%) !important;
}
.ol-windstorm-focus:focus {
  outline-color: hsl(216, 53%, 66%) !important;
}
.ol-light-windstorm {
  outline-color: hsl(216, 53%, 93%) !important;
}
.ol-light-windstorm-active:active {
  outline-color: hsl(216, 53%, 93%) !important;
}
.ol-light-windstorm-hover:hover {
  outline-color: hsl(216, 53%, 93%) !important;
}
.ol-light-windstorm-focus:focus {
  outline-color: hsl(216, 53%, 93%) !important;
}
.ol-minor-windstorm {
  outline-color: hsl(216, 53%, 81%) !important;
}
.ol-minor-windstorm-active:active {
  outline-color: hsl(216, 53%, 81%) !important;
}
.ol-minor-windstorm-hover:hover {
  outline-color: hsl(216, 53%, 81%) !important;
}
.ol-minor-windstorm-focus:focus {
  outline-color: hsl(216, 53%, 81%) !important;
}
.ol-sat-windstorm {
  outline-color: hsl(216, 53%, 51%) !important;
}
.ol-sat-windstorm-active:active {
  outline-color: hsl(216, 53%, 51%) !important;
}
.ol-sat-windstorm-hover:hover {
  outline-color: hsl(216, 53%, 51%) !important;
}
.ol-sat-windstorm-focus:focus {
  outline-color: hsl(216, 53%, 51%) !important;
}
.ol-dark-windstorm {
  outline-color: hsl(216, 53%, 41%) !important;
}
.ol-dark-windstorm-active:active {
  outline-color: hsl(216, 53%, 41%) !important;
}
.ol-dark-windstorm-hover:hover {
  outline-color: hsl(216, 53%, 41%) !important;
}
.ol-dark-windstorm-focus:focus {
  outline-color: hsl(216, 53%, 41%) !important;
}
.ol-nude {
  outline-color: hsl(29, 79%, 85%) !important;
}
.ol-nude-active:active {
  outline-color: hsl(29, 79%, 85%) !important;
}
.ol-nude-hover:hover {
  outline-color: hsl(29, 79%, 85%) !important;
}
.ol-nude-focus:focus {
  outline-color: hsl(29, 79%, 85%) !important;
}
.ol-light-nude {
  outline-color: hsl(29, 79%, 97%) !important;
}
.ol-light-nude-active:active {
  outline-color: hsl(29, 79%, 97%) !important;
}
.ol-light-nude-hover:hover {
  outline-color: hsl(29, 79%, 97%) !important;
}
.ol-light-nude-focus:focus {
  outline-color: hsl(29, 79%, 97%) !important;
}
.ol-minor-nude {
  outline-color: hsl(29, 79%, 92%) !important;
}
.ol-minor-nude-active:active {
  outline-color: hsl(29, 79%, 92%) !important;
}
.ol-minor-nude-hover:hover {
  outline-color: hsl(29, 79%, 92%) !important;
}
.ol-minor-nude-focus:focus {
  outline-color: hsl(29, 79%, 92%) !important;
}
.ol-sat-nude {
  outline-color: hsl(29, 79%, 70%) !important;
}
.ol-sat-nude-active:active {
  outline-color: hsl(29, 79%, 70%) !important;
}
.ol-sat-nude-hover:hover {
  outline-color: hsl(29, 79%, 70%) !important;
}
.ol-sat-nude-focus:focus {
  outline-color: hsl(29, 79%, 70%) !important;
}
.ol-dark-nude {
  outline-color: hsl(29, 79%, 60%) !important;
}
.ol-dark-nude-active:active {
  outline-color: hsl(29, 79%, 60%) !important;
}
.ol-dark-nude-hover:hover {
  outline-color: hsl(29, 79%, 60%) !important;
}
.ol-dark-nude-focus:focus {
  outline-color: hsl(29, 79%, 60%) !important;
}
.ol-terracotta {
  outline-color: hsl(10, 76%, 55%) !important;
}
.ol-terracotta-active:active {
  outline-color: hsl(10, 76%, 55%) !important;
}
.ol-terracotta-hover:hover {
  outline-color: hsl(10, 76%, 55%) !important;
}
.ol-terracotta-focus:focus {
  outline-color: hsl(10, 76%, 55%) !important;
}
.ol-light-terracotta {
  outline-color: hsl(10, 76%, 85%) !important;
}
.ol-light-terracotta-active:active {
  outline-color: hsl(10, 76%, 85%) !important;
}
.ol-light-terracotta-hover:hover {
  outline-color: hsl(10, 76%, 85%) !important;
}
.ol-light-terracotta-focus:focus {
  outline-color: hsl(10, 76%, 85%) !important;
}
.ol-minor-terracotta {
  outline-color: hsl(10, 76%, 70%) !important;
}
.ol-minor-terracotta-active:active {
  outline-color: hsl(10, 76%, 70%) !important;
}
.ol-minor-terracotta-hover:hover {
  outline-color: hsl(10, 76%, 70%) !important;
}
.ol-minor-terracotta-focus:focus {
  outline-color: hsl(10, 76%, 70%) !important;
}
.ol-sat-terracotta {
  outline-color: hsl(10, 76%, 40%) !important;
}
.ol-sat-terracotta-active:active {
  outline-color: hsl(10, 76%, 40%) !important;
}
.ol-sat-terracotta-hover:hover {
  outline-color: hsl(10, 76%, 40%) !important;
}
.ol-sat-terracotta-focus:focus {
  outline-color: hsl(10, 76%, 40%) !important;
}
.ol-dark-terracotta {
  outline-color: hsl(10, 76%, 30%) !important;
}
.ol-dark-terracotta-active:active {
  outline-color: hsl(10, 76%, 30%) !important;
}
.ol-dark-terracotta-hover:hover {
  outline-color: hsl(10, 76%, 30%) !important;
}
.ol-dark-terracotta-focus:focus {
  outline-color: hsl(10, 76%, 30%) !important;
}
.ol-coral {
  outline-color: hsl(16, 100%, 67%) !important;
}
.ol-coral-active:active {
  outline-color: hsl(16, 100%, 67%) !important;
}
.ol-coral-hover:hover {
  outline-color: hsl(16, 100%, 67%) !important;
}
.ol-coral-focus:focus {
  outline-color: hsl(16, 100%, 67%) !important;
}
.ol-light-coral {
  outline-color: hsl(16, 100%, 92%) !important;
}
.ol-light-coral-active:active {
  outline-color: hsl(16, 100%, 92%) !important;
}
.ol-light-coral-hover:hover {
  outline-color: hsl(16, 100%, 92%) !important;
}
.ol-light-coral-focus:focus {
  outline-color: hsl(16, 100%, 92%) !important;
}
.ol-minor-coral {
  outline-color: hsl(16, 100%, 82%) !important;
}
.ol-minor-coral-active:active {
  outline-color: hsl(16, 100%, 82%) !important;
}
.ol-minor-coral-hover:hover {
  outline-color: hsl(16, 100%, 82%) !important;
}
.ol-minor-coral-focus:focus {
  outline-color: hsl(16, 100%, 82%) !important;
}
.ol-sat-coral {
  outline-color: hsl(16, 100%, 52%) !important;
}
.ol-sat-coral-active:active {
  outline-color: hsl(16, 100%, 52%) !important;
}
.ol-sat-coral-hover:hover {
  outline-color: hsl(16, 100%, 52%) !important;
}
.ol-sat-coral-focus:focus {
  outline-color: hsl(16, 100%, 52%) !important;
}
.ol-dark-coral {
  outline-color: hsl(16, 100%, 42%) !important;
}
.ol-dark-coral-active:active {
  outline-color: hsl(16, 100%, 42%) !important;
}
.ol-dark-coral-hover:hover {
  outline-color: hsl(16, 100%, 42%) !important;
}
.ol-dark-coral-focus:focus {
  outline-color: hsl(16, 100%, 42%) !important;
}
.ol-army {
  outline-color: hsl(69, 34%, 30%) !important;
}
.ol-army-active:active {
  outline-color: hsl(69, 34%, 30%) !important;
}
.ol-army-hover:hover {
  outline-color: hsl(69, 34%, 30%) !important;
}
.ol-army-focus:focus {
  outline-color: hsl(69, 34%, 30%) !important;
}
.ol-light-army {
  outline-color: hsl(69, 34%, 75%) !important;
}
.ol-light-army-active:active {
  outline-color: hsl(69, 34%, 75%) !important;
}
.ol-light-army-hover:hover {
  outline-color: hsl(69, 34%, 75%) !important;
}
.ol-light-army-focus:focus {
  outline-color: hsl(69, 34%, 75%) !important;
}
.ol-minor-army {
  outline-color: hsl(69, 34%, 47%) !important;
}
.ol-minor-army-active:active {
  outline-color: hsl(69, 34%, 47%) !important;
}
.ol-minor-army-hover:hover {
  outline-color: hsl(69, 34%, 47%) !important;
}
.ol-minor-army-focus:focus {
  outline-color: hsl(69, 34%, 47%) !important;
}
.ol-sat-army {
  outline-color: hsl(69, 34%, 15%) !important;
}
.ol-sat-army-active:active {
  outline-color: hsl(69, 34%, 15%) !important;
}
.ol-sat-army-hover:hover {
  outline-color: hsl(69, 34%, 15%) !important;
}
.ol-sat-army-focus:focus {
  outline-color: hsl(69, 34%, 15%) !important;
}
.ol-dark-army {
  outline-color: hsl(69, 34%, 5%) !important;
}
.ol-dark-army-active:active {
  outline-color: hsl(69, 34%, 5%) !important;
}
.ol-dark-army-hover:hover {
  outline-color: hsl(69, 34%, 5%) !important;
}
.ol-dark-army-focus:focus {
  outline-color: hsl(69, 34%, 5%) !important;
}
.ol-seashell {
  outline-color: hsl(25, 100%, 95%) !important;
}
.ol-seashell-active:active {
  outline-color: hsl(25, 100%, 95%) !important;
}
.ol-seashell-hover:hover {
  outline-color: hsl(25, 100%, 95%) !important;
}
.ol-seashell-focus:focus {
  outline-color: hsl(25, 100%, 95%) !important;
}
.ol-light-seashell {
  outline-color: hsl(25, 100%, 98%) !important;
}
.ol-light-seashell-active:active {
  outline-color: hsl(25, 100%, 98%) !important;
}
.ol-light-seashell-hover:hover {
  outline-color: hsl(25, 100%, 98%) !important;
}
.ol-light-seashell-focus:focus {
  outline-color: hsl(25, 100%, 98%) !important;
}
.ol-minor-seashell {
  outline-color: hsl(25, 100%, 97%) !important;
}
.ol-minor-seashell-active:active {
  outline-color: hsl(25, 100%, 97%) !important;
}
.ol-minor-seashell-hover:hover {
  outline-color: hsl(25, 100%, 97%) !important;
}
.ol-minor-seashell-focus:focus {
  outline-color: hsl(25, 100%, 97%) !important;
}
.ol-sat-seashell {
  outline-color: hsl(25, 100%, 80%) !important;
}
.ol-sat-seashell-active:active {
  outline-color: hsl(25, 100%, 80%) !important;
}
.ol-sat-seashell-hover:hover {
  outline-color: hsl(25, 100%, 80%) !important;
}
.ol-sat-seashell-focus:focus {
  outline-color: hsl(25, 100%, 80%) !important;
}
.ol-dark-seashell {
  outline-color: hsl(25, 100%, 70%) !important;
}
.ol-dark-seashell-active:active {
  outline-color: hsl(25, 100%, 70%) !important;
}
.ol-dark-seashell-hover:hover {
  outline-color: hsl(25, 100%, 70%) !important;
}
.ol-dark-seashell-focus:focus {
  outline-color: hsl(25, 100%, 70%) !important;
}
.ol-sand {
  outline-color: hsl(45, 71%, 81%) !important;
}
.ol-sand-active:active {
  outline-color: hsl(45, 71%, 81%) !important;
}
.ol-sand-hover:hover {
  outline-color: hsl(45, 71%, 81%) !important;
}
.ol-sand-focus:focus {
  outline-color: hsl(45, 71%, 81%) !important;
}
.ol-light-sand {
  outline-color: hsl(45, 71%, 96%) !important;
}
.ol-light-sand-active:active {
  outline-color: hsl(45, 71%, 96%) !important;
}
.ol-light-sand-hover:hover {
  outline-color: hsl(45, 71%, 96%) !important;
}
.ol-light-sand-focus:focus {
  outline-color: hsl(45, 71%, 96%) !important;
}
.ol-minor-sand {
  outline-color: hsl(45, 71%, 88%) !important;
}
.ol-minor-sand-active:active {
  outline-color: hsl(45, 71%, 88%) !important;
}
.ol-minor-sand-hover:hover {
  outline-color: hsl(45, 71%, 88%) !important;
}
.ol-minor-sand-focus:focus {
  outline-color: hsl(45, 71%, 88%) !important;
}
.ol-sat-sand {
  outline-color: hsl(45, 71%, 66%) !important;
}
.ol-sat-sand-active:active {
  outline-color: hsl(45, 71%, 66%) !important;
}
.ol-sat-sand-hover:hover {
  outline-color: hsl(45, 71%, 66%) !important;
}
.ol-sat-sand-focus:focus {
  outline-color: hsl(45, 71%, 66%) !important;
}
.ol-dark-sand {
  outline-color: hsl(45, 71%, 56%) !important;
}
.ol-dark-sand-active:active {
  outline-color: hsl(45, 71%, 56%) !important;
}
.ol-dark-sand-hover:hover {
  outline-color: hsl(45, 71%, 56%) !important;
}
.ol-dark-sand-focus:focus {
  outline-color: hsl(45, 71%, 56%) !important;
}

/* ../metroui-lib/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: hsl(0, 0%, 80%) !important;
}
.before-fg-gray::before {
  color: hsl(0, 0%, 80%) !important;
}
.before-bd-gray::before {
  border-color: hsl(0, 0%, 80%) !important;
}
.after-bg-gray::after {
  background: hsl(0, 0%, 80%) !important;
}
.after-fg-gray::after {
  color: hsl(0, 0%, 80%) !important;
}
.after-bd-gray::after {
  border-color: hsl(0, 0%, 80%) !important;
}
.before-bg-gray-blue::before {
  background: hsl(210, 26%, 54%) !important;
}
.before-fg-gray-blue::before {
  color: hsl(210, 26%, 54%) !important;
}
.before-bd-gray-blue::before {
  border-color: hsl(210, 26%, 54%) !important;
}
.after-bg-gray-blue::after {
  background: hsl(210, 26%, 54%) !important;
}
.after-fg-gray-blue::after {
  color: hsl(210, 26%, 54%) !important;
}
.after-bd-gray-blue::after {
  border-color: hsl(210, 26%, 54%) !important;
}
.before-bg-gray-white::before {
  background: hsl(0, 0%, 96%) !important;
}
.before-fg-gray-white::before {
  color: hsl(0, 0%, 96%) !important;
}
.before-bd-gray-white::before {
  border-color: hsl(0, 0%, 96%) !important;
}
.after-bg-gray-white::after {
  background: hsl(0, 0%, 96%) !important;
}
.after-fg-gray-white::after {
  color: hsl(0, 0%, 96%) !important;
}
.after-bd-gray-white::after {
  border-color: hsl(0, 0%, 96%) !important;
}
.before-bg-gray-mouse::before {
  background: hsl(199, 15%, 40%) !important;
}
.before-fg-gray-mouse::before {
  color: hsl(199, 15%, 40%) !important;
}
.before-bd-gray-mouse::before {
  border-color: hsl(199, 15%, 40%) !important;
}
.after-bg-gray-mouse::after {
  background: hsl(199, 15%, 40%) !important;
}
.after-fg-gray-mouse::after {
  color: hsl(199, 15%, 40%) !important;
}
.after-bd-gray-mouse::after {
  border-color: hsl(199, 15%, 40%) !important;
}
.before-bg-lime::before {
  background: hsl(93, 97%, 71%) !important;
}
.before-fg-lime::before {
  color: hsl(93, 97%, 71%) !important;
}
.before-bd-lime::before {
  border-color: hsl(93, 97%, 71%) !important;
}
.after-bg-lime::after {
  background: hsl(93, 97%, 71%) !important;
}
.after-fg-lime::after {
  color: hsl(93, 97%, 71%) !important;
}
.after-bd-lime::after {
  border-color: hsl(93, 97%, 71%) !important;
}
.before-bg-green::before {
  background: hsl(120, 100%, 35%) !important;
}
.before-fg-green::before {
  color: hsl(120, 100%, 35%) !important;
}
.before-bd-green::before {
  border-color: hsl(120, 100%, 35%) !important;
}
.after-bg-green::after {
  background: hsl(120, 100%, 35%) !important;
}
.after-fg-green::after {
  color: hsl(120, 100%, 35%) !important;
}
.after-bd-green::after {
  border-color: hsl(120, 100%, 35%) !important;
}
.before-bg-emerald::before {
  background: hsl(140, 52%, 55%) !important;
}
.before-fg-emerald::before {
  color: hsl(140, 52%, 55%) !important;
}
.before-bd-emerald::before {
  border-color: hsl(140, 52%, 55%) !important;
}
.after-bg-emerald::after {
  background: hsl(140, 52%, 55%) !important;
}
.after-fg-emerald::after {
  color: hsl(140, 52%, 55%) !important;
}
.after-bd-emerald::after {
  border-color: hsl(140, 52%, 55%) !important;
}
.before-bg-blue::before {
  background: hsl(225, 100%, 68%) !important;
}
.before-fg-blue::before {
  color: hsl(225, 100%, 68%) !important;
}
.before-bd-blue::before {
  border-color: hsl(225, 100%, 68%) !important;
}
.after-bg-blue::after {
  background: hsl(225, 100%, 68%) !important;
}
.after-fg-blue::after {
  color: hsl(225, 100%, 68%) !important;
}
.after-bd-blue::after {
  border-color: hsl(225, 100%, 68%) !important;
}
.before-bg-teal::before {
  background: hsl(180, 77%, 44%) !important;
}
.before-fg-teal::before {
  color: hsl(180, 77%, 44%) !important;
}
.before-bd-teal::before {
  border-color: hsl(180, 77%, 44%) !important;
}
.after-bg-teal::after {
  background: hsl(180, 77%, 44%) !important;
}
.after-fg-teal::after {
  color: hsl(180, 77%, 44%) !important;
}
.after-bd-teal::after {
  border-color: hsl(180, 77%, 44%) !important;
}
.before-bg-cyan::before {
  background: hsl(221, 100%, 79%) !important;
}
.before-fg-cyan::before {
  color: hsl(221, 100%, 79%) !important;
}
.before-bd-cyan::before {
  border-color: hsl(221, 100%, 79%) !important;
}
.after-bg-cyan::after {
  background: hsl(221, 100%, 79%) !important;
}
.after-fg-cyan::after {
  color: hsl(221, 100%, 79%) !important;
}
.after-bd-cyan::after {
  border-color: hsl(221, 100%, 79%) !important;
}
.before-bg-cobalt::before {
  background: hsl(215, 100%, 34%) !important;
}
.before-fg-cobalt::before {
  color: hsl(215, 100%, 34%) !important;
}
.before-bd-cobalt::before {
  border-color: hsl(215, 100%, 34%) !important;
}
.after-bg-cobalt::after {
  background: hsl(215, 100%, 34%) !important;
}
.after-fg-cobalt::after {
  color: hsl(215, 100%, 34%) !important;
}
.after-bd-cobalt::after {
  border-color: hsl(215, 100%, 34%) !important;
}
.before-bg-indigo::before {
  background: hsl(276, 100%, 33%) !important;
}
.before-fg-indigo::before {
  color: hsl(276, 100%, 33%) !important;
}
.before-bd-indigo::before {
  border-color: hsl(276, 100%, 33%) !important;
}
.after-bg-indigo::after {
  background: hsl(276, 100%, 33%) !important;
}
.after-fg-indigo::after {
  color: hsl(276, 100%, 33%) !important;
}
.after-bd-indigo::after {
  border-color: hsl(276, 100%, 33%) !important;
}
.before-bg-almost::before {
  background: hsl(259, 84%, 55%) !important;
}
.before-fg-almost::before {
  color: hsl(259, 84%, 55%) !important;
}
.before-bd-almost::before {
  border-color: hsl(259, 84%, 55%) !important;
}
.after-bg-almost::after {
  background: hsl(259, 84%, 55%) !important;
}
.after-fg-almost::after {
  color: hsl(259, 84%, 55%) !important;
}
.after-bd-almost::after {
  border-color: hsl(259, 84%, 55%) !important;
}
.before-bg-violet::before {
  background: hsl(300, 76%, 72%) !important;
}
.before-fg-violet::before {
  color: hsl(300, 76%, 72%) !important;
}
.before-bd-violet::before {
  border-color: hsl(300, 76%, 72%) !important;
}
.after-bg-violet::after {
  background: hsl(300, 76%, 72%) !important;
}
.after-fg-violet::after {
  color: hsl(300, 76%, 72%) !important;
}
.after-bd-violet::after {
  border-color: hsl(300, 76%, 72%) !important;
}
.before-bg-pink::before {
  background: hsl(350, 100%, 88%) !important;
}
.before-fg-pink::before {
  color: hsl(350, 100%, 88%) !important;
}
.before-bd-pink::before {
  border-color: hsl(350, 100%, 88%) !important;
}
.after-bg-pink::after {
  background: hsl(350, 100%, 88%) !important;
}
.after-fg-pink::after {
  color: hsl(350, 100%, 88%) !important;
}
.after-bd-pink::after {
  border-color: hsl(350, 100%, 88%) !important;
}
.before-bg-magenta::before {
  background: hsl(300, 100%, 50%) !important;
}
.before-fg-magenta::before {
  color: hsl(300, 100%, 50%) !important;
}
.before-bd-magenta::before {
  border-color: hsl(300, 100%, 50%) !important;
}
.after-bg-magenta::after {
  background: hsl(300, 100%, 50%) !important;
}
.after-fg-magenta::after {
  color: hsl(300, 100%, 50%) !important;
}
.after-bd-magenta::after {
  border-color: hsl(300, 100%, 50%) !important;
}
.before-bg-crimson::before {
  background: hsl(348, 88%, 46%) !important;
}
.before-fg-crimson::before {
  color: hsl(348, 88%, 46%) !important;
}
.before-bd-crimson::before {
  border-color: hsl(348, 88%, 46%) !important;
}
.after-bg-crimson::after {
  background: hsl(348, 88%, 46%) !important;
}
.after-fg-crimson::after {
  color: hsl(348, 88%, 46%) !important;
}
.after-bd-crimson::after {
  border-color: hsl(348, 88%, 46%) !important;
}
.before-bg-red::before {
  background: hsl(0, 100%, 50%) !important;
}
.before-fg-red::before {
  color: hsl(0, 100%, 50%) !important;
}
.before-bd-red::before {
  border-color: hsl(0, 100%, 50%) !important;
}
.after-bg-red::after {
  background: hsl(0, 100%, 50%) !important;
}
.after-fg-red::after {
  color: hsl(0, 100%, 50%) !important;
}
.after-bd-red::after {
  border-color: hsl(0, 100%, 50%) !important;
}
.before-bg-clown::before {
  background: hsl(3, 100%, 70%) !important;
}
.before-fg-clown::before {
  color: hsl(3, 100%, 70%) !important;
}
.before-bd-clown::before {
  border-color: hsl(3, 100%, 70%) !important;
}
.after-bg-clown::after {
  background: hsl(3, 100%, 70%) !important;
}
.after-fg-clown::after {
  color: hsl(3, 100%, 70%) !important;
}
.after-bd-clown::after {
  border-color: hsl(3, 100%, 70%) !important;
}
.before-bg-orange::before {
  background: hsl(39, 100%, 50%) !important;
}
.before-fg-orange::before {
  color: hsl(39, 100%, 50%) !important;
}
.before-bd-orange::before {
  border-color: hsl(39, 100%, 50%) !important;
}
.after-bg-orange::after {
  background: hsl(39, 100%, 50%) !important;
}
.after-fg-orange::after {
  color: hsl(39, 100%, 50%) !important;
}
.after-bd-orange::after {
  border-color: hsl(39, 100%, 50%) !important;
}
.before-bg-amber::before {
  background: hsl(45, 100%, 58%) !important;
}
.before-fg-amber::before {
  color: hsl(45, 100%, 58%) !important;
}
.before-bd-amber::before {
  border-color: hsl(45, 100%, 58%) !important;
}
.after-bg-amber::after {
  background: hsl(45, 100%, 58%) !important;
}
.after-fg-amber::after {
  color: hsl(45, 100%, 58%) !important;
}
.after-bd-amber::after {
  border-color: hsl(45, 100%, 58%) !important;
}
.before-bg-yellow::before {
  background: hsl(52, 100%, 68%) !important;
}
.before-fg-yellow::before {
  color: hsl(52, 100%, 68%) !important;
}
.before-bd-yellow::before {
  border-color: hsl(52, 100%, 68%) !important;
}
.after-bg-yellow::after {
  background: hsl(52, 100%, 68%) !important;
}
.after-fg-yellow::after {
  color: hsl(52, 100%, 68%) !important;
}
.after-bd-yellow::after {
  border-color: hsl(52, 100%, 68%) !important;
}
.before-bg-brown::before {
  background: hsl(25, 57%, 51%) !important;
}
.before-fg-brown::before {
  color: hsl(25, 57%, 51%) !important;
}
.before-bd-brown::before {
  border-color: hsl(25, 57%, 51%) !important;
}
.after-bg-brown::after {
  background: hsl(25, 57%, 51%) !important;
}
.after-fg-brown::after {
  color: hsl(25, 57%, 51%) !important;
}
.after-bd-brown::after {
  border-color: hsl(25, 57%, 51%) !important;
}
.before-bg-olive::before {
  background: hsl(60, 100%, 32%) !important;
}
.before-fg-olive::before {
  color: hsl(60, 100%, 32%) !important;
}
.before-bd-olive::before {
  border-color: hsl(60, 100%, 32%) !important;
}
.after-bg-olive::after {
  background: hsl(60, 100%, 32%) !important;
}
.after-fg-olive::after {
  color: hsl(60, 100%, 32%) !important;
}
.after-bd-olive::after {
  border-color: hsl(60, 100%, 32%) !important;
}
.before-bg-steel::before {
  background: hsl(209, 19%, 57%) !important;
}
.before-fg-steel::before {
  color: hsl(209, 19%, 57%) !important;
}
.before-bd-steel::before {
  border-color: hsl(209, 19%, 57%) !important;
}
.after-bg-steel::after {
  background: hsl(209, 19%, 57%) !important;
}
.after-fg-steel::after {
  color: hsl(209, 19%, 57%) !important;
}
.after-bd-steel::after {
  border-color: hsl(209, 19%, 57%) !important;
}
.before-bg-mauve::before {
  background: hsl(277, 100%, 84%) !important;
}
.before-fg-mauve::before {
  color: hsl(277, 100%, 84%) !important;
}
.before-bd-mauve::before {
  border-color: hsl(277, 100%, 84%) !important;
}
.after-bg-mauve::after {
  background: hsl(277, 100%, 84%) !important;
}
.after-fg-mauve::after {
  color: hsl(277, 100%, 84%) !important;
}
.after-bd-mauve::after {
  border-color: hsl(277, 100%, 84%) !important;
}
.before-bg-taupe::before {
  background: hsl(29, 19%, 50%) !important;
}
.before-fg-taupe::before {
  color: hsl(29, 19%, 50%) !important;
}
.before-bd-taupe::before {
  border-color: hsl(29, 19%, 50%) !important;
}
.after-bg-taupe::after {
  background: hsl(29, 19%, 50%) !important;
}
.after-fg-taupe::after {
  color: hsl(29, 19%, 50%) !important;
}
.after-bd-taupe::after {
  border-color: hsl(29, 19%, 50%) !important;
}
.before-bg-champagne::before {
  background: hsl(37, 74%, 88%) !important;
}
.before-fg-champagne::before {
  color: hsl(37, 74%, 88%) !important;
}
.before-bd-champagne::before {
  border-color: hsl(37, 74%, 88%) !important;
}
.after-bg-champagne::after {
  background: hsl(37, 74%, 88%) !important;
}
.after-fg-champagne::after {
  color: hsl(37, 74%, 88%) !important;
}
.after-bd-champagne::after {
  border-color: hsl(37, 74%, 88%) !important;
}
.before-bg-khaki::before {
  background: hsl(47, 47%, 69%) !important;
}
.before-fg-khaki::before {
  color: hsl(47, 47%, 69%) !important;
}
.before-bd-khaki::before {
  border-color: hsl(47, 47%, 69%) !important;
}
.after-bg-khaki::after {
  background: hsl(47, 47%, 69%) !important;
}
.after-fg-khaki::after {
  color: hsl(47, 47%, 69%) !important;
}
.after-bd-khaki::after {
  border-color: hsl(47, 47%, 69%) !important;
}
.before-bg-charcoal::before {
  background: hsl(0, 0%, 60%) !important;
}
.before-fg-charcoal::before {
  color: hsl(0, 0%, 60%) !important;
}
.before-bd-charcoal::before {
  border-color: hsl(0, 0%, 60%) !important;
}
.after-bg-charcoal::after {
  background: hsl(0, 0%, 60%) !important;
}
.after-fg-charcoal::after {
  color: hsl(0, 0%, 60%) !important;
}
.after-bd-charcoal::after {
  border-color: hsl(0, 0%, 60%) !important;
}
.before-bg-bronze::before {
  background: hsl(29, 75%, 57%) !important;
}
.before-fg-bronze::before {
  color: hsl(29, 75%, 57%) !important;
}
.before-bd-bronze::before {
  border-color: hsl(29, 75%, 57%) !important;
}
.after-bg-bronze::after {
  background: hsl(29, 75%, 57%) !important;
}
.after-fg-bronze::after {
  color: hsl(29, 75%, 57%) !important;
}
.after-bd-bronze::after {
  border-color: hsl(29, 75%, 57%) !important;
}
.before-bg-windstorm::before {
  background: hsl(216, 53%, 66%) !important;
}
.before-fg-windstorm::before {
  color: hsl(216, 53%, 66%) !important;
}
.before-bd-windstorm::before {
  border-color: hsl(216, 53%, 66%) !important;
}
.after-bg-windstorm::after {
  background: hsl(216, 53%, 66%) !important;
}
.after-fg-windstorm::after {
  color: hsl(216, 53%, 66%) !important;
}
.after-bd-windstorm::after {
  border-color: hsl(216, 53%, 66%) !important;
}
.before-bg-nude::before {
  background: hsl(29, 79%, 85%) !important;
}
.before-fg-nude::before {
  color: hsl(29, 79%, 85%) !important;
}
.before-bd-nude::before {
  border-color: hsl(29, 79%, 85%) !important;
}
.after-bg-nude::after {
  background: hsl(29, 79%, 85%) !important;
}
.after-fg-nude::after {
  color: hsl(29, 79%, 85%) !important;
}
.after-bd-nude::after {
  border-color: hsl(29, 79%, 85%) !important;
}
.before-bg-terracotta::before {
  background: hsl(10, 76%, 55%) !important;
}
.before-fg-terracotta::before {
  color: hsl(10, 76%, 55%) !important;
}
.before-bd-terracotta::before {
  border-color: hsl(10, 76%, 55%) !important;
}
.after-bg-terracotta::after {
  background: hsl(10, 76%, 55%) !important;
}
.after-fg-terracotta::after {
  color: hsl(10, 76%, 55%) !important;
}
.after-bd-terracotta::after {
  border-color: hsl(10, 76%, 55%) !important;
}
.before-bg-coral::before {
  background: hsl(16, 100%, 67%) !important;
}
.before-fg-coral::before {
  color: hsl(16, 100%, 67%) !important;
}
.before-bd-coral::before {
  border-color: hsl(16, 100%, 67%) !important;
}
.after-bg-coral::after {
  background: hsl(16, 100%, 67%) !important;
}
.after-fg-coral::after {
  color: hsl(16, 100%, 67%) !important;
}
.after-bd-coral::after {
  border-color: hsl(16, 100%, 67%) !important;
}
.before-bg-army::before {
  background: hsl(69, 34%, 30%) !important;
}
.before-fg-army::before {
  color: hsl(69, 34%, 30%) !important;
}
.before-bd-army::before {
  border-color: hsl(69, 34%, 30%) !important;
}
.after-bg-army::after {
  background: hsl(69, 34%, 30%) !important;
}
.after-fg-army::after {
  color: hsl(69, 34%, 30%) !important;
}
.after-bd-army::after {
  border-color: hsl(69, 34%, 30%) !important;
}
.before-bg-seashell::before {
  background: hsl(25, 100%, 95%) !important;
}
.before-fg-seashell::before {
  color: hsl(25, 100%, 95%) !important;
}
.before-bd-seashell::before {
  border-color: hsl(25, 100%, 95%) !important;
}
.after-bg-seashell::after {
  background: hsl(25, 100%, 95%) !important;
}
.after-fg-seashell::after {
  color: hsl(25, 100%, 95%) !important;
}
.after-bd-seashell::after {
  border-color: hsl(25, 100%, 95%) !important;
}
.before-bg-sand::before {
  background: hsl(45, 71%, 81%) !important;
}
.before-fg-sand::before {
  color: hsl(45, 71%, 81%) !important;
}
.before-bd-sand::before {
  border-color: hsl(45, 71%, 81%) !important;
}
.after-bg-sand::after {
  background: hsl(45, 71%, 81%) !important;
}
.after-fg-sand::after {
  color: hsl(45, 71%, 81%) !important;
}
.after-bd-sand::after {
  border-color: hsl(45, 71%, 81%) !important;
}
.before-bg-light-gray::before {
  background: hsl(0, 0%, 95%) !important;
}
.before-fg-light-gray::before {
  color: hsl(0, 0%, 95%) !important;
}
.before-bd-light-gray::before {
  border-color: hsl(0, 0%, 95%) !important;
}
.after-bg-light-gray::after {
  background: hsl(0, 0%, 95%) !important;
}
.after-fg-light-gray::after {
  color: hsl(0, 0%, 95%) !important;
}
.after-bd-light-gray::after {
  border-color: hsl(0, 0%, 95%) !important;
}
.before-bg-minor-gray::before {
  background: hsl(0, 0%, 87%) !important;
}
.before-fg-minor-gray::before {
  color: hsl(0, 0%, 87%) !important;
}
.before-bd-minor-gray::before {
  border-color: hsl(0, 0%, 87%) !important;
}
.after-bg-minor-gray::after {
  background: hsl(0, 0%, 87%) !important;
}
.after-fg-minor-gray::after {
  color: hsl(0, 0%, 87%) !important;
}
.after-bd-minor-gray::after {
  border-color: hsl(0, 0%, 87%) !important;
}
.before-bg-sat-gray::before {
  background: hsl(0, 0%, 65%) !important;
}
.before-fg-sat-gray::before {
  color: hsl(0, 0%, 65%) !important;
}
.before-bd-sat-gray::before {
  border-color: hsl(0, 0%, 65%) !important;
}
.after-bg-sat-gray::after {
  background: hsl(0, 0%, 65%) !important;
}
.after-fg-sat-gray::after {
  color: hsl(0, 0%, 65%) !important;
}
.after-bd-sat-gray::after {
  border-color: hsl(0, 0%, 65%) !important;
}
.before-bg-dark-gray::before {
  background: hsl(0, 0%, 55%) !important;
}
.before-fg-dark-gray::before {
  color: hsl(0, 0%, 55%) !important;
}
.before-bd-dark-gray::before {
  border-color: hsl(0, 0%, 55%) !important;
}
.after-bg-dark-gray::after {
  background: hsl(0, 0%, 55%) !important;
}
.after-fg-dark-gray::after {
  color: hsl(0, 0%, 55%) !important;
}
.after-bd-dark-gray::after {
  border-color: hsl(0, 0%, 55%) !important;
}
.before-bg-light-gray-blue::before {
  background: hsl(210, 26%, 84%) !important;
}
.before-fg-light-gray-blue::before {
  color: hsl(210, 26%, 84%) !important;
}
.before-bd-light-gray-blue::before {
  border-color: hsl(210, 26%, 84%) !important;
}
.after-bg-light-gray-blue::after {
  background: hsl(210, 26%, 84%) !important;
}
.after-fg-light-gray-blue::after {
  color: hsl(210, 26%, 84%) !important;
}
.after-bd-light-gray-blue::after {
  border-color: hsl(210, 26%, 84%) !important;
}
.before-bg-minor-gray-blue::before {
  background: hsl(210, 26%, 69%) !important;
}
.before-fg-minor-gray-blue::before {
  color: hsl(210, 26%, 69%) !important;
}
.before-bd-minor-gray-blue::before {
  border-color: hsl(210, 26%, 69%) !important;
}
.after-bg-minor-gray-blue::after {
  background: hsl(210, 26%, 69%) !important;
}
.after-fg-minor-gray-blue::after {
  color: hsl(210, 26%, 69%) !important;
}
.after-bd-minor-gray-blue::after {
  border-color: hsl(210, 26%, 69%) !important;
}
.before-bg-sat-gray-blue::before {
  background: hsl(210, 26%, 39%) !important;
}
.before-fg-sat-gray-blue::before {
  color: hsl(210, 26%, 39%) !important;
}
.before-bd-sat-gray-blue::before {
  border-color: hsl(210, 26%, 39%) !important;
}
.after-bg-sat-gray-blue::after {
  background: hsl(210, 26%, 39%) !important;
}
.after-fg-sat-gray-blue::after {
  color: hsl(210, 26%, 39%) !important;
}
.after-bd-sat-gray-blue::after {
  border-color: hsl(210, 26%, 39%) !important;
}
.before-bg-dark-gray-blue::before {
  background: hsl(210, 26%, 29%) !important;
}
.before-fg-dark-gray-blue::before {
  color: hsl(210, 26%, 29%) !important;
}
.before-bd-dark-gray-blue::before {
  border-color: hsl(210, 26%, 29%) !important;
}
.after-bg-dark-gray-blue::after {
  background: hsl(210, 26%, 29%) !important;
}
.after-fg-dark-gray-blue::after {
  color: hsl(210, 26%, 29%) !important;
}
.after-bd-dark-gray-blue::after {
  border-color: hsl(210, 26%, 29%) !important;
}
.before-bg-light-gray-mouse::before {
  background: hsl(199, 15%, 70%) !important;
}
.before-fg-light-gray-mouse::before {
  color: hsl(199, 15%, 70%) !important;
}
.before-bd-light-gray-mouse::before {
  border-color: hsl(199, 15%, 70%) !important;
}
.after-bg-light-gray-mouse::after {
  background: hsl(199, 15%, 70%) !important;
}
.after-fg-light-gray-mouse::after {
  color: hsl(199, 15%, 70%) !important;
}
.after-bd-light-gray-mouse::after {
  border-color: hsl(199, 15%, 70%) !important;
}
.before-bg-minor-gray-mouse::before {
  background: hsl(199, 15%, 55%) !important;
}
.before-fg-minor-gray-mouse::before {
  color: hsl(199, 15%, 55%) !important;
}
.before-bd-minor-gray-mouse::before {
  border-color: hsl(199, 15%, 55%) !important;
}
.after-bg-minor-gray-mouse::after {
  background: hsl(199, 15%, 55%) !important;
}
.after-fg-minor-gray-mouse::after {
  color: hsl(199, 15%, 55%) !important;
}
.after-bd-minor-gray-mouse::after {
  border-color: hsl(199, 15%, 55%) !important;
}
.before-bg-sat-gray-mouse::before {
  background: hsl(199, 15%, 25%) !important;
}
.before-fg-sat-gray-mouse::before {
  color: hsl(199, 15%, 25%) !important;
}
.before-bd-sat-gray-mouse::before {
  border-color: hsl(199, 15%, 25%) !important;
}
.after-bg-sat-gray-mouse::after {
  background: hsl(199, 15%, 25%) !important;
}
.after-fg-sat-gray-mouse::after {
  color: hsl(199, 15%, 25%) !important;
}
.after-bd-sat-gray-mouse::after {
  border-color: hsl(199, 15%, 25%) !important;
}
.before-bg-dark-gray-mouse::before {
  background: hsl(199, 15%, 15%) !important;
}
.before-fg-dark-gray-mouse::before {
  color: hsl(199, 15%, 15%) !important;
}
.before-bd-dark-gray-mouse::before {
  border-color: hsl(199, 15%, 15%) !important;
}
.after-bg-dark-gray-mouse::after {
  background: hsl(199, 15%, 15%) !important;
}
.after-fg-dark-gray-mouse::after {
  color: hsl(199, 15%, 15%) !important;
}
.after-bd-dark-gray-mouse::after {
  border-color: hsl(199, 15%, 15%) !important;
}
.before-bg-light-lime::before {
  background: hsl(93, 97%, 91%) !important;
}
.before-fg-light-lime::before {
  color: hsl(93, 97%, 91%) !important;
}
.before-bd-light-lime::before {
  border-color: hsl(93, 97%, 91%) !important;
}
.after-bg-light-lime::after {
  background: hsl(93, 97%, 91%) !important;
}
.after-fg-light-lime::after {
  color: hsl(93, 97%, 91%) !important;
}
.after-bd-light-lime::after {
  border-color: hsl(93, 97%, 91%) !important;
}
.before-bg-minor-lime::before {
  background: hsl(93, 97%, 81%) !important;
}
.before-fg-minor-lime::before {
  color: hsl(93, 97%, 81%) !important;
}
.before-bd-minor-lime::before {
  border-color: hsl(93, 97%, 81%) !important;
}
.after-bg-minor-lime::after {
  background: hsl(93, 97%, 81%) !important;
}
.after-fg-minor-lime::after {
  color: hsl(93, 97%, 81%) !important;
}
.after-bd-minor-lime::after {
  border-color: hsl(93, 97%, 81%) !important;
}
.before-bg-sat-lime::before {
  background: hsl(93, 97%, 56%) !important;
}
.before-fg-sat-lime::before {
  color: hsl(93, 97%, 56%) !important;
}
.before-bd-sat-lime::before {
  border-color: hsl(93, 97%, 56%) !important;
}
.after-bg-sat-lime::after {
  background: hsl(93, 97%, 56%) !important;
}
.after-fg-sat-lime::after {
  color: hsl(93, 97%, 56%) !important;
}
.after-bd-sat-lime::after {
  border-color: hsl(93, 97%, 56%) !important;
}
.before-bg-dark-lime::before {
  background: hsl(93, 97%, 46%) !important;
}
.before-fg-dark-lime::before {
  color: hsl(93, 97%, 46%) !important;
}
.before-bd-dark-lime::before {
  border-color: hsl(93, 97%, 46%) !important;
}
.after-bg-dark-lime::after {
  background: hsl(93, 97%, 46%) !important;
}
.after-fg-dark-lime::after {
  color: hsl(93, 97%, 46%) !important;
}
.after-bd-dark-lime::after {
  border-color: hsl(93, 97%, 46%) !important;
}
.before-bg-light-green::before {
  background: hsl(120, 100%, 80%) !important;
}
.before-fg-light-green::before {
  color: hsl(120, 100%, 80%) !important;
}
.before-bd-light-green::before {
  border-color: hsl(120, 100%, 80%) !important;
}
.after-bg-light-green::after {
  background: hsl(120, 100%, 80%) !important;
}
.after-fg-light-green::after {
  color: hsl(120, 100%, 80%) !important;
}
.after-bd-light-green::after {
  border-color: hsl(120, 100%, 80%) !important;
}
.before-bg-minor-green::before {
  background: hsl(120, 100%, 45%) !important;
}
.before-fg-minor-green::before {
  color: hsl(120, 100%, 45%) !important;
}
.before-bd-minor-green::before {
  border-color: hsl(120, 100%, 45%) !important;
}
.after-bg-minor-green::after {
  background: hsl(120, 100%, 45%) !important;
}
.after-fg-minor-green::after {
  color: hsl(120, 100%, 45%) !important;
}
.after-bd-minor-green::after {
  border-color: hsl(120, 100%, 45%) !important;
}
.before-bg-sat-green::before {
  background: hsl(120, 100%, 20%) !important;
}
.before-fg-sat-green::before {
  color: hsl(120, 100%, 20%) !important;
}
.before-bd-sat-green::before {
  border-color: hsl(120, 100%, 20%) !important;
}
.after-bg-sat-green::after {
  background: hsl(120, 100%, 20%) !important;
}
.after-fg-sat-green::after {
  color: hsl(120, 100%, 20%) !important;
}
.after-bd-sat-green::after {
  border-color: hsl(120, 100%, 20%) !important;
}
.before-bg-dark-green::before {
  background: hsl(120, 100%, 10%) !important;
}
.before-fg-dark-green::before {
  color: hsl(120, 100%, 10%) !important;
}
.before-bd-dark-green::before {
  border-color: hsl(120, 100%, 10%) !important;
}
.after-bg-dark-green::after {
  background: hsl(120, 100%, 10%) !important;
}
.after-fg-dark-green::after {
  color: hsl(120, 100%, 10%) !important;
}
.after-bd-dark-green::after {
  border-color: hsl(120, 100%, 10%) !important;
}
.before-bg-light-emerald::before {
  background: hsl(140, 52%, 85%) !important;
}
.before-fg-light-emerald::before {
  color: hsl(140, 52%, 85%) !important;
}
.before-bd-light-emerald::before {
  border-color: hsl(140, 52%, 85%) !important;
}
.after-bg-light-emerald::after {
  background: hsl(140, 52%, 85%) !important;
}
.after-fg-light-emerald::after {
  color: hsl(140, 52%, 85%) !important;
}
.after-bd-light-emerald::after {
  border-color: hsl(140, 52%, 85%) !important;
}
.before-bg-minor-emerald::before {
  background: hsl(140, 52%, 65%) !important;
}
.before-fg-minor-emerald::before {
  color: hsl(140, 52%, 65%) !important;
}
.before-bd-minor-emerald::before {
  border-color: hsl(140, 52%, 65%) !important;
}
.after-bg-minor-emerald::after {
  background: hsl(140, 52%, 65%) !important;
}
.after-fg-minor-emerald::after {
  color: hsl(140, 52%, 65%) !important;
}
.after-bd-minor-emerald::after {
  border-color: hsl(140, 52%, 65%) !important;
}
.before-bg-sat-emerald::before {
  background: hsl(140, 52%, 40%) !important;
}
.before-fg-sat-emerald::before {
  color: hsl(140, 52%, 40%) !important;
}
.before-bd-sat-emerald::before {
  border-color: hsl(140, 52%, 40%) !important;
}
.after-bg-sat-emerald::after {
  background: hsl(140, 52%, 40%) !important;
}
.after-fg-sat-emerald::after {
  color: hsl(140, 52%, 40%) !important;
}
.after-bd-sat-emerald::after {
  border-color: hsl(140, 52%, 40%) !important;
}
.before-bg-dark-emerald::before {
  background: hsl(140, 52%, 30%) !important;
}
.before-fg-dark-emerald::before {
  color: hsl(140, 52%, 30%) !important;
}
.before-bd-dark-emerald::before {
  border-color: hsl(140, 52%, 30%) !important;
}
.after-bg-dark-emerald::after {
  background: hsl(140, 52%, 30%) !important;
}
.after-fg-dark-emerald::after {
  color: hsl(140, 52%, 30%) !important;
}
.after-bd-dark-emerald::after {
  border-color: hsl(140, 52%, 30%) !important;
}
.before-bg-light-blue::before {
  background: hsl(225, 100%, 93%) !important;
}
.before-fg-light-blue::before {
  color: hsl(225, 100%, 93%) !important;
}
.before-bd-light-blue::before {
  border-color: hsl(225, 100%, 93%) !important;
}
.after-bg-light-blue::after {
  background: hsl(225, 100%, 93%) !important;
}
.after-fg-light-blue::after {
  color: hsl(225, 100%, 93%) !important;
}
.after-bd-light-blue::after {
  border-color: hsl(225, 100%, 93%) !important;
}
.before-bg-minor-blue::before {
  background: hsl(225, 100%, 78%) !important;
}
.before-fg-minor-blue::before {
  color: hsl(225, 100%, 78%) !important;
}
.before-bd-minor-blue::before {
  border-color: hsl(225, 100%, 78%) !important;
}
.after-bg-minor-blue::after {
  background: hsl(225, 100%, 78%) !important;
}
.after-fg-minor-blue::after {
  color: hsl(225, 100%, 78%) !important;
}
.after-bd-minor-blue::after {
  border-color: hsl(225, 100%, 78%) !important;
}
.before-bg-sat-blue::before {
  background: hsl(225, 100%, 53%) !important;
}
.before-fg-sat-blue::before {
  color: hsl(225, 100%, 53%) !important;
}
.before-bd-sat-blue::before {
  border-color: hsl(225, 100%, 53%) !important;
}
.after-bg-sat-blue::after {
  background: hsl(225, 100%, 53%) !important;
}
.after-fg-sat-blue::after {
  color: hsl(225, 100%, 53%) !important;
}
.after-bd-sat-blue::after {
  border-color: hsl(225, 100%, 53%) !important;
}
.before-bg-dark-blue::before {
  background: hsl(225, 100%, 43%) !important;
}
.before-fg-dark-blue::before {
  color: hsl(225, 100%, 43%) !important;
}
.before-bd-dark-blue::before {
  border-color: hsl(225, 100%, 43%) !important;
}
.after-bg-dark-blue::after {
  background: hsl(225, 100%, 43%) !important;
}
.after-fg-dark-blue::after {
  color: hsl(225, 100%, 43%) !important;
}
.after-bd-dark-blue::after {
  border-color: hsl(225, 100%, 43%) !important;
}
.before-bg-light-teal::before {
  background: hsl(180, 77%, 79%) !important;
}
.before-fg-light-teal::before {
  color: hsl(180, 77%, 79%) !important;
}
.before-bd-light-teal::before {
  border-color: hsl(180, 77%, 79%) !important;
}
.after-bg-light-teal::after {
  background: hsl(180, 77%, 79%) !important;
}
.after-fg-light-teal::after {
  color: hsl(180, 77%, 79%) !important;
}
.after-bd-light-teal::after {
  border-color: hsl(180, 77%, 79%) !important;
}
.before-bg-minor-teal::before {
  background: hsl(180, 77%, 54%) !important;
}
.before-fg-minor-teal::before {
  color: hsl(180, 77%, 54%) !important;
}
.before-bd-minor-teal::before {
  border-color: hsl(180, 77%, 54%) !important;
}
.after-bg-minor-teal::after {
  background: hsl(180, 77%, 54%) !important;
}
.after-fg-minor-teal::after {
  color: hsl(180, 77%, 54%) !important;
}
.after-bd-minor-teal::after {
  border-color: hsl(180, 77%, 54%) !important;
}
.before-bg-sat-teal::before {
  background: hsl(180, 77%, 29%) !important;
}
.before-fg-sat-teal::before {
  color: hsl(180, 77%, 29%) !important;
}
.before-bd-sat-teal::before {
  border-color: hsl(180, 77%, 29%) !important;
}
.after-bg-sat-teal::after {
  background: hsl(180, 77%, 29%) !important;
}
.after-fg-sat-teal::after {
  color: hsl(180, 77%, 29%) !important;
}
.after-bd-sat-teal::after {
  border-color: hsl(180, 77%, 29%) !important;
}
.before-bg-dark-teal::before {
  background: hsl(180, 77%, 19%) !important;
}
.before-fg-dark-teal::before {
  color: hsl(180, 77%, 19%) !important;
}
.before-bd-dark-teal::before {
  border-color: hsl(180, 77%, 19%) !important;
}
.after-bg-dark-teal::after {
  background: hsl(180, 77%, 19%) !important;
}
.after-fg-dark-teal::after {
  color: hsl(180, 77%, 19%) !important;
}
.after-bd-dark-teal::after {
  border-color: hsl(180, 77%, 19%) !important;
}
.before-bg-light-cyan::before {
  background: hsl(221, 100%, 94%) !important;
}
.before-fg-light-cyan::before {
  color: hsl(221, 100%, 94%) !important;
}
.before-bd-light-cyan::before {
  border-color: hsl(221, 100%, 94%) !important;
}
.after-bg-light-cyan::after {
  background: hsl(221, 100%, 94%) !important;
}
.after-fg-light-cyan::after {
  color: hsl(221, 100%, 94%) !important;
}
.after-bd-light-cyan::after {
  border-color: hsl(221, 100%, 94%) !important;
}
.before-bg-minor-cyan::before {
  background: hsl(221, 100%, 89%) !important;
}
.before-fg-minor-cyan::before {
  color: hsl(221, 100%, 89%) !important;
}
.before-bd-minor-cyan::before {
  border-color: hsl(221, 100%, 89%) !important;
}
.after-bg-minor-cyan::after {
  background: hsl(221, 100%, 89%) !important;
}
.after-fg-minor-cyan::after {
  color: hsl(221, 100%, 89%) !important;
}
.after-bd-minor-cyan::after {
  border-color: hsl(221, 100%, 89%) !important;
}
.before-bg-sat-cyan::before {
  background: hsl(221, 100%, 64%) !important;
}
.before-fg-sat-cyan::before {
  color: hsl(221, 100%, 64%) !important;
}
.before-bd-sat-cyan::before {
  border-color: hsl(221, 100%, 64%) !important;
}
.after-bg-sat-cyan::after {
  background: hsl(221, 100%, 64%) !important;
}
.after-fg-sat-cyan::after {
  color: hsl(221, 100%, 64%) !important;
}
.after-bd-sat-cyan::after {
  border-color: hsl(221, 100%, 64%) !important;
}
.before-bg-dark-cyan::before {
  background: hsl(221, 100%, 54%) !important;
}
.before-fg-dark-cyan::before {
  color: hsl(221, 100%, 54%) !important;
}
.before-bd-dark-cyan::before {
  border-color: hsl(221, 100%, 54%) !important;
}
.after-bg-dark-cyan::after {
  background: hsl(221, 100%, 54%) !important;
}
.after-fg-dark-cyan::after {
  color: hsl(221, 100%, 54%) !important;
}
.after-bd-dark-cyan::after {
  border-color: hsl(221, 100%, 54%) !important;
}
.before-bg-light-cobalt::before {
  background: hsl(215, 100%, 79%) !important;
}
.before-fg-light-cobalt::before {
  color: hsl(215, 100%, 79%) !important;
}
.before-bd-light-cobalt::before {
  border-color: hsl(215, 100%, 79%) !important;
}
.after-bg-light-cobalt::after {
  background: hsl(215, 100%, 79%) !important;
}
.after-fg-light-cobalt::after {
  color: hsl(215, 100%, 79%) !important;
}
.after-bd-light-cobalt::after {
  border-color: hsl(215, 100%, 79%) !important;
}
.before-bg-minor-cobalt::before {
  background: hsl(215, 100%, 49%) !important;
}
.before-fg-minor-cobalt::before {
  color: hsl(215, 100%, 49%) !important;
}
.before-bd-minor-cobalt::before {
  border-color: hsl(215, 100%, 49%) !important;
}
.after-bg-minor-cobalt::after {
  background: hsl(215, 100%, 49%) !important;
}
.after-fg-minor-cobalt::after {
  color: hsl(215, 100%, 49%) !important;
}
.after-bd-minor-cobalt::after {
  border-color: hsl(215, 100%, 49%) !important;
}
.before-bg-sat-cobalt::before {
  background: hsl(215, 100%, 19%) !important;
}
.before-fg-sat-cobalt::before {
  color: hsl(215, 100%, 19%) !important;
}
.before-bd-sat-cobalt::before {
  border-color: hsl(215, 100%, 19%) !important;
}
.after-bg-sat-cobalt::after {
  background: hsl(215, 100%, 19%) !important;
}
.after-fg-sat-cobalt::after {
  color: hsl(215, 100%, 19%) !important;
}
.after-bd-sat-cobalt::after {
  border-color: hsl(215, 100%, 19%) !important;
}
.before-bg-dark-cobalt::before {
  background: hsl(215, 100%, 9%) !important;
}
.before-fg-dark-cobalt::before {
  color: hsl(215, 100%, 9%) !important;
}
.before-bd-dark-cobalt::before {
  border-color: hsl(215, 100%, 9%) !important;
}
.after-bg-dark-cobalt::after {
  background: hsl(215, 100%, 9%) !important;
}
.after-fg-dark-cobalt::after {
  color: hsl(215, 100%, 9%) !important;
}
.after-bd-dark-cobalt::after {
  border-color: hsl(215, 100%, 9%) !important;
}
.before-bg-light-indigo::before {
  background: hsl(276, 100%, 78%) !important;
}
.before-fg-light-indigo::before {
  color: hsl(276, 100%, 78%) !important;
}
.before-bd-light-indigo::before {
  border-color: hsl(276, 100%, 78%) !important;
}
.after-bg-light-indigo::after {
  background: hsl(276, 100%, 78%) !important;
}
.after-fg-light-indigo::after {
  color: hsl(276, 100%, 78%) !important;
}
.after-bd-light-indigo::after {
  border-color: hsl(276, 100%, 78%) !important;
}
.before-bg-minor-indigo::before {
  background: hsl(276, 100%, 48%) !important;
}
.before-fg-minor-indigo::before {
  color: hsl(276, 100%, 48%) !important;
}
.before-bd-minor-indigo::before {
  border-color: hsl(276, 100%, 48%) !important;
}
.after-bg-minor-indigo::after {
  background: hsl(276, 100%, 48%) !important;
}
.after-fg-minor-indigo::after {
  color: hsl(276, 100%, 48%) !important;
}
.after-bd-minor-indigo::after {
  border-color: hsl(276, 100%, 48%) !important;
}
.before-bg-sat-indigo::before {
  background: hsl(276, 100%, 18%) !important;
}
.before-fg-sat-indigo::before {
  color: hsl(276, 100%, 18%) !important;
}
.before-bd-sat-indigo::before {
  border-color: hsl(276, 100%, 18%) !important;
}
.after-bg-sat-indigo::after {
  background: hsl(276, 100%, 18%) !important;
}
.after-fg-sat-indigo::after {
  color: hsl(276, 100%, 18%) !important;
}
.after-bd-sat-indigo::after {
  border-color: hsl(276, 100%, 18%) !important;
}
.before-bg-dark-indigo::before {
  background: hsl(276, 100%, 8%) !important;
}
.before-fg-dark-indigo::before {
  color: hsl(276, 100%, 8%) !important;
}
.before-bd-dark-indigo::before {
  border-color: hsl(276, 100%, 8%) !important;
}
.after-bg-dark-indigo::after {
  background: hsl(276, 100%, 8%) !important;
}
.after-fg-dark-indigo::after {
  color: hsl(276, 100%, 8%) !important;
}
.after-bd-dark-indigo::after {
  border-color: hsl(276, 100%, 8%) !important;
}
.before-bg-light-almost::before {
  background: hsl(259, 84%, 85%) !important;
}
.before-fg-light-almost::before {
  color: hsl(259, 84%, 85%) !important;
}
.before-bd-light-almost::before {
  border-color: hsl(259, 84%, 85%) !important;
}
.after-bg-light-almost::after {
  background: hsl(259, 84%, 85%) !important;
}
.after-fg-light-almost::after {
  color: hsl(259, 84%, 85%) !important;
}
.after-bd-light-almost::after {
  border-color: hsl(259, 84%, 85%) !important;
}
.before-bg-minor-almost::before {
  background: hsl(259, 84%, 70%) !important;
}
.before-fg-minor-almost::before {
  color: hsl(259, 84%, 70%) !important;
}
.before-bd-minor-almost::before {
  border-color: hsl(259, 84%, 70%) !important;
}
.after-bg-minor-almost::after {
  background: hsl(259, 84%, 70%) !important;
}
.after-fg-minor-almost::after {
  color: hsl(259, 84%, 70%) !important;
}
.after-bd-minor-almost::after {
  border-color: hsl(259, 84%, 70%) !important;
}
.before-bg-sat-almost::before {
  background: hsl(259, 84%, 40%) !important;
}
.before-fg-sat-almost::before {
  color: hsl(259, 84%, 40%) !important;
}
.before-bd-sat-almost::before {
  border-color: hsl(259, 84%, 40%) !important;
}
.after-bg-sat-almost::after {
  background: hsl(259, 84%, 40%) !important;
}
.after-fg-sat-almost::after {
  color: hsl(259, 84%, 40%) !important;
}
.after-bd-sat-almost::after {
  border-color: hsl(259, 84%, 40%) !important;
}
.before-bg-dark-almost::before {
  background: hsl(259, 84%, 30%) !important;
}
.before-fg-dark-almost::before {
  color: hsl(259, 84%, 30%) !important;
}
.before-bd-dark-almost::before {
  border-color: hsl(259, 84%, 30%) !important;
}
.after-bg-dark-almost::after {
  background: hsl(259, 84%, 30%) !important;
}
.after-fg-dark-almost::after {
  color: hsl(259, 84%, 30%) !important;
}
.after-bd-dark-almost::after {
  border-color: hsl(259, 84%, 30%) !important;
}
.before-bg-light-violet::before {
  background: hsl(300, 76%, 92%) !important;
}
.before-fg-light-violet::before {
  color: hsl(300, 76%, 92%) !important;
}
.before-bd-light-violet::before {
  border-color: hsl(300, 76%, 92%) !important;
}
.after-bg-light-violet::after {
  background: hsl(300, 76%, 92%) !important;
}
.after-fg-light-violet::after {
  color: hsl(300, 76%, 92%) !important;
}
.after-bd-light-violet::after {
  border-color: hsl(300, 76%, 92%) !important;
}
.before-bg-minor-violet::before {
  background: hsl(300, 76%, 82%) !important;
}
.before-fg-minor-violet::before {
  color: hsl(300, 76%, 82%) !important;
}
.before-bd-minor-violet::before {
  border-color: hsl(300, 76%, 82%) !important;
}
.after-bg-minor-violet::after {
  background: hsl(300, 76%, 82%) !important;
}
.after-fg-minor-violet::after {
  color: hsl(300, 76%, 82%) !important;
}
.after-bd-minor-violet::after {
  border-color: hsl(300, 76%, 82%) !important;
}
.before-bg-sat-violet::before {
  background: hsl(300, 76%, 57%) !important;
}
.before-fg-sat-violet::before {
  color: hsl(300, 76%, 57%) !important;
}
.before-bd-sat-violet::before {
  border-color: hsl(300, 76%, 57%) !important;
}
.after-bg-sat-violet::after {
  background: hsl(300, 76%, 57%) !important;
}
.after-fg-sat-violet::after {
  color: hsl(300, 76%, 57%) !important;
}
.after-bd-sat-violet::after {
  border-color: hsl(300, 76%, 57%) !important;
}
.before-bg-dark-violet::before {
  background: hsl(300, 76%, 47%) !important;
}
.before-fg-dark-violet::before {
  color: hsl(300, 76%, 47%) !important;
}
.before-bd-dark-violet::before {
  border-color: hsl(300, 76%, 47%) !important;
}
.after-bg-dark-violet::after {
  background: hsl(300, 76%, 47%) !important;
}
.after-fg-dark-violet::after {
  color: hsl(300, 76%, 47%) !important;
}
.after-bd-dark-violet::after {
  border-color: hsl(300, 76%, 47%) !important;
}
.before-bg-light-pink::before {
  background: hsl(350, 100%, 98%) !important;
}
.before-fg-light-pink::before {
  color: hsl(350, 100%, 98%) !important;
}
.before-bd-light-pink::before {
  border-color: hsl(350, 100%, 98%) !important;
}
.after-bg-light-pink::after {
  background: hsl(350, 100%, 98%) !important;
}
.after-fg-light-pink::after {
  color: hsl(350, 100%, 98%) !important;
}
.after-bd-light-pink::after {
  border-color: hsl(350, 100%, 98%) !important;
}
.before-bg-minor-pink::before {
  background: hsl(350, 100%, 93%) !important;
}
.before-fg-minor-pink::before {
  color: hsl(350, 100%, 93%) !important;
}
.before-bd-minor-pink::before {
  border-color: hsl(350, 100%, 93%) !important;
}
.after-bg-minor-pink::after {
  background: hsl(350, 100%, 93%) !important;
}
.after-fg-minor-pink::after {
  color: hsl(350, 100%, 93%) !important;
}
.after-bd-minor-pink::after {
  border-color: hsl(350, 100%, 93%) !important;
}
.before-bg-sat-pink::before {
  background: hsl(350, 100%, 73%) !important;
}
.before-fg-sat-pink::before {
  color: hsl(350, 100%, 73%) !important;
}
.before-bd-sat-pink::before {
  border-color: hsl(350, 100%, 73%) !important;
}
.after-bg-sat-pink::after {
  background: hsl(350, 100%, 73%) !important;
}
.after-fg-sat-pink::after {
  color: hsl(350, 100%, 73%) !important;
}
.after-bd-sat-pink::after {
  border-color: hsl(350, 100%, 73%) !important;
}
.before-bg-dark-pink::before {
  background: hsl(350, 100%, 63%) !important;
}
.before-fg-dark-pink::before {
  color: hsl(350, 100%, 63%) !important;
}
.before-bd-dark-pink::before {
  border-color: hsl(350, 100%, 63%) !important;
}
.after-bg-dark-pink::after {
  background: hsl(350, 100%, 63%) !important;
}
.after-fg-dark-pink::after {
  color: hsl(350, 100%, 63%) !important;
}
.after-bd-dark-pink::after {
  border-color: hsl(350, 100%, 63%) !important;
}
.before-bg-light-magenta::before {
  background: hsl(300, 100%, 90%) !important;
}
.before-fg-light-magenta::before {
  color: hsl(300, 100%, 90%) !important;
}
.before-bd-light-magenta::before {
  border-color: hsl(300, 100%, 90%) !important;
}
.after-bg-light-magenta::after {
  background: hsl(300, 100%, 90%) !important;
}
.after-fg-light-magenta::after {
  color: hsl(300, 100%, 90%) !important;
}
.after-bd-light-magenta::after {
  border-color: hsl(300, 100%, 90%) !important;
}
.before-bg-minor-magenta::before {
  background: hsl(300, 100%, 75%) !important;
}
.before-fg-minor-magenta::before {
  color: hsl(300, 100%, 75%) !important;
}
.before-bd-minor-magenta::before {
  border-color: hsl(300, 100%, 75%) !important;
}
.after-bg-minor-magenta::after {
  background: hsl(300, 100%, 75%) !important;
}
.after-fg-minor-magenta::after {
  color: hsl(300, 100%, 75%) !important;
}
.after-bd-minor-magenta::after {
  border-color: hsl(300, 100%, 75%) !important;
}
.before-bg-sat-magenta::before {
  background: hsl(300, 100%, 35%) !important;
}
.before-fg-sat-magenta::before {
  color: hsl(300, 100%, 35%) !important;
}
.before-bd-sat-magenta::before {
  border-color: hsl(300, 100%, 35%) !important;
}
.after-bg-sat-magenta::after {
  background: hsl(300, 100%, 35%) !important;
}
.after-fg-sat-magenta::after {
  color: hsl(300, 100%, 35%) !important;
}
.after-bd-sat-magenta::after {
  border-color: hsl(300, 100%, 35%) !important;
}
.before-bg-dark-magenta::before {
  background: hsl(300, 100%, 25%) !important;
}
.before-fg-dark-magenta::before {
  color: hsl(300, 100%, 25%) !important;
}
.before-bd-dark-magenta::before {
  border-color: hsl(300, 100%, 25%) !important;
}
.after-bg-dark-magenta::after {
  background: hsl(300, 100%, 25%) !important;
}
.after-fg-dark-magenta::after {
  color: hsl(300, 100%, 25%) !important;
}
.after-bd-dark-magenta::after {
  border-color: hsl(300, 100%, 25%) !important;
}
.before-bg-light-crimson::before {
  background: hsl(348, 88%, 91%) !important;
}
.before-fg-light-crimson::before {
  color: hsl(348, 88%, 91%) !important;
}
.before-bd-light-crimson::before {
  border-color: hsl(348, 88%, 91%) !important;
}
.after-bg-light-crimson::after {
  background: hsl(348, 88%, 91%) !important;
}
.after-fg-light-crimson::after {
  color: hsl(348, 88%, 91%) !important;
}
.after-bd-light-crimson::after {
  border-color: hsl(348, 88%, 91%) !important;
}
.before-bg-minor-crimson::before {
  background: hsl(348, 88%, 66%) !important;
}
.before-fg-minor-crimson::before {
  color: hsl(348, 88%, 66%) !important;
}
.before-bd-minor-crimson::before {
  border-color: hsl(348, 88%, 66%) !important;
}
.after-bg-minor-crimson::after {
  background: hsl(348, 88%, 66%) !important;
}
.after-fg-minor-crimson::after {
  color: hsl(348, 88%, 66%) !important;
}
.after-bd-minor-crimson::after {
  border-color: hsl(348, 88%, 66%) !important;
}
.before-bg-sat-crimson::before {
  background: hsl(348, 88%, 31%) !important;
}
.before-fg-sat-crimson::before {
  color: hsl(348, 88%, 31%) !important;
}
.before-bd-sat-crimson::before {
  border-color: hsl(348, 88%, 31%) !important;
}
.after-bg-sat-crimson::after {
  background: hsl(348, 88%, 31%) !important;
}
.after-fg-sat-crimson::after {
  color: hsl(348, 88%, 31%) !important;
}
.after-bd-sat-crimson::after {
  border-color: hsl(348, 88%, 31%) !important;
}
.before-bg-dark-crimson::before {
  background: hsl(348, 88%, 21%) !important;
}
.before-fg-dark-crimson::before {
  color: hsl(348, 88%, 21%) !important;
}
.before-bd-dark-crimson::before {
  border-color: hsl(348, 88%, 21%) !important;
}
.after-bg-dark-crimson::after {
  background: hsl(348, 88%, 21%) !important;
}
.after-fg-dark-crimson::after {
  color: hsl(348, 88%, 21%) !important;
}
.after-bd-dark-crimson::after {
  border-color: hsl(348, 88%, 21%) !important;
}
.before-bg-light-red::before {
  background: hsl(0, 100%, 85%) !important;
}
.before-fg-light-red::before {
  color: hsl(0, 100%, 85%) !important;
}
.before-bd-light-red::before {
  border-color: hsl(0, 100%, 85%) !important;
}
.after-bg-light-red::after {
  background: hsl(0, 100%, 85%) !important;
}
.after-fg-light-red::after {
  color: hsl(0, 100%, 85%) !important;
}
.after-bd-light-red::after {
  border-color: hsl(0, 100%, 85%) !important;
}
.before-bg-minor-red::before {
  background: hsl(0, 100%, 70%) !important;
}
.before-fg-minor-red::before {
  color: hsl(0, 100%, 70%) !important;
}
.before-bd-minor-red::before {
  border-color: hsl(0, 100%, 70%) !important;
}
.after-bg-minor-red::after {
  background: hsl(0, 100%, 70%) !important;
}
.after-fg-minor-red::after {
  color: hsl(0, 100%, 70%) !important;
}
.after-bd-minor-red::after {
  border-color: hsl(0, 100%, 70%) !important;
}
.before-bg-sat-red::before {
  background: hsl(0, 100%, 35%) !important;
}
.before-fg-sat-red::before {
  color: hsl(0, 100%, 35%) !important;
}
.before-bd-sat-red::before {
  border-color: hsl(0, 100%, 35%) !important;
}
.after-bg-sat-red::after {
  background: hsl(0, 100%, 35%) !important;
}
.after-fg-sat-red::after {
  color: hsl(0, 100%, 35%) !important;
}
.after-bd-sat-red::after {
  border-color: hsl(0, 100%, 35%) !important;
}
.before-bg-dark-red::before {
  background: hsl(0, 100%, 25%) !important;
}
.before-fg-dark-red::before {
  color: hsl(0, 100%, 25%) !important;
}
.before-bd-dark-red::before {
  border-color: hsl(0, 100%, 25%) !important;
}
.after-bg-dark-red::after {
  background: hsl(0, 100%, 25%) !important;
}
.after-fg-dark-red::after {
  color: hsl(0, 100%, 25%) !important;
}
.after-bd-dark-red::after {
  border-color: hsl(0, 100%, 25%) !important;
}
.before-bg-light-clown::before {
  background: hsl(3, 100%, 95%) !important;
}
.before-fg-light-clown::before {
  color: hsl(3, 100%, 95%) !important;
}
.before-bd-light-clown::before {
  border-color: hsl(3, 100%, 95%) !important;
}
.after-bg-light-clown::after {
  background: hsl(3, 100%, 95%) !important;
}
.after-fg-light-clown::after {
  color: hsl(3, 100%, 95%) !important;
}
.after-bd-light-clown::after {
  border-color: hsl(3, 100%, 95%) !important;
}
.before-bg-minor-clown::before {
  background: hsl(3, 100%, 85%) !important;
}
.before-fg-minor-clown::before {
  color: hsl(3, 100%, 85%) !important;
}
.before-bd-minor-clown::before {
  border-color: hsl(3, 100%, 85%) !important;
}
.after-bg-minor-clown::after {
  background: hsl(3, 100%, 85%) !important;
}
.after-fg-minor-clown::after {
  color: hsl(3, 100%, 85%) !important;
}
.after-bd-minor-clown::after {
  border-color: hsl(3, 100%, 85%) !important;
}
.before-bg-sat-clown::before {
  background: hsl(3, 100%, 55%) !important;
}
.before-fg-sat-clown::before {
  color: hsl(3, 100%, 55%) !important;
}
.before-bd-sat-clown::before {
  border-color: hsl(3, 100%, 55%) !important;
}
.after-bg-sat-clown::after {
  background: hsl(3, 100%, 55%) !important;
}
.after-fg-sat-clown::after {
  color: hsl(3, 100%, 55%) !important;
}
.after-bd-sat-clown::after {
  border-color: hsl(3, 100%, 55%) !important;
}
.before-bg-dark-clown::before {
  background: hsl(3, 100%, 45%) !important;
}
.before-fg-dark-clown::before {
  color: hsl(3, 100%, 45%) !important;
}
.before-bd-dark-clown::before {
  border-color: hsl(3, 100%, 45%) !important;
}
.after-bg-dark-clown::after {
  background: hsl(3, 100%, 45%) !important;
}
.after-fg-dark-clown::after {
  color: hsl(3, 100%, 45%) !important;
}
.after-bd-dark-clown::after {
  border-color: hsl(3, 100%, 45%) !important;
}
.before-bg-light-orange::before {
  background: hsl(39, 100%, 90%) !important;
}
.before-fg-light-orange::before {
  color: hsl(39, 100%, 90%) !important;
}
.before-bd-light-orange::before {
  border-color: hsl(39, 100%, 90%) !important;
}
.after-bg-light-orange::after {
  background: hsl(39, 100%, 90%) !important;
}
.after-fg-light-orange::after {
  color: hsl(39, 100%, 90%) !important;
}
.after-bd-light-orange::after {
  border-color: hsl(39, 100%, 90%) !important;
}
.before-bg-minor-orange::before {
  background: hsl(39, 100%, 75%) !important;
}
.before-fg-minor-orange::before {
  color: hsl(39, 100%, 75%) !important;
}
.before-bd-minor-orange::before {
  border-color: hsl(39, 100%, 75%) !important;
}
.after-bg-minor-orange::after {
  background: hsl(39, 100%, 75%) !important;
}
.after-fg-minor-orange::after {
  color: hsl(39, 100%, 75%) !important;
}
.after-bd-minor-orange::after {
  border-color: hsl(39, 100%, 75%) !important;
}
.before-bg-sat-orange::before {
  background: hsl(39, 100%, 35%) !important;
}
.before-fg-sat-orange::before {
  color: hsl(39, 100%, 35%) !important;
}
.before-bd-sat-orange::before {
  border-color: hsl(39, 100%, 35%) !important;
}
.after-bg-sat-orange::after {
  background: hsl(39, 100%, 35%) !important;
}
.after-fg-sat-orange::after {
  color: hsl(39, 100%, 35%) !important;
}
.after-bd-sat-orange::after {
  border-color: hsl(39, 100%, 35%) !important;
}
.before-bg-dark-orange::before {
  background: hsl(39, 100%, 25%) !important;
}
.before-fg-dark-orange::before {
  color: hsl(39, 100%, 25%) !important;
}
.before-bd-dark-orange::before {
  border-color: hsl(39, 100%, 25%) !important;
}
.after-bg-dark-orange::after {
  background: hsl(39, 100%, 25%) !important;
}
.after-fg-dark-orange::after {
  color: hsl(39, 100%, 25%) !important;
}
.after-bd-dark-orange::after {
  border-color: hsl(39, 100%, 25%) !important;
}
.before-bg-light-amber::before {
  background: hsl(45, 100%, 78%) !important;
}
.before-fg-light-amber::before {
  color: hsl(45, 100%, 78%) !important;
}
.before-bd-light-amber::before {
  border-color: hsl(45, 100%, 78%) !important;
}
.after-bg-light-amber::after {
  background: hsl(45, 100%, 78%) !important;
}
.after-fg-light-amber::after {
  color: hsl(45, 100%, 78%) !important;
}
.after-bd-light-amber::after {
  border-color: hsl(45, 100%, 78%) !important;
}
.before-bg-minor-amber::before {
  background: hsl(45, 100%, 68%) !important;
}
.before-fg-minor-amber::before {
  color: hsl(45, 100%, 68%) !important;
}
.before-bd-minor-amber::before {
  border-color: hsl(45, 100%, 68%) !important;
}
.after-bg-minor-amber::after {
  background: hsl(45, 100%, 68%) !important;
}
.after-fg-minor-amber::after {
  color: hsl(45, 100%, 68%) !important;
}
.after-bd-minor-amber::after {
  border-color: hsl(45, 100%, 68%) !important;
}
.before-bg-sat-amber::before {
  background: hsl(45, 100%, 43%) !important;
}
.before-fg-sat-amber::before {
  color: hsl(45, 100%, 43%) !important;
}
.before-bd-sat-amber::before {
  border-color: hsl(45, 100%, 43%) !important;
}
.after-bg-sat-amber::after {
  background: hsl(45, 100%, 43%) !important;
}
.after-fg-sat-amber::after {
  color: hsl(45, 100%, 43%) !important;
}
.after-bd-sat-amber::after {
  border-color: hsl(45, 100%, 43%) !important;
}
.before-bg-dark-amber::before {
  background: hsl(45, 100%, 33%) !important;
}
.before-fg-dark-amber::before {
  color: hsl(45, 100%, 33%) !important;
}
.before-bd-dark-amber::before {
  border-color: hsl(45, 100%, 33%) !important;
}
.after-bg-dark-amber::after {
  background: hsl(45, 100%, 33%) !important;
}
.after-fg-dark-amber::after {
  color: hsl(45, 100%, 33%) !important;
}
.after-bd-dark-amber::after {
  border-color: hsl(45, 100%, 33%) !important;
}
.before-bg-light-yellow::before {
  background: hsl(52, 100%, 93%) !important;
}
.before-fg-light-yellow::before {
  color: hsl(52, 100%, 93%) !important;
}
.before-bd-light-yellow::before {
  border-color: hsl(52, 100%, 93%) !important;
}
.after-bg-light-yellow::after {
  background: hsl(52, 100%, 93%) !important;
}
.after-fg-light-yellow::after {
  color: hsl(52, 100%, 93%) !important;
}
.after-bd-light-yellow::after {
  border-color: hsl(52, 100%, 93%) !important;
}
.before-bg-minor-yellow::before {
  background: hsl(52, 100%, 83%) !important;
}
.before-fg-minor-yellow::before {
  color: hsl(52, 100%, 83%) !important;
}
.before-bd-minor-yellow::before {
  border-color: hsl(52, 100%, 83%) !important;
}
.after-bg-minor-yellow::after {
  background: hsl(52, 100%, 83%) !important;
}
.after-fg-minor-yellow::after {
  color: hsl(52, 100%, 83%) !important;
}
.after-bd-minor-yellow::after {
  border-color: hsl(52, 100%, 83%) !important;
}
.before-bg-sat-yellow::before {
  background: hsl(52, 100%, 53%) !important;
}
.before-fg-sat-yellow::before {
  color: hsl(52, 100%, 53%) !important;
}
.before-bd-sat-yellow::before {
  border-color: hsl(52, 100%, 53%) !important;
}
.after-bg-sat-yellow::after {
  background: hsl(52, 100%, 53%) !important;
}
.after-fg-sat-yellow::after {
  color: hsl(52, 100%, 53%) !important;
}
.after-bd-sat-yellow::after {
  border-color: hsl(52, 100%, 53%) !important;
}
.before-bg-dark-yellow::before {
  background: hsl(52, 100%, 43%) !important;
}
.before-fg-dark-yellow::before {
  color: hsl(52, 100%, 43%) !important;
}
.before-bd-dark-yellow::before {
  border-color: hsl(52, 100%, 43%) !important;
}
.after-bg-dark-yellow::after {
  background: hsl(52, 100%, 43%) !important;
}
.after-fg-dark-yellow::after {
  color: hsl(52, 100%, 43%) !important;
}
.after-bd-dark-yellow::after {
  border-color: hsl(52, 100%, 43%) !important;
}
.before-bg-light-brown::before {
  background: hsl(25, 57%, 81%) !important;
}
.before-fg-light-brown::before {
  color: hsl(25, 57%, 81%) !important;
}
.before-bd-light-brown::before {
  border-color: hsl(25, 57%, 81%) !important;
}
.after-bg-light-brown::after {
  background: hsl(25, 57%, 81%) !important;
}
.after-fg-light-brown::after {
  color: hsl(25, 57%, 81%) !important;
}
.after-bd-light-brown::after {
  border-color: hsl(25, 57%, 81%) !important;
}
.before-bg-minor-brown::before {
  background: hsl(25, 57%, 66%) !important;
}
.before-fg-minor-brown::before {
  color: hsl(25, 57%, 66%) !important;
}
.before-bd-minor-brown::before {
  border-color: hsl(25, 57%, 66%) !important;
}
.after-bg-minor-brown::after {
  background: hsl(25, 57%, 66%) !important;
}
.after-fg-minor-brown::after {
  color: hsl(25, 57%, 66%) !important;
}
.after-bd-minor-brown::after {
  border-color: hsl(25, 57%, 66%) !important;
}
.before-bg-sat-brown::before {
  background: hsl(25, 57%, 36%) !important;
}
.before-fg-sat-brown::before {
  color: hsl(25, 57%, 36%) !important;
}
.before-bd-sat-brown::before {
  border-color: hsl(25, 57%, 36%) !important;
}
.after-bg-sat-brown::after {
  background: hsl(25, 57%, 36%) !important;
}
.after-fg-sat-brown::after {
  color: hsl(25, 57%, 36%) !important;
}
.after-bd-sat-brown::after {
  border-color: hsl(25, 57%, 36%) !important;
}
.before-bg-dark-brown::before {
  background: hsl(25, 57%, 26%) !important;
}
.before-fg-dark-brown::before {
  color: hsl(25, 57%, 26%) !important;
}
.before-bd-dark-brown::before {
  border-color: hsl(25, 57%, 26%) !important;
}
.after-bg-dark-brown::after {
  background: hsl(25, 57%, 26%) !important;
}
.after-fg-dark-brown::after {
  color: hsl(25, 57%, 26%) !important;
}
.after-bd-dark-brown::after {
  border-color: hsl(25, 57%, 26%) !important;
}
.before-bg-light-olive::before {
  background: hsl(60, 100%, 72%) !important;
}
.before-fg-light-olive::before {
  color: hsl(60, 100%, 72%) !important;
}
.before-bd-light-olive::before {
  border-color: hsl(60, 100%, 72%) !important;
}
.after-bg-light-olive::after {
  background: hsl(60, 100%, 72%) !important;
}
.after-fg-light-olive::after {
  color: hsl(60, 100%, 72%) !important;
}
.after-bd-light-olive::after {
  border-color: hsl(60, 100%, 72%) !important;
}
.before-bg-minor-olive::before {
  background: hsl(60, 100%, 42%) !important;
}
.before-fg-minor-olive::before {
  color: hsl(60, 100%, 42%) !important;
}
.before-bd-minor-olive::before {
  border-color: hsl(60, 100%, 42%) !important;
}
.after-bg-minor-olive::after {
  background: hsl(60, 100%, 42%) !important;
}
.after-fg-minor-olive::after {
  color: hsl(60, 100%, 42%) !important;
}
.after-bd-minor-olive::after {
  border-color: hsl(60, 100%, 42%) !important;
}
.before-bg-sat-olive::before {
  background: hsl(60, 100%, 17%) !important;
}
.before-fg-sat-olive::before {
  color: hsl(60, 100%, 17%) !important;
}
.before-bd-sat-olive::before {
  border-color: hsl(60, 100%, 17%) !important;
}
.after-bg-sat-olive::after {
  background: hsl(60, 100%, 17%) !important;
}
.after-fg-sat-olive::after {
  color: hsl(60, 100%, 17%) !important;
}
.after-bd-sat-olive::after {
  border-color: hsl(60, 100%, 17%) !important;
}
.before-bg-dark-olive::before {
  background: hsl(60, 100%, 7%) !important;
}
.before-fg-dark-olive::before {
  color: hsl(60, 100%, 7%) !important;
}
.before-bd-dark-olive::before {
  border-color: hsl(60, 100%, 7%) !important;
}
.after-bg-dark-olive::after {
  background: hsl(60, 100%, 7%) !important;
}
.after-fg-dark-olive::after {
  color: hsl(60, 100%, 7%) !important;
}
.after-bd-dark-olive::after {
  border-color: hsl(60, 100%, 7%) !important;
}
.before-bg-light-steel::before {
  background: hsl(209, 19%, 87%) !important;
}
.before-fg-light-steel::before {
  color: hsl(209, 19%, 87%) !important;
}
.before-bd-light-steel::before {
  border-color: hsl(209, 19%, 87%) !important;
}
.after-bg-light-steel::after {
  background: hsl(209, 19%, 87%) !important;
}
.after-fg-light-steel::after {
  color: hsl(209, 19%, 87%) !important;
}
.after-bd-light-steel::after {
  border-color: hsl(209, 19%, 87%) !important;
}
.before-bg-minor-steel::before {
  background: hsl(209, 19%, 77%) !important;
}
.before-fg-minor-steel::before {
  color: hsl(209, 19%, 77%) !important;
}
.before-bd-minor-steel::before {
  border-color: hsl(209, 19%, 77%) !important;
}
.after-bg-minor-steel::after {
  background: hsl(209, 19%, 77%) !important;
}
.after-fg-minor-steel::after {
  color: hsl(209, 19%, 77%) !important;
}
.after-bd-minor-steel::after {
  border-color: hsl(209, 19%, 77%) !important;
}
.before-bg-sat-steel::before {
  background: hsl(209, 19%, 42%) !important;
}
.before-fg-sat-steel::before {
  color: hsl(209, 19%, 42%) !important;
}
.before-bd-sat-steel::before {
  border-color: hsl(209, 19%, 42%) !important;
}
.after-bg-sat-steel::after {
  background: hsl(209, 19%, 42%) !important;
}
.after-fg-sat-steel::after {
  color: hsl(209, 19%, 42%) !important;
}
.after-bd-sat-steel::after {
  border-color: hsl(209, 19%, 42%) !important;
}
.before-bg-dark-steel::before {
  background: hsl(209, 19%, 32%) !important;
}
.before-fg-dark-steel::before {
  color: hsl(209, 19%, 32%) !important;
}
.before-bd-dark-steel::before {
  border-color: hsl(209, 19%, 32%) !important;
}
.after-bg-dark-steel::after {
  background: hsl(209, 19%, 32%) !important;
}
.after-fg-dark-steel::after {
  color: hsl(209, 19%, 32%) !important;
}
.after-bd-dark-steel::after {
  border-color: hsl(209, 19%, 32%) !important;
}
.before-bg-light-mauve::before {
  background: hsl(277, 100%, 96%) !important;
}
.before-fg-light-mauve::before {
  color: hsl(277, 100%, 96%) !important;
}
.before-bd-light-mauve::before {
  border-color: hsl(277, 100%, 96%) !important;
}
.after-bg-light-mauve::after {
  background: hsl(277, 100%, 96%) !important;
}
.after-fg-light-mauve::after {
  color: hsl(277, 100%, 96%) !important;
}
.after-bd-light-mauve::after {
  border-color: hsl(277, 100%, 96%) !important;
}
.before-bg-minor-mauve::before {
  background: hsl(277, 100%, 90%) !important;
}
.before-fg-minor-mauve::before {
  color: hsl(277, 100%, 90%) !important;
}
.before-bd-minor-mauve::before {
  border-color: hsl(277, 100%, 90%) !important;
}
.after-bg-minor-mauve::after {
  background: hsl(277, 100%, 90%) !important;
}
.after-fg-minor-mauve::after {
  color: hsl(277, 100%, 90%) !important;
}
.after-bd-minor-mauve::after {
  border-color: hsl(277, 100%, 90%) !important;
}
.before-bg-sat-mauve::before {
  background: hsl(277, 100%, 69%) !important;
}
.before-fg-sat-mauve::before {
  color: hsl(277, 100%, 69%) !important;
}
.before-bd-sat-mauve::before {
  border-color: hsl(277, 100%, 69%) !important;
}
.after-bg-sat-mauve::after {
  background: hsl(277, 100%, 69%) !important;
}
.after-fg-sat-mauve::after {
  color: hsl(277, 100%, 69%) !important;
}
.after-bd-sat-mauve::after {
  border-color: hsl(277, 100%, 69%) !important;
}
.before-bg-dark-mauve::before {
  background: hsl(277, 100%, 59%) !important;
}
.before-fg-dark-mauve::before {
  color: hsl(277, 100%, 59%) !important;
}
.before-bd-dark-mauve::before {
  border-color: hsl(277, 100%, 59%) !important;
}
.after-bg-dark-mauve::after {
  background: hsl(277, 100%, 59%) !important;
}
.after-fg-dark-mauve::after {
  color: hsl(277, 100%, 59%) !important;
}
.after-bd-dark-mauve::after {
  border-color: hsl(277, 100%, 59%) !important;
}
.before-bg-light-taupe::before {
  background: hsl(29, 19%, 80%) !important;
}
.before-fg-light-taupe::before {
  color: hsl(29, 19%, 80%) !important;
}
.before-bd-light-taupe::before {
  border-color: hsl(29, 19%, 80%) !important;
}
.after-bg-light-taupe::after {
  background: hsl(29, 19%, 80%) !important;
}
.after-fg-light-taupe::after {
  color: hsl(29, 19%, 80%) !important;
}
.after-bd-light-taupe::after {
  border-color: hsl(29, 19%, 80%) !important;
}
.before-bg-minor-taupe::before {
  background: hsl(29, 19%, 67%) !important;
}
.before-fg-minor-taupe::before {
  color: hsl(29, 19%, 67%) !important;
}
.before-bd-minor-taupe::before {
  border-color: hsl(29, 19%, 67%) !important;
}
.after-bg-minor-taupe::after {
  background: hsl(29, 19%, 67%) !important;
}
.after-fg-minor-taupe::after {
  color: hsl(29, 19%, 67%) !important;
}
.after-bd-minor-taupe::after {
  border-color: hsl(29, 19%, 67%) !important;
}
.before-bg-sat-taupe::before {
  background: hsl(29, 19%, 35%) !important;
}
.before-fg-sat-taupe::before {
  color: hsl(29, 19%, 35%) !important;
}
.before-bd-sat-taupe::before {
  border-color: hsl(29, 19%, 35%) !important;
}
.after-bg-sat-taupe::after {
  background: hsl(29, 19%, 35%) !important;
}
.after-fg-sat-taupe::after {
  color: hsl(29, 19%, 35%) !important;
}
.after-bd-sat-taupe::after {
  border-color: hsl(29, 19%, 35%) !important;
}
.before-bg-dark-taupe::before {
  background: hsl(29, 19%, 25%) !important;
}
.before-fg-dark-taupe::before {
  color: hsl(29, 19%, 25%) !important;
}
.before-bd-dark-taupe::before {
  border-color: hsl(29, 19%, 25%) !important;
}
.after-bg-dark-taupe::after {
  background: hsl(29, 19%, 25%) !important;
}
.after-fg-dark-taupe::after {
  color: hsl(29, 19%, 25%) !important;
}
.after-bd-dark-taupe::after {
  border-color: hsl(29, 19%, 25%) !important;
}
.before-bg-light-champagne::before {
  background: hsl(37, 74%, 98%) !important;
}
.before-fg-light-champagne::before {
  color: hsl(37, 74%, 98%) !important;
}
.before-bd-light-champagne::before {
  border-color: hsl(37, 74%, 98%) !important;
}
.after-bg-light-champagne::after {
  background: hsl(37, 74%, 98%) !important;
}
.after-fg-light-champagne::after {
  color: hsl(37, 74%, 98%) !important;
}
.after-bd-light-champagne::after {
  border-color: hsl(37, 74%, 98%) !important;
}
.before-bg-minor-champagne::before {
  background: hsl(37, 74%, 93%) !important;
}
.before-fg-minor-champagne::before {
  color: hsl(37, 74%, 93%) !important;
}
.before-bd-minor-champagne::before {
  border-color: hsl(37, 74%, 93%) !important;
}
.after-bg-minor-champagne::after {
  background: hsl(37, 74%, 93%) !important;
}
.after-fg-minor-champagne::after {
  color: hsl(37, 74%, 93%) !important;
}
.after-bd-minor-champagne::after {
  border-color: hsl(37, 74%, 93%) !important;
}
.before-bg-sat-champagne::before {
  background: hsl(37, 74%, 73%) !important;
}
.before-fg-sat-champagne::before {
  color: hsl(37, 74%, 73%) !important;
}
.before-bd-sat-champagne::before {
  border-color: hsl(37, 74%, 73%) !important;
}
.after-bg-sat-champagne::after {
  background: hsl(37, 74%, 73%) !important;
}
.after-fg-sat-champagne::after {
  color: hsl(37, 74%, 73%) !important;
}
.after-bd-sat-champagne::after {
  border-color: hsl(37, 74%, 73%) !important;
}
.before-bg-dark-champagne::before {
  background: hsl(37, 74%, 63%) !important;
}
.before-fg-dark-champagne::before {
  color: hsl(37, 74%, 63%) !important;
}
.before-bd-dark-champagne::before {
  border-color: hsl(37, 74%, 63%) !important;
}
.after-bg-dark-champagne::after {
  background: hsl(37, 74%, 63%) !important;
}
.after-fg-dark-champagne::after {
  color: hsl(37, 74%, 63%) !important;
}
.after-bd-dark-champagne::after {
  border-color: hsl(37, 74%, 63%) !important;
}
.before-bg-light-khaki::before {
  background: hsl(47, 47%, 94%) !important;
}
.before-fg-light-khaki::before {
  color: hsl(47, 47%, 94%) !important;
}
.before-bd-light-khaki::before {
  border-color: hsl(47, 47%, 94%) !important;
}
.after-bg-light-khaki::after {
  background: hsl(47, 47%, 94%) !important;
}
.after-fg-light-khaki::after {
  color: hsl(47, 47%, 94%) !important;
}
.after-bd-light-khaki::after {
  border-color: hsl(47, 47%, 94%) !important;
}
.before-bg-minor-khaki::before {
  background: hsl(47, 47%, 84%) !important;
}
.before-fg-minor-khaki::before {
  color: hsl(47, 47%, 84%) !important;
}
.before-bd-minor-khaki::before {
  border-color: hsl(47, 47%, 84%) !important;
}
.after-bg-minor-khaki::after {
  background: hsl(47, 47%, 84%) !important;
}
.after-fg-minor-khaki::after {
  color: hsl(47, 47%, 84%) !important;
}
.after-bd-minor-khaki::after {
  border-color: hsl(47, 47%, 84%) !important;
}
.before-bg-sat-khaki::before {
  background: hsl(47, 47%, 54%) !important;
}
.before-fg-sat-khaki::before {
  color: hsl(47, 47%, 54%) !important;
}
.before-bd-sat-khaki::before {
  border-color: hsl(47, 47%, 54%) !important;
}
.after-bg-sat-khaki::after {
  background: hsl(47, 47%, 54%) !important;
}
.after-fg-sat-khaki::after {
  color: hsl(47, 47%, 54%) !important;
}
.after-bd-sat-khaki::after {
  border-color: hsl(47, 47%, 54%) !important;
}
.before-bg-dark-khaki::before {
  background: hsl(47, 47%, 44%) !important;
}
.before-fg-dark-khaki::before {
  color: hsl(47, 47%, 44%) !important;
}
.before-bd-dark-khaki::before {
  border-color: hsl(47, 47%, 44%) !important;
}
.after-bg-dark-khaki::after {
  background: hsl(47, 47%, 44%) !important;
}
.after-fg-dark-khaki::after {
  color: hsl(47, 47%, 44%) !important;
}
.after-bd-dark-khaki::after {
  border-color: hsl(47, 47%, 44%) !important;
}
.before-bg-light-charcoal::before {
  background: hsl(0, 0%, 90%) !important;
}
.before-fg-light-charcoal::before {
  color: hsl(0, 0%, 90%) !important;
}
.before-bd-light-charcoal::before {
  border-color: hsl(0, 0%, 90%) !important;
}
.after-bg-light-charcoal::after {
  background: hsl(0, 0%, 90%) !important;
}
.after-fg-light-charcoal::after {
  color: hsl(0, 0%, 90%) !important;
}
.after-bd-light-charcoal::after {
  border-color: hsl(0, 0%, 90%) !important;
}
.before-bg-minor-charcoal::before {
  background: hsl(0, 0%, 80%) !important;
}
.before-fg-minor-charcoal::before {
  color: hsl(0, 0%, 80%) !important;
}
.before-bd-minor-charcoal::before {
  border-color: hsl(0, 0%, 80%) !important;
}
.after-bg-minor-charcoal::after {
  background: hsl(0, 0%, 80%) !important;
}
.after-fg-minor-charcoal::after {
  color: hsl(0, 0%, 80%) !important;
}
.after-bd-minor-charcoal::after {
  border-color: hsl(0, 0%, 80%) !important;
}
.before-bg-sat-charcoal::before {
  background: hsl(0, 0%, 45%) !important;
}
.before-fg-sat-charcoal::before {
  color: hsl(0, 0%, 45%) !important;
}
.before-bd-sat-charcoal::before {
  border-color: hsl(0, 0%, 45%) !important;
}
.after-bg-sat-charcoal::after {
  background: hsl(0, 0%, 45%) !important;
}
.after-fg-sat-charcoal::after {
  color: hsl(0, 0%, 45%) !important;
}
.after-bd-sat-charcoal::after {
  border-color: hsl(0, 0%, 45%) !important;
}
.before-bg-dark-charcoal::before {
  background: hsl(0, 0%, 35%) !important;
}
.before-fg-dark-charcoal::before {
  color: hsl(0, 0%, 35%) !important;
}
.before-bd-dark-charcoal::before {
  border-color: hsl(0, 0%, 35%) !important;
}
.after-bg-dark-charcoal::after {
  background: hsl(0, 0%, 35%) !important;
}
.after-fg-dark-charcoal::after {
  color: hsl(0, 0%, 35%) !important;
}
.after-bd-dark-charcoal::after {
  border-color: hsl(0, 0%, 35%) !important;
}
.before-bg-light-bronze::before {
  background: hsl(29, 75%, 87%) !important;
}
.before-fg-light-bronze::before {
  color: hsl(29, 75%, 87%) !important;
}
.before-bd-light-bronze::before {
  border-color: hsl(29, 75%, 87%) !important;
}
.after-bg-light-bronze::after {
  background: hsl(29, 75%, 87%) !important;
}
.after-fg-light-bronze::after {
  color: hsl(29, 75%, 87%) !important;
}
.after-bd-light-bronze::after {
  border-color: hsl(29, 75%, 87%) !important;
}
.before-bg-minor-bronze::before {
  background: hsl(29, 75%, 72%) !important;
}
.before-fg-minor-bronze::before {
  color: hsl(29, 75%, 72%) !important;
}
.before-bd-minor-bronze::before {
  border-color: hsl(29, 75%, 72%) !important;
}
.after-bg-minor-bronze::after {
  background: hsl(29, 75%, 72%) !important;
}
.after-fg-minor-bronze::after {
  color: hsl(29, 75%, 72%) !important;
}
.after-bd-minor-bronze::after {
  border-color: hsl(29, 75%, 72%) !important;
}
.before-bg-sat-bronze::before {
  background: hsl(29, 75%, 42%) !important;
}
.before-fg-sat-bronze::before {
  color: hsl(29, 75%, 42%) !important;
}
.before-bd-sat-bronze::before {
  border-color: hsl(29, 75%, 42%) !important;
}
.after-bg-sat-bronze::after {
  background: hsl(29, 75%, 42%) !important;
}
.after-fg-sat-bronze::after {
  color: hsl(29, 75%, 42%) !important;
}
.after-bd-sat-bronze::after {
  border-color: hsl(29, 75%, 42%) !important;
}
.before-bg-dark-bronze::before {
  background: hsl(29, 75%, 32%) !important;
}
.before-fg-dark-bronze::before {
  color: hsl(29, 75%, 32%) !important;
}
.before-bd-dark-bronze::before {
  border-color: hsl(29, 75%, 32%) !important;
}
.after-bg-dark-bronze::after {
  background: hsl(29, 75%, 32%) !important;
}
.after-fg-dark-bronze::after {
  color: hsl(29, 75%, 32%) !important;
}
.after-bd-dark-bronze::after {
  border-color: hsl(29, 75%, 32%) !important;
}
.before-bg-light-windstorm::before {
  background: hsl(216, 53%, 93%) !important;
}
.before-fg-light-windstorm::before {
  color: hsl(216, 53%, 93%) !important;
}
.before-bd-light-windstorm::before {
  border-color: hsl(216, 53%, 93%) !important;
}
.after-bg-light-windstorm::after {
  background: hsl(216, 53%, 93%) !important;
}
.after-fg-light-windstorm::after {
  color: hsl(216, 53%, 93%) !important;
}
.after-bd-light-windstorm::after {
  border-color: hsl(216, 53%, 93%) !important;
}
.before-bg-minor-windstorm::before {
  background: hsl(216, 53%, 81%) !important;
}
.before-fg-minor-windstorm::before {
  color: hsl(216, 53%, 81%) !important;
}
.before-bd-minor-windstorm::before {
  border-color: hsl(216, 53%, 81%) !important;
}
.after-bg-minor-windstorm::after {
  background: hsl(216, 53%, 81%) !important;
}
.after-fg-minor-windstorm::after {
  color: hsl(216, 53%, 81%) !important;
}
.after-bd-minor-windstorm::after {
  border-color: hsl(216, 53%, 81%) !important;
}
.before-bg-sat-windstorm::before {
  background: hsl(216, 53%, 51%) !important;
}
.before-fg-sat-windstorm::before {
  color: hsl(216, 53%, 51%) !important;
}
.before-bd-sat-windstorm::before {
  border-color: hsl(216, 53%, 51%) !important;
}
.after-bg-sat-windstorm::after {
  background: hsl(216, 53%, 51%) !important;
}
.after-fg-sat-windstorm::after {
  color: hsl(216, 53%, 51%) !important;
}
.after-bd-sat-windstorm::after {
  border-color: hsl(216, 53%, 51%) !important;
}
.before-bg-dark-windstorm::before {
  background: hsl(216, 53%, 41%) !important;
}
.before-fg-dark-windstorm::before {
  color: hsl(216, 53%, 41%) !important;
}
.before-bd-dark-windstorm::before {
  border-color: hsl(216, 53%, 41%) !important;
}
.after-bg-dark-windstorm::after {
  background: hsl(216, 53%, 41%) !important;
}
.after-fg-dark-windstorm::after {
  color: hsl(216, 53%, 41%) !important;
}
.after-bd-dark-windstorm::after {
  border-color: hsl(216, 53%, 41%) !important;
}
.before-bg-light-nude::before {
  background: hsl(29, 79%, 97%) !important;
}
.before-fg-light-nude::before {
  color: hsl(29, 79%, 97%) !important;
}
.before-bd-light-nude::before {
  border-color: hsl(29, 79%, 97%) !important;
}
.after-bg-light-nude::after {
  background: hsl(29, 79%, 97%) !important;
}
.after-fg-light-nude::after {
  color: hsl(29, 79%, 97%) !important;
}
.after-bd-light-nude::after {
  border-color: hsl(29, 79%, 97%) !important;
}
.before-bg-minor-nude::before {
  background: hsl(29, 79%, 92%) !important;
}
.before-fg-minor-nude::before {
  color: hsl(29, 79%, 92%) !important;
}
.before-bd-minor-nude::before {
  border-color: hsl(29, 79%, 92%) !important;
}
.after-bg-minor-nude::after {
  background: hsl(29, 79%, 92%) !important;
}
.after-fg-minor-nude::after {
  color: hsl(29, 79%, 92%) !important;
}
.after-bd-minor-nude::after {
  border-color: hsl(29, 79%, 92%) !important;
}
.before-bg-sat-nude::before {
  background: hsl(29, 79%, 70%) !important;
}
.before-fg-sat-nude::before {
  color: hsl(29, 79%, 70%) !important;
}
.before-bd-sat-nude::before {
  border-color: hsl(29, 79%, 70%) !important;
}
.after-bg-sat-nude::after {
  background: hsl(29, 79%, 70%) !important;
}
.after-fg-sat-nude::after {
  color: hsl(29, 79%, 70%) !important;
}
.after-bd-sat-nude::after {
  border-color: hsl(29, 79%, 70%) !important;
}
.before-bg-dark-nude::before {
  background: hsl(29, 79%, 60%) !important;
}
.before-fg-dark-nude::before {
  color: hsl(29, 79%, 60%) !important;
}
.before-bd-dark-nude::before {
  border-color: hsl(29, 79%, 60%) !important;
}
.after-bg-dark-nude::after {
  background: hsl(29, 79%, 60%) !important;
}
.after-fg-dark-nude::after {
  color: hsl(29, 79%, 60%) !important;
}
.after-bd-dark-nude::after {
  border-color: hsl(29, 79%, 60%) !important;
}
.before-bg-light-terracotta::before {
  background: hsl(10, 76%, 85%) !important;
}
.before-fg-light-terracotta::before {
  color: hsl(10, 76%, 85%) !important;
}
.before-bd-light-terracotta::before {
  border-color: hsl(10, 76%, 85%) !important;
}
.after-bg-light-terracotta::after {
  background: hsl(10, 76%, 85%) !important;
}
.after-fg-light-terracotta::after {
  color: hsl(10, 76%, 85%) !important;
}
.after-bd-light-terracotta::after {
  border-color: hsl(10, 76%, 85%) !important;
}
.before-bg-minor-terracotta::before {
  background: hsl(10, 76%, 70%) !important;
}
.before-fg-minor-terracotta::before {
  color: hsl(10, 76%, 70%) !important;
}
.before-bd-minor-terracotta::before {
  border-color: hsl(10, 76%, 70%) !important;
}
.after-bg-minor-terracotta::after {
  background: hsl(10, 76%, 70%) !important;
}
.after-fg-minor-terracotta::after {
  color: hsl(10, 76%, 70%) !important;
}
.after-bd-minor-terracotta::after {
  border-color: hsl(10, 76%, 70%) !important;
}
.before-bg-sat-terracotta::before {
  background: hsl(10, 76%, 40%) !important;
}
.before-fg-sat-terracotta::before {
  color: hsl(10, 76%, 40%) !important;
}
.before-bd-sat-terracotta::before {
  border-color: hsl(10, 76%, 40%) !important;
}
.after-bg-sat-terracotta::after {
  background: hsl(10, 76%, 40%) !important;
}
.after-fg-sat-terracotta::after {
  color: hsl(10, 76%, 40%) !important;
}
.after-bd-sat-terracotta::after {
  border-color: hsl(10, 76%, 40%) !important;
}
.before-bg-dark-terracotta::before {
  background: hsl(10, 76%, 30%) !important;
}
.before-fg-dark-terracotta::before {
  color: hsl(10, 76%, 30%) !important;
}
.before-bd-dark-terracotta::before {
  border-color: hsl(10, 76%, 30%) !important;
}
.after-bg-dark-terracotta::after {
  background: hsl(10, 76%, 30%) !important;
}
.after-fg-dark-terracotta::after {
  color: hsl(10, 76%, 30%) !important;
}
.after-bd-dark-terracotta::after {
  border-color: hsl(10, 76%, 30%) !important;
}
.before-bg-light-coral::before {
  background: hsl(16, 100%, 92%) !important;
}
.before-fg-light-coral::before {
  color: hsl(16, 100%, 92%) !important;
}
.before-bd-light-coral::before {
  border-color: hsl(16, 100%, 92%) !important;
}
.after-bg-light-coral::after {
  background: hsl(16, 100%, 92%) !important;
}
.after-fg-light-coral::after {
  color: hsl(16, 100%, 92%) !important;
}
.after-bd-light-coral::after {
  border-color: hsl(16, 100%, 92%) !important;
}
.before-bg-minor-coral::before {
  background: hsl(16, 100%, 82%) !important;
}
.before-fg-minor-coral::before {
  color: hsl(16, 100%, 82%) !important;
}
.before-bd-minor-coral::before {
  border-color: hsl(16, 100%, 82%) !important;
}
.after-bg-minor-coral::after {
  background: hsl(16, 100%, 82%) !important;
}
.after-fg-minor-coral::after {
  color: hsl(16, 100%, 82%) !important;
}
.after-bd-minor-coral::after {
  border-color: hsl(16, 100%, 82%) !important;
}
.before-bg-sat-coral::before {
  background: hsl(16, 100%, 52%) !important;
}
.before-fg-sat-coral::before {
  color: hsl(16, 100%, 52%) !important;
}
.before-bd-sat-coral::before {
  border-color: hsl(16, 100%, 52%) !important;
}
.after-bg-sat-coral::after {
  background: hsl(16, 100%, 52%) !important;
}
.after-fg-sat-coral::after {
  color: hsl(16, 100%, 52%) !important;
}
.after-bd-sat-coral::after {
  border-color: hsl(16, 100%, 52%) !important;
}
.before-bg-dark-coral::before {
  background: hsl(16, 100%, 42%) !important;
}
.before-fg-dark-coral::before {
  color: hsl(16, 100%, 42%) !important;
}
.before-bd-dark-coral::before {
  border-color: hsl(16, 100%, 42%) !important;
}
.after-bg-dark-coral::after {
  background: hsl(16, 100%, 42%) !important;
}
.after-fg-dark-coral::after {
  color: hsl(16, 100%, 42%) !important;
}
.after-bd-dark-coral::after {
  border-color: hsl(16, 100%, 42%) !important;
}
.before-bg-light-army::before {
  background: hsl(69, 34%, 75%) !important;
}
.before-fg-light-army::before {
  color: hsl(69, 34%, 75%) !important;
}
.before-bd-light-army::before {
  border-color: hsl(69, 34%, 75%) !important;
}
.after-bg-light-army::after {
  background: hsl(69, 34%, 75%) !important;
}
.after-fg-light-army::after {
  color: hsl(69, 34%, 75%) !important;
}
.after-bd-light-army::after {
  border-color: hsl(69, 34%, 75%) !important;
}
.before-bg-minor-army::before {
  background: hsl(69, 34%, 47%) !important;
}
.before-fg-minor-army::before {
  color: hsl(69, 34%, 47%) !important;
}
.before-bd-minor-army::before {
  border-color: hsl(69, 34%, 47%) !important;
}
.after-bg-minor-army::after {
  background: hsl(69, 34%, 47%) !important;
}
.after-fg-minor-army::after {
  color: hsl(69, 34%, 47%) !important;
}
.after-bd-minor-army::after {
  border-color: hsl(69, 34%, 47%) !important;
}
.before-bg-sat-army::before {
  background: hsl(69, 34%, 15%) !important;
}
.before-fg-sat-army::before {
  color: hsl(69, 34%, 15%) !important;
}
.before-bd-sat-army::before {
  border-color: hsl(69, 34%, 15%) !important;
}
.after-bg-sat-army::after {
  background: hsl(69, 34%, 15%) !important;
}
.after-fg-sat-army::after {
  color: hsl(69, 34%, 15%) !important;
}
.after-bd-sat-army::after {
  border-color: hsl(69, 34%, 15%) !important;
}
.before-bg-dark-army::before {
  background: hsl(69, 34%, 5%) !important;
}
.before-fg-dark-army::before {
  color: hsl(69, 34%, 5%) !important;
}
.before-bd-dark-army::before {
  border-color: hsl(69, 34%, 5%) !important;
}
.after-bg-dark-army::after {
  background: hsl(69, 34%, 5%) !important;
}
.after-fg-dark-army::after {
  color: hsl(69, 34%, 5%) !important;
}
.after-bd-dark-army::after {
  border-color: hsl(69, 34%, 5%) !important;
}
.before-bg-light-seashell::before {
  background: hsl(25, 100%, 98%) !important;
}
.before-fg-light-seashell::before {
  color: hsl(25, 100%, 98%) !important;
}
.before-bd-light-seashell::before {
  border-color: hsl(25, 100%, 98%) !important;
}
.after-bg-light-seashell::after {
  background: hsl(25, 100%, 98%) !important;
}
.after-fg-light-seashell::after {
  color: hsl(25, 100%, 98%) !important;
}
.after-bd-light-seashell::after {
  border-color: hsl(25, 100%, 98%) !important;
}
.before-bg-minor-seashell::before {
  background: hsl(25, 100%, 97%) !important;
}
.before-fg-minor-seashell::before {
  color: hsl(25, 100%, 97%) !important;
}
.before-bd-minor-seashell::before {
  border-color: hsl(25, 100%, 97%) !important;
}
.after-bg-minor-seashell::after {
  background: hsl(25, 100%, 97%) !important;
}
.after-fg-minor-seashell::after {
  color: hsl(25, 100%, 97%) !important;
}
.after-bd-minor-seashell::after {
  border-color: hsl(25, 100%, 97%) !important;
}
.before-bg-sat-seashell::before {
  background: hsl(25, 100%, 80%) !important;
}
.before-fg-sat-seashell::before {
  color: hsl(25, 100%, 80%) !important;
}
.before-bd-sat-seashell::before {
  border-color: hsl(25, 100%, 80%) !important;
}
.after-bg-sat-seashell::after {
  background: hsl(25, 100%, 80%) !important;
}
.after-fg-sat-seashell::after {
  color: hsl(25, 100%, 80%) !important;
}
.after-bd-sat-seashell::after {
  border-color: hsl(25, 100%, 80%) !important;
}
.before-bg-dark-seashell::before {
  background: hsl(25, 100%, 70%) !important;
}
.before-fg-dark-seashell::before {
  color: hsl(25, 100%, 70%) !important;
}
.before-bd-dark-seashell::before {
  border-color: hsl(25, 100%, 70%) !important;
}
.after-bg-dark-seashell::after {
  background: hsl(25, 100%, 70%) !important;
}
.after-fg-dark-seashell::after {
  color: hsl(25, 100%, 70%) !important;
}
.after-bd-dark-seashell::after {
  border-color: hsl(25, 100%, 70%) !important;
}
.before-bg-light-sand::before {
  background: hsl(45, 71%, 96%) !important;
}
.before-fg-light-sand::before {
  color: hsl(45, 71%, 96%) !important;
}
.before-bd-light-sand::before {
  border-color: hsl(45, 71%, 96%) !important;
}
.after-bg-light-sand::after {
  background: hsl(45, 71%, 96%) !important;
}
.after-fg-light-sand::after {
  color: hsl(45, 71%, 96%) !important;
}
.after-bd-light-sand::after {
  border-color: hsl(45, 71%, 96%) !important;
}
.before-bg-minor-sand::before {
  background: hsl(45, 71%, 88%) !important;
}
.before-fg-minor-sand::before {
  color: hsl(45, 71%, 88%) !important;
}
.before-bd-minor-sand::before {
  border-color: hsl(45, 71%, 88%) !important;
}
.after-bg-minor-sand::after {
  background: hsl(45, 71%, 88%) !important;
}
.after-fg-minor-sand::after {
  color: hsl(45, 71%, 88%) !important;
}
.after-bd-minor-sand::after {
  border-color: hsl(45, 71%, 88%) !important;
}
.before-bg-sat-sand::before {
  background: hsl(45, 71%, 66%) !important;
}
.before-fg-sat-sand::before {
  color: hsl(45, 71%, 66%) !important;
}
.before-bd-sat-sand::before {
  border-color: hsl(45, 71%, 66%) !important;
}
.after-bg-sat-sand::after {
  background: hsl(45, 71%, 66%) !important;
}
.after-fg-sat-sand::after {
  color: hsl(45, 71%, 66%) !important;
}
.after-bd-sat-sand::after {
  border-color: hsl(45, 71%, 66%) !important;
}
.before-bg-dark-sand::before {
  background: hsl(45, 71%, 56%) !important;
}
.before-fg-dark-sand::before {
  color: hsl(45, 71%, 56%) !important;
}
.before-bd-dark-sand::before {
  border-color: hsl(45, 71%, 56%) !important;
}
.after-bg-dark-sand::after {
  background: hsl(45, 71%, 56%) !important;
}
.after-fg-dark-sand::after {
  color: hsl(45, 71%, 56%) !important;
}
.after-bd-dark-sand::after {
  border-color: hsl(45, 71%, 56%) !important;
}

/* ../metroui-lib/source/colors-css/ribbed.less */
:root {
  --ribbed-size: 20px;
  --ribbed-alpha: 0.15;
  --ribbed-angle: -45deg;
}
.ribbed-gray {
  background:
    hsl(0, 0%, 80%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 95%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-gray {
  background:
    hsl(0, 0%, 87%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 65%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(210, 26%, 54%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(210, 26%, 84%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-gray-blue {
  background:
    hsl(210, 26%, 69%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(210, 26%, 39%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(210, 26%, 29%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(199, 15%, 40%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(199, 15%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-gray-mouse {
  background:
    hsl(199, 15%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(199, 15%, 25%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(199, 15%, 15%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(93, 97%, 71%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(93, 97%, 91%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-lime {
  background:
    hsl(93, 97%, 81%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(93, 97%, 56%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(93, 97%, 46%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(120, 100%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(120, 100%, 80%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-green {
  background:
    hsl(120, 100%, 45%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(120, 100%, 20%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(120, 100%, 10%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(140, 52%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(140, 52%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-emerald {
  background:
    hsl(140, 52%, 65%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(140, 52%, 40%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(140, 52%, 30%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(225, 100%, 68%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(225, 100%, 93%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-blue {
  background:
    hsl(225, 100%, 78%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(225, 100%, 53%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(225, 100%, 43%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(180, 77%, 44%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(180, 77%, 79%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-teal {
  background:
    hsl(180, 77%, 54%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(180, 77%, 29%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(180, 77%, 19%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(221, 100%, 79%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(221, 100%, 94%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-cyan {
  background:
    hsl(221, 100%, 89%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(221, 100%, 64%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(221, 100%, 54%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(215, 100%, 34%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(215, 100%, 79%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-cobalt {
  background:
    hsl(215, 100%, 49%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(215, 100%, 19%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(215, 100%, 9%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(276, 100%, 33%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(276, 100%, 78%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-indigo {
  background:
    hsl(276, 100%, 48%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(276, 100%, 18%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(276, 100%, 8%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(259, 84%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(259, 84%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-almost {
  background:
    hsl(259, 84%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(259, 84%, 40%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(259, 84%, 30%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 76%, 72%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 76%, 92%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-violet {
  background:
    hsl(300, 76%, 82%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 76%, 57%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 76%, 47%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(350, 100%, 88%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(350, 100%, 98%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-pink {
  background:
    hsl(350, 100%, 93%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(350, 100%, 73%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(350, 100%, 63%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 100%, 50%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 100%, 90%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-magenta {
  background:
    hsl(300, 100%, 75%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 100%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(300, 100%, 25%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(348, 88%, 46%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(348, 88%, 91%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-crimson {
  background:
    hsl(348, 88%, 66%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(348, 88%, 31%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(348, 88%, 21%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 100%, 50%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 100%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-red {
  background:
    hsl(0, 100%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 100%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 100%, 25%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(3, 100%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(3, 100%, 95%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-clown {
  background:
    hsl(3, 100%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(3, 100%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(3, 100%, 45%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(39, 100%, 50%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(39, 100%, 90%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-orange {
  background:
    hsl(39, 100%, 75%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(39, 100%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(39, 100%, 25%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 100%, 58%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 100%, 78%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-amber {
  background:
    hsl(45, 100%, 68%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 100%, 43%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 100%, 33%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(52, 100%, 68%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(52, 100%, 93%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-yellow {
  background:
    hsl(52, 100%, 83%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(52, 100%, 53%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(52, 100%, 43%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 57%, 51%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 57%, 81%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-brown {
  background:
    hsl(25, 57%, 66%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 57%, 36%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 57%, 26%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(60, 100%, 32%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(60, 100%, 72%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-olive {
  background:
    hsl(60, 100%, 42%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(60, 100%, 17%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(60, 100%, 7%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(209, 19%, 57%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(209, 19%, 87%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-steel {
  background:
    hsl(209, 19%, 77%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(209, 19%, 42%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(209, 19%, 32%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(277, 100%, 84%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(277, 100%, 96%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-mauve {
  background:
    hsl(277, 100%, 90%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(277, 100%, 69%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(277, 100%, 59%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 19%, 50%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 19%, 80%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-taupe {
  background:
    hsl(29, 19%, 67%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 19%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 19%, 25%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(37, 74%, 88%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(37, 74%, 98%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-champagne {
  background:
    hsl(37, 74%, 93%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(37, 74%, 73%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(37, 74%, 63%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(47, 47%, 69%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(47, 47%, 94%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-khaki {
  background:
    hsl(47, 47%, 84%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(47, 47%, 54%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(47, 47%, 44%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 60%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 90%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-charcoal {
  background:
    hsl(0, 0%, 80%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 45%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(0, 0%, 35%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 75%, 57%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 75%, 87%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-bronze {
  background:
    hsl(29, 75%, 72%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 75%, 42%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 75%, 32%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(216, 53%, 66%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(216, 53%, 93%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-windstorm {
  background:
    hsl(216, 53%, 81%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(216, 53%, 51%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(216, 53%, 41%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 79%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 79%, 97%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-nude {
  background:
    hsl(29, 79%, 92%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 79%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(29, 79%, 60%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(10, 76%, 55%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(10, 76%, 85%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-terracotta {
  background:
    hsl(10, 76%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(10, 76%, 40%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(10, 76%, 30%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(16, 100%, 67%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(16, 100%, 92%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-coral {
  background:
    hsl(16, 100%, 82%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(16, 100%, 52%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(16, 100%, 42%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(69, 34%, 30%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(69, 34%, 75%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-army {
  background:
    hsl(69, 34%, 47%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(69, 34%, 15%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(69, 34%, 5%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 100%, 95%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 100%, 98%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-seashell {
  background:
    hsl(25, 100%, 97%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 100%, 80%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(25, 100%, 70%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 71%, 81%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 71%, 96%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}
.ribbed-minor-sand {
  background:
    hsl(45, 71%, 88%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 71%, 66%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-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:
    hsl(45, 71%, 56%) linear-gradient(
      var(--ribbed-angle),
      rgba(255, 255, 255, var(--ribbed-alpha)) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 50%,
      rgba(255, 255, 255, var(--ribbed-alpha)) 75%,
      transparent 75%,
      transparent) !important;
  background-size: var(--ribbed-size) var(--ribbed-size) !important;
}

/* ../metroui-lib/source/colors-css/accent.less */
.primary {
  outline-color: #fee5e5 !important;
  background-color: #f75553 !important;
  border-color: #f75553 !important;
  color: #ffffff !important;
}
.primary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.secondary {
  outline-color: #ed632a !important;
  background-color: #74290a !important;
  border-color: #74290a !important;
  color: #ffffff !important;
}
.secondary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.tertiary {
  outline-color: #ffffff !important;
  background-color: #ffbebd !important;
  border-color: #ffbebd !important;
  color: #ffffff !important;
}
.tertiary.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.success {
  outline-color: hsl(140, 52%, 85%) !important;
  background-color: hsl(140, 52%, 55%) !important;
  border-color: hsl(140, 52%, 55%) !important;
  color: #ffffff !important;
}
.success.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.alert {
  outline-color: hsl(348, 88%, 76%) !important;
  background-color: hsl(348, 88%, 46%) !important;
  border-color: hsl(348, 88%, 46%) !important;
  color: #ffffff !important;
}
.alert.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.warning {
  outline-color: hsl(39, 100%, 80%) !important;
  background-color: hsl(39, 100%, 50%) !important;
  border-color: hsl(39, 100%, 50%) !important;
  color: #ffffff !important;
}
.warning.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.info {
  outline-color: #dfebff !important;
  background-color: #468cff !important;
  border-color: #468cff !important;
  color: #ffffff !important;
}
.info.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.dark {
  outline-color: #9d9d9d !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
  color: #ffffff !important;
}
.dark.dropdown-toggle::before {
  border-color: #ffffff !important;
}
.light {
  outline-color: #ffffff !important;
  background-color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  color: #ffffff !important;
}
.light.dropdown-toggle::before {
  border-color: #ffffff !important;
}
button.primary.outline,
.button.primary.outline,
.command-button.primary.outline,
.shortcut.primary.outline,
.action-button.primary.outline {
  color: #f75553 !important;
  border-color: #f75553 !important;
  background-color: transparent !important;
}
button.primary.outline.dropdown-toggle::before,
.button.primary.outline.dropdown-toggle::before,
.command-button.primary.outline.dropdown-toggle::before,
.shortcut.primary.outline.dropdown-toggle::before,
.action-button.primary.outline.dropdown-toggle::before {
  border-color: #f75553 !important;
}
@media (hover: hover) {
  button.primary.outline:hover,
  .button.primary.outline:hover,
  .command-button.primary.outline:hover,
  .shortcut.primary.outline:hover,
  .action-button.primary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.primary.outline:active,
  .button.primary.outline:active,
  .command-button.primary.outline:active,
  .shortcut.primary.outline:active,
  .action-button.primary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.primary:hover,
  .button.primary:hover,
  .command-button.primary:hover,
  .shortcut.primary:hover,
  .action-button.primary:hover {
    color: #ffffff !important;
    background-color: #f52522 !important;
    border-color: #f52522 !important;
  }
  button.primary:hover.dropdown-toggle::before,
  .button.primary:hover.dropdown-toggle::before,
  .command-button.primary:hover.dropdown-toggle::before,
  .shortcut.primary:hover.dropdown-toggle::before,
  .action-button.primary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.primary:active,
  .button.primary:active,
  .command-button.primary:active,
  .shortcut.primary:active,
  .action-button.primary:active {
    color: #ffffff !important;
    background-color: #f52522 !important;
    border-color: #f52522 !important;
  }
  button.primary:active.dropdown-toggle::before,
  .button.primary:active.dropdown-toggle::before,
  .command-button.primary:active.dropdown-toggle::before,
  .shortcut.primary:active.dropdown-toggle::before,
  .action-button.primary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.primary.same-color:hover,
  .button.primary.same-color:hover,
  .command-button.primary.same-color:hover,
  .shortcut.primary.same-color:hover,
  .action-button.primary.same-color:hover {
    background-color: #f75553 !important;
    border-color: #f75553 !important;
  }
}
@media (hover: none) {
  button.primary.same-color:active,
  .button.primary.same-color:active,
  .command-button.primary.same-color:active,
  .shortcut.primary.same-color:active,
  .action-button.primary.same-color:active {
    background-color: #f75553 !important;
    border-color: #f75553 !important;
  }
}
button.secondary.outline,
.button.secondary.outline,
.command-button.secondary.outline,
.shortcut.secondary.outline,
.action-button.secondary.outline {
  color: #74290a !important;
  border-color: #74290a !important;
  background-color: transparent !important;
}
button.secondary.outline.dropdown-toggle::before,
.button.secondary.outline.dropdown-toggle::before,
.command-button.secondary.outline.dropdown-toggle::before,
.shortcut.secondary.outline.dropdown-toggle::before,
.action-button.secondary.outline.dropdown-toggle::before {
  border-color: #74290a !important;
}
@media (hover: hover) {
  button.secondary.outline:hover,
  .button.secondary.outline:hover,
  .command-button.secondary.outline:hover,
  .shortcut.secondary.outline:hover,
  .action-button.secondary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.secondary.outline:active,
  .button.secondary.outline:active,
  .command-button.secondary.outline:active,
  .shortcut.secondary.outline:active,
  .action-button.secondary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.secondary:hover,
  .button.secondary:hover,
  .command-button.secondary:hover,
  .shortcut.secondary:hover,
  .action-button.secondary:hover {
    color: #ffffff !important;
    background-color: #451806 !important;
    border-color: #451806 !important;
  }
  button.secondary:hover.dropdown-toggle::before,
  .button.secondary:hover.dropdown-toggle::before,
  .command-button.secondary:hover.dropdown-toggle::before,
  .shortcut.secondary:hover.dropdown-toggle::before,
  .action-button.secondary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.secondary:active,
  .button.secondary:active,
  .command-button.secondary:active,
  .shortcut.secondary:active,
  .action-button.secondary:active {
    color: #ffffff !important;
    background-color: #451806 !important;
    border-color: #451806 !important;
  }
  button.secondary:active.dropdown-toggle::before,
  .button.secondary:active.dropdown-toggle::before,
  .command-button.secondary:active.dropdown-toggle::before,
  .shortcut.secondary:active.dropdown-toggle::before,
  .action-button.secondary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.secondary.same-color:hover,
  .button.secondary.same-color:hover,
  .command-button.secondary.same-color:hover,
  .shortcut.secondary.same-color:hover,
  .action-button.secondary.same-color:hover {
    background-color: #74290a !important;
    border-color: #74290a !important;
  }
}
@media (hover: none) {
  button.secondary.same-color:active,
  .button.secondary.same-color:active,
  .command-button.secondary.same-color:active,
  .shortcut.secondary.same-color:active,
  .action-button.secondary.same-color:active {
    background-color: #74290a !important;
    border-color: #74290a !important;
  }
}
button.tertiary.outline,
.button.tertiary.outline,
.command-button.tertiary.outline,
.shortcut.tertiary.outline,
.action-button.tertiary.outline {
  color: #ffbebd !important;
  border-color: #ffbebd !important;
  background-color: transparent !important;
}
button.tertiary.outline.dropdown-toggle::before,
.button.tertiary.outline.dropdown-toggle::before,
.command-button.tertiary.outline.dropdown-toggle::before,
.shortcut.tertiary.outline.dropdown-toggle::before,
.action-button.tertiary.outline.dropdown-toggle::before {
  border-color: #ffbebd !important;
}
@media (hover: hover) {
  button.tertiary.outline:hover,
  .button.tertiary.outline:hover,
  .command-button.tertiary.outline:hover,
  .shortcut.tertiary.outline:hover,
  .action-button.tertiary.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.tertiary.outline:active,
  .button.tertiary.outline:active,
  .command-button.tertiary.outline:active,
  .shortcut.tertiary.outline:active,
  .action-button.tertiary.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.tertiary:hover,
  .button.tertiary:hover,
  .command-button.tertiary:hover,
  .shortcut.tertiary:hover,
  .action-button.tertiary:hover {
    color: #ffffff !important;
    background-color: #ff8c8a !important;
    border-color: #ff8c8a !important;
  }
  button.tertiary:hover.dropdown-toggle::before,
  .button.tertiary:hover.dropdown-toggle::before,
  .command-button.tertiary:hover.dropdown-toggle::before,
  .shortcut.tertiary:hover.dropdown-toggle::before,
  .action-button.tertiary:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.tertiary:active,
  .button.tertiary:active,
  .command-button.tertiary:active,
  .shortcut.tertiary:active,
  .action-button.tertiary:active {
    color: #ffffff !important;
    background-color: #ff8c8a !important;
    border-color: #ff8c8a !important;
  }
  button.tertiary:active.dropdown-toggle::before,
  .button.tertiary:active.dropdown-toggle::before,
  .command-button.tertiary:active.dropdown-toggle::before,
  .shortcut.tertiary:active.dropdown-toggle::before,
  .action-button.tertiary:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.tertiary.same-color:hover,
  .button.tertiary.same-color:hover,
  .command-button.tertiary.same-color:hover,
  .shortcut.tertiary.same-color:hover,
  .action-button.tertiary.same-color:hover {
    background-color: #ffbebd !important;
    border-color: #ffbebd !important;
  }
}
@media (hover: none) {
  button.tertiary.same-color:active,
  .button.tertiary.same-color:active,
  .command-button.tertiary.same-color:active,
  .shortcut.tertiary.same-color:active,
  .action-button.tertiary.same-color:active {
    background-color: #ffbebd !important;
    border-color: #ffbebd !important;
  }
}
button.success.outline,
.button.success.outline,
.command-button.success.outline,
.shortcut.success.outline,
.action-button.success.outline {
  color: hsl(140, 52%, 55%) !important;
  border-color: hsl(140, 52%, 55%) !important;
  background-color: transparent !important;
}
button.success.outline.dropdown-toggle::before,
.button.success.outline.dropdown-toggle::before,
.command-button.success.outline.dropdown-toggle::before,
.shortcut.success.outline.dropdown-toggle::before,
.action-button.success.outline.dropdown-toggle::before {
  border-color: hsl(140, 52%, 55%) !important;
}
@media (hover: hover) {
  button.success.outline:hover,
  .button.success.outline:hover,
  .command-button.success.outline:hover,
  .shortcut.success.outline:hover,
  .action-button.success.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.success.outline:active,
  .button.success.outline:active,
  .command-button.success.outline:active,
  .shortcut.success.outline:active,
  .action-button.success.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.success:hover,
  .button.success:hover,
  .command-button.success:hover,
  .shortcut.success:hover,
  .action-button.success:hover {
    color: #ffffff !important;
    background-color: hsl(140, 52%, 45%) !important;
    border-color: hsl(140, 52%, 45%) !important;
  }
  button.success:hover.dropdown-toggle::before,
  .button.success:hover.dropdown-toggle::before,
  .command-button.success:hover.dropdown-toggle::before,
  .shortcut.success:hover.dropdown-toggle::before,
  .action-button.success:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.success:active,
  .button.success:active,
  .command-button.success:active,
  .shortcut.success:active,
  .action-button.success:active {
    color: #ffffff !important;
    background-color: hsl(140, 52%, 45%) !important;
    border-color: hsl(140, 52%, 45%) !important;
  }
  button.success:active.dropdown-toggle::before,
  .button.success:active.dropdown-toggle::before,
  .command-button.success:active.dropdown-toggle::before,
  .shortcut.success:active.dropdown-toggle::before,
  .action-button.success:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.success.same-color:hover,
  .button.success.same-color:hover,
  .command-button.success.same-color:hover,
  .shortcut.success.same-color:hover,
  .action-button.success.same-color:hover {
    background-color: hsl(140, 52%, 55%) !important;
    border-color: hsl(140, 52%, 55%) !important;
  }
}
@media (hover: none) {
  button.success.same-color:active,
  .button.success.same-color:active,
  .command-button.success.same-color:active,
  .shortcut.success.same-color:active,
  .action-button.success.same-color:active {
    background-color: hsl(140, 52%, 55%) !important;
    border-color: hsl(140, 52%, 55%) !important;
  }
}
button.alert.outline,
.button.alert.outline,
.command-button.alert.outline,
.shortcut.alert.outline,
.action-button.alert.outline {
  color: hsl(348, 88%, 46%) !important;
  border-color: hsl(348, 88%, 46%) !important;
  background-color: transparent !important;
}
button.alert.outline.dropdown-toggle::before,
.button.alert.outline.dropdown-toggle::before,
.command-button.alert.outline.dropdown-toggle::before,
.shortcut.alert.outline.dropdown-toggle::before,
.action-button.alert.outline.dropdown-toggle::before {
  border-color: hsl(348, 88%, 46%) !important;
}
@media (hover: hover) {
  button.alert.outline:hover,
  .button.alert.outline:hover,
  .command-button.alert.outline:hover,
  .shortcut.alert.outline:hover,
  .action-button.alert.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.alert.outline:active,
  .button.alert.outline:active,
  .command-button.alert.outline:active,
  .shortcut.alert.outline:active,
  .action-button.alert.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.alert:hover,
  .button.alert:hover,
  .command-button.alert:hover,
  .shortcut.alert:hover,
  .action-button.alert:hover {
    color: #ffffff !important;
    background-color: hsl(348, 88%, 36%) !important;
    border-color: hsl(348, 88%, 36%) !important;
  }
  button.alert:hover.dropdown-toggle::before,
  .button.alert:hover.dropdown-toggle::before,
  .command-button.alert:hover.dropdown-toggle::before,
  .shortcut.alert:hover.dropdown-toggle::before,
  .action-button.alert:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.alert:active,
  .button.alert:active,
  .command-button.alert:active,
  .shortcut.alert:active,
  .action-button.alert:active {
    color: #ffffff !important;
    background-color: hsl(348, 88%, 36%) !important;
    border-color: hsl(348, 88%, 36%) !important;
  }
  button.alert:active.dropdown-toggle::before,
  .button.alert:active.dropdown-toggle::before,
  .command-button.alert:active.dropdown-toggle::before,
  .shortcut.alert:active.dropdown-toggle::before,
  .action-button.alert:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.alert.same-color:hover,
  .button.alert.same-color:hover,
  .command-button.alert.same-color:hover,
  .shortcut.alert.same-color:hover,
  .action-button.alert.same-color:hover {
    background-color: hsl(348, 88%, 46%) !important;
    border-color: hsl(348, 88%, 46%) !important;
  }
}
@media (hover: none) {
  button.alert.same-color:active,
  .button.alert.same-color:active,
  .command-button.alert.same-color:active,
  .shortcut.alert.same-color:active,
  .action-button.alert.same-color:active {
    background-color: hsl(348, 88%, 46%) !important;
    border-color: hsl(348, 88%, 46%) !important;
  }
}
button.warning.outline,
.button.warning.outline,
.command-button.warning.outline,
.shortcut.warning.outline,
.action-button.warning.outline {
  color: hsl(39, 100%, 50%) !important;
  border-color: hsl(39, 100%, 50%) !important;
  background-color: transparent !important;
}
button.warning.outline.dropdown-toggle::before,
.button.warning.outline.dropdown-toggle::before,
.command-button.warning.outline.dropdown-toggle::before,
.shortcut.warning.outline.dropdown-toggle::before,
.action-button.warning.outline.dropdown-toggle::before {
  border-color: hsl(39, 100%, 50%) !important;
}
@media (hover: hover) {
  button.warning.outline:hover,
  .button.warning.outline:hover,
  .command-button.warning.outline:hover,
  .shortcut.warning.outline:hover,
  .action-button.warning.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.warning.outline:active,
  .button.warning.outline:active,
  .command-button.warning.outline:active,
  .shortcut.warning.outline:active,
  .action-button.warning.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.warning:hover,
  .button.warning:hover,
  .command-button.warning:hover,
  .shortcut.warning:hover,
  .action-button.warning:hover {
    color: #ffffff !important;
    background-color: hsl(39, 100%, 40%) !important;
    border-color: hsl(39, 100%, 40%) !important;
  }
  button.warning:hover.dropdown-toggle::before,
  .button.warning:hover.dropdown-toggle::before,
  .command-button.warning:hover.dropdown-toggle::before,
  .shortcut.warning:hover.dropdown-toggle::before,
  .action-button.warning:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.warning:active,
  .button.warning:active,
  .command-button.warning:active,
  .shortcut.warning:active,
  .action-button.warning:active {
    color: #ffffff !important;
    background-color: hsl(39, 100%, 40%) !important;
    border-color: hsl(39, 100%, 40%) !important;
  }
  button.warning:active.dropdown-toggle::before,
  .button.warning:active.dropdown-toggle::before,
  .command-button.warning:active.dropdown-toggle::before,
  .shortcut.warning:active.dropdown-toggle::before,
  .action-button.warning:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.warning.same-color:hover,
  .button.warning.same-color:hover,
  .command-button.warning.same-color:hover,
  .shortcut.warning.same-color:hover,
  .action-button.warning.same-color:hover {
    background-color: hsl(39, 100%, 50%) !important;
    border-color: hsl(39, 100%, 50%) !important;
  }
}
@media (hover: none) {
  button.warning.same-color:active,
  .button.warning.same-color:active,
  .command-button.warning.same-color:active,
  .shortcut.warning.same-color:active,
  .action-button.warning.same-color:active {
    background-color: hsl(39, 100%, 50%) !important;
    border-color: hsl(39, 100%, 50%) !important;
  }
}
button.info.outline,
.button.info.outline,
.command-button.info.outline,
.shortcut.info.outline,
.action-button.info.outline {
  color: #468cff !important;
  border-color: #468cff !important;
  background-color: transparent !important;
}
button.info.outline.dropdown-toggle::before,
.button.info.outline.dropdown-toggle::before,
.command-button.info.outline.dropdown-toggle::before,
.shortcut.info.outline.dropdown-toggle::before,
.action-button.info.outline.dropdown-toggle::before {
  border-color: #468cff !important;
}
@media (hover: hover) {
  button.info.outline:hover,
  .button.info.outline:hover,
  .command-button.info.outline:hover,
  .shortcut.info.outline:hover,
  .action-button.info.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.info.outline:active,
  .button.info.outline:active,
  .command-button.info.outline:active,
  .shortcut.info.outline:active,
  .action-button.info.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.info:hover,
  .button.info:hover,
  .command-button.info:hover,
  .shortcut.info:hover,
  .action-button.info:hover {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  button.info:hover.dropdown-toggle::before,
  .button.info:hover.dropdown-toggle::before,
  .command-button.info:hover.dropdown-toggle::before,
  .shortcut.info:hover.dropdown-toggle::before,
  .action-button.info:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.info:active,
  .button.info:active,
  .command-button.info:active,
  .shortcut.info:active,
  .action-button.info:active {
    color: #ffffff !important;
    background-color: #136cff !important;
    border-color: #136cff !important;
  }
  button.info:active.dropdown-toggle::before,
  .button.info:active.dropdown-toggle::before,
  .command-button.info:active.dropdown-toggle::before,
  .shortcut.info:active.dropdown-toggle::before,
  .action-button.info:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.info.same-color:hover,
  .button.info.same-color:hover,
  .command-button.info.same-color:hover,
  .shortcut.info.same-color:hover,
  .action-button.info.same-color:hover {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
@media (hover: none) {
  button.info.same-color:active,
  .button.info.same-color:active,
  .command-button.info.same-color:active,
  .shortcut.info.same-color:active,
  .action-button.info.same-color:active {
    background-color: #468cff !important;
    border-color: #468cff !important;
  }
}
button.dark.outline,
.button.dark.outline,
.command-button.dark.outline,
.shortcut.dark.outline,
.action-button.dark.outline {
  color: #505050 !important;
  border-color: #505050 !important;
  background-color: transparent !important;
}
button.dark.outline.dropdown-toggle::before,
.button.dark.outline.dropdown-toggle::before,
.command-button.dark.outline.dropdown-toggle::before,
.shortcut.dark.outline.dropdown-toggle::before,
.action-button.dark.outline.dropdown-toggle::before {
  border-color: #505050 !important;
}
@media (hover: hover) {
  button.dark.outline:hover,
  .button.dark.outline:hover,
  .command-button.dark.outline:hover,
  .shortcut.dark.outline:hover,
  .action-button.dark.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.dark.outline:active,
  .button.dark.outline:active,
  .command-button.dark.outline:active,
  .shortcut.dark.outline:active,
  .action-button.dark.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.dark:hover,
  .button.dark:hover,
  .command-button.dark:hover,
  .shortcut.dark:hover,
  .action-button.dark:hover {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  button.dark:hover.dropdown-toggle::before,
  .button.dark:hover.dropdown-toggle::before,
  .command-button.dark:hover.dropdown-toggle::before,
  .shortcut.dark:hover.dropdown-toggle::before,
  .action-button.dark:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.dark:active,
  .button.dark:active,
  .command-button.dark:active,
  .shortcut.dark:active,
  .action-button.dark:active {
    color: #ffffff !important;
    background-color: #373737 !important;
    border-color: #373737 !important;
  }
  button.dark:active.dropdown-toggle::before,
  .button.dark:active.dropdown-toggle::before,
  .command-button.dark:active.dropdown-toggle::before,
  .shortcut.dark:active.dropdown-toggle::before,
  .action-button.dark:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.dark.same-color:hover,
  .button.dark.same-color:hover,
  .command-button.dark.same-color:hover,
  .shortcut.dark.same-color:hover,
  .action-button.dark.same-color:hover {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
@media (hover: none) {
  button.dark.same-color:active,
  .button.dark.same-color:active,
  .command-button.dark.same-color:active,
  .shortcut.dark.same-color:active,
  .action-button.dark.same-color:active {
    background-color: #505050 !important;
    border-color: #505050 !important;
  }
}
button.light.outline,
.button.light.outline,
.command-button.light.outline,
.shortcut.light.outline,
.action-button.light.outline {
  color: #f8f8f8 !important;
  border-color: #f8f8f8 !important;
  background-color: transparent !important;
}
button.light.outline.dropdown-toggle::before,
.button.light.outline.dropdown-toggle::before,
.command-button.light.outline.dropdown-toggle::before,
.shortcut.light.outline.dropdown-toggle::before,
.action-button.light.outline.dropdown-toggle::before {
  border-color: #f8f8f8 !important;
}
@media (hover: hover) {
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover {
    color: #ffffff !important;
  }
}
@media (hover: none) {
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active {
    color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.light:hover,
  .button.light:hover,
  .command-button.light:hover,
  .shortcut.light:hover,
  .action-button.light:hover {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  button.light:hover.dropdown-toggle::before,
  .button.light:hover.dropdown-toggle::before,
  .command-button.light:hover.dropdown-toggle::before,
  .shortcut.light:hover.dropdown-toggle::before,
  .action-button.light:hover.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: none) {
  button.light:active,
  .button.light:active,
  .command-button.light:active,
  .shortcut.light:active,
  .action-button.light:active {
    color: #ffffff !important;
    background-color: #dfdfdf !important;
    border-color: #dfdfdf !important;
  }
  button.light:active.dropdown-toggle::before,
  .button.light:active.dropdown-toggle::before,
  .command-button.light:active.dropdown-toggle::before,
  .shortcut.light:active.dropdown-toggle::before,
  .action-button.light:active.dropdown-toggle::before {
    border-color: #ffffff !important;
  }
}
@media (hover: hover) {
  button.light.same-color:hover,
  .button.light.same-color:hover,
  .command-button.light.same-color:hover,
  .shortcut.light.same-color:hover,
  .action-button.light.same-color:hover {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
@media (hover: none) {
  button.light.same-color:active,
  .button.light.same-color:active,
  .command-button.light.same-color:active,
  .shortcut.light.same-color:active,
  .action-button.light.same-color:active {
    background-color: #f8f8f8 !important;
    border-color: #f8f8f8 !important;
  }
}
button.yellow,
.button.yellow,
.command-button.yellow,
.shortcut.yellow,
.action-button.yellow,
button.yellow.outline,
.button.yellow.outline,
.command-button.yellow.outline,
.shortcut.yellow.outline,
.action-button.yellow.outline,
button.light,
.button.light,
.command-button.light,
.shortcut.light,
.action-button.light,
button.light.outline,
.button.light.outline,
.command-button.light.outline,
.shortcut.light.outline,
.action-button.light.outline {
  color: #1d1d1d !important;
}
@media (hover: hover) {
  button.yellow:hover,
  .button.yellow:hover,
  .command-button.yellow:hover,
  .shortcut.yellow:hover,
  .action-button.yellow:hover,
  button.yellow.outline:hover,
  .button.yellow.outline:hover,
  .command-button.yellow.outline:hover,
  .shortcut.yellow.outline:hover,
  .action-button.yellow.outline:hover,
  button.light:hover,
  .button.light:hover,
  .command-button.light:hover,
  .shortcut.light:hover,
  .action-button.light:hover,
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover,
  button.yellow.outline:hover,
  .button.yellow.outline:hover,
  .command-button.yellow.outline:hover,
  .shortcut.yellow.outline:hover,
  .action-button.yellow.outline:hover,
  button.yellow.outline.outline:hover,
  .button.yellow.outline.outline:hover,
  .command-button.yellow.outline.outline:hover,
  .shortcut.yellow.outline.outline:hover,
  .action-button.yellow.outline.outline:hover,
  button.light.outline:hover,
  .button.light.outline:hover,
  .command-button.light.outline:hover,
  .shortcut.light.outline:hover,
  .action-button.light.outline:hover,
  button.light.outline.outline:hover,
  .button.light.outline.outline:hover,
  .command-button.light.outline.outline:hover,
  .shortcut.light.outline.outline:hover,
  .action-button.light.outline.outline:hover {
    color: #1d1d1d !important;
  }
}
@media (hover: none) {
  button.yellow:active,
  .button.yellow:active,
  .command-button.yellow:active,
  .shortcut.yellow:active,
  .action-button.yellow:active,
  button.yellow.outline:active,
  .button.yellow.outline:active,
  .command-button.yellow.outline:active,
  .shortcut.yellow.outline:active,
  .action-button.yellow.outline:active,
  button.light:active,
  .button.light:active,
  .command-button.light:active,
  .shortcut.light:active,
  .action-button.light:active,
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active,
  button.yellow.outline:active,
  .button.yellow.outline:active,
  .command-button.yellow.outline:active,
  .shortcut.yellow.outline:active,
  .action-button.yellow.outline:active,
  button.yellow.outline.outline:active,
  .button.yellow.outline.outline:active,
  .command-button.yellow.outline.outline:active,
  .shortcut.yellow.outline.outline:active,
  .action-button.yellow.outline.outline:active,
  button.light.outline:active,
  .button.light.outline:active,
  .command-button.light.outline:active,
  .shortcut.light.outline:active,
  .action-button.light.outline:active,
  button.light.outline.outline:active,
  .button.light.outline.outline:active,
  .command-button.light.outline.outline:active,
  .shortcut.light.outline.outline:active,
  .action-button.light.outline.outline:active {
    color: #1d1d1d !important;
  }
}
.focusable.primary:active,
.focusable.primary.focus,
.focusable.primary:focus {
  box-shadow: 0 0 0 3px rgba(247, 85, 83, 0.45) !important;
}
.focusable.secondary:active,
.focusable.secondary.focus,
.focusable.secondary:focus {
  box-shadow: 0 0 0 3px rgba(116, 41, 10, 0.45) !important;
}
.focusable.tertiary:active,
.focusable.tertiary.focus,
.focusable.tertiary:focus {
  box-shadow: 0 0 0 3px rgba(255, 190, 189, 0.45) !important;
}
.focusable.success:active,
.focusable.success.focus,
.focusable.success:focus {
  box-shadow: 0 0 0 3px rgba(81, 200, 120, 0.45) !important;
}
.focusable.alert:active,
.focusable.alert.focus,
.focusable.alert:focus {
  box-shadow: 0 0 0 3px rgba(221, 14, 55, 0.45) !important;
}
.focusable.warning:active,
.focusable.warning.focus,
.focusable.warning:focus {
  box-shadow: 0 0 0 3px rgba(255, 166, 0, 0.45) !important;
}
.focusable.info:active,
.focusable.info.focus,
.focusable.info:focus {
  box-shadow: 0 0 0 3px rgba(70, 140, 255, 0.45) !important;
}
.focusable.dark:active,
.focusable.dark.focus,
.focusable.dark:focus {
  box-shadow: 0 0 0 3px rgba(80, 80, 80, 0.45) !important;
}
.focusable.light:active,
.focusable.light.focus,
.focusable.light:focus {
  box-shadow: 0 0 0 3px rgba(248, 248, 248, 0.45) !important;
}
.metro-input.primary,
.file.primary,
.input.primary,
.select.primary,
.textarea.primary,
.keypad.primary,
.tag-input.primary,
.spinner.primary {
  border-color: #f75553;
}
.metro-input.primary:focus,
.file.primary:focus,
.input.primary:focus,
.select.primary:focus,
.textarea.primary:focus,
.keypad.primary:focus,
.tag-input.primary:focus,
.spinner.primary:focus,
.metro-input.primary.focused,
.file.primary.focused,
.input.primary.focused,
.select.primary.focused,
.textarea.primary.focused,
.keypad.primary.focused,
.tag-input.primary.focused,
.spinner.primary.focused {
  box-shadow: 0 0 0 3px rgba(247, 85, 83, 0.45);
}
.metro-input.secondary,
.file.secondary,
.input.secondary,
.select.secondary,
.textarea.secondary,
.keypad.secondary,
.tag-input.secondary,
.spinner.secondary {
  border-color: #74290a;
}
.metro-input.secondary:focus,
.file.secondary:focus,
.input.secondary:focus,
.select.secondary:focus,
.textarea.secondary:focus,
.keypad.secondary:focus,
.tag-input.secondary:focus,
.spinner.secondary:focus,
.metro-input.secondary.focused,
.file.secondary.focused,
.input.secondary.focused,
.select.secondary.focused,
.textarea.secondary.focused,
.keypad.secondary.focused,
.tag-input.secondary.focused,
.spinner.secondary.focused {
  box-shadow: 0 0 0 3px rgba(116, 41, 10, 0.45);
}
.metro-input.tertiary,
.file.tertiary,
.input.tertiary,
.select.tertiary,
.textarea.tertiary,
.keypad.tertiary,
.tag-input.tertiary,
.spinner.tertiary {
  border-color: #ffbebd;
}
.metro-input.tertiary:focus,
.file.tertiary:focus,
.input.tertiary:focus,
.select.tertiary:focus,
.textarea.tertiary:focus,
.keypad.tertiary:focus,
.tag-input.tertiary:focus,
.spinner.tertiary:focus,
.metro-input.tertiary.focused,
.file.tertiary.focused,
.input.tertiary.focused,
.select.tertiary.focused,
.textarea.tertiary.focused,
.keypad.tertiary.focused,
.tag-input.tertiary.focused,
.spinner.tertiary.focused {
  box-shadow: 0 0 0 3px rgba(255, 190, 189, 0.45);
}
.metro-input.success,
.file.success,
.input.success,
.select.success,
.textarea.success,
.keypad.success,
.tag-input.success,
.spinner.success {
  border-color: hsl(140, 52%, 55%);
}
.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(81, 200, 120, 0.45);
}
.metro-input.alert,
.file.alert,
.input.alert,
.select.alert,
.textarea.alert,
.keypad.alert,
.tag-input.alert,
.spinner.alert {
  border-color: hsl(348, 88%, 46%);
}
.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(221, 14, 55, 0.45);
}
.metro-input.warning,
.file.warning,
.input.warning,
.select.warning,
.textarea.warning,
.keypad.warning,
.tag-input.warning,
.spinner.warning {
  border-color: hsl(39, 100%, 50%);
}
.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, 166, 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);
}

/* ../metroui-lib/source/colors-css/gradients.less */
:root {
  --gradient-direction: to right;
  --gradient-position: circle;
}
.gradient {
  background: var(--background) !important;
}
.gradient-text {
  background: var(--background) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.gradient-gray {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 0%, 90%),
      hsl(0, 0%, 65%));
}
.gradient-gray-blue {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(210, 26%, 64%),
      hsl(210, 26%, 39%));
}
.gradient-gray-mouse {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(199, 15%, 50%),
      hsl(199, 15%, 25%));
}
.gradient-lime {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(93, 97%, 81%),
      hsl(93, 97%, 56%));
}
.gradient-green {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(120, 100%, 55%),
      hsl(120, 100%, 25%));
}
.gradient-emerald {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(140, 52%, 70%),
      hsl(140, 52%, 35%));
}
.gradient-blue {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(225, 100%, 78%),
      hsl(225, 100%, 43%));
}
.gradient-teal {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(180, 77%, 64%),
      hsl(180, 77%, 29%));
}
.gradient-cyan {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(221, 100%, 84%),
      hsl(221, 100%, 59%));
}
.gradient-cobalt {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(215, 100%, 59%),
      hsl(215, 100%, 24%));
}
.gradient-indigo {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(276, 100%, 63%),
      hsl(276, 100%, 18%));
}
.gradient-almost {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(259, 84%, 75%),
      hsl(259, 84%, 40%));
}
.gradient-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 76%, 82%),
      hsl(300, 76%, 52%));
}
.gradient-pink {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(350, 100%, 93%),
      hsl(350, 100%, 73%));
}
.gradient-magenta {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 100%, 65%),
      hsl(300, 100%, 30%));
}
.gradient-crimson {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(348, 88%, 66%),
      hsl(348, 88%, 31%));
}
.gradient-red {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 100%, 65%),
      hsl(0, 100%, 30%));
}
.gradient-clown {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(3, 100%, 80%),
      hsl(3, 100%, 55%));
}
.gradient-orange {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(39, 100%, 65%),
      hsl(39, 100%, 30%));
}
.gradient-amber {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(45, 100%, 68%),
      hsl(45, 100%, 43%));
}
.gradient-yellow {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(52, 100%, 78%),
      hsl(52, 100%, 43%));
}
.gradient-brown {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(25, 57%, 71%),
      hsl(25, 57%, 36%));
}
.gradient-olive {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(60, 100%, 57%),
      hsl(60, 100%, 22%));
}
.gradient-steel {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(209, 19%, 72%),
      hsl(209, 19%, 37%));
}
.gradient-mauve {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(277, 100%, 89%),
      hsl(277, 100%, 69%));
}
.gradient-taupe {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 19%, 70%),
      hsl(29, 19%, 35%));
}
.gradient-champagne {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(37, 74%, 93%),
      hsl(37, 74%, 68%));
}
.gradient-khaki {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(47, 47%, 84%),
      hsl(47, 47%, 49%));
}
.gradient-charcoal {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 0%, 80%),
      hsl(0, 0%, 45%));
}
.gradient-bronze {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 75%, 72%),
      hsl(29, 75%, 37%));
}
.gradient-windstorm {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(216, 53%, 81%),
      hsl(216, 53%, 46%));
}
.gradient-nude {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 79%, 93%),
      hsl(29, 79%, 67%));
}
.gradient-terracotta {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(10, 76%, 75%),
      hsl(10, 76%, 40%));
}
.gradient-coral {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(16, 100%, 77%),
      hsl(16, 100%, 47%));
}
.gradient-army {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(69, 34%, 55%),
      hsl(69, 34%, 20%));
}
.gradient-seashell {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(25, 100%, 97%),
      hsl(25, 100%, 85%));
}
.gradient-sand {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(45, 71%, 91%),
      hsl(45, 71%, 66%));
}
.gradient-radial-gray {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(0, 0%, 95%),
      hsl(0, 0%, 60%));
}
.gradient-radial-gray-blue {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(210, 26%, 69%),
      hsl(210, 26%, 34%));
}
.gradient-radial-gray-mouse {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(199, 15%, 55%),
      hsl(199, 15%, 20%));
}
.gradient-radial-lime {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(93, 97%, 86%),
      hsl(93, 97%, 46%));
}
.gradient-radial-green {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(120, 100%, 60%),
      hsl(120, 100%, 15%));
}
.gradient-radial-emerald {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(140, 52%, 75%),
      hsl(140, 52%, 30%));
}
.gradient-radial-blue {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(225, 100%, 83%),
      hsl(225, 100%, 38%));
}
.gradient-radial-teal {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(180, 77%, 69%),
      hsl(180, 77%, 24%));
}
.gradient-radial-cyan {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(221, 100%, 89%),
      hsl(221, 100%, 54%));
}
.gradient-radial-cobalt {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(215, 100%, 64%),
      hsl(215, 100%, 19%));
}
.gradient-radial-indigo {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(276, 100%, 68%),
      hsl(276, 100%, 13%));
}
.gradient-radial-almost {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(259, 84%, 80%),
      hsl(259, 84%, 35%));
}
.gradient-radial-violet {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(300, 76%, 87%),
      hsl(300, 76%, 47%));
}
.gradient-radial-pink {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(350, 100%, 98%),
      hsl(350, 100%, 68%));
}
.gradient-radial-magenta {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(300, 100%, 70%),
      hsl(300, 100%, 25%));
}
.gradient-radial-crimson {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(348, 88%, 71%),
      hsl(348, 88%, 26%));
}
.gradient-radial-red {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(0, 100%, 70%),
      hsl(0, 100%, 25%));
}
.gradient-radial-clown {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(3, 100%, 85%),
      hsl(3, 100%, 50%));
}
.gradient-radial-orange {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(39, 100%, 70%),
      hsl(39, 100%, 25%));
}
.gradient-radial-amber {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(45, 100%, 73%),
      hsl(45, 100%, 38%));
}
.gradient-radial-yellow {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(52, 100%, 83%),
      hsl(52, 100%, 38%));
}
.gradient-radial-brown {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(25, 57%, 76%),
      hsl(25, 57%, 31%));
}
.gradient-radial-olive {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(60, 100%, 62%),
      hsl(60, 100%, 17%));
}
.gradient-radial-steel {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(209, 19%, 77%),
      hsl(209, 19%, 32%));
}
.gradient-radial-mauve {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(277, 100%, 94%),
      hsl(277, 100%, 64%));
}
.gradient-radial-taupe {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(29, 19%, 75%),
      hsl(29, 19%, 30%));
}
.gradient-radial-champagne {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(37, 74%, 98%),
      hsl(37, 74%, 63%));
}
.gradient-radial-khaki {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(47, 47%, 89%),
      hsl(47, 47%, 44%));
}
.gradient-radial-charcoal {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(0, 0%, 85%),
      hsl(0, 0%, 40%));
}
.gradient-radial-bronze {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(29, 75%, 77%),
      hsl(29, 75%, 32%));
}
.gradient-radial-windstorm {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(216, 53%, 86%),
      hsl(216, 53%, 41%));
}
.gradient-radial-nude {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(29, 79%, 97%),
      hsl(29, 79%, 63%));
}
.gradient-radial-terracotta {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(10, 76%, 80%),
      hsl(10, 76%, 35%));
}
.gradient-radial-coral {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(16, 100%, 82%),
      hsl(16, 100%, 42%));
}
.gradient-radial-army {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(69, 34%, 60%),
      hsl(69, 34%, 15%));
}
.gradient-radial-seashell {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(0, 0%, 100%),
      hsl(25, 100%, 80%));
}
.gradient-radial-sand {
  --background:
    radial-gradient(
      var(--gradient-position),
      hsl(45, 71%, 96%),
      hsl(45, 71%, 61%));
}
.gradient-lime-green {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(93, 97%, 71%),
      hsl(120, 100%, 35%));
}
.gradient-green-emerald {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(120, 100%, 35%),
      hsl(140, 52%, 55%));
}
.gradient-emerald-teal {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(140, 52%, 55%),
      hsl(180, 77%, 44%));
}
.gradient-blue-cyan {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(225, 100%, 68%),
      hsl(221, 100%, 79%));
}
.gradient-teal-cyan {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(180, 77%, 44%),
      hsl(221, 100%, 79%));
}
.gradient-cyan-blue {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(221, 100%, 79%),
      hsl(225, 100%, 68%));
}
.gradient-cobalt-indigo {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(215, 100%, 34%),
      hsl(276, 100%, 33%));
}
.gradient-indigo-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(276, 100%, 33%),
      hsl(300, 76%, 72%));
}
.gradient-almost-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(259, 84%, 55%),
      hsl(300, 76%, 72%));
}
.gradient-violet-pink {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 76%, 72%),
      hsl(350, 100%, 88%));
}
.gradient-pink-magenta {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(350, 100%, 88%),
      hsl(300, 100%, 50%));
}
.gradient-magenta-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 100%, 50%),
      hsl(300, 76%, 72%));
}
.gradient-crimson-red {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(348, 88%, 46%),
      hsl(0, 100%, 50%));
}
.gradient-red-crimson {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 100%, 50%),
      hsl(348, 88%, 46%));
}
.gradient-clown-red {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(3, 100%, 70%),
      hsl(0, 100%, 50%));
}
.gradient-orange-amber {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(39, 100%, 50%),
      hsl(45, 100%, 58%));
}
.gradient-amber-yellow {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(45, 100%, 58%),
      hsl(52, 100%, 68%));
}
.gradient-yellow-amber {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(52, 100%, 68%),
      hsl(45, 100%, 58%));
}
.gradient-brown-bronze {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(25, 57%, 51%),
      hsl(29, 75%, 57%));
}
.gradient-olive-army {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(60, 100%, 32%),
      hsl(69, 34%, 30%));
}
.gradient-steel-charcoal {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(209, 19%, 57%),
      hsl(0, 0%, 60%));
}
.gradient-mauve-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(277, 100%, 84%),
      hsl(300, 76%, 72%));
}
.gradient-taupe-bronze {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 19%, 50%),
      hsl(29, 75%, 57%));
}
.gradient-champagne-nude {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(37, 74%, 88%),
      hsl(29, 79%, 85%));
}
.gradient-khaki-sand {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(47, 47%, 69%),
      hsl(45, 71%, 81%));
}
.gradient-charcoal-steel {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 0%, 60%),
      hsl(209, 19%, 57%));
}
.gradient-bronze-brown {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 75%, 57%),
      hsl(25, 57%, 51%));
}
.gradient-windstorm-steel {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(216, 53%, 66%),
      hsl(209, 19%, 57%));
}
.gradient-nude-seashell {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 79%, 85%),
      hsl(25, 100%, 95%));
}
.gradient-terracotta-coral {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(10, 76%, 55%),
      hsl(16, 100%, 67%));
}
.gradient-coral-orange {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(16, 100%, 67%),
      hsl(39, 100%, 50%));
}
.gradient-army-olive {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(69, 34%, 30%),
      hsl(60, 100%, 32%));
}
.gradient-seashell-champagne {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(25, 100%, 95%),
      hsl(37, 74%, 88%));
}
.gradient-sand-khaki {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(45, 71%, 81%),
      hsl(47, 47%, 69%));
}
.gradient-lime-green-emerald {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(93, 97%, 71%),
      hsl(120, 100%, 35%),
      hsl(140, 52%, 55%));
}
.gradient-green-emerald-teal {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(120, 100%, 35%),
      hsl(140, 52%, 55%),
      hsl(180, 77%, 44%));
}
.gradient-emerald-teal-cyan {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(140, 52%, 55%),
      hsl(180, 77%, 44%),
      hsl(221, 100%, 79%));
}
.gradient-cyan-blue-cobalt {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(221, 100%, 79%),
      hsl(225, 100%, 68%),
      hsl(215, 100%, 34%));
}
.gradient-blue-cobalt-indigo {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(225, 100%, 68%),
      hsl(215, 100%, 34%),
      hsl(276, 100%, 33%));
}
.gradient-cobalt-indigo-violet {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(215, 100%, 34%),
      hsl(276, 100%, 33%),
      hsl(300, 76%, 72%));
}
.gradient-indigo-violet-pink {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(276, 100%, 33%),
      hsl(300, 76%, 72%),
      hsl(350, 100%, 88%));
}
.gradient-violet-pink-magenta {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 76%, 72%),
      hsl(350, 100%, 88%),
      hsl(300, 100%, 50%));
}
.gradient-pink-magenta-crimson {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(350, 100%, 88%),
      hsl(300, 100%, 50%),
      hsl(348, 88%, 46%));
}
.gradient-magenta-crimson-red {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(300, 100%, 50%),
      hsl(348, 88%, 46%),
      hsl(0, 100%, 50%));
}
.gradient-crimson-red-orange {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(348, 88%, 46%),
      hsl(0, 100%, 50%),
      hsl(39, 100%, 50%));
}
.gradient-red-orange-amber {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(0, 100%, 50%),
      hsl(39, 100%, 50%),
      hsl(45, 100%, 58%));
}
.gradient-orange-amber-yellow {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(39, 100%, 50%),
      hsl(45, 100%, 58%),
      hsl(52, 100%, 68%));
}
.gradient-amber-yellow-sand {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(45, 100%, 58%),
      hsl(52, 100%, 68%),
      hsl(45, 71%, 81%));
}
.gradient-yellow-sand-khaki {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(52, 100%, 68%),
      hsl(45, 71%, 81%),
      hsl(47, 47%, 69%));
}
.gradient-brown-bronze-taupe {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(25, 57%, 51%),
      hsl(29, 75%, 57%),
      hsl(29, 19%, 50%));
}
.gradient-bronze-taupe-nude {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 75%, 57%),
      hsl(29, 19%, 50%),
      hsl(29, 79%, 85%));
}
.gradient-taupe-nude-champagne {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 19%, 50%),
      hsl(29, 79%, 85%),
      hsl(37, 74%, 88%));
}
.gradient-nude-champagne-seashell {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(29, 79%, 85%),
      hsl(37, 74%, 88%),
      hsl(25, 100%, 95%));
}
.gradient-steel-charcoal-windstorm {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(209, 19%, 57%),
      hsl(0, 0%, 60%),
      hsl(216, 53%, 66%));
}
.gradient-army-olive-khaki {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(69, 34%, 30%),
      hsl(60, 100%, 32%),
      hsl(47, 47%, 69%));
}
.gradient-terracotta-coral-orange {
  --background:
    linear-gradient(
      var(--gradient-direction),
      hsl(10, 76%, 55%),
      hsl(16, 100%, 67%),
      hsl(39, 100%, 50%));
}
.gradient-blue-coral {
  --background:
    linear-gradient(
      45deg,
      #12c2e9,
      #c471ed,
      #f64f59);
}
.gradient-sunset-dream {
  --background:
    linear-gradient(
      45deg,
      #ff7e5f,
      #feb47b,
      #ffcda5);
}
.gradient-deep-space {
  --background:
    linear-gradient(
      45deg,
      #0f0c29,
      #302b63,
      #24243e);
}
.gradient-emerald-green {
  --background:
    linear-gradient(
      45deg,
      #16a085,
      #2ecc71,
      #4cb8c4);
}
.gradient-purple-love {
  --background:
    linear-gradient(
      45deg,
      #cc2b5e,
      #753a88,
      #4a235a);
}
.gradient-cherry-glow {
  --background:
    linear-gradient(
      45deg,
      #f05053,
      #e1eec3,
      #a7bf5d);
}
.gradient-cosmic-fusion {
  --background:
    linear-gradient(
      45deg,
      #ff00cc,
      #333399,
      #0033ff);
}
.gradient-cosmic-aurora {
  --background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(56, 189, 248, 0.4) 0%,
      transparent 60%),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(139, 92, 246, 0.3) 0%,
      transparent 70%),
    radial-gradient(
      ellipse at 60% 20%,
      rgba(236, 72, 153, 0.25) 0%,
      transparent 50%),
    radial-gradient(
      ellipse at 40% 80%,
      rgba(34, 197, 94, 0.2) 0%,
      transparent 65%);
}
.gradient-sunny-morning {
  --background:
    linear-gradient(
      45deg,
      #f6d365,
      #fda085,
      #fbc2eb);
}
.gradient-winter-frost {
  --background:
    linear-gradient(
      45deg,
      #a1c4fd,
      #c2e9fb,
      #e2ebf0);
}
.gradient-neon-pulse {
  --background:
    linear-gradient(
      45deg,
      #00fffc,
      #fc00ff,
      #fffc00);
}
.gradient-royal-elegance {
  --background:
    linear-gradient(
      45deg,
      #141e30,
      #243b55,
      #4286f4);
}
.gradient-sunset {
  --background:
    linear-gradient(
      to right,
      #fdc830,
      #f37335);
}
.gradient-emerald-sea {
  --background:
    linear-gradient(
      to right,
      #00f260,
      #0575e6);
}
.gradient-midnight-mist {
  --background:
    radial-gradient(
      circle at 50% 100%,
      rgba(70, 85, 110, 0.5) 0%,
      transparent 60%),
    radial-gradient(
      circle at 50% 100%,
      rgba(99, 102, 241, 0.4) 0%,
      transparent 70%),
    radial-gradient(
      circle at 50% 100%,
      rgba(181, 184, 208, 0.3) 0%,
      transparent 80%);
}
.gradient-crimson-depth {
  --background:
    radial-gradient(
      125% 125% at 50% 100%,
      #000000 40%,
      #2b0707 100%);
}
.gradient-dark-horizon-glow {
  --background:
    radial-gradient(
      125% 125% at 50% 90%,
      #000000 40%,
      #0d1a36 100%);
}
.gradient-emerald-void {
  --background:
    radial-gradient(
      125% 125% at 50% 90%,
      #000000 40%,
      #072607 100%);
}
.gradient-violet-abyss {
  --background:
    radial-gradient(
      125% 125% at 50% 90%,
      #000000 40%,
      #2b092b 100%);
}
.gradient-azure-depth {
  --background:
    radial-gradient(
      125% 125% at 50% 100%,
      #000000 40%,
      #010133 100%);
}
.gradient-orchid-depth {
  --background:
    radial-gradient(
      125% 125% at 50% 100%,
      #000000 40%,
      #350136 100%);
}

/* ../metroui-lib/source/colors-css/stroke.less */
:root {
  --stroke-width: 1px;
}
.stroke-black {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #000000;
  text-stroke: var(--stroke-width) #000000;
}
.stroke-white {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #ffffff;
  text-stroke: var(--stroke-width) #ffffff;
}
.stroke-dark {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #1d1d1d;
  text-stroke: var(--stroke-width) #1d1d1d;
}
.stroke-light {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) #f8f8f8;
  text-stroke: var(--stroke-width) #f8f8f8;
}
.stroke-light-gray {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 95%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 95%);
}
.stroke-minor-gray {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 87%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 87%);
}
.stroke-gray {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 80%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 80%);
}
.stroke-sat-gray {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 65%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 65%);
}
.stroke-dark-gray {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 55%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 55%);
}
.stroke-light-gray-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(210, 26%, 84%);
  text-stroke: var(--stroke-width) hsl(210, 26%, 84%);
}
.stroke-minor-gray-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(210, 26%, 69%);
  text-stroke: var(--stroke-width) hsl(210, 26%, 69%);
}
.stroke-gray-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(210, 26%, 54%);
  text-stroke: var(--stroke-width) hsl(210, 26%, 54%);
}
.stroke-sat-gray-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(210, 26%, 39%);
  text-stroke: var(--stroke-width) hsl(210, 26%, 39%);
}
.stroke-dark-gray-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(210, 26%, 29%);
  text-stroke: var(--stroke-width) hsl(210, 26%, 29%);
}
.stroke-light-gray-mouse {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(199, 15%, 70%);
  text-stroke: var(--stroke-width) hsl(199, 15%, 70%);
}
.stroke-minor-gray-mouse {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(199, 15%, 55%);
  text-stroke: var(--stroke-width) hsl(199, 15%, 55%);
}
.stroke-gray-mouse {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(199, 15%, 40%);
  text-stroke: var(--stroke-width) hsl(199, 15%, 40%);
}
.stroke-sat-gray-mouse {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(199, 15%, 25%);
  text-stroke: var(--stroke-width) hsl(199, 15%, 25%);
}
.stroke-dark-gray-mouse {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(199, 15%, 15%);
  text-stroke: var(--stroke-width) hsl(199, 15%, 15%);
}
.stroke-light-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(93, 97%, 91%);
  text-stroke: var(--stroke-width) hsl(93, 97%, 91%);
}
.stroke-minor-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(93, 97%, 81%);
  text-stroke: var(--stroke-width) hsl(93, 97%, 81%);
}
.stroke-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(93, 97%, 71%);
  text-stroke: var(--stroke-width) hsl(93, 97%, 71%);
}
.stroke-sat-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(93, 97%, 56%);
  text-stroke: var(--stroke-width) hsl(93, 97%, 56%);
}
.stroke-dark-lime {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(93, 97%, 46%);
  text-stroke: var(--stroke-width) hsl(93, 97%, 46%);
}
.stroke-light-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(120, 100%, 80%);
  text-stroke: var(--stroke-width) hsl(120, 100%, 80%);
}
.stroke-minor-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(120, 100%, 45%);
  text-stroke: var(--stroke-width) hsl(120, 100%, 45%);
}
.stroke-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(120, 100%, 35%);
  text-stroke: var(--stroke-width) hsl(120, 100%, 35%);
}
.stroke-sat-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(120, 100%, 20%);
  text-stroke: var(--stroke-width) hsl(120, 100%, 20%);
}
.stroke-dark-green {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(120, 100%, 10%);
  text-stroke: var(--stroke-width) hsl(120, 100%, 10%);
}
.stroke-light-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(140, 52%, 85%);
  text-stroke: var(--stroke-width) hsl(140, 52%, 85%);
}
.stroke-minor-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(140, 52%, 65%);
  text-stroke: var(--stroke-width) hsl(140, 52%, 65%);
}
.stroke-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(140, 52%, 55%);
  text-stroke: var(--stroke-width) hsl(140, 52%, 55%);
}
.stroke-sat-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(140, 52%, 40%);
  text-stroke: var(--stroke-width) hsl(140, 52%, 40%);
}
.stroke-dark-emerald {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(140, 52%, 30%);
  text-stroke: var(--stroke-width) hsl(140, 52%, 30%);
}
.stroke-light-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(225, 100%, 93%);
  text-stroke: var(--stroke-width) hsl(225, 100%, 93%);
}
.stroke-minor-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(225, 100%, 78%);
  text-stroke: var(--stroke-width) hsl(225, 100%, 78%);
}
.stroke-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(225, 100%, 68%);
  text-stroke: var(--stroke-width) hsl(225, 100%, 68%);
}
.stroke-sat-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(225, 100%, 53%);
  text-stroke: var(--stroke-width) hsl(225, 100%, 53%);
}
.stroke-dark-blue {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(225, 100%, 43%);
  text-stroke: var(--stroke-width) hsl(225, 100%, 43%);
}
.stroke-light-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(180, 77%, 79%);
  text-stroke: var(--stroke-width) hsl(180, 77%, 79%);
}
.stroke-minor-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(180, 77%, 54%);
  text-stroke: var(--stroke-width) hsl(180, 77%, 54%);
}
.stroke-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(180, 77%, 44%);
  text-stroke: var(--stroke-width) hsl(180, 77%, 44%);
}
.stroke-sat-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(180, 77%, 29%);
  text-stroke: var(--stroke-width) hsl(180, 77%, 29%);
}
.stroke-dark-teal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(180, 77%, 19%);
  text-stroke: var(--stroke-width) hsl(180, 77%, 19%);
}
.stroke-light-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(221, 100%, 94%);
  text-stroke: var(--stroke-width) hsl(221, 100%, 94%);
}
.stroke-minor-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(221, 100%, 89%);
  text-stroke: var(--stroke-width) hsl(221, 100%, 89%);
}
.stroke-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(221, 100%, 79%);
  text-stroke: var(--stroke-width) hsl(221, 100%, 79%);
}
.stroke-sat-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(221, 100%, 64%);
  text-stroke: var(--stroke-width) hsl(221, 100%, 64%);
}
.stroke-dark-cyan {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(221, 100%, 54%);
  text-stroke: var(--stroke-width) hsl(221, 100%, 54%);
}
.stroke-light-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(215, 100%, 79%);
  text-stroke: var(--stroke-width) hsl(215, 100%, 79%);
}
.stroke-minor-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(215, 100%, 49%);
  text-stroke: var(--stroke-width) hsl(215, 100%, 49%);
}
.stroke-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(215, 100%, 34%);
  text-stroke: var(--stroke-width) hsl(215, 100%, 34%);
}
.stroke-sat-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(215, 100%, 19%);
  text-stroke: var(--stroke-width) hsl(215, 100%, 19%);
}
.stroke-dark-cobalt {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(215, 100%, 9%);
  text-stroke: var(--stroke-width) hsl(215, 100%, 9%);
}
.stroke-light-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(276, 100%, 78%);
  text-stroke: var(--stroke-width) hsl(276, 100%, 78%);
}
.stroke-minor-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(276, 100%, 48%);
  text-stroke: var(--stroke-width) hsl(276, 100%, 48%);
}
.stroke-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(276, 100%, 33%);
  text-stroke: var(--stroke-width) hsl(276, 100%, 33%);
}
.stroke-sat-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(276, 100%, 18%);
  text-stroke: var(--stroke-width) hsl(276, 100%, 18%);
}
.stroke-dark-indigo {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(276, 100%, 8%);
  text-stroke: var(--stroke-width) hsl(276, 100%, 8%);
}
.stroke-light-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(259, 84%, 85%);
  text-stroke: var(--stroke-width) hsl(259, 84%, 85%);
}
.stroke-minor-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(259, 84%, 70%);
  text-stroke: var(--stroke-width) hsl(259, 84%, 70%);
}
.stroke-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(259, 84%, 55%);
  text-stroke: var(--stroke-width) hsl(259, 84%, 55%);
}
.stroke-sat-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(259, 84%, 40%);
  text-stroke: var(--stroke-width) hsl(259, 84%, 40%);
}
.stroke-dark-almost {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(259, 84%, 30%);
  text-stroke: var(--stroke-width) hsl(259, 84%, 30%);
}
.stroke-light-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 76%, 92%);
  text-stroke: var(--stroke-width) hsl(300, 76%, 92%);
}
.stroke-minor-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 76%, 82%);
  text-stroke: var(--stroke-width) hsl(300, 76%, 82%);
}
.stroke-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 76%, 72%);
  text-stroke: var(--stroke-width) hsl(300, 76%, 72%);
}
.stroke-sat-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 76%, 57%);
  text-stroke: var(--stroke-width) hsl(300, 76%, 57%);
}
.stroke-dark-violet {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 76%, 47%);
  text-stroke: var(--stroke-width) hsl(300, 76%, 47%);
}
.stroke-light-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(350, 100%, 98%);
  text-stroke: var(--stroke-width) hsl(350, 100%, 98%);
}
.stroke-minor-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(350, 100%, 93%);
  text-stroke: var(--stroke-width) hsl(350, 100%, 93%);
}
.stroke-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(350, 100%, 88%);
  text-stroke: var(--stroke-width) hsl(350, 100%, 88%);
}
.stroke-sat-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(350, 100%, 73%);
  text-stroke: var(--stroke-width) hsl(350, 100%, 73%);
}
.stroke-dark-pink {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(350, 100%, 63%);
  text-stroke: var(--stroke-width) hsl(350, 100%, 63%);
}
.stroke-light-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 100%, 90%);
  text-stroke: var(--stroke-width) hsl(300, 100%, 90%);
}
.stroke-minor-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 100%, 75%);
  text-stroke: var(--stroke-width) hsl(300, 100%, 75%);
}
.stroke-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 100%, 50%);
  text-stroke: var(--stroke-width) hsl(300, 100%, 50%);
}
.stroke-sat-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 100%, 35%);
  text-stroke: var(--stroke-width) hsl(300, 100%, 35%);
}
.stroke-dark-magenta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(300, 100%, 25%);
  text-stroke: var(--stroke-width) hsl(300, 100%, 25%);
}
.stroke-light-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(348, 88%, 91%);
  text-stroke: var(--stroke-width) hsl(348, 88%, 91%);
}
.stroke-minor-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(348, 88%, 66%);
  text-stroke: var(--stroke-width) hsl(348, 88%, 66%);
}
.stroke-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(348, 88%, 46%);
  text-stroke: var(--stroke-width) hsl(348, 88%, 46%);
}
.stroke-sat-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(348, 88%, 31%);
  text-stroke: var(--stroke-width) hsl(348, 88%, 31%);
}
.stroke-dark-crimson {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(348, 88%, 21%);
  text-stroke: var(--stroke-width) hsl(348, 88%, 21%);
}
.stroke-light-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 100%, 85%);
  text-stroke: var(--stroke-width) hsl(0, 100%, 85%);
}
.stroke-minor-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 100%, 70%);
  text-stroke: var(--stroke-width) hsl(0, 100%, 70%);
}
.stroke-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 100%, 50%);
  text-stroke: var(--stroke-width) hsl(0, 100%, 50%);
}
.stroke-sat-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 100%, 35%);
  text-stroke: var(--stroke-width) hsl(0, 100%, 35%);
}
.stroke-dark-red {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 100%, 25%);
  text-stroke: var(--stroke-width) hsl(0, 100%, 25%);
}
.stroke-light-clown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(3, 100%, 95%);
  text-stroke: var(--stroke-width) hsl(3, 100%, 95%);
}
.stroke-minor-clown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(3, 100%, 85%);
  text-stroke: var(--stroke-width) hsl(3, 100%, 85%);
}
.stroke-clown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(3, 100%, 70%);
  text-stroke: var(--stroke-width) hsl(3, 100%, 70%);
}
.stroke-sat-clown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(3, 100%, 55%);
  text-stroke: var(--stroke-width) hsl(3, 100%, 55%);
}
.stroke-dark-clown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(3, 100%, 45%);
  text-stroke: var(--stroke-width) hsl(3, 100%, 45%);
}
.stroke-light-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(39, 100%, 90%);
  text-stroke: var(--stroke-width) hsl(39, 100%, 90%);
}
.stroke-minor-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(39, 100%, 75%);
  text-stroke: var(--stroke-width) hsl(39, 100%, 75%);
}
.stroke-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(39, 100%, 50%);
  text-stroke: var(--stroke-width) hsl(39, 100%, 50%);
}
.stroke-sat-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(39, 100%, 35%);
  text-stroke: var(--stroke-width) hsl(39, 100%, 35%);
}
.stroke-dark-orange {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(39, 100%, 25%);
  text-stroke: var(--stroke-width) hsl(39, 100%, 25%);
}
.stroke-light-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 100%, 78%);
  text-stroke: var(--stroke-width) hsl(45, 100%, 78%);
}
.stroke-minor-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 100%, 68%);
  text-stroke: var(--stroke-width) hsl(45, 100%, 68%);
}
.stroke-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 100%, 58%);
  text-stroke: var(--stroke-width) hsl(45, 100%, 58%);
}
.stroke-sat-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 100%, 43%);
  text-stroke: var(--stroke-width) hsl(45, 100%, 43%);
}
.stroke-dark-amber {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 100%, 33%);
  text-stroke: var(--stroke-width) hsl(45, 100%, 33%);
}
.stroke-light-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(52, 100%, 93%);
  text-stroke: var(--stroke-width) hsl(52, 100%, 93%);
}
.stroke-minor-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(52, 100%, 83%);
  text-stroke: var(--stroke-width) hsl(52, 100%, 83%);
}
.stroke-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(52, 100%, 68%);
  text-stroke: var(--stroke-width) hsl(52, 100%, 68%);
}
.stroke-sat-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(52, 100%, 53%);
  text-stroke: var(--stroke-width) hsl(52, 100%, 53%);
}
.stroke-dark-yellow {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(52, 100%, 43%);
  text-stroke: var(--stroke-width) hsl(52, 100%, 43%);
}
.stroke-light-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 57%, 81%);
  text-stroke: var(--stroke-width) hsl(25, 57%, 81%);
}
.stroke-minor-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 57%, 66%);
  text-stroke: var(--stroke-width) hsl(25, 57%, 66%);
}
.stroke-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 57%, 51%);
  text-stroke: var(--stroke-width) hsl(25, 57%, 51%);
}
.stroke-sat-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 57%, 36%);
  text-stroke: var(--stroke-width) hsl(25, 57%, 36%);
}
.stroke-dark-brown {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 57%, 26%);
  text-stroke: var(--stroke-width) hsl(25, 57%, 26%);
}
.stroke-light-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(60, 100%, 72%);
  text-stroke: var(--stroke-width) hsl(60, 100%, 72%);
}
.stroke-minor-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(60, 100%, 42%);
  text-stroke: var(--stroke-width) hsl(60, 100%, 42%);
}
.stroke-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(60, 100%, 32%);
  text-stroke: var(--stroke-width) hsl(60, 100%, 32%);
}
.stroke-sat-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(60, 100%, 17%);
  text-stroke: var(--stroke-width) hsl(60, 100%, 17%);
}
.stroke-dark-olive {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(60, 100%, 7%);
  text-stroke: var(--stroke-width) hsl(60, 100%, 7%);
}
.stroke-light-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(209, 19%, 87%);
  text-stroke: var(--stroke-width) hsl(209, 19%, 87%);
}
.stroke-minor-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(209, 19%, 77%);
  text-stroke: var(--stroke-width) hsl(209, 19%, 77%);
}
.stroke-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(209, 19%, 57%);
  text-stroke: var(--stroke-width) hsl(209, 19%, 57%);
}
.stroke-sat-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(209, 19%, 42%);
  text-stroke: var(--stroke-width) hsl(209, 19%, 42%);
}
.stroke-dark-steel {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(209, 19%, 32%);
  text-stroke: var(--stroke-width) hsl(209, 19%, 32%);
}
.stroke-light-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(277, 100%, 96%);
  text-stroke: var(--stroke-width) hsl(277, 100%, 96%);
}
.stroke-minor-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(277, 100%, 90%);
  text-stroke: var(--stroke-width) hsl(277, 100%, 90%);
}
.stroke-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(277, 100%, 84%);
  text-stroke: var(--stroke-width) hsl(277, 100%, 84%);
}
.stroke-sat-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(277, 100%, 69%);
  text-stroke: var(--stroke-width) hsl(277, 100%, 69%);
}
.stroke-dark-mauve {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(277, 100%, 59%);
  text-stroke: var(--stroke-width) hsl(277, 100%, 59%);
}
.stroke-light-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 19%, 80%);
  text-stroke: var(--stroke-width) hsl(29, 19%, 80%);
}
.stroke-minor-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 19%, 67%);
  text-stroke: var(--stroke-width) hsl(29, 19%, 67%);
}
.stroke-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 19%, 50%);
  text-stroke: var(--stroke-width) hsl(29, 19%, 50%);
}
.stroke-sat-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 19%, 35%);
  text-stroke: var(--stroke-width) hsl(29, 19%, 35%);
}
.stroke-dark-taupe {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 19%, 25%);
  text-stroke: var(--stroke-width) hsl(29, 19%, 25%);
}
.stroke-light-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(37, 74%, 98%);
  text-stroke: var(--stroke-width) hsl(37, 74%, 98%);
}
.stroke-minor-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(37, 74%, 93%);
  text-stroke: var(--stroke-width) hsl(37, 74%, 93%);
}
.stroke-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(37, 74%, 88%);
  text-stroke: var(--stroke-width) hsl(37, 74%, 88%);
}
.stroke-sat-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(37, 74%, 73%);
  text-stroke: var(--stroke-width) hsl(37, 74%, 73%);
}
.stroke-dark-champagne {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(37, 74%, 63%);
  text-stroke: var(--stroke-width) hsl(37, 74%, 63%);
}
.stroke-light-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(47, 47%, 94%);
  text-stroke: var(--stroke-width) hsl(47, 47%, 94%);
}
.stroke-minor-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(47, 47%, 84%);
  text-stroke: var(--stroke-width) hsl(47, 47%, 84%);
}
.stroke-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(47, 47%, 69%);
  text-stroke: var(--stroke-width) hsl(47, 47%, 69%);
}
.stroke-sat-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(47, 47%, 54%);
  text-stroke: var(--stroke-width) hsl(47, 47%, 54%);
}
.stroke-dark-khaki {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(47, 47%, 44%);
  text-stroke: var(--stroke-width) hsl(47, 47%, 44%);
}
.stroke-light-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 90%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 90%);
}
.stroke-minor-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 80%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 80%);
}
.stroke-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 60%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 60%);
}
.stroke-sat-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 45%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 45%);
}
.stroke-dark-charcoal {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(0, 0%, 35%);
  text-stroke: var(--stroke-width) hsl(0, 0%, 35%);
}
.stroke-light-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 75%, 87%);
  text-stroke: var(--stroke-width) hsl(29, 75%, 87%);
}
.stroke-minor-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 75%, 72%);
  text-stroke: var(--stroke-width) hsl(29, 75%, 72%);
}
.stroke-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 75%, 57%);
  text-stroke: var(--stroke-width) hsl(29, 75%, 57%);
}
.stroke-sat-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 75%, 42%);
  text-stroke: var(--stroke-width) hsl(29, 75%, 42%);
}
.stroke-dark-bronze {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 75%, 32%);
  text-stroke: var(--stroke-width) hsl(29, 75%, 32%);
}
.stroke-light-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(216, 53%, 93%);
  text-stroke: var(--stroke-width) hsl(216, 53%, 93%);
}
.stroke-minor-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(216, 53%, 81%);
  text-stroke: var(--stroke-width) hsl(216, 53%, 81%);
}
.stroke-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(216, 53%, 66%);
  text-stroke: var(--stroke-width) hsl(216, 53%, 66%);
}
.stroke-sat-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(216, 53%, 51%);
  text-stroke: var(--stroke-width) hsl(216, 53%, 51%);
}
.stroke-dark-windstorm {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(216, 53%, 41%);
  text-stroke: var(--stroke-width) hsl(216, 53%, 41%);
}
.stroke-light-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 79%, 97%);
  text-stroke: var(--stroke-width) hsl(29, 79%, 97%);
}
.stroke-minor-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 79%, 92%);
  text-stroke: var(--stroke-width) hsl(29, 79%, 92%);
}
.stroke-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 79%, 85%);
  text-stroke: var(--stroke-width) hsl(29, 79%, 85%);
}
.stroke-sat-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 79%, 70%);
  text-stroke: var(--stroke-width) hsl(29, 79%, 70%);
}
.stroke-dark-nude {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(29, 79%, 60%);
  text-stroke: var(--stroke-width) hsl(29, 79%, 60%);
}
.stroke-light-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(10, 76%, 85%);
  text-stroke: var(--stroke-width) hsl(10, 76%, 85%);
}
.stroke-minor-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(10, 76%, 70%);
  text-stroke: var(--stroke-width) hsl(10, 76%, 70%);
}
.stroke-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(10, 76%, 55%);
  text-stroke: var(--stroke-width) hsl(10, 76%, 55%);
}
.stroke-sat-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(10, 76%, 40%);
  text-stroke: var(--stroke-width) hsl(10, 76%, 40%);
}
.stroke-dark-terracotta {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(10, 76%, 30%);
  text-stroke: var(--stroke-width) hsl(10, 76%, 30%);
}
.stroke-light-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(16, 100%, 92%);
  text-stroke: var(--stroke-width) hsl(16, 100%, 92%);
}
.stroke-minor-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(16, 100%, 82%);
  text-stroke: var(--stroke-width) hsl(16, 100%, 82%);
}
.stroke-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(16, 100%, 67%);
  text-stroke: var(--stroke-width) hsl(16, 100%, 67%);
}
.stroke-sat-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(16, 100%, 52%);
  text-stroke: var(--stroke-width) hsl(16, 100%, 52%);
}
.stroke-dark-coral {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(16, 100%, 42%);
  text-stroke: var(--stroke-width) hsl(16, 100%, 42%);
}
.stroke-light-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(69, 34%, 75%);
  text-stroke: var(--stroke-width) hsl(69, 34%, 75%);
}
.stroke-minor-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(69, 34%, 47%);
  text-stroke: var(--stroke-width) hsl(69, 34%, 47%);
}
.stroke-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(69, 34%, 30%);
  text-stroke: var(--stroke-width) hsl(69, 34%, 30%);
}
.stroke-sat-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(69, 34%, 15%);
  text-stroke: var(--stroke-width) hsl(69, 34%, 15%);
}
.stroke-dark-army {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(69, 34%, 5%);
  text-stroke: var(--stroke-width) hsl(69, 34%, 5%);
}
.stroke-light-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 100%, 98%);
  text-stroke: var(--stroke-width) hsl(25, 100%, 98%);
}
.stroke-minor-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 100%, 97%);
  text-stroke: var(--stroke-width) hsl(25, 100%, 97%);
}
.stroke-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 100%, 95%);
  text-stroke: var(--stroke-width) hsl(25, 100%, 95%);
}
.stroke-sat-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 100%, 80%);
  text-stroke: var(--stroke-width) hsl(25, 100%, 80%);
}
.stroke-dark-seashell {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(25, 100%, 70%);
  text-stroke: var(--stroke-width) hsl(25, 100%, 70%);
}
.stroke-light-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 71%, 96%);
  text-stroke: var(--stroke-width) hsl(45, 71%, 96%);
}
.stroke-minor-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 71%, 88%);
  text-stroke: var(--stroke-width) hsl(45, 71%, 88%);
}
.stroke-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 71%, 81%);
  text-stroke: var(--stroke-width) hsl(45, 71%, 81%);
}
.stroke-sat-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 71%, 66%);
  text-stroke: var(--stroke-width) hsl(45, 71%, 66%);
}
.stroke-dark-sand {
  color: transparent;
  -webkit-text-stroke: var(--stroke-width) hsl(45, 71%, 56%);
  text-stroke: var(--stroke-width) hsl(45, 71%, 56%);
}

/* ../metroui-lib/source/colors-css/patterns.less */
:root {
  --pattern-grid-size: 20px;
  --pattern-color: rgba(0, 0, 0, 0.065);
  --pattern-dot-size: 2px;
}
.dark-side {
  --pattern-color: rgba(255, 255, 255, 0.065);
}
[class*=bg-pattern-] {
  position: relative;
  background-color: transparent !important;
}
[class*=bg-pattern-]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
[class*=bg-pattern-].masked::before {
  mask-image:
    radial-gradient(
      ellipse 70% 60% at 50% 0%,
      #000 60%,
      transparent 100%);
}
.bg-pattern-grid::before {
  background-image:
    linear-gradient(
      to right,
      var(--pattern-color) 1px,
      transparent 1px),
    linear-gradient(
      to bottom,
      var(--pattern-color) 1px,
      transparent 1px);
  background-size: var(--pattern-grid-size) var(--pattern-grid-size), var(--pattern-grid-size) var(--pattern-grid-size);
}
.bg-pattern-grid-top::before {
  background-image:
    linear-gradient(
      to right,
      var(--pattern-color) 1px,
      transparent 1px),
    linear-gradient(
      to bottom,
      var(--pattern-color) 1px,
      transparent 1px);
  background-size: var(--pattern-grid-size) var(--pattern-grid-size);
  mask-image:
    radial-gradient(
      ellipse 70% 60% at 50% 0%,
      #000 60%,
      transparent 100%);
}
.bg-pattern-grid-bottom::before {
  background-image:
    linear-gradient(
      to right,
      var(--pattern-color) 1px,
      transparent 1px),
    linear-gradient(
      to bottom,
      var(--pattern-color) 1px,
      transparent 1px);
  background-size: var(--pattern-grid-size) var(--pattern-grid-size);
  mask-image:
    radial-gradient(
      ellipse 70% 60% at 50% 100%,
      #000 60%,
      transparent 100%);
}
.bg-pattern-paper::before {
  background-image:
    radial-gradient(
      circle at 1px 1px,
      hsla(from var(--pattern-color) h s l / 0.08) 1px,
      transparent 0),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      hsla(from var(--pattern-color) h s l / 0.02) 2px,
      hsla(from var(--pattern-color) h s l / 0.02) 4px),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      hsla(from var(--pattern-color) h s l / 0.02) 2px,
      hsla(from var(--pattern-color) h s l / 0.02) 4px);
  background-size:
    8px 8px,
    32px 32px,
    32px 32px;
}
.bg-pattern-mountain::before {
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--pattern-color) 0,
      var(--pattern-color) 1px,
      transparent 1px,
      transparent 20px),
    repeating-linear-gradient(
      -45deg,
      var(--pattern-color) 0,
      var(--pattern-color) 1px,
      transparent 1px,
      transparent 20px);
  background-size: 40px 40px;
}
.bg-pattern-art::before {
  background-image:
    repeating-linear-gradient(
      22.5deg,
      transparent,
      transparent 2px,
      var(--pattern-color) 2px,
      var(--pattern-color) 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(
      67.5deg,
      transparent,
      transparent 2px,
      var(--pattern-color) 2px,
      var(--pattern-color) 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(
      112.5deg,
      transparent,
      transparent 2px,
      var(--pattern-color) 2px,
      var(--pattern-color) 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(
      157.5deg,
      transparent,
      transparent 2px,
      var(--pattern-color) 2px,
      var(--pattern-color) 3px,
      transparent 3px,
      transparent 8px);
}
.bg-pattern-grid-dot::before {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent calc(var(--pattern-grid-size) - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) - 1px),
      var(--pattern-color) var(--pattern-grid-size),
      transparent var(--pattern-grid-size),
      transparent calc(var(--pattern-grid-size) * 2 - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) * 2 - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) * 2)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(var(--pattern-grid-size) - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) - 1px),
      var(--pattern-color) var(--pattern-grid-size),
      transparent var(--pattern-grid-size),
      transparent calc(var(--pattern-grid-size) * 2 - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) * 2 - 1px),
      var(--pattern-color) calc(var(--pattern-grid-size) * 2)),
    radial-gradient(
      circle at var(--pattern-grid-size) var(--pattern-grid-size),
      var(--pattern-color) var(--pattern-dot-size),
      transparent var(--pattern-dot-size)),
    radial-gradient(
      circle at calc(var(--pattern-grid-size) * 2) calc(var(--pattern-grid-size) * 2),
      var(--pattern-color) var(--pattern-dot-size),
      transparent var(--pattern-dot-size));
  background-size:
    calc(var(--pattern-grid-size) * 2) calc(var(--pattern-grid-size) * 2),
    calc(var(--pattern-grid-size) * 2) calc(var(--pattern-grid-size) * 2),
    calc(var(--pattern-grid-size) * 2) calc(var(--pattern-grid-size) * 2);
}
.bg-pattern-box-dot::before {
  background-image:
    linear-gradient(
      to right,
      var(--pattern-color) calc(var(--pattern-dot-size)/2),
      transparent calc(var(--pattern-dot-size)/2)),
    linear-gradient(
      to bottom,
      var(--pattern-color) calc(var(--pattern-dot-size)/2),
      transparent calc(calc(var(--pattern-dot-size)/2)/2)),
    radial-gradient(
      circle,
      hsla(from var(--pattern-color) h s l / 0.2) calc(var(--pattern-dot-size)/2),
      transparent calc(var(--pattern-dot-size)/2));
  background-size:
    var(--pattern-grid-size) var(--pattern-grid-size),
    var(--pattern-grid-size) var(--pattern-grid-size),
    var(--pattern-grid-size) var(--pattern-grid-size);
  background-position:
    0 0,
    0 0,
    0 0;
}
.bg-pattern-diagonal::before {
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--pattern-color) 0,
      var(--pattern-color) 1px,
      transparent 1px,
      transparent var(--pattern-grid-size)),
    repeating-linear-gradient(
      -45deg,
      var(--pattern-color) 0,
      var(--pattern-color) 1px,
      transparent 1px,
      transparent var(--pattern-grid-size));
}

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

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

/* ../metroui-lib/source/components/button/button.less */
:root {
  --button-border-radius: 4px;
  --button-font-size: 14px;
  --button-background: #ebebeb;
  --button-color: #191919;
  --button-background-hover: #dadada;
  --button-border-color: #ebebeb;
  --button-disabled-opacity: 0.65;
}
.dark-side {
  --button-background: #2b2d30;
  --button-color: #f3fcff;
  --button-background-hover: #333439;
  --button-border-color: #4e5157;
  --button-disabled-opacity: 0.25;
}
button,
input[type=button],
input[type=submit],
input[type=reset],
.button,
.flat-button {
  --control-height: var(--control-height-normal);
  --pill-button-radius: calc(var(--control-height) / 2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0 var(--button-font-size);
  font-size: var(--button-font-size);
  height: var(--control-height);
  background-color: var(--button-background);
  color: var(--button-color);
  border: 1px solid var(--button-border-color);
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: visible;
  border-radius: var(--button-border-radius);
  gap: 8px;
}
button:first-child,
input[type=button]:first-child,
input[type=submit]:first-child,
input[type=reset]:first-child,
.button:first-child,
.flat-button:first-child {
  margin-left: 0;
}
button:last-child,
input[type=button]:last-child,
input[type=submit]:last-child,
input[type=reset]:last-child,
.button:last-child,
.flat-button:last-child {
  margin-right: 0;
}
button.disabled,
input[type=button].disabled,
input[type=submit].disabled,
input[type=reset].disabled,
.button.disabled,
.flat-button.disabled,
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled,
.button:disabled,
.flat-button:disabled {
  pointer-events: none;
  opacity: var(--button-disabled-opacity);
}
button .icon,
input[type=button] .icon,
input[type=submit] .icon,
input[type=reset] .icon,
.button .icon,
.flat-button .icon {
  height: calc(var(--control-height)/2);
  font-size: calc(var(--button-font-size) * 1.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
button.pill-button,
input[type=button].pill-button,
input[type=submit].pill-button,
input[type=reset].pill-button,
.button.pill-button,
.flat-button.pill-button {
  border-radius: var(--pill-button-radius);
}
button:active,
input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active,
.button:active,
.flat-button:active,
button.focus,
input[type=button].focus,
input[type=submit].focus,
input[type=reset].focus,
.button.focus,
.flat-button.focus,
button:focus,
input[type=button]:focus,
input[type=submit]:focus,
input[type=reset]:focus,
.button:focus,
.flat-button:focus {
  text-decoration: none;
}
@media (hover: hover) {
  button:hover,
  input[type=button]:hover,
  input[type=submit]:hover,
  input[type=reset]:hover,
  .button:hover,
  .flat-button:hover {
    background-color: var(--button-background-hover);
  }
}
@media (hover: none) {
  button:active,
  input[type=button]:active,
  input[type=submit]:active,
  input[type=reset]:active,
  .button:active,
  .flat-button:active {
    background-color: var(--button-background-hover);
  }
}
button.link,
input[type=button].link,
input[type=submit].link,
input[type=reset].link,
.button.link,
.flat-button.link {
  background-color: transparent;
  border: none;
}
button.link:hover,
input[type=button].link:hover,
input[type=submit].link:hover,
input[type=reset].link:hover,
.button.link:hover,
.flat-button.link:hover {
  background-color: transparent;
  text-decoration: underline;
}
button.link.focus,
input[type=button].link.focus,
input[type=submit].link.focus,
input[type=reset].link.focus,
.button.link.focus,
.flat-button.link.focus,
button.link:focus,
input[type=button].link:focus,
input[type=submit].link:focus,
input[type=reset].link:focus,
.button.link:focus,
.flat-button.link:focus {
  box-shadow: none;
}
button.mini,
input[type=button].mini,
input[type=submit].mini,
input[type=reset].mini,
.button.mini,
.flat-button.mini {
  --control-height: var(--control-height-mini);
  --button-font-size: 10px;
}
button.small,
input[type=button].small,
input[type=submit].small,
input[type=reset].small,
.button.small,
.flat-button.small {
  --control-height: var(--control-height-small);
  --button-font-size: 12px;
}
button.medium,
input[type=button].medium,
input[type=submit].medium,
input[type=reset].medium,
.button.medium,
.flat-button.medium {
  --control-height: var(--control-height-medium);
  --button-font-size: 14px;
}
button.large,
input[type=button].large,
input[type=submit].large,
input[type=reset].large,
.button.large,
.flat-button.large {
  --control-height: var(--control-height-large);
  --button-font-size: 16px;
}
button.largest,
input[type=button].largest,
input[type=submit].largest,
input[type=reset].largest,
.button.largest,
.flat-button.largest {
  --control-height: var(--control-height-largest);
  --button-font-size: 18px;
}
button.square,
input[type=button].square,
input[type=submit].square,
input[type=reset].square,
.button.square,
.flat-button.square,
button.cycle,
input[type=button].cycle,
input[type=submit].cycle,
input[type=reset].cycle,
.button.cycle,
.flat-button.cycle {
  width: var(--control-height);
  height: var(--control-height);
  padding: 0 !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}
button.cycle,
input[type=button].cycle,
input[type=submit].cycle,
input[type=reset].cycle,
.button.cycle,
.flat-button.cycle {
  border-radius: 50%;
}
button.square.dropdown-toggle::before,
input[type=button].square.dropdown-toggle::before,
input[type=submit].square.dropdown-toggle::before,
input[type=reset].square.dropdown-toggle::before,
.button.square.dropdown-toggle::before,
.flat-button.square.dropdown-toggle::before,
button.cycle.dropdown-toggle::before,
input[type=button].cycle.dropdown-toggle::before,
input[type=submit].cycle.dropdown-toggle::before,
input[type=reset].cycle.dropdown-toggle::before,
.button.cycle.dropdown-toggle::before,
.flat-button.cycle.dropdown-toggle::before {
  display: none;
}
button.dropdown-toggle.no-marker,
input[type=button].dropdown-toggle.no-marker,
input[type=submit].dropdown-toggle.no-marker,
input[type=reset].dropdown-toggle.no-marker,
.button.dropdown-toggle.no-marker,
.flat-button.dropdown-toggle.no-marker {
  padding-right: 0.75rem !important;
}
button.outline,
input[type=button].outline,
input[type=submit].outline,
input[type=reset].outline,
.button.outline,
.flat-button.outline {
  background: transparent none;
  border-width: 1px;
  border-color: var(--button-border-color);
  color: var(--button-color);
}
@media (hover: hover) {
  button.outline:hover,
  input[type=button].outline:hover,
  input[type=submit].outline:hover,
  input[type=reset].outline:hover,
  .button.outline:hover,
  .flat-button.outline:hover {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@media (hover: none) {
  button.outline:active,
  input[type=button].outline:active,
  input[type=submit].outline:active,
  input[type=reset].outline:active,
  .button.outline:active,
  .flat-button.outline:active {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
a.button,
a.flat-button {
  appearance: none;
  color: var(--button-color);
  box-shadow: none;
  text-decoration: none;
}
button .loader,
input[type=button] .loader,
input[type=submit] .loader,
input[type=reset] .loader,
.button .loader {
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
button .loader + .caption,
input[type=button] .loader + .caption,
input[type=submit] .loader + .caption,
input[type=reset] .loader + .caption,
.button .loader + .caption {
  transition: all 0.3s ease-in-out;
  margin-left: -16px;
}
button.loading,
input[type=button].loading,
input[type=submit].loading,
input[type=reset].loading,
.button.loading {
  transition: all 0.3s ease-in-out;
}
button.loading .loader,
input[type=button].loading .loader,
input[type=submit].loading .loader,
input[type=reset].loading .loader,
.button.loading .loader {
  transform: scale(1);
  opacity: 1;
}
button.loading .caption,
input[type=button].loading .caption,
input[type=submit].loading .caption,
input[type=reset].loading .caption,
.button.loading .caption {
  margin-left: 0.3rem;
}
button.flat,
.button.flat,
.flat-button {
  background-color: transparent;
  border-color: transparent;
}
@media (hover: hover) {
  button.flat:hover,
  .button.flat:hover,
  .flat-button:hover {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@media (hover: none) {
  button.flat:active,
  .button.flat:active,
  .flat-button:active {
    background-color: var(--button-background);
    color: var(--button-color);
  }
}
@container (min-width: 0) {
  button.largest-fs,
  input[type=button].largest-fs,
  input[type=submit].largest-fs,
  input[type=reset].largest-fs,
  .button.largest-fs {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-fs,
  input[type=button].large-fs,
  input[type=submit].large-fs,
  input[type=reset].large-fs,
  .button.large-fs {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-xs,
  input[type=button].largest-xs,
  input[type=submit].largest-xs,
  input[type=reset].largest-xs,
  .button.largest-xs {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-xs,
  input[type=button].large-xs,
  input[type=submit].large-xs,
  input[type=reset].large-xs,
  .button.large-xs {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-sm,
  input[type=button].largest-sm,
  input[type=submit].largest-sm,
  input[type=reset].largest-sm,
  .button.largest-sm {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-sm,
  input[type=button].large-sm,
  input[type=submit].large-sm,
  input[type=reset].large-sm,
  .button.large-sm {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-ld,
  input[type=button].largest-ld,
  input[type=submit].largest-ld,
  input[type=reset].largest-ld,
  .button.largest-ld {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-ld,
  input[type=button].large-ld,
  input[type=submit].large-ld,
  input[type=reset].large-ld,
  .button.large-ld {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-md,
  input[type=button].largest-md,
  input[type=submit].largest-md,
  input[type=reset].largest-md,
  .button.largest-md {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-md,
  input[type=button].large-md,
  input[type=submit].large-md,
  input[type=reset].large-md,
  .button.large-md {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-lg,
  input[type=button].largest-lg,
  input[type=submit].largest-lg,
  input[type=reset].largest-lg,
  .button.largest-lg {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-lg,
  input[type=button].large-lg,
  input[type=submit].large-lg,
  input[type=reset].large-lg,
  .button.large-lg {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-xl,
  input[type=button].largest-xl,
  input[type=submit].largest-xl,
  input[type=reset].largest-xl,
  .button.largest-xl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-xl,
  input[type=button].large-xl,
  input[type=submit].large-xl,
  input[type=reset].large-xl,
  .button.large-xl {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-xxl,
  input[type=button].largest-xxl,
  input[type=submit].largest-xxl,
  input[type=reset].largest-xxl,
  .button.largest-xxl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-xxl,
  input[type=button].large-xxl,
  input[type=submit].large-xxl,
  input[type=reset].large-xxl,
  .button.large-xxl {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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.largest-xxxl,
  input[type=button].largest-xxxl,
  input[type=submit].largest-xxxl,
  input[type=reset].largest-xxxl,
  .button.largest-xxxl {
    --button-pill-radius: 27px;
    --button-size: 54px;
    --button-font-size: 18px;
  }
  button.large-xxxl,
  input[type=button].large-xxxl,
  input[type=submit].large-xxxl,
  input[type=reset].large-xxxl,
  .button.large-xxxl {
    --button-pill-radius: 20px;
    --button-size: 40px;
    --button-font-size: 16px;
  }
  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-gray {
  background: hsl(0, 0%, 95%) !important;
  color: hsl(0, 0%, 55%) !important;
  border-color: hsl(0, 0%, 80%) !important;
}
@media (hover: hover) {
  .button-soft-gray:hover {
    background: hsl(0, 0%, 80%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-gray:active {
    background: hsl(0, 0%, 80%) !important;
    color: #ffffff !important;
  }
}
.button-gray {
  background: hsl(0, 0%, 80%) !important;
  color: #ffffff !important;
  border-color: hsl(0, 0%, 65%) !important;
}
@media (hover: hover) {
  .button-gray:hover {
    background: hsl(0, 0%, 65%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-gray:active {
    background: hsl(0, 0%, 65%) !important;
    color: #ffffff !important;
  }
}
.button-soft-gray-blue {
  background: hsl(210, 26%, 84%) !important;
  color: hsl(210, 26%, 29%) !important;
  border-color: hsl(210, 26%, 54%) !important;
}
@media (hover: hover) {
  .button-soft-gray-blue:hover {
    background: hsl(210, 26%, 54%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-gray-blue:active {
    background: hsl(210, 26%, 54%) !important;
    color: #ffffff !important;
  }
}
.button-gray-blue {
  background: hsl(210, 26%, 54%) !important;
  color: #ffffff !important;
  border-color: hsl(210, 26%, 39%) !important;
}
@media (hover: hover) {
  .button-gray-blue:hover {
    background: hsl(210, 26%, 39%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-gray-blue:active {
    background: hsl(210, 26%, 39%) !important;
    color: #ffffff !important;
  }
}
.button-soft-gray-mouse {
  background: hsl(199, 15%, 70%) !important;
  color: hsl(199, 15%, 15%) !important;
  border-color: hsl(199, 15%, 40%) !important;
}
@media (hover: hover) {
  .button-soft-gray-mouse:hover {
    background: hsl(199, 15%, 40%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-gray-mouse:active {
    background: hsl(199, 15%, 40%) !important;
    color: #ffffff !important;
  }
}
.button-gray-mouse {
  background: hsl(199, 15%, 40%) !important;
  color: #ffffff !important;
  border-color: hsl(199, 15%, 25%) !important;
}
@media (hover: hover) {
  .button-gray-mouse:hover {
    background: hsl(199, 15%, 25%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-gray-mouse:active {
    background: hsl(199, 15%, 25%) !important;
    color: #ffffff !important;
  }
}
.button-soft-lime {
  background: hsl(93, 97%, 91%) !important;
  color: hsl(93, 97%, 46%) !important;
  border-color: hsl(93, 97%, 71%) !important;
}
@media (hover: hover) {
  .button-soft-lime:hover {
    background: hsl(93, 97%, 71%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-lime:active {
    background: hsl(93, 97%, 71%) !important;
    color: #ffffff !important;
  }
}
.button-lime {
  background: hsl(93, 97%, 71%) !important;
  color: #ffffff !important;
  border-color: hsl(93, 97%, 56%) !important;
}
@media (hover: hover) {
  .button-lime:hover {
    background: hsl(93, 97%, 56%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-lime:active {
    background: hsl(93, 97%, 56%) !important;
    color: #ffffff !important;
  }
}
.button-soft-green {
  background: hsl(120, 100%, 80%) !important;
  color: hsl(120, 100%, 10%) !important;
  border-color: hsl(120, 100%, 35%) !important;
}
@media (hover: hover) {
  .button-soft-green:hover {
    background: hsl(120, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-green:active {
    background: hsl(120, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
.button-green {
  background: hsl(120, 100%, 35%) !important;
  color: #ffffff !important;
  border-color: hsl(120, 100%, 20%) !important;
}
@media (hover: hover) {
  .button-green:hover {
    background: hsl(120, 100%, 20%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-green:active {
    background: hsl(120, 100%, 20%) !important;
    color: #ffffff !important;
  }
}
.button-soft-emerald {
  background: hsl(140, 52%, 85%) !important;
  color: hsl(140, 52%, 30%) !important;
  border-color: hsl(140, 52%, 55%) !important;
}
@media (hover: hover) {
  .button-soft-emerald:hover {
    background: hsl(140, 52%, 55%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-emerald:active {
    background: hsl(140, 52%, 55%) !important;
    color: #ffffff !important;
  }
}
.button-emerald {
  background: hsl(140, 52%, 55%) !important;
  color: #ffffff !important;
  border-color: hsl(140, 52%, 40%) !important;
}
@media (hover: hover) {
  .button-emerald:hover {
    background: hsl(140, 52%, 40%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-emerald:active {
    background: hsl(140, 52%, 40%) !important;
    color: #ffffff !important;
  }
}
.button-soft-blue {
  background: hsl(225, 100%, 93%) !important;
  color: hsl(225, 100%, 43%) !important;
  border-color: hsl(225, 100%, 68%) !important;
}
@media (hover: hover) {
  .button-soft-blue:hover {
    background: hsl(225, 100%, 68%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-blue:active {
    background: hsl(225, 100%, 68%) !important;
    color: #ffffff !important;
  }
}
.button-blue {
  background: hsl(225, 100%, 68%) !important;
  color: #ffffff !important;
  border-color: hsl(225, 100%, 53%) !important;
}
@media (hover: hover) {
  .button-blue:hover {
    background: hsl(225, 100%, 53%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-blue:active {
    background: hsl(225, 100%, 53%) !important;
    color: #ffffff !important;
  }
}
.button-soft-teal {
  background: hsl(180, 77%, 79%) !important;
  color: hsl(180, 77%, 19%) !important;
  border-color: hsl(180, 77%, 44%) !important;
}
@media (hover: hover) {
  .button-soft-teal:hover {
    background: hsl(180, 77%, 44%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-teal:active {
    background: hsl(180, 77%, 44%) !important;
    color: #ffffff !important;
  }
}
.button-teal {
  background: hsl(180, 77%, 44%) !important;
  color: #ffffff !important;
  border-color: hsl(180, 77%, 29%) !important;
}
@media (hover: hover) {
  .button-teal:hover {
    background: hsl(180, 77%, 29%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-teal:active {
    background: hsl(180, 77%, 29%) !important;
    color: #ffffff !important;
  }
}
.button-soft-cyan {
  background: hsl(221, 100%, 94%) !important;
  color: hsl(221, 100%, 54%) !important;
  border-color: hsl(221, 100%, 79%) !important;
}
@media (hover: hover) {
  .button-soft-cyan:hover {
    background: hsl(221, 100%, 79%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-cyan:active {
    background: hsl(221, 100%, 79%) !important;
    color: #ffffff !important;
  }
}
.button-cyan {
  background: hsl(221, 100%, 79%) !important;
  color: #ffffff !important;
  border-color: hsl(221, 100%, 64%) !important;
}
@media (hover: hover) {
  .button-cyan:hover {
    background: hsl(221, 100%, 64%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-cyan:active {
    background: hsl(221, 100%, 64%) !important;
    color: #ffffff !important;
  }
}
.button-soft-cobalt {
  background: hsl(215, 100%, 79%) !important;
  color: hsl(215, 100%, 9%) !important;
  border-color: hsl(215, 100%, 34%) !important;
}
@media (hover: hover) {
  .button-soft-cobalt:hover {
    background: hsl(215, 100%, 34%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-cobalt:active {
    background: hsl(215, 100%, 34%) !important;
    color: #ffffff !important;
  }
}
.button-cobalt {
  background: hsl(215, 100%, 34%) !important;
  color: #ffffff !important;
  border-color: hsl(215, 100%, 19%) !important;
}
@media (hover: hover) {
  .button-cobalt:hover {
    background: hsl(215, 100%, 19%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-cobalt:active {
    background: hsl(215, 100%, 19%) !important;
    color: #ffffff !important;
  }
}
.button-soft-indigo {
  background: hsl(276, 100%, 78%) !important;
  color: hsl(276, 100%, 8%) !important;
  border-color: hsl(276, 100%, 33%) !important;
}
@media (hover: hover) {
  .button-soft-indigo:hover {
    background: hsl(276, 100%, 33%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-indigo:active {
    background: hsl(276, 100%, 33%) !important;
    color: #ffffff !important;
  }
}
.button-indigo {
  background: hsl(276, 100%, 33%) !important;
  color: #ffffff !important;
  border-color: hsl(276, 100%, 18%) !important;
}
@media (hover: hover) {
  .button-indigo:hover {
    background: hsl(276, 100%, 18%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-indigo:active {
    background: hsl(276, 100%, 18%) !important;
    color: #ffffff !important;
  }
}
.button-soft-almost {
  background: hsl(259, 84%, 85%) !important;
  color: hsl(259, 84%, 30%) !important;
  border-color: hsl(259, 84%, 55%) !important;
}
@media (hover: hover) {
  .button-soft-almost:hover {
    background: hsl(259, 84%, 55%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-almost:active {
    background: hsl(259, 84%, 55%) !important;
    color: #ffffff !important;
  }
}
.button-almost {
  background: hsl(259, 84%, 55%) !important;
  color: #ffffff !important;
  border-color: hsl(259, 84%, 40%) !important;
}
@media (hover: hover) {
  .button-almost:hover {
    background: hsl(259, 84%, 40%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-almost:active {
    background: hsl(259, 84%, 40%) !important;
    color: #ffffff !important;
  }
}
.button-soft-violet {
  background: hsl(300, 76%, 92%) !important;
  color: hsl(300, 76%, 47%) !important;
  border-color: hsl(300, 76%, 72%) !important;
}
@media (hover: hover) {
  .button-soft-violet:hover {
    background: hsl(300, 76%, 72%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-violet:active {
    background: hsl(300, 76%, 72%) !important;
    color: #ffffff !important;
  }
}
.button-violet {
  background: hsl(300, 76%, 72%) !important;
  color: #ffffff !important;
  border-color: hsl(300, 76%, 57%) !important;
}
@media (hover: hover) {
  .button-violet:hover {
    background: hsl(300, 76%, 57%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-violet:active {
    background: hsl(300, 76%, 57%) !important;
    color: #ffffff !important;
  }
}
.button-soft-pink {
  background: hsl(350, 100%, 98%) !important;
  color: hsl(350, 100%, 63%) !important;
  border-color: hsl(350, 100%, 88%) !important;
}
@media (hover: hover) {
  .button-soft-pink:hover {
    background: hsl(350, 100%, 88%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-pink:active {
    background: hsl(350, 100%, 88%) !important;
    color: #ffffff !important;
  }
}
.button-pink {
  background: hsl(350, 100%, 88%) !important;
  color: #ffffff !important;
  border-color: hsl(350, 100%, 73%) !important;
}
@media (hover: hover) {
  .button-pink:hover {
    background: hsl(350, 100%, 73%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-pink:active {
    background: hsl(350, 100%, 73%) !important;
    color: #ffffff !important;
  }
}
.button-soft-magenta {
  background: hsl(300, 100%, 90%) !important;
  color: hsl(300, 100%, 25%) !important;
  border-color: hsl(300, 100%, 50%) !important;
}
@media (hover: hover) {
  .button-soft-magenta:hover {
    background: hsl(300, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-magenta:active {
    background: hsl(300, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
.button-magenta {
  background: hsl(300, 100%, 50%) !important;
  color: #ffffff !important;
  border-color: hsl(300, 100%, 35%) !important;
}
@media (hover: hover) {
  .button-magenta:hover {
    background: hsl(300, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-magenta:active {
    background: hsl(300, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
.button-soft-crimson {
  background: hsl(348, 88%, 91%) !important;
  color: hsl(348, 88%, 21%) !important;
  border-color: hsl(348, 88%, 46%) !important;
}
@media (hover: hover) {
  .button-soft-crimson:hover {
    background: hsl(348, 88%, 46%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-crimson:active {
    background: hsl(348, 88%, 46%) !important;
    color: #ffffff !important;
  }
}
.button-crimson {
  background: hsl(348, 88%, 46%) !important;
  color: #ffffff !important;
  border-color: hsl(348, 88%, 31%) !important;
}
@media (hover: hover) {
  .button-crimson:hover {
    background: hsl(348, 88%, 31%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-crimson:active {
    background: hsl(348, 88%, 31%) !important;
    color: #ffffff !important;
  }
}
.button-soft-red {
  background: hsl(0, 100%, 85%) !important;
  color: hsl(0, 100%, 25%) !important;
  border-color: hsl(0, 100%, 50%) !important;
}
@media (hover: hover) {
  .button-soft-red:hover {
    background: hsl(0, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-red:active {
    background: hsl(0, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
.button-red {
  background: hsl(0, 100%, 50%) !important;
  color: #ffffff !important;
  border-color: hsl(0, 100%, 35%) !important;
}
@media (hover: hover) {
  .button-red:hover {
    background: hsl(0, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-red:active {
    background: hsl(0, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
.button-soft-clown {
  background: hsl(3, 100%, 95%) !important;
  color: hsl(3, 100%, 45%) !important;
  border-color: hsl(3, 100%, 70%) !important;
}
@media (hover: hover) {
  .button-soft-clown:hover {
    background: hsl(3, 100%, 70%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-clown:active {
    background: hsl(3, 100%, 70%) !important;
    color: #ffffff !important;
  }
}
.button-clown {
  background: hsl(3, 100%, 70%) !important;
  color: #ffffff !important;
  border-color: hsl(3, 100%, 55%) !important;
}
@media (hover: hover) {
  .button-clown:hover {
    background: hsl(3, 100%, 55%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-clown:active {
    background: hsl(3, 100%, 55%) !important;
    color: #ffffff !important;
  }
}
.button-soft-orange {
  background: hsl(39, 100%, 90%) !important;
  color: hsl(39, 100%, 25%) !important;
  border-color: hsl(39, 100%, 50%) !important;
}
@media (hover: hover) {
  .button-soft-orange:hover {
    background: hsl(39, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-orange:active {
    background: hsl(39, 100%, 50%) !important;
    color: #ffffff !important;
  }
}
.button-orange {
  background: hsl(39, 100%, 50%) !important;
  color: #ffffff !important;
  border-color: hsl(39, 100%, 35%) !important;
}
@media (hover: hover) {
  .button-orange:hover {
    background: hsl(39, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-orange:active {
    background: hsl(39, 100%, 35%) !important;
    color: #ffffff !important;
  }
}
.button-soft-amber {
  background: hsl(45, 100%, 78%) !important;
  color: hsl(45, 100%, 33%) !important;
  border-color: hsl(45, 100%, 58%) !important;
}
@media (hover: hover) {
  .button-soft-amber:hover {
    background: hsl(45, 100%, 58%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-amber:active {
    background: hsl(45, 100%, 58%) !important;
    color: #ffffff !important;
  }
}
.button-amber {
  background: hsl(45, 100%, 58%) !important;
  color: #ffffff !important;
  border-color: hsl(45, 100%, 43%) !important;
}
@media (hover: hover) {
  .button-amber:hover {
    background: hsl(45, 100%, 43%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-amber:active {
    background: hsl(45, 100%, 43%) !important;
    color: #ffffff !important;
  }
}
.button-soft-yellow {
  background: hsl(52, 100%, 93%) !important;
  color: hsl(52, 100%, 43%) !important;
  border-color: hsl(52, 100%, 68%) !important;
}
@media (hover: hover) {
  .button-soft-yellow:hover {
    background: hsl(52, 100%, 68%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-yellow:active {
    background: hsl(52, 100%, 68%) !important;
    color: #ffffff !important;
  }
}
.button-yellow {
  background: hsl(52, 100%, 68%) !important;
  color: #ffffff !important;
  border-color: hsl(52, 100%, 53%) !important;
}
@media (hover: hover) {
  .button-yellow:hover {
    background: hsl(52, 100%, 53%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-yellow:active {
    background: hsl(52, 100%, 53%) !important;
    color: #ffffff !important;
  }
}
.button-soft-brown {
  background: hsl(25, 57%, 81%) !important;
  color: hsl(25, 57%, 26%) !important;
  border-color: hsl(25, 57%, 51%) !important;
}
@media (hover: hover) {
  .button-soft-brown:hover {
    background: hsl(25, 57%, 51%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-brown:active {
    background: hsl(25, 57%, 51%) !important;
    color: #ffffff !important;
  }
}
.button-brown {
  background: hsl(25, 57%, 51%) !important;
  color: #ffffff !important;
  border-color: hsl(25, 57%, 36%) !important;
}
@media (hover: hover) {
  .button-brown:hover {
    background: hsl(25, 57%, 36%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-brown:active {
    background: hsl(25, 57%, 36%) !important;
    color: #ffffff !important;
  }
}
.button-soft-olive {
  background: hsl(60, 100%, 72%) !important;
  color: hsl(60, 100%, 7%) !important;
  border-color: hsl(60, 100%, 32%) !important;
}
@media (hover: hover) {
  .button-soft-olive:hover {
    background: hsl(60, 100%, 32%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-olive:active {
    background: hsl(60, 100%, 32%) !important;
    color: #ffffff !important;
  }
}
.button-olive {
  background: hsl(60, 100%, 32%) !important;
  color: #ffffff !important;
  border-color: hsl(60, 100%, 17%) !important;
}
@media (hover: hover) {
  .button-olive:hover {
    background: hsl(60, 100%, 17%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-olive:active {
    background: hsl(60, 100%, 17%) !important;
    color: #ffffff !important;
  }
}
.button-soft-steel {
  background: hsl(209, 19%, 87%) !important;
  color: hsl(209, 19%, 32%) !important;
  border-color: hsl(209, 19%, 57%) !important;
}
@media (hover: hover) {
  .button-soft-steel:hover {
    background: hsl(209, 19%, 57%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-steel:active {
    background: hsl(209, 19%, 57%) !important;
    color: #ffffff !important;
  }
}
.button-steel {
  background: hsl(209, 19%, 57%) !important;
  color: #ffffff !important;
  border-color: hsl(209, 19%, 42%) !important;
}
@media (hover: hover) {
  .button-steel:hover {
    background: hsl(209, 19%, 42%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-steel:active {
    background: hsl(209, 19%, 42%) !important;
    color: #ffffff !important;
  }
}
.button-soft-mauve {
  background: hsl(277, 100%, 96%) !important;
  color: hsl(277, 100%, 59%) !important;
  border-color: hsl(277, 100%, 84%) !important;
}
@media (hover: hover) {
  .button-soft-mauve:hover {
    background: hsl(277, 100%, 84%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-mauve:active {
    background: hsl(277, 100%, 84%) !important;
    color: #ffffff !important;
  }
}
.button-mauve {
  background: hsl(277, 100%, 84%) !important;
  color: #ffffff !important;
  border-color: hsl(277, 100%, 69%) !important;
}
@media (hover: hover) {
  .button-mauve:hover {
    background: hsl(277, 100%, 69%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-mauve:active {
    background: hsl(277, 100%, 69%) !important;
    color: #ffffff !important;
  }
}
.button-soft-taupe {
  background: hsl(29, 19%, 80%) !important;
  color: hsl(29, 19%, 25%) !important;
  border-color: hsl(29, 19%, 50%) !important;
}
@media (hover: hover) {
  .button-soft-taupe:hover {
    background: hsl(29, 19%, 50%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-taupe:active {
    background: hsl(29, 19%, 50%) !important;
    color: #ffffff !important;
  }
}
.button-taupe {
  background: hsl(29, 19%, 50%) !important;
  color: #ffffff !important;
  border-color: hsl(29, 19%, 35%) !important;
}
@media (hover: hover) {
  .button-taupe:hover {
    background: hsl(29, 19%, 35%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-taupe:active {
    background: hsl(29, 19%, 35%) !important;
    color: #ffffff !important;
  }
}
.button-soft-champagne {
  background: hsl(37, 74%, 98%) !important;
  color: hsl(37, 74%, 63%) !important;
  border-color: hsl(37, 74%, 88%) !important;
}
@media (hover: hover) {
  .button-soft-champagne:hover {
    background: hsl(37, 74%, 88%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-champagne:active {
    background: hsl(37, 74%, 88%) !important;
    color: #ffffff !important;
  }
}
.button-champagne {
  background: hsl(37, 74%, 88%) !important;
  color: #ffffff !important;
  border-color: hsl(37, 74%, 73%) !important;
}
@media (hover: hover) {
  .button-champagne:hover {
    background: hsl(37, 74%, 73%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-champagne:active {
    background: hsl(37, 74%, 73%) !important;
    color: #ffffff !important;
  }
}
.button-soft-khaki {
  background: hsl(47, 47%, 94%) !important;
  color: hsl(47, 47%, 44%) !important;
  border-color: hsl(47, 47%, 69%) !important;
}
@media (hover: hover) {
  .button-soft-khaki:hover {
    background: hsl(47, 47%, 69%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-khaki:active {
    background: hsl(47, 47%, 69%) !important;
    color: #ffffff !important;
  }
}
.button-khaki {
  background: hsl(47, 47%, 69%) !important;
  color: #ffffff !important;
  border-color: hsl(47, 47%, 54%) !important;
}
@media (hover: hover) {
  .button-khaki:hover {
    background: hsl(47, 47%, 54%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-khaki:active {
    background: hsl(47, 47%, 54%) !important;
    color: #ffffff !important;
  }
}
.button-soft-charcoal {
  background: hsl(0, 0%, 90%) !important;
  color: hsl(0, 0%, 35%) !important;
  border-color: hsl(0, 0%, 60%) !important;
}
@media (hover: hover) {
  .button-soft-charcoal:hover {
    background: hsl(0, 0%, 60%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-charcoal:active {
    background: hsl(0, 0%, 60%) !important;
    color: #ffffff !important;
  }
}
.button-charcoal {
  background: hsl(0, 0%, 60%) !important;
  color: #ffffff !important;
  border-color: hsl(0, 0%, 45%) !important;
}
@media (hover: hover) {
  .button-charcoal:hover {
    background: hsl(0, 0%, 45%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-charcoal:active {
    background: hsl(0, 0%, 45%) !important;
    color: #ffffff !important;
  }
}
.button-soft-bronze {
  background: hsl(29, 75%, 87%) !important;
  color: hsl(29, 75%, 32%) !important;
  border-color: hsl(29, 75%, 57%) !important;
}
@media (hover: hover) {
  .button-soft-bronze:hover {
    background: hsl(29, 75%, 57%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-bronze:active {
    background: hsl(29, 75%, 57%) !important;
    color: #ffffff !important;
  }
}
.button-bronze {
  background: hsl(29, 75%, 57%) !important;
  color: #ffffff !important;
  border-color: hsl(29, 75%, 42%) !important;
}
@media (hover: hover) {
  .button-bronze:hover {
    background: hsl(29, 75%, 42%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-bronze:active {
    background: hsl(29, 75%, 42%) !important;
    color: #ffffff !important;
  }
}
.button-soft-windstorm {
  background: hsl(216, 53%, 93%) !important;
  color: hsl(216, 53%, 41%) !important;
  border-color: hsl(216, 53%, 66%) !important;
}
@media (hover: hover) {
  .button-soft-windstorm:hover {
    background: hsl(216, 53%, 66%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-windstorm:active {
    background: hsl(216, 53%, 66%) !important;
    color: #ffffff !important;
  }
}
.button-windstorm {
  background: hsl(216, 53%, 66%) !important;
  color: #ffffff !important;
  border-color: hsl(216, 53%, 51%) !important;
}
@media (hover: hover) {
  .button-windstorm:hover {
    background: hsl(216, 53%, 51%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-windstorm:active {
    background: hsl(216, 53%, 51%) !important;
    color: #ffffff !important;
  }
}
.button-soft-nude {
  background: hsl(29, 79%, 97%) !important;
  color: hsl(29, 79%, 60%) !important;
  border-color: hsl(29, 79%, 85%) !important;
}
@media (hover: hover) {
  .button-soft-nude:hover {
    background: hsl(29, 79%, 85%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-nude:active {
    background: hsl(29, 79%, 85%) !important;
    color: #ffffff !important;
  }
}
.button-nude {
  background: hsl(29, 79%, 85%) !important;
  color: #ffffff !important;
  border-color: hsl(29, 79%, 70%) !important;
}
@media (hover: hover) {
  .button-nude:hover {
    background: hsl(29, 79%, 70%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-nude:active {
    background: hsl(29, 79%, 70%) !important;
    color: #ffffff !important;
  }
}
.button-soft-terracotta {
  background: hsl(10, 76%, 85%) !important;
  color: hsl(10, 76%, 30%) !important;
  border-color: hsl(10, 76%, 55%) !important;
}
@media (hover: hover) {
  .button-soft-terracotta:hover {
    background: hsl(10, 76%, 55%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-terracotta:active {
    background: hsl(10, 76%, 55%) !important;
    color: #ffffff !important;
  }
}
.button-terracotta {
  background: hsl(10, 76%, 55%) !important;
  color: #ffffff !important;
  border-color: hsl(10, 76%, 40%) !important;
}
@media (hover: hover) {
  .button-terracotta:hover {
    background: hsl(10, 76%, 40%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-terracotta:active {
    background: hsl(10, 76%, 40%) !important;
    color: #ffffff !important;
  }
}
.button-soft-coral {
  background: hsl(16, 100%, 92%) !important;
  color: hsl(16, 100%, 42%) !important;
  border-color: hsl(16, 100%, 67%) !important;
}
@media (hover: hover) {
  .button-soft-coral:hover {
    background: hsl(16, 100%, 67%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-coral:active {
    background: hsl(16, 100%, 67%) !important;
    color: #ffffff !important;
  }
}
.button-coral {
  background: hsl(16, 100%, 67%) !important;
  color: #ffffff !important;
  border-color: hsl(16, 100%, 52%) !important;
}
@media (hover: hover) {
  .button-coral:hover {
    background: hsl(16, 100%, 52%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-coral:active {
    background: hsl(16, 100%, 52%) !important;
    color: #ffffff !important;
  }
}
.button-soft-army {
  background: hsl(69, 34%, 75%) !important;
  color: hsl(69, 34%, 5%) !important;
  border-color: hsl(69, 34%, 30%) !important;
}
@media (hover: hover) {
  .button-soft-army:hover {
    background: hsl(69, 34%, 30%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-army:active {
    background: hsl(69, 34%, 30%) !important;
    color: #ffffff !important;
  }
}
.button-army {
  background: hsl(69, 34%, 30%) !important;
  color: #ffffff !important;
  border-color: hsl(69, 34%, 15%) !important;
}
@media (hover: hover) {
  .button-army:hover {
    background: hsl(69, 34%, 15%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-army:active {
    background: hsl(69, 34%, 15%) !important;
    color: #ffffff !important;
  }
}
.button-soft-seashell {
  background: hsl(25, 100%, 98%) !important;
  color: hsl(25, 100%, 70%) !important;
  border-color: hsl(25, 100%, 95%) !important;
}
@media (hover: hover) {
  .button-soft-seashell:hover {
    background: hsl(25, 100%, 95%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-seashell:active {
    background: hsl(25, 100%, 95%) !important;
    color: #ffffff !important;
  }
}
.button-seashell {
  background: hsl(25, 100%, 95%) !important;
  color: #ffffff !important;
  border-color: hsl(25, 100%, 80%) !important;
}
@media (hover: hover) {
  .button-seashell:hover {
    background: hsl(25, 100%, 80%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-seashell:active {
    background: hsl(25, 100%, 80%) !important;
    color: #ffffff !important;
  }
}
.button-soft-sand {
  background: hsl(45, 71%, 96%) !important;
  color: hsl(45, 71%, 56%) !important;
  border-color: hsl(45, 71%, 81%) !important;
}
@media (hover: hover) {
  .button-soft-sand:hover {
    background: hsl(45, 71%, 81%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-soft-sand:active {
    background: hsl(45, 71%, 81%) !important;
    color: #ffffff !important;
  }
}
.button-sand {
  background: hsl(45, 71%, 81%) !important;
  color: #ffffff !important;
  border-color: hsl(45, 71%, 66%) !important;
}
@media (hover: hover) {
  .button-sand:hover {
    background: hsl(45, 71%, 66%) !important;
    color: #ffffff !important;
  }
}
@media (hover: none) {
  .button-sand:active {
    background: hsl(45, 71%, 66%) !important;
    color: #ffffff !important;
  }
}
.button-seashell,
.button-champagne,
.button-yellow,
.button-lime {
  color: #191919 !important;
}
button.shadow,
.button.shadow {
  box-shadow: 6px 6px 0 var(--shadow-color-3d);
}
button.shadow:active,
.button.shadow:active {
  transform: translate(4px, 4px);
}
button.largest.shadow,
.button.largest.shadow {
  box-shadow: 8px 8px 0 var(--shadow-color-3d);
}
button.largest.shadow:active,
.button.largest.shadow:active {
  transform: translate(6px, 6px);
}
button.large.shadow,
.button.large.shadow {
  box-shadow: 8px 8px 0 var(--shadow-color-3d);
}
button.large.shadow:active,
.button.large.shadow:active {
  transform: translate(6px, 6px);
}
button.small.shadow,
.button.small.shadow {
  box-shadow: 4px 4px 0 var(--shadow-color-3d);
}
button.small.shadow:active,
.button.small.shadow:active {
  transform: translate(2px, 2px);
}
button.mini.shadow,
.button.mini.shadow {
  box-shadow: 2px 2px 0 var(--shadow-color-3d);
}
button.mini.shadow:active,
.button.mini.shadow:active {
  transform: translate(1px, 1px);
}
button.shadow:active,
.button.shadow:active {
  box-shadow: none;
}
button.shift:active,
.button.shift:active {
  transform: translate(2px, 2px);
}
button.large.shift:active,
.button.large.shift:active {
  transform: translate(4px, 4px);
}
button.largest.shift:active,
.button.largest.shift:active {
  transform: translate(4px, 4px);
}
button.small.shift:active,
.button.small.shift:active {
  transform: translate(2px, 2px);
}
button.mini.shift:active,
.button.mini.shift:active {
  transform: translate(1px, 1px);
}
button .badge,
.button .badge {
  border-radius: 4px;
  border: 1px solid var(--border-color);
  padding: 2px !important;
}
button:has(.badge.corner),
.button:has(.badge.corner) {
  padding-right: 1.5rem;
}

/* ../metroui-lib/source/components/dialog/dialog.less */
:root {
  --dialog-border-radius: 6px;
  --dialog-background: #f7f8fa;
  --dialog-color: #191919;
  --dialog-border-color: #e6e6e6;
  --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-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-actions {
  display: flex;
}
.dialog-title {
  font-size: 1rem;
  padding: 10px 24px;
  order: 1;
  border-bottom: 1px solid var(--dialog-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;
  display: block;
}
.dialog-actions {
  border-top: 1px solid var(--dialog-border-color);
  padding: 8px 16px;
  order: 3;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.dialog-actions > * {
  margin: 0 4px;
  min-width: 64px;
}
.dialog-actions.text-left {
  justify-content: flex-start;
}
.dialog-actions.text-center {
  justify-content: center;
}
.dialog-actions.text-right {
  justify-content: flex-end;
}
.dialog * + .dialog-content {
  margin-top: 8px;
}
.dialog * + .dialog-actions {
  margin-top: 8px;
}
.dialog .closer {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 100;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dialog-closer-background);
  color: var(--dialog-closer-color);
  cursor: pointer;
  border-radius: 4px;
}
.dialog .closer::before {
  display: block;
  content: "\d7";
  font-size: 24px;
  margin-top: -4px;
}
.dialog .closer:hover {
  background-color: var(--dialog-closer-background-hover);
  color: var(--dialog-closer-color-hover);
}
.dialog.primary {
  border: 1px solid #f75553;
}
.dialog.primary .dialog-title {
  background-color: #f75553;
  border-bottom-color: #f75553;
  color: #ffffff;
}
.dialog.primary .dialog-actions {
  border-top-color: #f75553;
}
.dialog.secondary {
  border: 1px solid #74290a;
}
.dialog.secondary .dialog-title {
  background-color: #74290a;
  border-bottom-color: #74290a;
  color: #ffffff;
}
.dialog.secondary .dialog-actions {
  border-top-color: #74290a;
}
.dialog.tertiary {
  border: 1px solid #ffbebd;
}
.dialog.tertiary .dialog-title {
  background-color: #ffbebd;
  border-bottom-color: #ffbebd;
  color: #ffffff;
}
.dialog.tertiary .dialog-actions {
  border-top-color: #ffbebd;
}
.dialog.success {
  border: 1px solid hsl(140, 52%, 55%);
}
.dialog.success .dialog-title {
  background-color: hsl(140, 52%, 55%);
  border-bottom-color: hsl(140, 52%, 55%);
  color: #ffffff;
}
.dialog.success .dialog-actions {
  border-top-color: hsl(140, 52%, 55%);
}
.dialog.alert {
  border: 1px solid hsl(348, 88%, 46%);
}
.dialog.alert .dialog-title {
  background-color: hsl(348, 88%, 46%);
  border-bottom-color: hsl(348, 88%, 46%);
  color: #ffffff;
}
.dialog.alert .dialog-actions {
  border-top-color: hsl(348, 88%, 46%);
}
.dialog.warning {
  border: 1px solid hsl(39, 100%, 50%);
}
.dialog.warning .dialog-title {
  background-color: hsl(39, 100%, 50%);
  border-bottom-color: hsl(39, 100%, 50%);
  color: #ffffff;
}
.dialog.warning .dialog-actions {
  border-top-color: hsl(39, 100%, 50%);
}
.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;
}

/* ../metroui-lib/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: hsl(221, 100%, 79%);
}
.activity-ring.color-style > .wrap:nth-child(2) > .circle:after {
  background-color: hsl(39, 100%, 50%);
}
.activity-ring.color-style > .wrap:nth-child(3) > .circle:after {
  background-color: hsl(120, 100%, 35%);
}
.activity-ring.color-style > .wrap:nth-child(4) > .circle:after {
  background-color: hsl(0, 100%, 50%);
}
.activity-ring.color-style > .wrap:nth-child(5) > .circle:after {
  background-color: hsl(52, 100%, 68%);
}
.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: hsl(221, 100%, 79%);
}
.activity-metro.color-style > .circle:nth-child(2) {
  background-color: hsl(39, 100%, 50%);
}
.activity-metro.color-style > .circle:nth-child(3) {
  background-color: hsl(120, 100%, 35%);
}
.activity-metro.color-style > .circle:nth-child(4) {
  background-color: hsl(0, 100%, 50%);
}
.activity-metro.color-style > .circle:nth-child(5) {
  background-color: hsl(52, 100%, 68%);
}
.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: hsl(39, 100%, 50%);
}
.activity-square.color-style > .square:nth-child(2) {
  background-color: hsl(120, 100%, 35%);
}
.activity-square.color-style > .square:nth-child(3) {
  background-color: hsl(221, 100%, 79%);
}
.activity-square.color-style > .square:nth-child(4) {
  background-color: hsl(52, 100%, 68%);
}
.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: hsl(221, 100%, 79%);
}
.activity-cycle.color-style .cycle:before {
  border-top-color: hsl(0, 100%, 50%);
}
.activity-cycle.color-style .cycle:after {
  border-top-color: hsl(52, 100%, 68%);
}
.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: hsl(221, 100%, 79%);
}
.activity-atom.color-style span:nth-child(2) {
  border-right-color: hsl(0, 100%, 50%);
}
.activity-atom.color-style span:nth-child(3) {
  border-top-color: hsl(52, 100%, 68%);
}
.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: hsl(300, 76%, 72%);
}
.activity-bars.color-style span:nth-child(2) {
  background-color: hsl(221, 100%, 79%);
}
.activity-bars.color-style span:nth-child(3) {
  background-color: hsl(120, 100%, 35%);
}
.activity-bars.color-style span:nth-child(4) {
  background-color: hsl(52, 100%, 68%);
}
.activity-bars.color-style span:nth-child(5) {
  background-color: hsl(39, 100%, 50%);
}
.activity-bars.color-style span:nth-child(6) {
  background-color: hsl(350, 100%, 88%);
}
@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: hsl(0, 100%, 50%);
  }
  40% {
    stroke: hsl(225, 100%, 68%);
  }
  66% {
    stroke: hsl(120, 100%, 35%);
  }
  80%, 90% {
    stroke: hsl(52, 100%, 68%);
  }
}
@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;
}

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

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

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

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

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

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

/* ../metroui-lib/source/components/badges/badges.less */
:root {
  --badge-background: #F8F8F8;
  --badge-color: #191919;
  --badge-border-radius: 4px;
}
.dark-side {
  --badge-background: #2b2d30;
  --badge-color: #F8F8F8;
}
.badge {
  position: relative;
  z-index: 1;
  background-color: var(--badge-background);
  color: var(--badge-color);
  border-radius: var(--badge-border-radius);
  padding: 0.2em 0.4em 0.3em;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.badge.corner {
  position: absolute;
  top: 2px;
  right: 2px;
}
.badge.corner-outside {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.badge-gray {
  background: hsl(0, 0%, 80%);
  color: #ffffff;
  border-color: hsl(0, 0%, 55%);
}
.badge-gray-blue {
  background: hsl(210, 26%, 54%);
  color: #ffffff;
  border-color: hsl(210, 26%, 29%);
}
.badge-gray-mouse {
  background: hsl(199, 15%, 40%);
  color: #ffffff;
  border-color: hsl(199, 15%, 15%);
}
.badge-lime {
  background: hsl(93, 97%, 71%);
  color: #ffffff;
  border-color: hsl(93, 97%, 46%);
}
.badge-green {
  background: hsl(120, 100%, 35%);
  color: #ffffff;
  border-color: hsl(120, 100%, 10%);
}
.badge-emerald {
  background: hsl(140, 52%, 55%);
  color: #ffffff;
  border-color: hsl(140, 52%, 30%);
}
.badge-blue {
  background: hsl(225, 100%, 68%);
  color: #ffffff;
  border-color: hsl(225, 100%, 43%);
}
.badge-teal {
  background: hsl(180, 77%, 44%);
  color: #ffffff;
  border-color: hsl(180, 77%, 19%);
}
.badge-cyan {
  background: hsl(221, 100%, 79%);
  color: #ffffff;
  border-color: hsl(221, 100%, 54%);
}
.badge-cobalt {
  background: hsl(215, 100%, 34%);
  color: #ffffff;
  border-color: hsl(215, 100%, 9%);
}
.badge-indigo {
  background: hsl(276, 100%, 33%);
  color: #ffffff;
  border-color: hsl(276, 100%, 8%);
}
.badge-almost {
  background: hsl(259, 84%, 55%);
  color: #ffffff;
  border-color: hsl(259, 84%, 30%);
}
.badge-violet {
  background: hsl(300, 76%, 72%);
  color: #ffffff;
  border-color: hsl(300, 76%, 47%);
}
.badge-pink {
  background: hsl(350, 100%, 88%);
  color: #ffffff;
  border-color: hsl(350, 100%, 63%);
}
.badge-magenta {
  background: hsl(300, 100%, 50%);
  color: #ffffff;
  border-color: hsl(300, 100%, 25%);
}
.badge-crimson {
  background: hsl(348, 88%, 46%);
  color: #ffffff;
  border-color: hsl(348, 88%, 21%);
}
.badge-red {
  background: hsl(0, 100%, 50%);
  color: #ffffff;
  border-color: hsl(0, 100%, 25%);
}
.badge-clown {
  background: hsl(3, 100%, 70%);
  color: #ffffff;
  border-color: hsl(3, 100%, 45%);
}
.badge-orange {
  background: hsl(39, 100%, 50%);
  color: #ffffff;
  border-color: hsl(39, 100%, 25%);
}
.badge-amber {
  background: hsl(45, 100%, 58%);
  color: #ffffff;
  border-color: hsl(45, 100%, 33%);
}
.badge-yellow {
  background: hsl(52, 100%, 68%);
  color: #ffffff;
  border-color: hsl(52, 100%, 43%);
}
.badge-brown {
  background: hsl(25, 57%, 51%);
  color: #ffffff;
  border-color: hsl(25, 57%, 26%);
}
.badge-olive {
  background: hsl(60, 100%, 32%);
  color: #ffffff;
  border-color: hsl(60, 100%, 7%);
}
.badge-steel {
  background: hsl(209, 19%, 57%);
  color: #ffffff;
  border-color: hsl(209, 19%, 32%);
}
.badge-mauve {
  background: hsl(277, 100%, 84%);
  color: #ffffff;
  border-color: hsl(277, 100%, 59%);
}
.badge-taupe {
  background: hsl(29, 19%, 50%);
  color: #ffffff;
  border-color: hsl(29, 19%, 25%);
}
.badge-champagne {
  background: hsl(37, 74%, 88%);
  color: #ffffff;
  border-color: hsl(37, 74%, 63%);
}
.badge-khaki {
  background: hsl(47, 47%, 69%);
  color: #ffffff;
  border-color: hsl(47, 47%, 44%);
}
.badge-charcoal {
  background: hsl(0, 0%, 60%);
  color: #ffffff;
  border-color: hsl(0, 0%, 35%);
}
.badge-bronze {
  background: hsl(29, 75%, 57%);
  color: #ffffff;
  border-color: hsl(29, 75%, 32%);
}
.badge-windstorm {
  background: hsl(216, 53%, 66%);
  color: #ffffff;
  border-color: hsl(216, 53%, 41%);
}
.badge-nude {
  background: hsl(29, 79%, 85%);
  color: #ffffff;
  border-color: hsl(29, 79%, 60%);
}
.badge-terracotta {
  background: hsl(10, 76%, 55%);
  color: #ffffff;
  border-color: hsl(10, 76%, 30%);
}
.badge-coral {
  background: hsl(16, 100%, 67%);
  color: #ffffff;
  border-color: hsl(16, 100%, 42%);
}
.badge-army {
  background: hsl(69, 34%, 30%);
  color: #ffffff;
  border-color: hsl(69, 34%, 5%);
}
.badge-seashell {
  background: hsl(25, 100%, 95%);
  color: #ffffff;
  border-color: hsl(25, 100%, 70%);
}
.badge-sand {
  background: hsl(45, 71%, 81%);
  color: #ffffff;
  border-color: hsl(45, 71%, 56%);
}

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

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

/* ../metroui-lib/source/components/breadcrumbs/breadcrumbs.less */
:root {
  --breadcrumbs-background: transparent;
  --breadcrumbs-color: #191919;
  --breadcrumbs-background-hover: #ffffff;
  --breadcrumbs-color-hover: #000000;
  --breadcrumbs-divider-color: #c6c6c6;
}
.dark-side {
  --breadcrumbs-background: #1e1f22;
  --breadcrumbs-color: #dbdfe7;
  --breadcrumbs-background-hover: #1e1f22;
  --breadcrumbs-color-hover: #ffffff;
  --breadcrumbs-divider-color: #4a4d51;
}
.breadcrumbs {
  position: relative;
  list-style: none inside;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.breadcrumbs li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: inherit;
  color: inherit;
  margin: 0 6px;
}
.breadcrumbs li::after {
  content: attr(data-divider, "/");
  position: absolute;
  left: calc(100% + 3px);
  color: var(--breadcrumbs-divider-color);
}
.breadcrumbs a {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0.25rem;
  line-height: 1;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
.breadcrumbs .icon {
  font-size: 16px;
  margin-right: 0.5rem;
}
.breadcrumbs .caption {
  font-size: inherit;
  color: inherit;
}
.breadcrumbs a:hover {
  background-color: var(--breadcrumbs-background-hover);
  color: var(--breadcrumbs-color-hover);
  text-decoration: none;
}
.breadcrumbs li:last-child a {
  font-weight: bold;
}
.breadcrumbs li:last-child::after {
  display: none;
}
:root {
  --breadcrumbs-arrow-item-background: #f8f8f8;
  --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;
  margin: 0 4px;
}
.breadcrumbs.arrow li::after {
  display: none;
}
.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 16px 0 60px;
  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: -14px;
  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;
  z-index: 3;
}
.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:not(:first-child) {
  margin-left: -8px;
}
.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);
}

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

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

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

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

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

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

/* ../metroui-lib/source/components/carousel/carousel.less */
:root {
  --carousel-background: var(--default-background);
  --carousel-switch-background: hsla(0, 0%, 57.3%, 0.8);
  --carousel-switch-color: #fff;
  --carousel-bullet-color: #f5f8fe;
  --carousel-bullet-color-active: #50a8ff;
}
.dark-side {
  --carousel-background: var(--default-background);
  --carousel-switch-background: hsla(0, 0%, 57.3%, 0.8);
  --carousel-switch-color: #fff;
  --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: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: auto;
  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: 700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--carousel-switch-background);
  color: var(--carousel-switch-color);
  opacity: 0;
  transition: all 0.3s;
}
.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: 10px;
  left: auto;
  transform: translateX(64px);
}
.carousel .carousel-switch-prev {
  left: 10px;
  right: auto;
  transform: translateX(-64px);
}
.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;
}
@media (hover: hover) {
  .carousel:hover .carousel-switch-next,
  .carousel:hover .carousel-switch-prev {
    opacity: 1;
    transform: translateX(0);
  }
}
.carousel.controls-outside {
  padding: 0 4rem 1.375rem 4rem;
}
.carousel.controls-outside .carousel-bullets {
  bottom: 0;
}

/* ../metroui-lib/source/components/catalog-menu/catalog-menu.less */
:root {
  --catalog-menu-width: 272px;
  --catalog-menu-chevron: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 6'%3E%3Cpath d='M5.5 6L11 .7l-.73-.7L5.5 4.6.73 0 0 .7z' fill='%23595959'/%3E%3C/svg%3E");
  --catalog-menu-background: #ffffff;
  --catalog-menu-color: #191919;
  --catalog-menu-border-color: #c5c5c5;
  --catalog-menu-item-background-hover: #e8e8e8;
  --catalog-menu-item-color-hover: #000000;
}
.dark-side {
  --catalog-menu-chevron: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 6'%3E%3Cpath d='M5.5 6L11 .7l-.73-.7L5.5 4.6.73 0 0 .7z' fill='%23e0e0e0'/%3E%3C/svg%3E");
  --catalog-menu-background: #2b2d30;
  --catalog-menu-color: #f3fcff;
  --catalog-menu-border-color: #2b2d30;
  --catalog-menu-item-background-hover: #1e1f22;
  --catalog-menu-item-color-hover: #ffffff;
}
.catalog-menu {
  --catalog-content-width: 0;
  position: relative;
  display: block;
  width: var(--catalog-menu-width);
  background: var(--catalog-menu-background);
  color: var(--catalog-menu-color);
  border: 1px solid var(--catalog-menu-border-color);
  padding: 8px 0;
  isolation: isolate;
  flex-shrink: 0;
  flex-grow: 0;
}
.catalog-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--catalog-content-width);
  height: calc(100% + 2px);
  display: none;
  z-index: -1;
  background: var(--catalog-menu-background);
  border: 1px solid var(--catalog-menu-border-color);
}
.catalog-menu > .catalog-list,
.catalog-menu > ul {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  color: inherit;
  width: 100%;
}
.catalog-menu > .catalog-list > .catalog-item,
.catalog-menu > ul > .catalog-item,
.catalog-menu > .catalog-list > li,
.catalog-menu > ul > li {
  display: block;
  width: 100%;
  cursor: pointer;
  color: inherit;
  border-radius: 4px;
}
.catalog-menu > .catalog-list > .catalog-item a,
.catalog-menu > ul > .catalog-item a,
.catalog-menu > .catalog-list > li a,
.catalog-menu > ul > li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.15px;
  position: relative;
  height: 28px;
  padding: 0 16px 0 8px;
  margin: 0 8px;
  border-radius: 4px;
}
.catalog-menu > .catalog-list > .catalog-item a .icon,
.catalog-menu > ul > .catalog-item a .icon,
.catalog-menu > .catalog-list > li a .icon,
.catalog-menu > ul > li a .icon {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  opacity: 1;
  margin-right: 8px;
  object-fit: cover;
}
.catalog-menu > .catalog-list > .catalog-item a::after,
.catalog-menu > ul > .catalog-item a::after,
.catalog-menu > .catalog-list > li a::after,
.catalog-menu > ul > li a::after {
  content: "";
  position: absolute;
  background-image: var(--catalog-menu-chevron);
  top: calc(50% - 3px);
  transform: rotate(270deg);
  width: 11px;
  height: 6px;
  right: 4px;
}
.catalog-menu > .catalog-list > .catalog-item .catalog-item-content,
.catalog-menu > ul > .catalog-item .catalog-item-content,
.catalog-menu > .catalog-list > li .catalog-item-content,
.catalog-menu > ul > li .catalog-item-content {
  display: none;
  position: absolute;
  left: calc(100% - 1px);
  top: -1px;
  width: calc(var(--catalog-content-width) - var(--catalog-menu-width) + 2px);
  background-color: var(--catalog-menu-background);
  border: 1px solid var(--catalog-menu-border-color);
  z-index: 2;
  padding: 8px;
  height: calc(100% + 2px);
}
@media (hover: hover) {
  .catalog-menu > .catalog-list > .catalog-item:hover a,
  .catalog-menu > ul > .catalog-item:hover a,
  .catalog-menu > .catalog-list > li:hover a,
  .catalog-menu > ul > li:hover a {
    background-color: var(--catalog-menu-item-background-hover);
    color: var(--catalog-menu-item-color-hover);
  }
  .catalog-menu > .catalog-list > .catalog-item:hover .catalog-item-content,
  .catalog-menu > ul > .catalog-item:hover .catalog-item-content,
  .catalog-menu > .catalog-list > li:hover .catalog-item-content,
  .catalog-menu > ul > li:hover .catalog-item-content {
    display: block;
  }
}

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

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

/* ../metroui-lib/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;
  width: 100%;
}
.textarea {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  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: 6px 6px 0;
  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 {
  color: var(--textarea-color);
  width: 32px;
  height: 32px;
}
.textarea .input-clear-button {
  font-family: var(--font-family-icon);
  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;
}

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

/* ../metroui-lib/source/components/checkbox/checkbox.less */
:root {
  --checkbox-size: 22px;
  --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: calc(var(--checkbox-size) * 1.6);
  border-radius: var(--checkbox-border-radius);
  border: 2px solid var(--checkbox-color);
  position: relative;
  cursor: pointer;
  width: var(--checkbox-size, 22px);
  height: var(--checkbox-size, 22px);
  flex-shrink: 0 !important;
  background-color: var(--default-background);
}
input[type=checkbox]::before {
  content: "";
  display: block;
  opacity: 0;
  width: 8px;
  height: 6px;
  background-color: transparent;
  border-left: 2px solid var(--checkbox-color);
  border-bottom: 2px solid var(--checkbox-color);
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
  transition: opacity 0.3s;
}
input[type=checkbox]:checked::before {
  opacity: 1;
}
input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px var(--checkbox-focus-color);
}
input[type=checkbox]:disabled {
  border-color: var(--checkbox-color-disabled);
  background-color: var(--checkbox-background-disabled);
}
input[type=checkbox]:disabled::before {
  border-color: var(--checkbox-color-disabled);
}
input[type=checkbox]:indeterminate::before {
  content: "";
  opacity: 1;
  transform: rotate(0deg);
  border-left: none;
  top: 4px;
  left: 5px;
}
input[type=checkbox].small {
  --checkbox-size: 16px;
}
input[type=checkbox].medium {
  --checkbox-size: 19px;
}
input[type=checkbox].large {
  --checkbox-size: 25px;
}
input[type=checkbox].largest {
  --checkbox-size: 34px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
}
.checkbox input[type=checkbox] {
  order: 2;
}
.checkbox .caption-prepend,
.checkbox .caption-append {
  font-size: 12px;
  margin: 0 8px;
  position: relative;
  white-space: nowrap;
  user-select: none;
}
.checkbox .caption-prepend {
  order: 1;
}
.checkbox .caption-append {
  order: 3;
}
.checkbox > input[type=checkbox]:disabled ~ .caption-prepend,
.checkbox > input[type=checkbox]:disabled ~ .caption-append {
  color: var(--checkbox-color-disabled);
}
input[type=checkbox].checkbox-gray {
  border-color: hsl(0, 0%, 80%);
}
input[type=checkbox].checkbox-gray::before {
  border-color: hsl(0, 0%, 80%);
}
input[type=checkbox].checkbox-gray-blue {
  border-color: hsl(210, 26%, 54%);
}
input[type=checkbox].checkbox-gray-blue::before {
  border-color: hsl(210, 26%, 54%);
}
input[type=checkbox].checkbox-gray-mouse {
  border-color: hsl(199, 15%, 40%);
}
input[type=checkbox].checkbox-gray-mouse::before {
  border-color: hsl(199, 15%, 40%);
}
input[type=checkbox].checkbox-lime {
  border-color: hsl(93, 97%, 71%);
}
input[type=checkbox].checkbox-lime::before {
  border-color: hsl(93, 97%, 71%);
}
input[type=checkbox].checkbox-green {
  border-color: hsl(120, 100%, 35%);
}
input[type=checkbox].checkbox-green::before {
  border-color: hsl(120, 100%, 35%);
}
input[type=checkbox].checkbox-emerald {
  border-color: hsl(140, 52%, 55%);
}
input[type=checkbox].checkbox-emerald::before {
  border-color: hsl(140, 52%, 55%);
}
input[type=checkbox].checkbox-blue {
  border-color: hsl(225, 100%, 68%);
}
input[type=checkbox].checkbox-blue::before {
  border-color: hsl(225, 100%, 68%);
}
input[type=checkbox].checkbox-teal {
  border-color: hsl(180, 77%, 44%);
}
input[type=checkbox].checkbox-teal::before {
  border-color: hsl(180, 77%, 44%);
}
input[type=checkbox].checkbox-cyan {
  border-color: hsl(221, 100%, 79%);
}
input[type=checkbox].checkbox-cyan::before {
  border-color: hsl(221, 100%, 79%);
}
input[type=checkbox].checkbox-cobalt {
  border-color: hsl(215, 100%, 34%);
}
input[type=checkbox].checkbox-cobalt::before {
  border-color: hsl(215, 100%, 34%);
}
input[type=checkbox].checkbox-indigo {
  border-color: hsl(276, 100%, 33%);
}
input[type=checkbox].checkbox-indigo::before {
  border-color: hsl(276, 100%, 33%);
}
input[type=checkbox].checkbox-almost {
  border-color: hsl(259, 84%, 55%);
}
input[type=checkbox].checkbox-almost::before {
  border-color: hsl(259, 84%, 55%);
}
input[type=checkbox].checkbox-violet {
  border-color: hsl(300, 76%, 72%);
}
input[type=checkbox].checkbox-violet::before {
  border-color: hsl(300, 76%, 72%);
}
input[type=checkbox].checkbox-pink {
  border-color: hsl(350, 100%, 88%);
}
input[type=checkbox].checkbox-pink::before {
  border-color: hsl(350, 100%, 88%);
}
input[type=checkbox].checkbox-magenta {
  border-color: hsl(300, 100%, 50%);
}
input[type=checkbox].checkbox-magenta::before {
  border-color: hsl(300, 100%, 50%);
}
input[type=checkbox].checkbox-crimson {
  border-color: hsl(348, 88%, 46%);
}
input[type=checkbox].checkbox-crimson::before {
  border-color: hsl(348, 88%, 46%);
}
input[type=checkbox].checkbox-red {
  border-color: hsl(0, 100%, 50%);
}
input[type=checkbox].checkbox-red::before {
  border-color: hsl(0, 100%, 50%);
}
input[type=checkbox].checkbox-clown {
  border-color: hsl(3, 100%, 70%);
}
input[type=checkbox].checkbox-clown::before {
  border-color: hsl(3, 100%, 70%);
}
input[type=checkbox].checkbox-orange {
  border-color: hsl(39, 100%, 50%);
}
input[type=checkbox].checkbox-orange::before {
  border-color: hsl(39, 100%, 50%);
}
input[type=checkbox].checkbox-amber {
  border-color: hsl(45, 100%, 58%);
}
input[type=checkbox].checkbox-amber::before {
  border-color: hsl(45, 100%, 58%);
}
input[type=checkbox].checkbox-yellow {
  border-color: hsl(52, 100%, 68%);
}
input[type=checkbox].checkbox-yellow::before {
  border-color: hsl(52, 100%, 68%);
}
input[type=checkbox].checkbox-brown {
  border-color: hsl(25, 57%, 51%);
}
input[type=checkbox].checkbox-brown::before {
  border-color: hsl(25, 57%, 51%);
}
input[type=checkbox].checkbox-olive {
  border-color: hsl(60, 100%, 32%);
}
input[type=checkbox].checkbox-olive::before {
  border-color: hsl(60, 100%, 32%);
}
input[type=checkbox].checkbox-steel {
  border-color: hsl(209, 19%, 57%);
}
input[type=checkbox].checkbox-steel::before {
  border-color: hsl(209, 19%, 57%);
}
input[type=checkbox].checkbox-mauve {
  border-color: hsl(277, 100%, 84%);
}
input[type=checkbox].checkbox-mauve::before {
  border-color: hsl(277, 100%, 84%);
}
input[type=checkbox].checkbox-taupe {
  border-color: hsl(29, 19%, 50%);
}
input[type=checkbox].checkbox-taupe::before {
  border-color: hsl(29, 19%, 50%);
}
input[type=checkbox].checkbox-champagne {
  border-color: hsl(37, 74%, 88%);
}
input[type=checkbox].checkbox-champagne::before {
  border-color: hsl(37, 74%, 88%);
}
input[type=checkbox].checkbox-khaki {
  border-color: hsl(47, 47%, 69%);
}
input[type=checkbox].checkbox-khaki::before {
  border-color: hsl(47, 47%, 69%);
}
input[type=checkbox].checkbox-charcoal {
  border-color: hsl(0, 0%, 60%);
}
input[type=checkbox].checkbox-charcoal::before {
  border-color: hsl(0, 0%, 60%);
}
input[type=checkbox].checkbox-bronze {
  border-color: hsl(29, 75%, 57%);
}
input[type=checkbox].checkbox-bronze::before {
  border-color: hsl(29, 75%, 57%);
}
input[type=checkbox].checkbox-windstorm {
  border-color: hsl(216, 53%, 66%);
}
input[type=checkbox].checkbox-windstorm::before {
  border-color: hsl(216, 53%, 66%);
}
input[type=checkbox].checkbox-nude {
  border-color: hsl(29, 79%, 85%);
}
input[type=checkbox].checkbox-nude::before {
  border-color: hsl(29, 79%, 85%);
}
input[type=checkbox].checkbox-terracotta {
  border-color: hsl(10, 76%, 55%);
}
input[type=checkbox].checkbox-terracotta::before {
  border-color: hsl(10, 76%, 55%);
}
input[type=checkbox].checkbox-coral {
  border-color: hsl(16, 100%, 67%);
}
input[type=checkbox].checkbox-coral::before {
  border-color: hsl(16, 100%, 67%);
}
input[type=checkbox].checkbox-army {
  border-color: hsl(69, 34%, 30%);
}
input[type=checkbox].checkbox-army::before {
  border-color: hsl(69, 34%, 30%);
}
input[type=checkbox].checkbox-seashell {
  border-color: hsl(25, 100%, 95%);
}
input[type=checkbox].checkbox-seashell::before {
  border-color: hsl(25, 100%, 95%);
}
input[type=checkbox].checkbox-sand {
  border-color: hsl(45, 71%, 81%);
}
input[type=checkbox].checkbox-sand::before {
  border-color: hsl(45, 71%, 81%);
}

/* ../metroui-lib/source/components/chips/chips.less */
:root {
  --chip-background: #F4F4F4;
  --chip-color: #191919;
  --chip-background-hover: #dadada;
  --chip-color-hover: #191919;
  --chip-action-background: #c1c1c1;
  --chip-action-color: #191919;
}
.dark-side {
  --chip-background: #2b2d30;
  --chip-color: #f3fcff;
  --chip-background-hover: #333439;
  --chip-color-hover: #f3fcff;
  --chip-action-background: #43444a;
  --chip-action-color: #f3fcff;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 32px;
  font-size: 14px;
  padding: 0 8px;
  line-height: 32px;
  background: var(--chip-background);
  color: var(--chip-color);
  cursor: default;
  border-radius: 4px;
  position: relative;
}
.chip .label {
  white-space: nowrap;
  order: 2;
  margin: 0 1rem 0 0.5rem;
}
.chip .icon {
  order: 1;
  width: 32px;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  font-size: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chip .icon img {
  width: 24px;
  max-height: 24px;
  vertical-align: initial;
}
.chip .action {
  order: 3;
  display: block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin-left: auto;
  background: var(--chip-action-background);
  color: var(--chip-action-color);
  border-radius: 4px;
}
.chip .action:before {
  content: "\2716";
  line-height: 24px;
  text-align: center;
  display: block;
}
.chip.pill-chip {
  border-radius: 1rem;
}
.chip.pill-chip .action {
  border-radius: 50%;
}
.chip:hover {
  background-color: rgba(29, 29, 29, 0.1);
}
.chip.readonly .action,
.chip.disabled .action {
  display: none;
}
.chip + .chip {
  margin-left: 8px;
}
.primary .action {
  background: #f52522;
  color: #ffffff;
}
.secondary .action {
  background: #451806;
  color: #ffffff;
}
.tertiary .action {
  background: #ff8c8a;
  color: #ffffff;
}
.success .action {
  background: hsl(140, 52%, 45%);
  color: #ffffff;
}
.alert .action {
  background: hsl(348, 88%, 36%);
  color: #ffffff;
}
.warning .action {
  background: hsl(39, 100%, 40%);
  color: #ffffff;
}
.info .action {
  background: #136cff;
  color: #ffffff;
}
.dark .action {
  background: #373737;
  color: #ffffff;
}
.light .action {
  background: #dfdfdf;
  color: #ffffff;
}
.gray {
  background: hsl(0, 0%, 80%);
  color: #ffffff;
}
.gray .action {
  background: hsl(0, 0%, 55%);
  color: #ffffff;
}
@media (hover: hover) {
  .gray:hover {
    background: hsl(0, 0%, 70%);
  }
}
@media (hover: none) {
  .gray:active {
    background: hsl(0, 0%, 70%);
  }
}
.gray-blue {
  background: hsl(210, 26%, 54%);
  color: #ffffff;
}
.gray-blue .action {
  background: hsl(210, 26%, 29%);
  color: #ffffff;
}
@media (hover: hover) {
  .gray-blue:hover {
    background: hsl(210, 26%, 44%);
  }
}
@media (hover: none) {
  .gray-blue:active {
    background: hsl(210, 26%, 44%);
  }
}
.gray-mouse {
  background: hsl(199, 15%, 40%);
  color: #ffffff;
}
.gray-mouse .action {
  background: hsl(199, 15%, 15%);
  color: #ffffff;
}
@media (hover: hover) {
  .gray-mouse:hover {
    background: hsl(199, 15%, 30%);
  }
}
@media (hover: none) {
  .gray-mouse:active {
    background: hsl(199, 15%, 30%);
  }
}
.lime {
  background: hsl(93, 97%, 71%);
  color: #ffffff;
}
.lime .action {
  background: hsl(93, 97%, 46%);
  color: #ffffff;
}
@media (hover: hover) {
  .lime:hover {
    background: hsl(93, 97%, 61%);
  }
}
@media (hover: none) {
  .lime:active {
    background: hsl(93, 97%, 61%);
  }
}
.green {
  background: hsl(120, 100%, 35%);
  color: #ffffff;
}
.green .action {
  background: hsl(120, 100%, 10%);
  color: #ffffff;
}
@media (hover: hover) {
  .green:hover {
    background: hsl(120, 100%, 25%);
  }
}
@media (hover: none) {
  .green:active {
    background: hsl(120, 100%, 25%);
  }
}
.emerald {
  background: hsl(140, 52%, 55%);
  color: #ffffff;
}
.emerald .action {
  background: hsl(140, 52%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .emerald:hover {
    background: hsl(140, 52%, 45%);
  }
}
@media (hover: none) {
  .emerald:active {
    background: hsl(140, 52%, 45%);
  }
}
.blue {
  background: hsl(225, 100%, 68%);
  color: #ffffff;
}
.blue .action {
  background: hsl(225, 100%, 43%);
  color: #ffffff;
}
@media (hover: hover) {
  .blue:hover {
    background: hsl(225, 100%, 58%);
  }
}
@media (hover: none) {
  .blue:active {
    background: hsl(225, 100%, 58%);
  }
}
.teal {
  background: hsl(180, 77%, 44%);
  color: #ffffff;
}
.teal .action {
  background: hsl(180, 77%, 19%);
  color: #ffffff;
}
@media (hover: hover) {
  .teal:hover {
    background: hsl(180, 77%, 34%);
  }
}
@media (hover: none) {
  .teal:active {
    background: hsl(180, 77%, 34%);
  }
}
.cyan {
  background: hsl(221, 100%, 79%);
  color: #ffffff;
}
.cyan .action {
  background: hsl(221, 100%, 54%);
  color: #ffffff;
}
@media (hover: hover) {
  .cyan:hover {
    background: hsl(221, 100%, 69%);
  }
}
@media (hover: none) {
  .cyan:active {
    background: hsl(221, 100%, 69%);
  }
}
.cobalt {
  background: hsl(215, 100%, 34%);
  color: #ffffff;
}
.cobalt .action {
  background: hsl(215, 100%, 9%);
  color: #ffffff;
}
@media (hover: hover) {
  .cobalt:hover {
    background: hsl(215, 100%, 24%);
  }
}
@media (hover: none) {
  .cobalt:active {
    background: hsl(215, 100%, 24%);
  }
}
.indigo {
  background: hsl(276, 100%, 33%);
  color: #ffffff;
}
.indigo .action {
  background: hsl(276, 100%, 8%);
  color: #ffffff;
}
@media (hover: hover) {
  .indigo:hover {
    background: hsl(276, 100%, 23%);
  }
}
@media (hover: none) {
  .indigo:active {
    background: hsl(276, 100%, 23%);
  }
}
.almost {
  background: hsl(259, 84%, 55%);
  color: #ffffff;
}
.almost .action {
  background: hsl(259, 84%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .almost:hover {
    background: hsl(259, 84%, 45%);
  }
}
@media (hover: none) {
  .almost:active {
    background: hsl(259, 84%, 45%);
  }
}
.violet {
  background: hsl(300, 76%, 72%);
  color: #ffffff;
}
.violet .action {
  background: hsl(300, 76%, 47%);
  color: #ffffff;
}
@media (hover: hover) {
  .violet:hover {
    background: hsl(300, 76%, 62%);
  }
}
@media (hover: none) {
  .violet:active {
    background: hsl(300, 76%, 62%);
  }
}
.pink {
  background: hsl(350, 100%, 88%);
  color: #ffffff;
}
.pink .action {
  background: hsl(350, 100%, 63%);
  color: #ffffff;
}
@media (hover: hover) {
  .pink:hover {
    background: hsl(350, 100%, 78%);
  }
}
@media (hover: none) {
  .pink:active {
    background: hsl(350, 100%, 78%);
  }
}
.magenta {
  background: hsl(300, 100%, 50%);
  color: #ffffff;
}
.magenta .action {
  background: hsl(300, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .magenta:hover {
    background: hsl(300, 100%, 40%);
  }
}
@media (hover: none) {
  .magenta:active {
    background: hsl(300, 100%, 40%);
  }
}
.crimson {
  background: hsl(348, 88%, 46%);
  color: #ffffff;
}
.crimson .action {
  background: hsl(348, 88%, 21%);
  color: #ffffff;
}
@media (hover: hover) {
  .crimson:hover {
    background: hsl(348, 88%, 36%);
  }
}
@media (hover: none) {
  .crimson:active {
    background: hsl(348, 88%, 36%);
  }
}
.red {
  background: hsl(0, 100%, 50%);
  color: #ffffff;
}
.red .action {
  background: hsl(0, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .red:hover {
    background: hsl(0, 100%, 40%);
  }
}
@media (hover: none) {
  .red:active {
    background: hsl(0, 100%, 40%);
  }
}
.clown {
  background: hsl(3, 100%, 70%);
  color: #ffffff;
}
.clown .action {
  background: hsl(3, 100%, 45%);
  color: #ffffff;
}
@media (hover: hover) {
  .clown:hover {
    background: hsl(3, 100%, 60%);
  }
}
@media (hover: none) {
  .clown:active {
    background: hsl(3, 100%, 60%);
  }
}
.orange {
  background: hsl(39, 100%, 50%);
  color: #ffffff;
}
.orange .action {
  background: hsl(39, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .orange:hover {
    background: hsl(39, 100%, 40%);
  }
}
@media (hover: none) {
  .orange:active {
    background: hsl(39, 100%, 40%);
  }
}
.amber {
  background: hsl(45, 100%, 58%);
  color: #ffffff;
}
.amber .action {
  background: hsl(45, 100%, 33%);
  color: #ffffff;
}
@media (hover: hover) {
  .amber:hover {
    background: hsl(45, 100%, 48%);
  }
}
@media (hover: none) {
  .amber:active {
    background: hsl(45, 100%, 48%);
  }
}
.yellow {
  background: hsl(52, 100%, 68%);
  color: #ffffff;
}
.yellow .action {
  background: hsl(52, 100%, 43%);
  color: #ffffff;
}
@media (hover: hover) {
  .yellow:hover {
    background: hsl(52, 100%, 58%);
  }
}
@media (hover: none) {
  .yellow:active {
    background: hsl(52, 100%, 58%);
  }
}
.brown {
  background: hsl(25, 57%, 51%);
  color: #ffffff;
}
.brown .action {
  background: hsl(25, 57%, 26%);
  color: #ffffff;
}
@media (hover: hover) {
  .brown:hover {
    background: hsl(25, 57%, 41%);
  }
}
@media (hover: none) {
  .brown:active {
    background: hsl(25, 57%, 41%);
  }
}
.olive {
  background: hsl(60, 100%, 32%);
  color: #ffffff;
}
.olive .action {
  background: hsl(60, 100%, 7%);
  color: #ffffff;
}
@media (hover: hover) {
  .olive:hover {
    background: hsl(60, 100%, 22%);
  }
}
@media (hover: none) {
  .olive:active {
    background: hsl(60, 100%, 22%);
  }
}
.steel {
  background: hsl(209, 19%, 57%);
  color: #ffffff;
}
.steel .action {
  background: hsl(209, 19%, 32%);
  color: #ffffff;
}
@media (hover: hover) {
  .steel:hover {
    background: hsl(209, 19%, 47%);
  }
}
@media (hover: none) {
  .steel:active {
    background: hsl(209, 19%, 47%);
  }
}
.mauve {
  background: hsl(277, 100%, 84%);
  color: #ffffff;
}
.mauve .action {
  background: hsl(277, 100%, 59%);
  color: #ffffff;
}
@media (hover: hover) {
  .mauve:hover {
    background: hsl(277, 100%, 74%);
  }
}
@media (hover: none) {
  .mauve:active {
    background: hsl(277, 100%, 74%);
  }
}
.taupe {
  background: hsl(29, 19%, 50%);
  color: #ffffff;
}
.taupe .action {
  background: hsl(29, 19%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .taupe:hover {
    background: hsl(29, 19%, 40%);
  }
}
@media (hover: none) {
  .taupe:active {
    background: hsl(29, 19%, 40%);
  }
}
.champagne {
  background: hsl(37, 74%, 88%);
  color: #ffffff;
}
.champagne .action {
  background: hsl(37, 74%, 63%);
  color: #ffffff;
}
@media (hover: hover) {
  .champagne:hover {
    background: hsl(37, 74%, 78%);
  }
}
@media (hover: none) {
  .champagne:active {
    background: hsl(37, 74%, 78%);
  }
}
.khaki {
  background: hsl(47, 47%, 69%);
  color: #ffffff;
}
.khaki .action {
  background: hsl(47, 47%, 44%);
  color: #ffffff;
}
@media (hover: hover) {
  .khaki:hover {
    background: hsl(47, 47%, 59%);
  }
}
@media (hover: none) {
  .khaki:active {
    background: hsl(47, 47%, 59%);
  }
}
.charcoal {
  background: hsl(0, 0%, 60%);
  color: #ffffff;
}
.charcoal .action {
  background: hsl(0, 0%, 35%);
  color: #ffffff;
}
@media (hover: hover) {
  .charcoal:hover {
    background: hsl(0, 0%, 50%);
  }
}
@media (hover: none) {
  .charcoal:active {
    background: hsl(0, 0%, 50%);
  }
}
.bronze {
  background: hsl(29, 75%, 57%);
  color: #ffffff;
}
.bronze .action {
  background: hsl(29, 75%, 32%);
  color: #ffffff;
}
@media (hover: hover) {
  .bronze:hover {
    background: hsl(29, 75%, 47%);
  }
}
@media (hover: none) {
  .bronze:active {
    background: hsl(29, 75%, 47%);
  }
}
.windstorm {
  background: hsl(216, 53%, 66%);
  color: #ffffff;
}
.windstorm .action {
  background: hsl(216, 53%, 41%);
  color: #ffffff;
}
@media (hover: hover) {
  .windstorm:hover {
    background: hsl(216, 53%, 56%);
  }
}
@media (hover: none) {
  .windstorm:active {
    background: hsl(216, 53%, 56%);
  }
}
.nude {
  background: hsl(29, 79%, 85%);
  color: #ffffff;
}
.nude .action {
  background: hsl(29, 79%, 60%);
  color: #ffffff;
}
@media (hover: hover) {
  .nude:hover {
    background: hsl(29, 79%, 75%);
  }
}
@media (hover: none) {
  .nude:active {
    background: hsl(29, 79%, 75%);
  }
}
.terracotta {
  background: hsl(10, 76%, 55%);
  color: #ffffff;
}
.terracotta .action {
  background: hsl(10, 76%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .terracotta:hover {
    background: hsl(10, 76%, 45%);
  }
}
@media (hover: none) {
  .terracotta:active {
    background: hsl(10, 76%, 45%);
  }
}
.coral {
  background: hsl(16, 100%, 67%);
  color: #ffffff;
}
.coral .action {
  background: hsl(16, 100%, 42%);
  color: #ffffff;
}
@media (hover: hover) {
  .coral:hover {
    background: hsl(16, 100%, 57%);
  }
}
@media (hover: none) {
  .coral:active {
    background: hsl(16, 100%, 57%);
  }
}
.army {
  background: hsl(69, 34%, 30%);
  color: #ffffff;
}
.army .action {
  background: hsl(69, 34%, 5%);
  color: #ffffff;
}
@media (hover: hover) {
  .army:hover {
    background: hsl(69, 34%, 20%);
  }
}
@media (hover: none) {
  .army:active {
    background: hsl(69, 34%, 20%);
  }
}
.seashell {
  background: hsl(25, 100%, 95%);
  color: #ffffff;
}
.seashell .action {
  background: hsl(25, 100%, 70%);
  color: #ffffff;
}
@media (hover: hover) {
  .seashell:hover {
    background: hsl(25, 100%, 85%);
  }
}
@media (hover: none) {
  .seashell:active {
    background: hsl(25, 100%, 85%);
  }
}
.sand {
  background: hsl(45, 71%, 81%);
  color: #ffffff;
}
.sand .action {
  background: hsl(45, 71%, 56%);
  color: #ffffff;
}
@media (hover: hover) {
  .sand:hover {
    background: hsl(45, 71%, 71%);
  }
}
@media (hover: none) {
  .sand:active {
    background: hsl(45, 71%, 71%);
  }
}
.soft-gray {
  background: hsl(0, 0%, 95%);
  color: hsl(0, 0%, 55%);
}
.soft-gray .action {
  background: hsl(0, 0%, 55%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-gray:hover {
    background: hsl(0, 0%, 70%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-gray:active {
    background: hsl(0, 0%, 70%);
    color: #ffffff;
  }
}
.soft-gray-blue {
  background: hsl(210, 26%, 84%);
  color: hsl(210, 26%, 29%);
}
.soft-gray-blue .action {
  background: hsl(210, 26%, 29%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-gray-blue:hover {
    background: hsl(210, 26%, 44%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-gray-blue:active {
    background: hsl(210, 26%, 44%);
    color: #ffffff;
  }
}
.soft-gray-mouse {
  background: hsl(199, 15%, 70%);
  color: hsl(199, 15%, 15%);
}
.soft-gray-mouse .action {
  background: hsl(199, 15%, 15%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-gray-mouse:hover {
    background: hsl(199, 15%, 30%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-gray-mouse:active {
    background: hsl(199, 15%, 30%);
    color: #ffffff;
  }
}
.soft-lime {
  background: hsl(93, 97%, 91%);
  color: hsl(93, 97%, 46%);
}
.soft-lime .action {
  background: hsl(93, 97%, 46%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-lime:hover {
    background: hsl(93, 97%, 61%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-lime:active {
    background: hsl(93, 97%, 61%);
    color: #ffffff;
  }
}
.soft-green {
  background: hsl(120, 100%, 80%);
  color: hsl(120, 100%, 10%);
}
.soft-green .action {
  background: hsl(120, 100%, 10%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-green:hover {
    background: hsl(120, 100%, 25%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-green:active {
    background: hsl(120, 100%, 25%);
    color: #ffffff;
  }
}
.soft-emerald {
  background: hsl(140, 52%, 85%);
  color: hsl(140, 52%, 30%);
}
.soft-emerald .action {
  background: hsl(140, 52%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-emerald:hover {
    background: hsl(140, 52%, 45%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-emerald:active {
    background: hsl(140, 52%, 45%);
    color: #ffffff;
  }
}
.soft-blue {
  background: hsl(225, 100%, 93%);
  color: hsl(225, 100%, 43%);
}
.soft-blue .action {
  background: hsl(225, 100%, 43%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-blue:hover {
    background: hsl(225, 100%, 58%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-blue:active {
    background: hsl(225, 100%, 58%);
    color: #ffffff;
  }
}
.soft-teal {
  background: hsl(180, 77%, 79%);
  color: hsl(180, 77%, 19%);
}
.soft-teal .action {
  background: hsl(180, 77%, 19%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-teal:hover {
    background: hsl(180, 77%, 34%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-teal:active {
    background: hsl(180, 77%, 34%);
    color: #ffffff;
  }
}
.soft-cyan {
  background: hsl(221, 100%, 94%);
  color: hsl(221, 100%, 54%);
}
.soft-cyan .action {
  background: hsl(221, 100%, 54%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-cyan:hover {
    background: hsl(221, 100%, 69%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-cyan:active {
    background: hsl(221, 100%, 69%);
    color: #ffffff;
  }
}
.soft-cobalt {
  background: hsl(215, 100%, 79%);
  color: hsl(215, 100%, 9%);
}
.soft-cobalt .action {
  background: hsl(215, 100%, 9%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-cobalt:hover {
    background: hsl(215, 100%, 24%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-cobalt:active {
    background: hsl(215, 100%, 24%);
    color: #ffffff;
  }
}
.soft-indigo {
  background: hsl(276, 100%, 78%);
  color: hsl(276, 100%, 8%);
}
.soft-indigo .action {
  background: hsl(276, 100%, 8%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-indigo:hover {
    background: hsl(276, 100%, 23%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-indigo:active {
    background: hsl(276, 100%, 23%);
    color: #ffffff;
  }
}
.soft-almost {
  background: hsl(259, 84%, 85%);
  color: hsl(259, 84%, 30%);
}
.soft-almost .action {
  background: hsl(259, 84%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-almost:hover {
    background: hsl(259, 84%, 45%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-almost:active {
    background: hsl(259, 84%, 45%);
    color: #ffffff;
  }
}
.soft-violet {
  background: hsl(300, 76%, 92%);
  color: hsl(300, 76%, 47%);
}
.soft-violet .action {
  background: hsl(300, 76%, 47%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-violet:hover {
    background: hsl(300, 76%, 62%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-violet:active {
    background: hsl(300, 76%, 62%);
    color: #ffffff;
  }
}
.soft-pink {
  background: hsl(350, 100%, 98%);
  color: hsl(350, 100%, 63%);
}
.soft-pink .action {
  background: hsl(350, 100%, 63%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-pink:hover {
    background: hsl(350, 100%, 78%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-pink:active {
    background: hsl(350, 100%, 78%);
    color: #ffffff;
  }
}
.soft-magenta {
  background: hsl(300, 100%, 90%);
  color: hsl(300, 100%, 25%);
}
.soft-magenta .action {
  background: hsl(300, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-magenta:hover {
    background: hsl(300, 100%, 40%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-magenta:active {
    background: hsl(300, 100%, 40%);
    color: #ffffff;
  }
}
.soft-crimson {
  background: hsl(348, 88%, 91%);
  color: hsl(348, 88%, 21%);
}
.soft-crimson .action {
  background: hsl(348, 88%, 21%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-crimson:hover {
    background: hsl(348, 88%, 36%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-crimson:active {
    background: hsl(348, 88%, 36%);
    color: #ffffff;
  }
}
.soft-red {
  background: hsl(0, 100%, 85%);
  color: hsl(0, 100%, 25%);
}
.soft-red .action {
  background: hsl(0, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-red:hover {
    background: hsl(0, 100%, 40%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-red:active {
    background: hsl(0, 100%, 40%);
    color: #ffffff;
  }
}
.soft-clown {
  background: hsl(3, 100%, 95%);
  color: hsl(3, 100%, 45%);
}
.soft-clown .action {
  background: hsl(3, 100%, 45%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-clown:hover {
    background: hsl(3, 100%, 60%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-clown:active {
    background: hsl(3, 100%, 60%);
    color: #ffffff;
  }
}
.soft-orange {
  background: hsl(39, 100%, 90%);
  color: hsl(39, 100%, 25%);
}
.soft-orange .action {
  background: hsl(39, 100%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-orange:hover {
    background: hsl(39, 100%, 40%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-orange:active {
    background: hsl(39, 100%, 40%);
    color: #ffffff;
  }
}
.soft-amber {
  background: hsl(45, 100%, 78%);
  color: hsl(45, 100%, 33%);
}
.soft-amber .action {
  background: hsl(45, 100%, 33%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-amber:hover {
    background: hsl(45, 100%, 48%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-amber:active {
    background: hsl(45, 100%, 48%);
    color: #ffffff;
  }
}
.soft-yellow {
  background: hsl(52, 100%, 93%);
  color: hsl(52, 100%, 43%);
}
.soft-yellow .action {
  background: hsl(52, 100%, 43%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-yellow:hover {
    background: hsl(52, 100%, 58%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-yellow:active {
    background: hsl(52, 100%, 58%);
    color: #ffffff;
  }
}
.soft-brown {
  background: hsl(25, 57%, 81%);
  color: hsl(25, 57%, 26%);
}
.soft-brown .action {
  background: hsl(25, 57%, 26%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-brown:hover {
    background: hsl(25, 57%, 41%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-brown:active {
    background: hsl(25, 57%, 41%);
    color: #ffffff;
  }
}
.soft-olive {
  background: hsl(60, 100%, 72%);
  color: hsl(60, 100%, 7%);
}
.soft-olive .action {
  background: hsl(60, 100%, 7%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-olive:hover {
    background: hsl(60, 100%, 22%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-olive:active {
    background: hsl(60, 100%, 22%);
    color: #ffffff;
  }
}
.soft-steel {
  background: hsl(209, 19%, 87%);
  color: hsl(209, 19%, 32%);
}
.soft-steel .action {
  background: hsl(209, 19%, 32%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-steel:hover {
    background: hsl(209, 19%, 47%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-steel:active {
    background: hsl(209, 19%, 47%);
    color: #ffffff;
  }
}
.soft-mauve {
  background: hsl(277, 100%, 96%);
  color: hsl(277, 100%, 59%);
}
.soft-mauve .action {
  background: hsl(277, 100%, 59%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-mauve:hover {
    background: hsl(277, 100%, 74%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-mauve:active {
    background: hsl(277, 100%, 74%);
    color: #ffffff;
  }
}
.soft-taupe {
  background: hsl(29, 19%, 80%);
  color: hsl(29, 19%, 25%);
}
.soft-taupe .action {
  background: hsl(29, 19%, 25%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-taupe:hover {
    background: hsl(29, 19%, 40%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-taupe:active {
    background: hsl(29, 19%, 40%);
    color: #ffffff;
  }
}
.soft-champagne {
  background: hsl(37, 74%, 98%);
  color: hsl(37, 74%, 63%);
}
.soft-champagne .action {
  background: hsl(37, 74%, 63%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-champagne:hover {
    background: hsl(37, 74%, 78%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-champagne:active {
    background: hsl(37, 74%, 78%);
    color: #ffffff;
  }
}
.soft-khaki {
  background: hsl(47, 47%, 94%);
  color: hsl(47, 47%, 44%);
}
.soft-khaki .action {
  background: hsl(47, 47%, 44%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-khaki:hover {
    background: hsl(47, 47%, 59%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-khaki:active {
    background: hsl(47, 47%, 59%);
    color: #ffffff;
  }
}
.soft-charcoal {
  background: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 35%);
}
.soft-charcoal .action {
  background: hsl(0, 0%, 35%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-charcoal:hover {
    background: hsl(0, 0%, 50%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-charcoal:active {
    background: hsl(0, 0%, 50%);
    color: #ffffff;
  }
}
.soft-bronze {
  background: hsl(29, 75%, 87%);
  color: hsl(29, 75%, 32%);
}
.soft-bronze .action {
  background: hsl(29, 75%, 32%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-bronze:hover {
    background: hsl(29, 75%, 47%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-bronze:active {
    background: hsl(29, 75%, 47%);
    color: #ffffff;
  }
}
.soft-windstorm {
  background: hsl(216, 53%, 93%);
  color: hsl(216, 53%, 41%);
}
.soft-windstorm .action {
  background: hsl(216, 53%, 41%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-windstorm:hover {
    background: hsl(216, 53%, 56%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-windstorm:active {
    background: hsl(216, 53%, 56%);
    color: #ffffff;
  }
}
.soft-nude {
  background: hsl(29, 79%, 97%);
  color: hsl(29, 79%, 60%);
}
.soft-nude .action {
  background: hsl(29, 79%, 60%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-nude:hover {
    background: hsl(29, 79%, 75%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-nude:active {
    background: hsl(29, 79%, 75%);
    color: #ffffff;
  }
}
.soft-terracotta {
  background: hsl(10, 76%, 85%);
  color: hsl(10, 76%, 30%);
}
.soft-terracotta .action {
  background: hsl(10, 76%, 30%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-terracotta:hover {
    background: hsl(10, 76%, 45%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-terracotta:active {
    background: hsl(10, 76%, 45%);
    color: #ffffff;
  }
}
.soft-coral {
  background: hsl(16, 100%, 92%);
  color: hsl(16, 100%, 42%);
}
.soft-coral .action {
  background: hsl(16, 100%, 42%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-coral:hover {
    background: hsl(16, 100%, 57%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-coral:active {
    background: hsl(16, 100%, 57%);
    color: #ffffff;
  }
}
.soft-army {
  background: hsl(69, 34%, 75%);
  color: hsl(69, 34%, 5%);
}
.soft-army .action {
  background: hsl(69, 34%, 5%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-army:hover {
    background: hsl(69, 34%, 20%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-army:active {
    background: hsl(69, 34%, 20%);
    color: #ffffff;
  }
}
.soft-seashell {
  background: hsl(25, 100%, 98%);
  color: hsl(25, 100%, 70%);
}
.soft-seashell .action {
  background: hsl(25, 100%, 70%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-seashell:hover {
    background: hsl(25, 100%, 85%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-seashell:active {
    background: hsl(25, 100%, 85%);
    color: #ffffff;
  }
}
.soft-sand {
  background: hsl(45, 71%, 96%);
  color: hsl(45, 71%, 56%);
}
.soft-sand .action {
  background: hsl(45, 71%, 56%);
  color: #ffffff;
}
@media (hover: hover) {
  .soft-sand:hover {
    background: hsl(45, 71%, 71%);
    color: #ffffff;
  }
}
@media (hover: none) {
  .soft-sand:active {
    background: hsl(45, 71%, 71%);
    color: #ffffff;
  }
}

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

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

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

/* ../metroui-lib/source/components/tag/tag.less */
:root {
  --tag-background: #f8f8f8;
  --tag-color: #191919;
  --tag-action-background: #dcdcdc;
  --tag-action-color: #191919;
}
.dark-side {
  --tag-background: #53575c;
  --tag-color: #f3fcff;
  --tag-action-background: #2b2d30;
  --tag-action-color: #ffffff;
}
.tag {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 2px;
  padding: 0;
  height: 26px;
  background: var(--tag-background);
  color: var(--tag-color);
  cursor: default;
  border-radius: 4px;
  flex-wrap: nowrap;
}
.tag .title {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5rem;
  white-space: nowrap;
  height: 100%;
}
.tag .action {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  text-align: center;
  cursor: pointer;
  background: var(--tag-action-background);
  color: var(--tag-action-color);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: all 0.15s ease-in-out;
  line-height: 1;
}
@media (hover: hover) {
  .tag .action:hover {
    font-size: 1.4em;
  }
}
@media (hover: none) {
  .tag .action:active {
    font-size: 1.4em;
  }
}
.tag.short-tag .title {
  max-width: 120px;
}
.tag.static {
  background: #d4f0ff;
  color: #1d1d1d;
}
.tag.static .action {
  display: none !important;
}
.tag.primary .action {
  background: #f52522;
  color: #ffffff;
}
.tag.primary:hover {
  background: #f75553 !important;
}
.tag.secondary .action {
  background: #451806;
  color: #ffffff;
}
.tag.secondary:hover {
  background: #74290a !important;
}
.tag.tertiary .action {
  background: #ff8c8a;
  color: #ffffff;
}
.tag.tertiary:hover {
  background: #ffbebd !important;
}
.tag.success .action {
  background: hsl(140, 52%, 45%);
  color: #ffffff;
}
.tag.success:hover {
  background: hsl(140, 52%, 55%) !important;
}
.tag.alert .action {
  background: hsl(348, 88%, 36%);
  color: #ffffff;
}
.tag.alert:hover {
  background: hsl(348, 88%, 46%) !important;
}
.tag.warning .action {
  background: hsl(39, 100%, 40%);
  color: #ffffff;
}
.tag.warning:hover {
  background: hsl(39, 100%, 50%) !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-gray .action {
  background: hsl(0, 0%, 85%);
  color: #000000;
}
.tag.soft-gray:hover {
  background: hsl(0, 0%, 95%) !important;
  color: hsl(0, 0%, 55%) !important;
}
.tag.normal-gray .action {
  background: hsl(0, 0%, 70%);
  color: #ffffff;
}
.tag.normal-gray:hover {
  background: hsl(0, 0%, 80%) !important;
  color: #ffffff;
}
.tag.soft-gray-blue .action {
  background: hsl(210, 26%, 74%);
  color: #000000;
}
.tag.soft-gray-blue:hover {
  background: hsl(210, 26%, 84%) !important;
  color: hsl(210, 26%, 29%) !important;
}
.tag.normal-gray-blue .action {
  background: hsl(210, 26%, 44%);
  color: #ffffff;
}
.tag.normal-gray-blue:hover {
  background: hsl(210, 26%, 54%) !important;
  color: #ffffff;
}
.tag.soft-gray-mouse .action {
  background: hsl(199, 15%, 60%);
  color: #000000;
}
.tag.soft-gray-mouse:hover {
  background: hsl(199, 15%, 70%) !important;
  color: hsl(199, 15%, 15%) !important;
}
.tag.normal-gray-mouse .action {
  background: hsl(199, 15%, 30%);
  color: #ffffff;
}
.tag.normal-gray-mouse:hover {
  background: hsl(199, 15%, 40%) !important;
  color: #ffffff;
}
.tag.soft-lime .action {
  background: hsl(93, 97%, 81%);
  color: #000000;
}
.tag.soft-lime:hover {
  background: hsl(93, 97%, 91%) !important;
  color: hsl(93, 97%, 46%) !important;
}
.tag.normal-lime .action {
  background: hsl(93, 97%, 61%);
  color: #ffffff;
}
.tag.normal-lime:hover {
  background: hsl(93, 97%, 71%) !important;
  color: #ffffff;
}
.tag.soft-green .action {
  background: hsl(120, 100%, 70%);
  color: #000000;
}
.tag.soft-green:hover {
  background: hsl(120, 100%, 80%) !important;
  color: hsl(120, 100%, 10%) !important;
}
.tag.normal-green .action {
  background: hsl(120, 100%, 25%);
  color: #ffffff;
}
.tag.normal-green:hover {
  background: hsl(120, 100%, 35%) !important;
  color: #ffffff;
}
.tag.soft-emerald .action {
  background: hsl(140, 52%, 75%);
  color: #000000;
}
.tag.soft-emerald:hover {
  background: hsl(140, 52%, 85%) !important;
  color: hsl(140, 52%, 30%) !important;
}
.tag.normal-emerald .action {
  background: hsl(140, 52%, 45%);
  color: #ffffff;
}
.tag.normal-emerald:hover {
  background: hsl(140, 52%, 55%) !important;
  color: #ffffff;
}
.tag.soft-blue .action {
  background: hsl(225, 100%, 83%);
  color: #000000;
}
.tag.soft-blue:hover {
  background: hsl(225, 100%, 93%) !important;
  color: hsl(225, 100%, 43%) !important;
}
.tag.normal-blue .action {
  background: hsl(225, 100%, 58%);
  color: #ffffff;
}
.tag.normal-blue:hover {
  background: hsl(225, 100%, 68%) !important;
  color: #ffffff;
}
.tag.soft-teal .action {
  background: hsl(180, 77%, 69%);
  color: #000000;
}
.tag.soft-teal:hover {
  background: hsl(180, 77%, 79%) !important;
  color: hsl(180, 77%, 19%) !important;
}
.tag.normal-teal .action {
  background: hsl(180, 77%, 34%);
  color: #ffffff;
}
.tag.normal-teal:hover {
  background: hsl(180, 77%, 44%) !important;
  color: #ffffff;
}
.tag.soft-cyan .action {
  background: hsl(221, 100%, 84%);
  color: #000000;
}
.tag.soft-cyan:hover {
  background: hsl(221, 100%, 94%) !important;
  color: hsl(221, 100%, 54%) !important;
}
.tag.normal-cyan .action {
  background: hsl(221, 100%, 69%);
  color: #ffffff;
}
.tag.normal-cyan:hover {
  background: hsl(221, 100%, 79%) !important;
  color: #ffffff;
}
.tag.soft-cobalt .action {
  background: hsl(215, 100%, 69%);
  color: #000000;
}
.tag.soft-cobalt:hover {
  background: hsl(215, 100%, 79%) !important;
  color: hsl(215, 100%, 9%) !important;
}
.tag.normal-cobalt .action {
  background: hsl(215, 100%, 24%);
  color: #ffffff;
}
.tag.normal-cobalt:hover {
  background: hsl(215, 100%, 34%) !important;
  color: #ffffff;
}
.tag.soft-indigo .action {
  background: hsl(276, 100%, 68%);
  color: #000000;
}
.tag.soft-indigo:hover {
  background: hsl(276, 100%, 78%) !important;
  color: hsl(276, 100%, 8%) !important;
}
.tag.normal-indigo .action {
  background: hsl(276, 100%, 23%);
  color: #ffffff;
}
.tag.normal-indigo:hover {
  background: hsl(276, 100%, 33%) !important;
  color: #ffffff;
}
.tag.soft-almost .action {
  background: hsl(259, 84%, 75%);
  color: #000000;
}
.tag.soft-almost:hover {
  background: hsl(259, 84%, 85%) !important;
  color: hsl(259, 84%, 30%) !important;
}
.tag.normal-almost .action {
  background: hsl(259, 84%, 45%);
  color: #ffffff;
}
.tag.normal-almost:hover {
  background: hsl(259, 84%, 55%) !important;
  color: #ffffff;
}
.tag.soft-violet .action {
  background: hsl(300, 76%, 82%);
  color: #000000;
}
.tag.soft-violet:hover {
  background: hsl(300, 76%, 92%) !important;
  color: hsl(300, 76%, 47%) !important;
}
.tag.normal-violet .action {
  background: hsl(300, 76%, 62%);
  color: #ffffff;
}
.tag.normal-violet:hover {
  background: hsl(300, 76%, 72%) !important;
  color: #ffffff;
}
.tag.soft-pink .action {
  background: hsl(350, 100%, 88%);
  color: #000000;
}
.tag.soft-pink:hover {
  background: hsl(350, 100%, 98%) !important;
  color: hsl(350, 100%, 63%) !important;
}
.tag.normal-pink .action {
  background: hsl(350, 100%, 78%);
  color: #ffffff;
}
.tag.normal-pink:hover {
  background: hsl(350, 100%, 88%) !important;
  color: #ffffff;
}
.tag.soft-magenta .action {
  background: hsl(300, 100%, 80%);
  color: #000000;
}
.tag.soft-magenta:hover {
  background: hsl(300, 100%, 90%) !important;
  color: hsl(300, 100%, 25%) !important;
}
.tag.normal-magenta .action {
  background: hsl(300, 100%, 40%);
  color: #ffffff;
}
.tag.normal-magenta:hover {
  background: hsl(300, 100%, 50%) !important;
  color: #ffffff;
}
.tag.soft-crimson .action {
  background: hsl(348, 88%, 81%);
  color: #000000;
}
.tag.soft-crimson:hover {
  background: hsl(348, 88%, 91%) !important;
  color: hsl(348, 88%, 21%) !important;
}
.tag.normal-crimson .action {
  background: hsl(348, 88%, 36%);
  color: #ffffff;
}
.tag.normal-crimson:hover {
  background: hsl(348, 88%, 46%) !important;
  color: #ffffff;
}
.tag.soft-red .action {
  background: hsl(0, 100%, 75%);
  color: #000000;
}
.tag.soft-red:hover {
  background: hsl(0, 100%, 85%) !important;
  color: hsl(0, 100%, 25%) !important;
}
.tag.normal-red .action {
  background: hsl(0, 100%, 40%);
  color: #ffffff;
}
.tag.normal-red:hover {
  background: hsl(0, 100%, 50%) !important;
  color: #ffffff;
}
.tag.soft-clown .action {
  background: hsl(3, 100%, 85%);
  color: #000000;
}
.tag.soft-clown:hover {
  background: hsl(3, 100%, 95%) !important;
  color: hsl(3, 100%, 45%) !important;
}
.tag.normal-clown .action {
  background: hsl(3, 100%, 60%);
  color: #ffffff;
}
.tag.normal-clown:hover {
  background: hsl(3, 100%, 70%) !important;
  color: #ffffff;
}
.tag.soft-orange .action {
  background: hsl(39, 100%, 80%);
  color: #000000;
}
.tag.soft-orange:hover {
  background: hsl(39, 100%, 90%) !important;
  color: hsl(39, 100%, 25%) !important;
}
.tag.normal-orange .action {
  background: hsl(39, 100%, 40%);
  color: #ffffff;
}
.tag.normal-orange:hover {
  background: hsl(39, 100%, 50%) !important;
  color: #ffffff;
}
.tag.soft-amber .action {
  background: hsl(45, 100%, 68%);
  color: #000000;
}
.tag.soft-amber:hover {
  background: hsl(45, 100%, 78%) !important;
  color: hsl(45, 100%, 33%) !important;
}
.tag.normal-amber .action {
  background: hsl(45, 100%, 48%);
  color: #ffffff;
}
.tag.normal-amber:hover {
  background: hsl(45, 100%, 58%) !important;
  color: #ffffff;
}
.tag.soft-yellow .action {
  background: hsl(52, 100%, 83%);
  color: #000000;
}
.tag.soft-yellow:hover {
  background: hsl(52, 100%, 93%) !important;
  color: hsl(52, 100%, 43%) !important;
}
.tag.normal-yellow .action {
  background: hsl(52, 100%, 58%);
  color: #ffffff;
}
.tag.normal-yellow:hover {
  background: hsl(52, 100%, 68%) !important;
  color: #ffffff;
}
.tag.soft-brown .action {
  background: hsl(25, 57%, 71%);
  color: #000000;
}
.tag.soft-brown:hover {
  background: hsl(25, 57%, 81%) !important;
  color: hsl(25, 57%, 26%) !important;
}
.tag.normal-brown .action {
  background: hsl(25, 57%, 41%);
  color: #ffffff;
}
.tag.normal-brown:hover {
  background: hsl(25, 57%, 51%) !important;
  color: #ffffff;
}
.tag.soft-olive .action {
  background: hsl(60, 100%, 62%);
  color: #000000;
}
.tag.soft-olive:hover {
  background: hsl(60, 100%, 72%) !important;
  color: hsl(60, 100%, 7%) !important;
}
.tag.normal-olive .action {
  background: hsl(60, 100%, 22%);
  color: #ffffff;
}
.tag.normal-olive:hover {
  background: hsl(60, 100%, 32%) !important;
  color: #ffffff;
}
.tag.soft-steel .action {
  background: hsl(209, 19%, 77%);
  color: #000000;
}
.tag.soft-steel:hover {
  background: hsl(209, 19%, 87%) !important;
  color: hsl(209, 19%, 32%) !important;
}
.tag.normal-steel .action {
  background: hsl(209, 19%, 47%);
  color: #ffffff;
}
.tag.normal-steel:hover {
  background: hsl(209, 19%, 57%) !important;
  color: #ffffff;
}
.tag.soft-mauve .action {
  background: hsl(277, 100%, 86%);
  color: #000000;
}
.tag.soft-mauve:hover {
  background: hsl(277, 100%, 96%) !important;
  color: hsl(277, 100%, 59%) !important;
}
.tag.normal-mauve .action {
  background: hsl(277, 100%, 74%);
  color: #ffffff;
}
.tag.normal-mauve:hover {
  background: hsl(277, 100%, 84%) !important;
  color: #ffffff;
}
.tag.soft-taupe .action {
  background: hsl(29, 19%, 70%);
  color: #000000;
}
.tag.soft-taupe:hover {
  background: hsl(29, 19%, 80%) !important;
  color: hsl(29, 19%, 25%) !important;
}
.tag.normal-taupe .action {
  background: hsl(29, 19%, 40%);
  color: #ffffff;
}
.tag.normal-taupe:hover {
  background: hsl(29, 19%, 50%) !important;
  color: #ffffff;
}
.tag.soft-champagne .action {
  background: hsl(37, 74%, 88%);
  color: #000000;
}
.tag.soft-champagne:hover {
  background: hsl(37, 74%, 98%) !important;
  color: hsl(37, 74%, 63%) !important;
}
.tag.normal-champagne .action {
  background: hsl(37, 74%, 78%);
  color: #ffffff;
}
.tag.normal-champagne:hover {
  background: hsl(37, 74%, 88%) !important;
  color: #ffffff;
}
.tag.soft-khaki .action {
  background: hsl(47, 47%, 84%);
  color: #000000;
}
.tag.soft-khaki:hover {
  background: hsl(47, 47%, 94%) !important;
  color: hsl(47, 47%, 44%) !important;
}
.tag.normal-khaki .action {
  background: hsl(47, 47%, 59%);
  color: #ffffff;
}
.tag.normal-khaki:hover {
  background: hsl(47, 47%, 69%) !important;
  color: #ffffff;
}
.tag.soft-charcoal .action {
  background: hsl(0, 0%, 80%);
  color: #000000;
}
.tag.soft-charcoal:hover {
  background: hsl(0, 0%, 90%) !important;
  color: hsl(0, 0%, 35%) !important;
}
.tag.normal-charcoal .action {
  background: hsl(0, 0%, 50%);
  color: #ffffff;
}
.tag.normal-charcoal:hover {
  background: hsl(0, 0%, 60%) !important;
  color: #ffffff;
}
.tag.soft-bronze .action {
  background: hsl(29, 75%, 77%);
  color: #000000;
}
.tag.soft-bronze:hover {
  background: hsl(29, 75%, 87%) !important;
  color: hsl(29, 75%, 32%) !important;
}
.tag.normal-bronze .action {
  background: hsl(29, 75%, 47%);
  color: #ffffff;
}
.tag.normal-bronze:hover {
  background: hsl(29, 75%, 57%) !important;
  color: #ffffff;
}
.tag.soft-windstorm .action {
  background: hsl(216, 53%, 83%);
  color: #000000;
}
.tag.soft-windstorm:hover {
  background: hsl(216, 53%, 93%) !important;
  color: hsl(216, 53%, 41%) !important;
}
.tag.normal-windstorm .action {
  background: hsl(216, 53%, 56%);
  color: #ffffff;
}
.tag.normal-windstorm:hover {
  background: hsl(216, 53%, 66%) !important;
  color: #ffffff;
}
.tag.soft-nude .action {
  background: hsl(29, 79%, 87%);
  color: #000000;
}
.tag.soft-nude:hover {
  background: hsl(29, 79%, 97%) !important;
  color: hsl(29, 79%, 60%) !important;
}
.tag.normal-nude .action {
  background: hsl(29, 79%, 75%);
  color: #ffffff;
}
.tag.normal-nude:hover {
  background: hsl(29, 79%, 85%) !important;
  color: #ffffff;
}
.tag.soft-terracotta .action {
  background: hsl(10, 76%, 75%);
  color: #000000;
}
.tag.soft-terracotta:hover {
  background: hsl(10, 76%, 85%) !important;
  color: hsl(10, 76%, 30%) !important;
}
.tag.normal-terracotta .action {
  background: hsl(10, 76%, 45%);
  color: #ffffff;
}
.tag.normal-terracotta:hover {
  background: hsl(10, 76%, 55%) !important;
  color: #ffffff;
}
.tag.soft-coral .action {
  background: hsl(16, 100%, 82%);
  color: #000000;
}
.tag.soft-coral:hover {
  background: hsl(16, 100%, 92%) !important;
  color: hsl(16, 100%, 42%) !important;
}
.tag.normal-coral .action {
  background: hsl(16, 100%, 57%);
  color: #ffffff;
}
.tag.normal-coral:hover {
  background: hsl(16, 100%, 67%) !important;
  color: #ffffff;
}
.tag.soft-army .action {
  background: hsl(69, 34%, 65%);
  color: #000000;
}
.tag.soft-army:hover {
  background: hsl(69, 34%, 75%) !important;
  color: hsl(69, 34%, 5%) !important;
}
.tag.normal-army .action {
  background: hsl(69, 34%, 20%);
  color: #ffffff;
}
.tag.normal-army:hover {
  background: hsl(69, 34%, 30%) !important;
  color: #ffffff;
}
.tag.soft-seashell .action {
  background: hsl(25, 100%, 88%);
  color: #000000;
}
.tag.soft-seashell:hover {
  background: hsl(25, 100%, 98%) !important;
  color: hsl(25, 100%, 70%) !important;
}
.tag.normal-seashell .action {
  background: hsl(25, 100%, 85%);
  color: #ffffff;
}
.tag.normal-seashell:hover {
  background: hsl(25, 100%, 95%) !important;
  color: #ffffff;
}
.tag.soft-sand .action {
  background: hsl(45, 71%, 86%);
  color: #000000;
}
.tag.soft-sand:hover {
  background: hsl(45, 71%, 96%) !important;
  color: hsl(45, 71%, 56%) !important;
}
.tag.normal-sand .action {
  background: hsl(45, 71%, 71%);
  color: #ffffff;
}
.tag.normal-sand:hover {
  background: hsl(45, 71%, 81%) !important;
  color: #ffffff;
}

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

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

/* ../metroui-lib/source/components/radio/radio.less */
:root {
  --radio-size: 22px;
  --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: var(--radio-size, 22px);
  height: var(--radio-size, 22px);
  line-height: calc(var(--radio-size) * 1.6);
  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].small {
  --radio-size: 16px;
}
input[type=radio].medium {
  --radio-size: 19px;
}
input[type=radio].large {
  --radio-size: 25px;
}
input[type=radio].largest {
  --radio-size: 34px;
}
.radio {
  display: inline-flex;
  align-items: center;
}
.radio input[type=radio] {
  order: 2;
}
.radio .caption-prepend,
.radio .caption-append {
  font-size: 12px;
  margin: 0 8px;
  position: relative;
  white-space: nowrap;
  user-select: none;
}
.radio .caption-prepend {
  order: 1;
}
.radio .caption-append {
  order: 3;
}
.radio > input[type=radio]:disabled ~ .caption-prepend,
.radio > input[type=radio]:disabled ~ .caption-append {
  color: var(--radio-color-disabled);
}
input[type=radio].radio-gray {
  border-color: hsl(0, 0%, 80%);
}
input[type=radio].radio-gray::before {
  background-color: hsl(0, 0%, 80%);
  border-color: hsl(0, 0%, 80%);
}
input[type=radio].radio-gray-blue {
  border-color: hsl(210, 26%, 54%);
}
input[type=radio].radio-gray-blue::before {
  background-color: hsl(210, 26%, 54%);
  border-color: hsl(210, 26%, 54%);
}
input[type=radio].radio-gray-mouse {
  border-color: hsl(199, 15%, 40%);
}
input[type=radio].radio-gray-mouse::before {
  background-color: hsl(199, 15%, 40%);
  border-color: hsl(199, 15%, 40%);
}
input[type=radio].radio-lime {
  border-color: hsl(93, 97%, 71%);
}
input[type=radio].radio-lime::before {
  background-color: hsl(93, 97%, 71%);
  border-color: hsl(93, 97%, 71%);
}
input[type=radio].radio-green {
  border-color: hsl(120, 100%, 35%);
}
input[type=radio].radio-green::before {
  background-color: hsl(120, 100%, 35%);
  border-color: hsl(120, 100%, 35%);
}
input[type=radio].radio-emerald {
  border-color: hsl(140, 52%, 55%);
}
input[type=radio].radio-emerald::before {
  background-color: hsl(140, 52%, 55%);
  border-color: hsl(140, 52%, 55%);
}
input[type=radio].radio-blue {
  border-color: hsl(225, 100%, 68%);
}
input[type=radio].radio-blue::before {
  background-color: hsl(225, 100%, 68%);
  border-color: hsl(225, 100%, 68%);
}
input[type=radio].radio-teal {
  border-color: hsl(180, 77%, 44%);
}
input[type=radio].radio-teal::before {
  background-color: hsl(180, 77%, 44%);
  border-color: hsl(180, 77%, 44%);
}
input[type=radio].radio-cyan {
  border-color: hsl(221, 100%, 79%);
}
input[type=radio].radio-cyan::before {
  background-color: hsl(221, 100%, 79%);
  border-color: hsl(221, 100%, 79%);
}
input[type=radio].radio-cobalt {
  border-color: hsl(215, 100%, 34%);
}
input[type=radio].radio-cobalt::before {
  background-color: hsl(215, 100%, 34%);
  border-color: hsl(215, 100%, 34%);
}
input[type=radio].radio-indigo {
  border-color: hsl(276, 100%, 33%);
}
input[type=radio].radio-indigo::before {
  background-color: hsl(276, 100%, 33%);
  border-color: hsl(276, 100%, 33%);
}
input[type=radio].radio-almost {
  border-color: hsl(259, 84%, 55%);
}
input[type=radio].radio-almost::before {
  background-color: hsl(259, 84%, 55%);
  border-color: hsl(259, 84%, 55%);
}
input[type=radio].radio-violet {
  border-color: hsl(300, 76%, 72%);
}
input[type=radio].radio-violet::before {
  background-color: hsl(300, 76%, 72%);
  border-color: hsl(300, 76%, 72%);
}
input[type=radio].radio-pink {
  border-color: hsl(350, 100%, 88%);
}
input[type=radio].radio-pink::before {
  background-color: hsl(350, 100%, 88%);
  border-color: hsl(350, 100%, 88%);
}
input[type=radio].radio-magenta {
  border-color: hsl(300, 100%, 50%);
}
input[type=radio].radio-magenta::before {
  background-color: hsl(300, 100%, 50%);
  border-color: hsl(300, 100%, 50%);
}
input[type=radio].radio-crimson {
  border-color: hsl(348, 88%, 46%);
}
input[type=radio].radio-crimson::before {
  background-color: hsl(348, 88%, 46%);
  border-color: hsl(348, 88%, 46%);
}
input[type=radio].radio-red {
  border-color: hsl(0, 100%, 50%);
}
input[type=radio].radio-red::before {
  background-color: hsl(0, 100%, 50%);
  border-color: hsl(0, 100%, 50%);
}
input[type=radio].radio-clown {
  border-color: hsl(3, 100%, 70%);
}
input[type=radio].radio-clown::before {
  background-color: hsl(3, 100%, 70%);
  border-color: hsl(3, 100%, 70%);
}
input[type=radio].radio-orange {
  border-color: hsl(39, 100%, 50%);
}
input[type=radio].radio-orange::before {
  background-color: hsl(39, 100%, 50%);
  border-color: hsl(39, 100%, 50%);
}
input[type=radio].radio-amber {
  border-color: hsl(45, 100%, 58%);
}
input[type=radio].radio-amber::before {
  background-color: hsl(45, 100%, 58%);
  border-color: hsl(45, 100%, 58%);
}
input[type=radio].radio-yellow {
  border-color: hsl(52, 100%, 68%);
}
input[type=radio].radio-yellow::before {
  background-color: hsl(52, 100%, 68%);
  border-color: hsl(52, 100%, 68%);
}
input[type=radio].radio-brown {
  border-color: hsl(25, 57%, 51%);
}
input[type=radio].radio-brown::before {
  background-color: hsl(25, 57%, 51%);
  border-color: hsl(25, 57%, 51%);
}
input[type=radio].radio-olive {
  border-color: hsl(60, 100%, 32%);
}
input[type=radio].radio-olive::before {
  background-color: hsl(60, 100%, 32%);
  border-color: hsl(60, 100%, 32%);
}
input[type=radio].radio-steel {
  border-color: hsl(209, 19%, 57%);
}
input[type=radio].radio-steel::before {
  background-color: hsl(209, 19%, 57%);
  border-color: hsl(209, 19%, 57%);
}
input[type=radio].radio-mauve {
  border-color: hsl(277, 100%, 84%);
}
input[type=radio].radio-mauve::before {
  background-color: hsl(277, 100%, 84%);
  border-color: hsl(277, 100%, 84%);
}
input[type=radio].radio-taupe {
  border-color: hsl(29, 19%, 50%);
}
input[type=radio].radio-taupe::before {
  background-color: hsl(29, 19%, 50%);
  border-color: hsl(29, 19%, 50%);
}
input[type=radio].radio-champagne {
  border-color: hsl(37, 74%, 88%);
}
input[type=radio].radio-champagne::before {
  background-color: hsl(37, 74%, 88%);
  border-color: hsl(37, 74%, 88%);
}
input[type=radio].radio-khaki {
  border-color: hsl(47, 47%, 69%);
}
input[type=radio].radio-khaki::before {
  background-color: hsl(47, 47%, 69%);
  border-color: hsl(47, 47%, 69%);
}
input[type=radio].radio-charcoal {
  border-color: hsl(0, 0%, 60%);
}
input[type=radio].radio-charcoal::before {
  background-color: hsl(0, 0%, 60%);
  border-color: hsl(0, 0%, 60%);
}
input[type=radio].radio-bronze {
  border-color: hsl(29, 75%, 57%);
}
input[type=radio].radio-bronze::before {
  background-color: hsl(29, 75%, 57%);
  border-color: hsl(29, 75%, 57%);
}
input[type=radio].radio-windstorm {
  border-color: hsl(216, 53%, 66%);
}
input[type=radio].radio-windstorm::before {
  background-color: hsl(216, 53%, 66%);
  border-color: hsl(216, 53%, 66%);
}
input[type=radio].radio-nude {
  border-color: hsl(29, 79%, 85%);
}
input[type=radio].radio-nude::before {
  background-color: hsl(29, 79%, 85%);
  border-color: hsl(29, 79%, 85%);
}
input[type=radio].radio-terracotta {
  border-color: hsl(10, 76%, 55%);
}
input[type=radio].radio-terracotta::before {
  background-color: hsl(10, 76%, 55%);
  border-color: hsl(10, 76%, 55%);
}
input[type=radio].radio-coral {
  border-color: hsl(16, 100%, 67%);
}
input[type=radio].radio-coral::before {
  background-color: hsl(16, 100%, 67%);
  border-color: hsl(16, 100%, 67%);
}
input[type=radio].radio-army {
  border-color: hsl(69, 34%, 30%);
}
input[type=radio].radio-army::before {
  background-color: hsl(69, 34%, 30%);
  border-color: hsl(69, 34%, 30%);
}
input[type=radio].radio-seashell {
  border-color: hsl(25, 100%, 95%);
}
input[type=radio].radio-seashell::before {
  background-color: hsl(25, 100%, 95%);
  border-color: hsl(25, 100%, 95%);
}
input[type=radio].radio-sand {
  border-color: hsl(45, 71%, 81%);
}
input[type=radio].radio-sand::before {
  background-color: hsl(45, 71%, 81%);
  border-color: hsl(45, 71%, 81%);
}

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

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

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

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

/* ../metroui-lib/source/components/d-menu/d-menu.less */
:root {
  --d-menu-border-color: #e9e9e9;
  --d-menu-divider-color: #e9e9e9;
  --d-menu-background: #ffffff;
  --d-menu-title-color: #515151;
  --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-title-color: #ffffff;
  --d-menu-color: #ffffff;
  --d-menu-item-color: #dbdfe7;
  --d-menu-item-color-disabled: #a8a8a8;
  --d-menu-item-color-hover: #ffffff;
  --d-menu-item-background-hover: #1e1f22;
  --d-menu-dropdown-toogle-color: #ffffff;
  --d-menu-shadow-color: #191919;
  --d-menu-border-radius: 4px;
}
.d-menu {
  position: absolute;
  float: left;
  width: auto;
  margin: 0;
  list-style: none inside none;
  background-color: var(--d-menu-background);
  color: var(--d-menu-color);
  border-radius: 6px;
  padding: 4px 0;
  border: 1px solid var(--d-menu-border-color);
  z-index: 1030;
  box-shadow: 2px 2px 10px var(--d-menu-shadow-color);
}
.d-menu.open {
  display: block !important;
}
.d-menu.place-right {
  left: auto;
  right: 0;
}
.d-menu li {
  display: block;
  margin: 0 4px;
  position: relative;
}
.d-menu a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--d-menu-item-color);
  text-decoration: none;
  padding: 4px 10px 4px 32px;
  border-radius: var(--d-menu-border-radius);
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 20px;
}
@media (hover: hover) {
  .d-menu a:hover {
    color: var(--d-menu-item-color-hover);
    text-decoration: none;
    background-color: var(--d-menu-item-background-hover);
  }
}
@media (hover: none) {
  .d-menu a:active {
    color: var(--d-menu-item-color-hover);
    text-decoration: none;
    background-color: var(--d-menu-item-background-hover);
  }
}
.d-menu .caption {
  margin-right: 1rem;
  white-space: nowrap;
}
.d-menu .hotkey {
  margin-left: auto;
  margin-right: 1rem;
}
.d-menu .icon {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 16px;
  height: 16px;
  font-size: 16px;
}
.d-menu .divider {
  padding: 0;
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  background-color: var(--d-menu-divider-color);
  cursor: default;
  pointer-events: none;
}
.d-menu .divider:hover {
  background-color: var(--d-menu-divider-color);
}
.d-menu .disabled {
  cursor: default;
  pointer-events: none;
}
.d-menu .disabled a {
  color: var(--d-menu-item-color-disabled) !important;
}
.d-menu .dropdown-caret {
  margin-left: auto;
  transform: rotate(0deg);
}
.d-menu .active-container .dropdown-caret {
  transform: rotate(180deg);
}
.d-menu .menu-title {
  background-color: var(--d-menu-background);
  color: var(--d-menu-title-color);
  font-size: 0.8em;
  line-height: 22px;
  height: 22px;
  padding: 0 8px;
  border: 0;
  font-weight: 500;
  pointer-events: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.d-menu .menu-title::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 1px;
  margin: 0 8px;
  background-color: var(--d-menu-divider-color);
}
.d-menu .menu-title:first-child {
  margin: 0;
  border-top-width: 0;
}
.d-menu .menu-title:first-child:hover {
  border-top-width: 0;
}
.d-menu .menu-title:hover {
  background-color: var(--d-menu-background);
  cursor: default;
  border: 0;
}
.d-menu .d-menu {
  left: calc(100% + 4px);
  top: 0;
}
.d-menu .d-menu.open-left {
  left: auto;
  right: calc(100% + 4px);
}
.d-menu.place-right .d-menu {
  left: auto;
  right: calc(100% + 4px);
}
.d-menu .d-menu.place-right {
  left: auto;
  right: calc(100% + 4px);
  top: 0;
}
@media screen and (min-width: 0) {
  .d-menu.place-right-fs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 360px) {
  .d-menu.place-right-xs {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 576px) {
  .d-menu.place-right-sm {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 640px) {
  .d-menu.place-right-ld {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .d-menu.place-right-md {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .d-menu.place-right-lg {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .d-menu.place-right-xl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .d-menu.place-right-xxl {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 2000px) {
  .d-menu.place-right-xxxl {
    left: auto;
    right: 0;
  }
}
.d-menu.no-icon a {
  padding: 4px 10px;
}

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

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

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

/* ../metroui-lib/source/components/cube/cube.less */
:root {
  --cube-size: 24px;
  --cube-gap: 4px;
  --cube-cell-border-radius: 4px;
  --cube-border-color: #767676;
  --cube-background: var(--default-background);
  --cube-color: var(--default-color);
  --cube-background-flash: var(--color-primary);
  --cube-color-flash: #ffffff;
  --cube-axis-color: #191919;
  --cube-side-border-color: transparent;
}
.dark-side {
  --cube-border-color: #767676;
  --cube-background: var(--default-background);
  --cube-color: var(--default-color);
  --cube-background-flash: var(--color-primary);
  --cube-color-flash: #ffffff;
  --cube-axis-color: #ffffff;
  --cube-side-border-color: transparent;
}
.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: flex-start;
  padding: var(--cube-gap);
  gap: var(--cube-gap);
  position: absolute;
  overflow: hidden;
  width: 162px;
  height: 162px;
  bottom: 38px;
  left: 0;
  border: 1px solid var(--cube-side-border-color);
  border-radius: calc(var(--cube-cell-border-radius) * 2);
}
.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: var(--cube-size);
  height: var(--cube-size);
  flex-grow: 0;
  flex-shrink: 0;
  background-color: var(--cube-background);
  color: var(--cube-color);
  border: 1px solid var(--cube-border-color);
  border-radius: var(--cube-cell-border-radius);
  transition: all 0.3s ease-in-out;
  line-height: var(--cube-size);
  text-align: center;
  font-size: calc(var(--cube-size) / 2);
}
.cube .side .cube-cell.light {
  animation: pulsar-cell 2.5s 0s ease-out infinite;
  background-color: var(--cube-background-flash) !important;
  border-color: var(--cube-background-flash) !important;
  color: var(--cube-color-flash) !important;
}
@keyframes pulsar-cell {
  0%, 100% {
    box-shadow:
      0 0 10px var(--cube-background-flash),
      0 0 10px var(--cube-background-flash),
      0 0 10px var(--cube-background-flash);
  }
  50% {
    box-shadow:
      0 0 10px hsl(from var(--cube-background-flash) h s l / 0.3),
      0 0 10px hsl(from var(--cube-background-flash) h s l / 0.3),
      0 0 10px hsl(from var(--cube-background-flash) h s l / 0.3);
  }
}
.cube .axis {
  height: 2px;
  width: 200px;
  position: absolute;
  background-color: var(--cube-axis-color);
  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);
}

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

/* ../metroui-lib/source/components/cutter/cutter.less */
:root {
  --cutter-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMCAxMUw4IDVMMTYgMTEiIHN0cm9rZT0iIzMwMzYzZCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIC8+Cjwvc3ZnPgo=);
  --cutter-line-width: 2px;
  --cutter-line-color: #3a3b3d;
  --cutter-content-background: var(--default-background);
  --cutter-content-color: var(--default-color);
  --cutter-content-background-hover: #dadada;
  --cutter-content-color-hover: #191919;
}
.dark-side {
  --cutter-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMCAxMUw4IDVMMTYgMTEiIHN0cm9rZT0iI2UxZTRlOCIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIC8+Cjwvc3ZnPgo=);
  --cutter-line-color: #e4e5e9;
  --cutter-content-background: var(--default-background);
  --cutter-content-color: var(--default-color);
  --cutter-content-background-hover: #333439;
  --cutter-content-color-hover: #f3fcff;
}
.cutter {
  background-image: var(--cutter-image);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 16px 16px;
  min-height: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  cursor: default;
}
.cutter .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  font-size: 12px;
  min-height: 32px;
  background: var(--default-background);
  border: var(--cutter-line-width) solid var(--cutter-line-color);
  border-radius: 6px;
  padding: 8px 24px;
}
.cutter.line {
  background-image:
    linear-gradient(
      to right,
      var(--cutter-line-color),
      var(--cutter-line-color));
  background-repeat: no-repeat;
  background-size: 100% var(--cutter-line-width);
  background-position: 0 center;
}
.cutter.dash {
  background-image:
    repeating-linear-gradient(
      to right,
      var(--cutter-line-color) 0,
      var(--cutter-line-color) 10px,
      transparent 10px,
      transparent 20px);
  background-repeat: no-repeat;
  background-size: 100% var(--cutter-line-width);
  background-position: 0 center;
}
.cutter.dash .content {
  border-style: dashed;
}
.cutter.dot {
  background-image:
    repeating-linear-gradient(
      to right,
      var(--cutter-line-color) 0,
      var(--cutter-line-color) var(--cutter-line-width),
      transparent var(--cutter-line-width),
      transparent 10px);
  background-repeat: no-repeat;
  background-size: 100% var(--cutter-line-width);
  background-position: 0 center;
}
.cutter.dot .content {
  border-style: dotted;
}
.cutter.dash-dot {
  background-image:
    repeating-linear-gradient(
      to right,
      var(--cutter-line-color) 0,
      var(--cutter-line-color) 10px,
      transparent 10px,
      transparent 15px,
      var(--cutter-line-color) 15px,
      var(--cutter-line-color) calc(15px + var(--cutter-line-width)),
      transparent calc(15px + var(--cutter-line-width)),
      transparent 25px);
  background-repeat: no-repeat;
  background-size: 100% var(--cutter-line-width);
  background-position: 0 center;
}
.cutter.dash-dot .content {
  border-style: dot-dash;
}
@media (hover: hover) {
  .cutter.hoverable:hover .content {
    background: var(--cutter-content-background-hover);
    color: var(--cutter-content-color-hover);
  }
}
@media (hover: none) {
  .cutter.hoverable:active .content {
    background: var(--cutter-content-background-hover);
    color: var(--cutter-content-color-hover);
  }
}

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

/* ../metroui-lib/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(242, 242, 242, 0.45);
}
.date-picker .date-wrapper {
  display: inline-flex;
  flex-flow: row nowrap;
  position: relative;
  border: 1px solid var(--border-color);
  width: 100%;
  overflow: hidden;
  height: 100%;
  border-radius: var(--wheel-picker-border-radius);
}
.date-picker .month,
.date-picker .day,
.date-picker .year {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 1px solid var(--border-color);
  text-align: center;
  height: 100%;
  font-size: var(--picker-font-size);
}
.date-picker .month {
  flex-grow: 2;
}
.date-picker .sel-month {
  flex-grow: 2 !important;
}
.date-picker .action-block {
  border: 1px solid var(--border-color);
  border-radius: var(--wheel-picker-border-radius);
}
.date-picker .button {
  margin: 2px;
}
.date-picker li {
  cursor: pointer;
}
.date-picker.pill-input {
  --picker-border-radius: calc(var(--picker-height) * 0.44);
}
.date-picker.pill-input .date-wrapper {
  border-radius: var(--picker-border-radius);
}
.date-picker.pill-input .date-wrapper div:first-child {
  border-top-left-radius: var(--picker-border-radius);
  border-bottom-left-radius: var(--picker-border-radius);
}
.date-picker.pill-input .date-wrapper div:last-child {
  border-top-right-radius: var(--picker-border-radius);
  border-bottom-right-radius: var(--picker-border-radius);
}

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

/* ../metroui-lib/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-gray svg .donut-back {
  stroke: hsl(0, 0%, 85%);
}
.donut-gray svg .donut-fill {
  stroke: hsl(0, 0%, 80%);
}
.donut-gray svg .donut-title {
  fill: hsl(0, 0%, 55%);
}
.donut-gray-blue svg .donut-back {
  stroke: hsl(210, 26%, 74%);
}
.donut-gray-blue svg .donut-fill {
  stroke: hsl(210, 26%, 54%);
}
.donut-gray-blue svg .donut-title {
  fill: hsl(210, 26%, 29%);
}
.donut-gray-mouse svg .donut-back {
  stroke: hsl(199, 15%, 60%);
}
.donut-gray-mouse svg .donut-fill {
  stroke: hsl(199, 15%, 40%);
}
.donut-gray-mouse svg .donut-title {
  fill: hsl(199, 15%, 15%);
}
.donut-lime svg .donut-back {
  stroke: hsl(93, 97%, 81%);
}
.donut-lime svg .donut-fill {
  stroke: hsl(93, 97%, 71%);
}
.donut-lime svg .donut-title {
  fill: hsl(93, 97%, 46%);
}
.donut-green svg .donut-back {
  stroke: hsl(120, 100%, 70%);
}
.donut-green svg .donut-fill {
  stroke: hsl(120, 100%, 35%);
}
.donut-green svg .donut-title {
  fill: hsl(120, 100%, 10%);
}
.donut-emerald svg .donut-back {
  stroke: hsl(140, 52%, 75%);
}
.donut-emerald svg .donut-fill {
  stroke: hsl(140, 52%, 55%);
}
.donut-emerald svg .donut-title {
  fill: hsl(140, 52%, 30%);
}
.donut-blue svg .donut-back {
  stroke: hsl(225, 100%, 83%);
}
.donut-blue svg .donut-fill {
  stroke: hsl(225, 100%, 68%);
}
.donut-blue svg .donut-title {
  fill: hsl(225, 100%, 43%);
}
.donut-teal svg .donut-back {
  stroke: hsl(180, 77%, 69%);
}
.donut-teal svg .donut-fill {
  stroke: hsl(180, 77%, 44%);
}
.donut-teal svg .donut-title {
  fill: hsl(180, 77%, 19%);
}
.donut-cyan svg .donut-back {
  stroke: hsl(221, 100%, 84%);
}
.donut-cyan svg .donut-fill {
  stroke: hsl(221, 100%, 79%);
}
.donut-cyan svg .donut-title {
  fill: hsl(221, 100%, 54%);
}
.donut-cobalt svg .donut-back {
  stroke: hsl(215, 100%, 69%);
}
.donut-cobalt svg .donut-fill {
  stroke: hsl(215, 100%, 34%);
}
.donut-cobalt svg .donut-title {
  fill: hsl(215, 100%, 9%);
}
.donut-indigo svg .donut-back {
  stroke: hsl(276, 100%, 68%);
}
.donut-indigo svg .donut-fill {
  stroke: hsl(276, 100%, 33%);
}
.donut-indigo svg .donut-title {
  fill: hsl(276, 100%, 8%);
}
.donut-almost svg .donut-back {
  stroke: hsl(259, 84%, 75%);
}
.donut-almost svg .donut-fill {
  stroke: hsl(259, 84%, 55%);
}
.donut-almost svg .donut-title {
  fill: hsl(259, 84%, 30%);
}
.donut-violet svg .donut-back {
  stroke: hsl(300, 76%, 82%);
}
.donut-violet svg .donut-fill {
  stroke: hsl(300, 76%, 72%);
}
.donut-violet svg .donut-title {
  fill: hsl(300, 76%, 47%);
}
.donut-pink svg .donut-back {
  stroke: hsl(350, 100%, 88%);
}
.donut-pink svg .donut-fill {
  stroke: hsl(350, 100%, 88%);
}
.donut-pink svg .donut-title {
  fill: hsl(350, 100%, 63%);
}
.donut-magenta svg .donut-back {
  stroke: hsl(300, 100%, 80%);
}
.donut-magenta svg .donut-fill {
  stroke: hsl(300, 100%, 50%);
}
.donut-magenta svg .donut-title {
  fill: hsl(300, 100%, 25%);
}
.donut-crimson svg .donut-back {
  stroke: hsl(348, 88%, 81%);
}
.donut-crimson svg .donut-fill {
  stroke: hsl(348, 88%, 46%);
}
.donut-crimson svg .donut-title {
  fill: hsl(348, 88%, 21%);
}
.donut-red svg .donut-back {
  stroke: hsl(0, 100%, 75%);
}
.donut-red svg .donut-fill {
  stroke: hsl(0, 100%, 50%);
}
.donut-red svg .donut-title {
  fill: hsl(0, 100%, 25%);
}
.donut-clown svg .donut-back {
  stroke: hsl(3, 100%, 85%);
}
.donut-clown svg .donut-fill {
  stroke: hsl(3, 100%, 70%);
}
.donut-clown svg .donut-title {
  fill: hsl(3, 100%, 45%);
}
.donut-orange svg .donut-back {
  stroke: hsl(39, 100%, 80%);
}
.donut-orange svg .donut-fill {
  stroke: hsl(39, 100%, 50%);
}
.donut-orange svg .donut-title {
  fill: hsl(39, 100%, 25%);
}
.donut-amber svg .donut-back {
  stroke: hsl(45, 100%, 68%);
}
.donut-amber svg .donut-fill {
  stroke: hsl(45, 100%, 58%);
}
.donut-amber svg .donut-title {
  fill: hsl(45, 100%, 33%);
}
.donut-yellow svg .donut-back {
  stroke: hsl(52, 100%, 83%);
}
.donut-yellow svg .donut-fill {
  stroke: hsl(52, 100%, 68%);
}
.donut-yellow svg .donut-title {
  fill: hsl(52, 100%, 43%);
}
.donut-brown svg .donut-back {
  stroke: hsl(25, 57%, 71%);
}
.donut-brown svg .donut-fill {
  stroke: hsl(25, 57%, 51%);
}
.donut-brown svg .donut-title {
  fill: hsl(25, 57%, 26%);
}
.donut-olive svg .donut-back {
  stroke: hsl(60, 100%, 62%);
}
.donut-olive svg .donut-fill {
  stroke: hsl(60, 100%, 32%);
}
.donut-olive svg .donut-title {
  fill: hsl(60, 100%, 7%);
}
.donut-steel svg .donut-back {
  stroke: hsl(209, 19%, 77%);
}
.donut-steel svg .donut-fill {
  stroke: hsl(209, 19%, 57%);
}
.donut-steel svg .donut-title {
  fill: hsl(209, 19%, 32%);
}
.donut-mauve svg .donut-back {
  stroke: hsl(277, 100%, 86%);
}
.donut-mauve svg .donut-fill {
  stroke: hsl(277, 100%, 84%);
}
.donut-mauve svg .donut-title {
  fill: hsl(277, 100%, 59%);
}
.donut-taupe svg .donut-back {
  stroke: hsl(29, 19%, 70%);
}
.donut-taupe svg .donut-fill {
  stroke: hsl(29, 19%, 50%);
}
.donut-taupe svg .donut-title {
  fill: hsl(29, 19%, 25%);
}
.donut-champagne svg .donut-back {
  stroke: hsl(37, 74%, 88%);
}
.donut-champagne svg .donut-fill {
  stroke: hsl(37, 74%, 88%);
}
.donut-champagne svg .donut-title {
  fill: hsl(37, 74%, 63%);
}
.donut-khaki svg .donut-back {
  stroke: hsl(47, 47%, 84%);
}
.donut-khaki svg .donut-fill {
  stroke: hsl(47, 47%, 69%);
}
.donut-khaki svg .donut-title {
  fill: hsl(47, 47%, 44%);
}
.donut-charcoal svg .donut-back {
  stroke: hsl(0, 0%, 80%);
}
.donut-charcoal svg .donut-fill {
  stroke: hsl(0, 0%, 60%);
}
.donut-charcoal svg .donut-title {
  fill: hsl(0, 0%, 35%);
}
.donut-bronze svg .donut-back {
  stroke: hsl(29, 75%, 77%);
}
.donut-bronze svg .donut-fill {
  stroke: hsl(29, 75%, 57%);
}
.donut-bronze svg .donut-title {
  fill: hsl(29, 75%, 32%);
}
.donut-windstorm svg .donut-back {
  stroke: hsl(216, 53%, 83%);
}
.donut-windstorm svg .donut-fill {
  stroke: hsl(216, 53%, 66%);
}
.donut-windstorm svg .donut-title {
  fill: hsl(216, 53%, 41%);
}
.donut-nude svg .donut-back {
  stroke: hsl(29, 79%, 87%);
}
.donut-nude svg .donut-fill {
  stroke: hsl(29, 79%, 85%);
}
.donut-nude svg .donut-title {
  fill: hsl(29, 79%, 60%);
}
.donut-terracotta svg .donut-back {
  stroke: hsl(10, 76%, 75%);
}
.donut-terracotta svg .donut-fill {
  stroke: hsl(10, 76%, 55%);
}
.donut-terracotta svg .donut-title {
  fill: hsl(10, 76%, 30%);
}
.donut-coral svg .donut-back {
  stroke: hsl(16, 100%, 82%);
}
.donut-coral svg .donut-fill {
  stroke: hsl(16, 100%, 67%);
}
.donut-coral svg .donut-title {
  fill: hsl(16, 100%, 42%);
}
.donut-army svg .donut-back {
  stroke: hsl(69, 34%, 65%);
}
.donut-army svg .donut-fill {
  stroke: hsl(69, 34%, 30%);
}
.donut-army svg .donut-title {
  fill: hsl(69, 34%, 5%);
}
.donut-seashell svg .donut-back {
  stroke: hsl(25, 100%, 88%);
}
.donut-seashell svg .donut-fill {
  stroke: hsl(25, 100%, 95%);
}
.donut-seashell svg .donut-title {
  fill: hsl(25, 100%, 70%);
}
.donut-sand svg .donut-back {
  stroke: hsl(45, 71%, 86%);
}
.donut-sand svg .donut-fill {
  stroke: hsl(45, 71%, 81%);
}
.donut-sand svg .donut-title {
  fill: hsl(45, 71%, 56%);
}
.donut-primary svg .donut-back {
  stroke: #fee6e5;
}
.donut-primary svg .donut-fill {
  stroke: #f75553;
}
.donut-primary svg .donut-title {
  fill: #f75553;
}
.donut-secondary svg .donut-back {
  stroke: #ed632a;
}
.donut-secondary svg .donut-fill {
  stroke: #74290a;
}
.donut-secondary svg .donut-title {
  fill: #74290a;
}
.donut-tertiary svg .donut-back {
  stroke: #ffffff;
}
.donut-tertiary svg .donut-fill {
  stroke: #ffbebd;
}
.donut-tertiary svg .donut-title {
  fill: #ffbebd;
}
.donut-success svg .donut-back {
  stroke: hsl(140, 52%, 85%);
}
.donut-success svg .donut-fill {
  stroke: hsl(140, 52%, 55%);
}
.donut-success svg .donut-title {
  fill: hsl(140, 52%, 55%);
}
.donut-alert svg .donut-back {
  stroke: hsl(348, 88%, 76%);
}
.donut-alert svg .donut-fill {
  stroke: hsl(348, 88%, 46%);
}
.donut-alert svg .donut-title {
  fill: hsl(348, 88%, 46%);
}
.donut-warning svg .donut-back {
  stroke: hsl(39, 100%, 80%);
}
.donut-warning svg .donut-fill {
  stroke: hsl(39, 100%, 50%);
}
.donut-warning svg .donut-title {
  fill: hsl(39, 100%, 50%);
}
.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;
}

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

/* ../metroui-lib/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: hsl(225, 100%, 68%);
  opacity: 0.3;
  z-index: 500;
  box-shadow: inset -1px 0px 10px -4px #f75553;
}

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

/* ../metroui-lib/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: auto;
  line-height: 1;
}
.dropdown-button .dropdown-toggle::before {
  border-color: var(--dropdown-button-toggle-color);
}
.dropdown-button .no-dropdown-caret .dropdown-caret {
  display: none !important;
}

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

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

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

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

/* ../metroui-lib/source/components/github-box/github-box.less */
:root {
  --github-box-border-radius: 6px;
  --github-box-border-color: #d1d9e0;
  --github-box-background: #ffffff;
  --github-box-color: #191919;
  --github-box-header-background: #f7f8fa;
  --github-box-header-color: #191919;
}
.github-box {
  display: flex;
  flex-flow: column wrap;
  border-radius: var(--github-box-border-radius);
  border: 1px solid var(--github-box-border-color);
  font-size: 14px;
  position: relative;
}
.github-box .box-header {
  background: var(--github-box-header-background);
  color: var(--github-box-header-color);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 8px 16px;
  gap: 6px;
  border-bottom: 1px solid;
  border-color: inherit;
  width: 100%;
  border-top-left-radius: var(--github-box-border-radius);
  border-top-right-radius: var(--github-box-border-radius);
}
.github-box .box-header .author {
  font-weight: 600;
}
.github-box .box-header .time {
  font-size: 12px;
}
.github-box .box-header .actions {
  display: flex;
  flex-flow: row nowrap;
  gap: 2px;
  align-items: center;
}
.github-box .box-header .actions .more-button .dropdown-caret {
  display: none;
}
.github-box .box-header .attributes {
  margin-left: auto;
  display: flex;
  flex-flow: row nowrap;
  gap: 2px;
  align-items: center;
}
.github-box .box-header .prc {
  display: flex;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 12px;
  border: 1px solid;
}
.github-box .box-content {
  padding: 1rem;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  width: calc(100% - 1rem);
}
.github-box.-default {
  border-color: #54aeff66;
}
.github-box.-default .prc {
  border-color: #54aeff;
}
.github-box.-default .ticket-box__header {
  background: #def3fe;
  color: #191919;
}
.github-box.-default .button {
  background: #54aeff;
  color: #fff;
}
.box-gray {
  border-color: hsl(0, 0%, 80%);
}
.box-gray .box-header {
  background: hsl(0, 0%, 95%);
  color: hsl(0, 0%, 55%);
}
.box-gray .prc {
  border-color: hsl(0, 0%, 80%);
}
.box-gray-blue {
  border-color: hsl(210, 26%, 54%);
}
.box-gray-blue .box-header {
  background: hsl(210, 26%, 84%);
  color: hsl(210, 26%, 29%);
}
.box-gray-blue .prc {
  border-color: hsl(210, 26%, 54%);
}
.box-gray-mouse {
  border-color: hsl(199, 15%, 40%);
}
.box-gray-mouse .box-header {
  background: hsl(199, 15%, 70%);
  color: hsl(199, 15%, 15%);
}
.box-gray-mouse .prc {
  border-color: hsl(199, 15%, 40%);
}
.box-lime {
  border-color: hsl(93, 97%, 71%);
}
.box-lime .box-header {
  background: hsl(93, 97%, 91%);
  color: hsl(93, 97%, 46%);
}
.box-lime .prc {
  border-color: hsl(93, 97%, 71%);
}
.box-green {
  border-color: hsl(120, 100%, 35%);
}
.box-green .box-header {
  background: hsl(120, 100%, 80%);
  color: hsl(120, 100%, 10%);
}
.box-green .prc {
  border-color: hsl(120, 100%, 35%);
}
.box-emerald {
  border-color: hsl(140, 52%, 55%);
}
.box-emerald .box-header {
  background: hsl(140, 52%, 85%);
  color: hsl(140, 52%, 30%);
}
.box-emerald .prc {
  border-color: hsl(140, 52%, 55%);
}
.box-blue {
  border-color: hsl(225, 100%, 68%);
}
.box-blue .box-header {
  background: hsl(225, 100%, 93%);
  color: hsl(225, 100%, 43%);
}
.box-blue .prc {
  border-color: hsl(225, 100%, 68%);
}
.box-teal {
  border-color: hsl(180, 77%, 44%);
}
.box-teal .box-header {
  background: hsl(180, 77%, 79%);
  color: hsl(180, 77%, 19%);
}
.box-teal .prc {
  border-color: hsl(180, 77%, 44%);
}
.box-cyan {
  border-color: hsl(221, 100%, 79%);
}
.box-cyan .box-header {
  background: hsl(221, 100%, 94%);
  color: hsl(221, 100%, 54%);
}
.box-cyan .prc {
  border-color: hsl(221, 100%, 79%);
}
.box-cobalt {
  border-color: hsl(215, 100%, 34%);
}
.box-cobalt .box-header {
  background: hsl(215, 100%, 79%);
  color: hsl(215, 100%, 9%);
}
.box-cobalt .prc {
  border-color: hsl(215, 100%, 34%);
}
.box-indigo {
  border-color: hsl(276, 100%, 33%);
}
.box-indigo .box-header {
  background: hsl(276, 100%, 78%);
  color: hsl(276, 100%, 8%);
}
.box-indigo .prc {
  border-color: hsl(276, 100%, 33%);
}
.box-almost {
  border-color: hsl(259, 84%, 55%);
}
.box-almost .box-header {
  background: hsl(259, 84%, 85%);
  color: hsl(259, 84%, 30%);
}
.box-almost .prc {
  border-color: hsl(259, 84%, 55%);
}
.box-violet {
  border-color: hsl(300, 76%, 72%);
}
.box-violet .box-header {
  background: hsl(300, 76%, 92%);
  color: hsl(300, 76%, 47%);
}
.box-violet .prc {
  border-color: hsl(300, 76%, 72%);
}
.box-pink {
  border-color: hsl(350, 100%, 88%);
}
.box-pink .box-header {
  background: hsl(350, 100%, 98%);
  color: hsl(350, 100%, 63%);
}
.box-pink .prc {
  border-color: hsl(350, 100%, 88%);
}
.box-magenta {
  border-color: hsl(300, 100%, 50%);
}
.box-magenta .box-header {
  background: hsl(300, 100%, 90%);
  color: hsl(300, 100%, 25%);
}
.box-magenta .prc {
  border-color: hsl(300, 100%, 50%);
}
.box-crimson {
  border-color: hsl(348, 88%, 46%);
}
.box-crimson .box-header {
  background: hsl(348, 88%, 91%);
  color: hsl(348, 88%, 21%);
}
.box-crimson .prc {
  border-color: hsl(348, 88%, 46%);
}
.box-red {
  border-color: hsl(0, 100%, 50%);
}
.box-red .box-header {
  background: hsl(0, 100%, 85%);
  color: hsl(0, 100%, 25%);
}
.box-red .prc {
  border-color: hsl(0, 100%, 50%);
}
.box-clown {
  border-color: hsl(3, 100%, 70%);
}
.box-clown .box-header {
  background: hsl(3, 100%, 95%);
  color: hsl(3, 100%, 45%);
}
.box-clown .prc {
  border-color: hsl(3, 100%, 70%);
}
.box-orange {
  border-color: hsl(39, 100%, 50%);
}
.box-orange .box-header {
  background: hsl(39, 100%, 90%);
  color: hsl(39, 100%, 25%);
}
.box-orange .prc {
  border-color: hsl(39, 100%, 50%);
}
.box-amber {
  border-color: hsl(45, 100%, 58%);
}
.box-amber .box-header {
  background: hsl(45, 100%, 78%);
  color: hsl(45, 100%, 33%);
}
.box-amber .prc {
  border-color: hsl(45, 100%, 58%);
}
.box-yellow {
  border-color: hsl(52, 100%, 68%);
}
.box-yellow .box-header {
  background: hsl(52, 100%, 93%);
  color: hsl(52, 100%, 43%);
}
.box-yellow .prc {
  border-color: hsl(52, 100%, 68%);
}
.box-brown {
  border-color: hsl(25, 57%, 51%);
}
.box-brown .box-header {
  background: hsl(25, 57%, 81%);
  color: hsl(25, 57%, 26%);
}
.box-brown .prc {
  border-color: hsl(25, 57%, 51%);
}
.box-olive {
  border-color: hsl(60, 100%, 32%);
}
.box-olive .box-header {
  background: hsl(60, 100%, 72%);
  color: hsl(60, 100%, 7%);
}
.box-olive .prc {
  border-color: hsl(60, 100%, 32%);
}
.box-steel {
  border-color: hsl(209, 19%, 57%);
}
.box-steel .box-header {
  background: hsl(209, 19%, 87%);
  color: hsl(209, 19%, 32%);
}
.box-steel .prc {
  border-color: hsl(209, 19%, 57%);
}
.box-mauve {
  border-color: hsl(277, 100%, 84%);
}
.box-mauve .box-header {
  background: hsl(277, 100%, 96%);
  color: hsl(277, 100%, 59%);
}
.box-mauve .prc {
  border-color: hsl(277, 100%, 84%);
}
.box-taupe {
  border-color: hsl(29, 19%, 50%);
}
.box-taupe .box-header {
  background: hsl(29, 19%, 80%);
  color: hsl(29, 19%, 25%);
}
.box-taupe .prc {
  border-color: hsl(29, 19%, 50%);
}
.box-champagne {
  border-color: hsl(37, 74%, 88%);
}
.box-champagne .box-header {
  background: hsl(37, 74%, 98%);
  color: hsl(37, 74%, 63%);
}
.box-champagne .prc {
  border-color: hsl(37, 74%, 88%);
}
.box-khaki {
  border-color: hsl(47, 47%, 69%);
}
.box-khaki .box-header {
  background: hsl(47, 47%, 94%);
  color: hsl(47, 47%, 44%);
}
.box-khaki .prc {
  border-color: hsl(47, 47%, 69%);
}
.box-charcoal {
  border-color: hsl(0, 0%, 60%);
}
.box-charcoal .box-header {
  background: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 35%);
}
.box-charcoal .prc {
  border-color: hsl(0, 0%, 60%);
}
.box-bronze {
  border-color: hsl(29, 75%, 57%);
}
.box-bronze .box-header {
  background: hsl(29, 75%, 87%);
  color: hsl(29, 75%, 32%);
}
.box-bronze .prc {
  border-color: hsl(29, 75%, 57%);
}
.box-windstorm {
  border-color: hsl(216, 53%, 66%);
}
.box-windstorm .box-header {
  background: hsl(216, 53%, 93%);
  color: hsl(216, 53%, 41%);
}
.box-windstorm .prc {
  border-color: hsl(216, 53%, 66%);
}
.box-nude {
  border-color: hsl(29, 79%, 85%);
}
.box-nude .box-header {
  background: hsl(29, 79%, 97%);
  color: hsl(29, 79%, 60%);
}
.box-nude .prc {
  border-color: hsl(29, 79%, 85%);
}
.box-terracotta {
  border-color: hsl(10, 76%, 55%);
}
.box-terracotta .box-header {
  background: hsl(10, 76%, 85%);
  color: hsl(10, 76%, 30%);
}
.box-terracotta .prc {
  border-color: hsl(10, 76%, 55%);
}
.box-coral {
  border-color: hsl(16, 100%, 67%);
}
.box-coral .box-header {
  background: hsl(16, 100%, 92%);
  color: hsl(16, 100%, 42%);
}
.box-coral .prc {
  border-color: hsl(16, 100%, 67%);
}
.box-army {
  border-color: hsl(69, 34%, 30%);
}
.box-army .box-header {
  background: hsl(69, 34%, 75%);
  color: hsl(69, 34%, 5%);
}
.box-army .prc {
  border-color: hsl(69, 34%, 30%);
}
.box-seashell {
  border-color: hsl(25, 100%, 95%);
}
.box-seashell .box-header {
  background: hsl(25, 100%, 98%);
  color: hsl(25, 100%, 70%);
}
.box-seashell .prc {
  border-color: hsl(25, 100%, 95%);
}
.box-sand {
  border-color: hsl(45, 71%, 81%);
}
.box-sand .box-header {
  background: hsl(45, 71%, 96%);
  color: hsl(45, 71%, 56%);
}
.box-sand .prc {
  border-color: hsl(45, 71%, 81%);
}

/* ../metroui-lib/source/components/gravatar/gravatar.less */
:root {
  --gravatar-border-color: #efefef;
}
.dark-side {
  --gravatar-border-color: #2b2d30;
}
.gravatar {
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gravatar img {
  object-fit: cover;
}
.gravatar.avatar {
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
}

/* ../metroui-lib/source/components/grid/grid.less */
:root {
  --grid-gap: 16px;
}
.grid {
  display: flex;
  flex-flow: column;
  position: relative;
}
.row.gap-1 {
  --grid-gap: 4px;
}
.row.gap-2 {
  --grid-gap: 8px;
}
.row.gap-3 {
  --grid-gap: 12px;
}
.row.gap-4 {
  --grid-gap: 16px;
}
.row.gap-5 {
  --grid-gap: 20px;
}
.row.gap-6 {
  --grid-gap: 24px;
}
.row.gap-7 {
  --grid-gap: 28px;
}
.row.gap-8 {
  --grid-gap: 32px;
}
.row.gap-9 {
  --grid-gap: 36px;
}
.row.gap-10 {
  --grid-gap: 40px;
}
.row.gap-11 {
  --grid-gap: 44px;
}
.row.gap-12 {
  --grid-gap: 48px;
}
.row {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  gap: var(--grid-gap);
  justify-content: flex-start;
  margin-right: calc(-1 * var(--grid-gap));
  container-type: inline-size;
  container-name: row;
  min-width: 100%;
}
.row + .row {
  margin-top: var(--grid-gap);
}
.row > * {
  position: relative;
  display: block;
  padding: 0;
  min-height: 1px;
  flex: 0 0 100%;
  max-width: calc(100% - var(--grid-gap));
}
.cell-auto,
.col-auto,
.v-cell-auto,
.v-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.cell-0,
.col-0 {
  flex: 0 0 calc(8.333335% * 0 - var(--grid-gap));
  max-width: calc(8.333335% * 0 - var(--grid-gap));
}
.offset-0 {
  margin-left: calc(8.333335% * 0);
}
.cell-1,
.col-1 {
  flex: 0 0 calc(8.333335% * 1 - var(--grid-gap));
  max-width: calc(8.333335% * 1 - var(--grid-gap));
}
.offset-1 {
  margin-left: calc(8.333335% * 1);
}
.cell-2,
.col-2 {
  flex: 0 0 calc(8.333335% * 2 - var(--grid-gap));
  max-width: calc(8.333335% * 2 - var(--grid-gap));
}
.offset-2 {
  margin-left: calc(8.333335% * 2);
}
.cell-3,
.col-3 {
  flex: 0 0 calc(8.333335% * 3 - var(--grid-gap));
  max-width: calc(8.333335% * 3 - var(--grid-gap));
}
.offset-3 {
  margin-left: calc(8.333335% * 3);
}
.cell-4,
.col-4 {
  flex: 0 0 calc(8.333335% * 4 - var(--grid-gap));
  max-width: calc(8.333335% * 4 - var(--grid-gap));
}
.offset-4 {
  margin-left: calc(8.333335% * 4);
}
.cell-5,
.col-5 {
  flex: 0 0 calc(8.333335% * 5 - var(--grid-gap));
  max-width: calc(8.333335% * 5 - var(--grid-gap));
}
.offset-5 {
  margin-left: calc(8.333335% * 5);
}
.cell-6,
.col-6 {
  flex: 0 0 calc(8.333335% * 6 - var(--grid-gap));
  max-width: calc(8.333335% * 6 - var(--grid-gap));
}
.offset-6 {
  margin-left: calc(8.333335% * 6);
}
.cell-7,
.col-7 {
  flex: 0 0 calc(8.333335% * 7 - var(--grid-gap));
  max-width: calc(8.333335% * 7 - var(--grid-gap));
}
.offset-7 {
  margin-left: calc(8.333335% * 7);
}
.cell-8,
.col-8 {
  flex: 0 0 calc(8.333335% * 8 - var(--grid-gap));
  max-width: calc(8.333335% * 8 - var(--grid-gap));
}
.offset-8 {
  margin-left: calc(8.333335% * 8);
}
.cell-9,
.col-9 {
  flex: 0 0 calc(8.333335% * 9 - var(--grid-gap));
  max-width: calc(8.333335% * 9 - var(--grid-gap));
}
.offset-9 {
  margin-left: calc(8.333335% * 9);
}
.cell-10,
.col-10 {
  flex: 0 0 calc(8.333335% * 10 - var(--grid-gap));
  max-width: calc(8.333335% * 10 - var(--grid-gap));
}
.offset-10 {
  margin-left: calc(8.333335% * 10);
}
.cell-11,
.col-11 {
  flex: 0 0 calc(8.333335% * 11 - var(--grid-gap));
  max-width: calc(8.333335% * 11 - var(--grid-gap));
}
.offset-11 {
  margin-left: calc(8.333335% * 11);
}
.cell-12,
.col-12 {
  flex: 0 0 calc(8.333335% * 12 - var(--grid-gap));
  max-width: calc(8.333335% * 12 - var(--grid-gap));
}
.offset-12 {
  margin-left: calc(8.333335% * 12);
}
@container (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 (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 (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 (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 (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 (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 (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 (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 (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;
}

/* ../metroui-lib/source/components/h-menu/h-menu.less */
:root {
  --h-menu-gap: 0;
  --h-menu-font-size: 13px;
  --h-menu-border-radius: 4px;
}
:root {
  --h-menu-background: #ffffff;
  --h-menu-color: #191919;
  --h-menu-item-hover-background: #e8e8e8;
  --h-menu-item-hover-color: #191919;
}
.dark-side {
  --h-menu-background: #1e1f22;
  --h-menu-color: #dbdfe7;
  --h-menu-item-hover-background: #2b2d30;
  --h-menu-item-hover-color: #ffffff;
}
.h-menu {
  list-style: none inside;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  background-color: var(--h-menu-background);
  color: var(--h-menu-color);
  gap: var(--h-menu-gap);
  font-size: var(--h-menu-font-size);
  position: relative;
}
.h-menu > li,
.h-menu > li > a {
  color: inherit;
  background: transparent;
  border-radius: var(--h-menu-border-radius);
  position: relative;
}
.h-menu > li > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 8px;
  cursor: pointer;
}
.h-menu > li > a > .dropdown-caret {
  margin-left: 4px;
}
@media (hover: hover) {
  .h-menu li:hover {
    background-color: var(--h-menu-item-hover-background);
    color: var(--h-menu-item-hover-color);
  }
}
@media (hover: none) {
  .h-menu li:active {
    background-color: var(--h-menu-item-hover-background);
    color: var(--h-menu-item-hover-color);
  }
}

/* ../metroui-lib/source/components/hero/hero.less */
:root {
  --hero-background: #ffffff;
  --hero-color: #191919;
  --hero-deep-size: 80%;
}
.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);
}
.hero .hero-image {
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.hero1 {
  clip-path: polygon(0 0, 100% 0, 100% var(--hero-deep-size), 0 100%);
}
.hero2 {
  clip-path: polygon(0 0, 100% 0, 100% var(--hero-deep-size), 50% 100%, 0 var(--hero-deep-size));
}
.hero3 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--hero-deep-size));
}
.hero4 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% var(--hero-deep-size), 0 100%);
}
.hero5 {
  --mask:
    radial-gradient(
      67.08px at 50% calc(100% - 90px),
      #000 99%,
      #0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(
      67.08px at 50% calc(100% + 60px),
      #0000 99%,
      #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
  mask: var(--mask);
}
.hero6 {
  clip-path: shape(from 0% 0%, hline to 100%, vline to 80%, curve to 0% 80% with 75% 100% / 25% 60%, close);
}
@media all and (min-width: 768px) {
  .hero {
    padding: 160px 80px;
  }
  .hero6 {
    padding: 80px 80px 220px;
  }
}

/* ../metroui-lib/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-normal);
}

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

/* ../metroui-lib/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: hsl(0, 0%, 95%);
  --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: hsl(0, 0%, 55%);
  --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;
}

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

/* ../metroui-lib/source/components/image-carousel/image-carousel.less */
:root {
  --image-carousel-switch-button: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDggMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMC4yOTI4OTMgNi4yOTI4OUMtMC4wOTc2MzE1IDYuNjgzNDIgLTAuMDk3NjMxNSA3LjMxNjU4IDAuMjkyODkzIDcuNzA3MTFMNi4yOTI4OSAxMy43MDcxQzYuNjgzNDIgMTQuMDk3NiA3LjMxNjU4IDE0LjA5NzYgNy43MDcxMSAxMy43MDcxQzguMDk3NjMgMTMuMzE2NiA4LjA5NzYzIDEyLjY4MzQgNy43MDcxMSAxMi4yOTI5TDIuNDE0MjEgN0w3LjcwNzExIDEuNzA3MTFDOC4wOTc2MyAxLjMxNjU4IDguMDk3NjMgMC42ODM0MTcgNy43MDcxMSAwLjI5Mjg5M0M3LjMxNjU4IC0wLjA5NzYzMDUgNi42ODM0MiAtMC4wOTc2MzA1IDYuMjkyODkgMC4yOTI4OTNMMC4yOTI4OTMgNi4yOTI4OVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=) no-repeat 50%;
  --image-carousel-thumbnail-size: 54px;
  --image-carousel-background: var(--default-background);
  --image-carousel-scene-border-color: var(--border-color);
  --image-carousel-thumbnail-border-color: var(--border-color);
  --image-carousel-thumbnail-active-border-color: var(--color-primary);
}
.dark-side {
  --image-carousel-background: var(--default-background);
  --image-carousel-scene-border-color: var(--border-color);
  --image-carousel-thumbnail-border-color: var(--border-color);
  --image-carousel-thumbnail-active-border-color: var(--color-primary);
}
.image-carousel {
  background: var(--image-carousel-background);
  display: block;
  position: relative;
  width: 100%;
}
.image-carousel .badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  z-index: 3;
}
.image-carousel .badge.-left {
  left: 0;
  right: auto;
}
.image-carousel .scene {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
  border-radius: 4px;
}
.image-carousel .scene .slide {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 0;
  padding: 1rem;
}
.image-carousel .scene .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.image-carousel .prev-button,
.image-carousel .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsla(0, 0%, 74.1%, 0.8);
  z-index: 1;
}
.image-carousel .prev-button::after,
.image-carousel .next-button::after {
  content: "";
  display: block;
  margin-right: 2px;
  width: 16px;
  height: 16px;
  background: var(--image-carousel-switch-button);
  transition: all 0.3s ease-in-out;
}
.image-carousel .prev-button:hover,
.image-carousel .next-button:hover {
  background: hsla(0, 0%, 57.3%, 0.8);
}
.image-carousel .prev-button {
  left: 0;
}
.image-carousel .next-button {
  right: 0;
}
.image-carousel .next-button::after {
  transform: rotate(180deg) translateX(-2px);
}
.image-carousel .thumbnails {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  margin: 1rem 0;
  list-style: none;
}
.image-carousel .thumbnails .thumbnail {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: var(--image-carousel-thumbnail-size);
  height: var(--image-carousel-thumbnail-size);
  padding: 4px;
  border: 1px solid var(--image-carousel-thumbnail-border-color);
  cursor: pointer;
  user-select: none;
  background: transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.image-carousel .thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.image-carousel .thumbnails .thumbnail.active {
  border-color: var(--image-carousel-thumbnail-active-border-color);
}

/* ../metroui-lib/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: hsl(39, 100%, 50%);
  opacity: 0.7;
  border-radius: 0.25rem;
  transform: rotate(45deg);
}

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

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

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

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

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

/* ../metroui-lib/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-color-disabled);
}
.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;
}

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

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

/* ../metroui-lib/source/components/resizable/resizeable.less */
:root {
  --resizer-color: var(--border-color);
  --resizer-color-disabled: var(--default-background-disabled);
}
.dark-side {
  --resizer-color: var(--border-color);
  --resizer-color-disabled: var(--default-background-disabled);
}
.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 var(--resizer-color);
  border-left: 12px solid transparent;
  content: "";
  right: 0;
  bottom: 0;
}
.resize-element.resize-element-disabled {
  cursor: default;
}
.resize-element.resize-element-disabled::after {
  border-bottom-color: var(--resizer-color-disabled);
}

/* ../metroui-lib/source/components/linked-block/linked-block.less */
:root {
  --linked-block-point-size: 6px;
  --linked-block-link-color: #b1b1b1;
  --linked-block-line-width: 1px;
  --linked-block-border-radius: 4px;
  --linked-block-points-gap: 4px;
  --linked-block-background: var(--default-background);
  --linked-block-color: #191919;
  --linked-block-point-color: var(--linked-block-link-color);
  --linked-block-border-color: var(--linked-block-link-color);
  --linked-block-line-color: var(--linked-block-link-color);
  --linked-block-border-color-active: #676767;
}
.dark-side {
  --linked-block-background: var(--default-background);
  --linked-block-color: #ffffff;
  --linked-block-link-color: #656a70;
  --linked-block-border-color: var(--linked-block-link-color);
  --linked-block-line-color: var(--linked-block-link-color);
  --linked-block-point-color: var(--linked-block-link-color);
  --linked-block-border-color-active: #ffffff;
}
.linked-block {
  display: block;
  background-color: var(--linked-block-background);
  color: var(--linked-block-color);
  border: 1px solid var(--linked-block-border-color);
  border-radius: var(--linked-block-border-radius);
  user-select: none;
  z-index: 1;
  --resizer-color: var(--linked-block-border-color);
}
.linked-block .north-side,
.linked-block .east-side,
.linked-block .south-side,
.linked-block .west-side {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  gap: var(--linked-block-points-gap);
}
.linked-block .north-side,
.linked-block .south-side {
  width: 100%;
  height: 1px;
  flex-flow: row nowrap;
  left: 0;
}
.linked-block .east-side,
.linked-block .west-side {
  top: 0;
  width: 1px;
  height: 100%;
  flex-flow: column nowrap;
}
.linked-block .north-side {
  top: -1px;
}
.linked-block .east-side {
  right: -1px;
}
.linked-block .south-side {
  bottom: -1px;
}
.linked-block .west-side {
  left: -1px;
}
.linked-block .link-point {
  display: block;
  position: relative;
  width: var(--linked-block-point-size);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--linked-block-point-color);
  flex: 0 0 var(--linked-block-point-size);
}
.linked-block.one-point .link-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.linked-block.no-points .link-point {
  visibility: hidden;
}
.linked-block .add-point-btn {
  position: absolute;
  display: none;
  width: 20px;
  height: 20px;
  border: 1px dashed var(--linked-block-border-color);
  background: var(--linked-block-background);
  color: var(--linked-block-color);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  transition: border-color 0.2s ease;
}
@media (hover: hover) {
  .linked-block .add-point-btn:hover {
    border-color: #28a745;
  }
}
@media (hover: none) {
  .linked-block .add-point-btn:active {
    border-color: #28a745;
  }
}
.linked-block .add-point-btn.connecting {
  border-color: #007bff !important;
  border-radius: 50%;
  display: block !important;
}
.linked-block .add-point-btn.add-point-north {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.linked-block .add-point-btn.add-point-east {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.linked-block .add-point-btn.add-point-south {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.linked-block .add-point-btn.add-point-west {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.linked-block .linked-block-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.linked-block.active-block {
  border-color: var(--linked-block-border-color-active);
}
.linked-block[data-can-resize=false] .resize-element {
  display: none;
}
.linked-block .can-drag-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  object-fit: cover;
}
.linked-block[data-can-drag=false] .can-drag-icon,
.linked-block.no-drag-icon .can-drag-icon {
  display: none;
}
.connection-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.connection-area .cl-line {
  stroke-width: var(--linked-block-line-width);
  stroke: var(--linked-block-line-color);
}
.connection-area .cl-curve {
  stroke-width: var(--linked-block-line-width);
  stroke: var(--linked-block-line-color);
}
.connection-area .cl-line,
.connection-area .cl-curve {
  transition: stroke 0.2s ease, stroke-width 0.2s ease;
  fill: none;
  cursor: pointer;
}
.connection-area .cl-line:hover,
.connection-area .cl-curve:hover,
.connection-area .cl-line.selected-path,
.connection-area .cl-curve.selected-path {
  stroke: #0a87c1;
}
.connector-delete {
  display: none;
}
.show-connector-delete .connector-delete {
  display: block !important;
}

/* ../metroui-lib/source/components/list/list.less */

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

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

/* ../metroui-lib/source/components/master/master.less */
:root {
  --master-background: var(--default-background);
  --master-color: var(--default-color);
}
.master {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  color: var(--master-color);
  background-color: var(--master-background);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: visible;
}
.master .controls,
.master .pages,
.master .page {
  background-color: transparent;
  color: inherit;
}
.master .controls {
  display: flex;
  line-height: 40px;
  font-size: 20px;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 20px 0 20px;
}
.master .controls .prev,
.master .controls .next,
.master .controls .title {
  display: block;
  position: relative;
  line-height: 40px;
  text-align: center;
  user-select: none;
}
.master .controls .prev,
.master .controls .next {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.master .controls .prev.disabled,
.master .controls .next.disabled {
  color: hsl(0, 0%, 80%);
}
.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;
}

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

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

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

/* ../metroui-lib/source/components/tabs/tabs.less */
:root {
  --tabs-border-radius: 6px;
  --tabs-border-radius-pills: 16px;
  --tabs-background: var(--default-background);
  --tabs-color: var(--default-color);
  --tabs-hamburger-background: transparent;
  --tabs-hamburger-color: #000000;
  --tabs-item-background: var(--default-background);
  --tabs-item-color: var(--default-color);
  --tabs-item-background-hover: #f5f8fe;
  --tabs-item-color-hover: var(--default-color);
  --tabs-item-background-active: #eaeaea;
  --tabs-item-color-active: var(--default-color);
  --tabs-item-marker: var(--color-primary);
  --tabs-item-marker-height: 2px;
  --tabs-item-icon-background: #ffffff;
  --tabs-item-icon-color: #000000;
}
.dark-side {
  --tabs-background: var(--default-background);
  --tabs-color: var(--default-color);
  --tabs-hamburger-background: transparent;
  --tabs-hamburger-color: #ffffff;
  --tabs-item-background: var(--default-background);
  --tabs-item-color: var(--default-color);
  --tabs-item-background-hover: #26282e;
  --tabs-item-color-hover: var(--default-color);
  --tabs-item-background-active: #4a4d51;
  --tabs-item-color-active: var(--default-color);
  --tabs-item-marker: var(--color-primary);
  --tabs-item-icon-background: #343637;
  --tabs-item-icon-color: #ffffff;
}
.tabs {
  position: relative;
  border: 1px solid var(--border-color);
  background-color: var(--tabs-background);
  color: var(--tabs-color);
}
.tabs .hamburger,
.tabs .expand-title {
  cursor: pointer;
}
.tabs .hamburger {
  position: absolute;
  top: 2px;
  right: 10px;
  display: block;
  background: var(--tabs-hamburger-background);
}
.tabs .expand-title {
  display: block;
  padding: 0.65rem 1rem 0;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
}
.tabs > ul.tabs-list {
  list-style: none inside;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: inherit;
  width: 100%;
  position: relative;
  padding: 10px 4px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.tabs > ul.tabs-list > li,
.tabs > ul.tabs-list a {
  position: relative;
}
.tabs > ul.tabs-list > li {
  display: block;
  background-color: var(--tabs-item-background);
  color: var(--tabs-item-color);
  margin: 0;
}
.tabs > ul.tabs-list > li:last-child {
  margin-bottom: 4px;
}
.tabs > ul.tabs-list:not(.expand) > li {
  border-top-left-radius: var(--tabs-border-radius);
  border-top-right-radius: var(--tabs-border-radius);
}
.tabs > ul.tabs-list.expand > li {
  border-radius: var(--tabs-border-radius) !important;
}
.tabs > ul.tabs-list > li > a {
  padding: 4px 1rem;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tabs > ul.tabs-list > li > a:hover {
  text-decoration: none;
}
.tabs > ul.tabs-list > li > a > [class*=mif-] {
  margin: 0 4px;
}
.tabs > ul.tabs-list > li > a .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  margin-right: 8px;
  display: inline-flex;
}
.tabs > ul.tabs-list > li > a .icon * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs > ul.tabs-list > li > a.dropdown-toggle::before {
  border-color: var(--tabs-item-color) !important;
}
.tabs > ul.tabs-list > li:hover {
  background-color: var(--tabs-item-background-hover);
  color: var(--tabs-item-color-hover);
}
.tabs > ul.tabs-list > li.active {
  background-color: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
}
.tabs > ul.tabs-list .d-menu {
  left: auto;
  right: 0;
}
.tabs.tabs-bottom > ul.tabs-list {
  border: none;
}
.tabs.tabs-bottom > ul.tabs-list:not(.expand) > li {
  margin: -1px 0 0 0;
  border-radius: 0 0 var(--tabs-border-radius) var(--tabs-border-radius);
}
.tabs-expand {
  border: none;
}
.tabs-expand > ul.tabs-list {
  border: 0;
  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-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-bottom: none;
  background-color: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
}
.tabs-expand > ul.tabs-list > li.active::before {
  display: block;
  position: absolute;
  content: "";
  background-color: var(--tabs-item-marker);
  height: var(--tabs-item-marker-height);
  width: 100%;
  z-index: 1;
  bottom: 0;
}
.tabs-expand > ul.tabs-list .d-menu {
  position: absolute;
  width: auto;
}
.tabs-expand.tabs-bottom > ul.tabs-list {
  border: none;
}
.tabs-expand.tabs-bottom > ul.tabs-list > li {
  border: none;
}
.tabs-expand.tabs-bottom > ul.tabs-list > li.active {
  border-top: none;
}
.tabs-expand.tabs-bottom > ul.tabs-list > li.active::before {
  bottom: auto;
  top: 0;
}
.tabs-expand .hamburger,
.tabs-expand .expand-title {
  display: none;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text,
.tabs-expand:not(.tabs-bottom) ul.tabs-pills,
.tabs-expand:not(.tabs-bottom) ul.tabs-group {
  border-bottom: none;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li {
  display: flex;
  align-items: flex-end;
  border: none;
  margin-bottom: 0;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li a {
  line-height: 2em;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li a .icon {
  display: none;
}
@media (hover: hover) {
  .tabs-expand:not(.tabs-bottom) ul.tabs-text > li:hover {
    background: transparent;
  }
}
@media (hover: none) {
  .tabs-expand:not(.tabs-bottom) ul.tabs-text > li:hover {
    background: transparent;
  }
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li.active {
  background-color: transparent;
  font-size: 2rem;
  margin-bottom: -2px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li > a {
  height: 100%;
  padding: 0.5rem 0.5rem 0;
  align-items: flex-end;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-text > li:not(.active) a {
  padding-bottom: 10px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group {
  justify-content: space-between;
  border-collapse: collapse;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li a {
  justify-content: center;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li.active {
  background: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
  font-weight: 500;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li.active::before {
  content: "";
  width: 4px;
  height: 4px;
  aspect-ratio: 1/1;
  background-color: var(--tabs-item-marker);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  z-index: 1;
  border-radius: 50%;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li:first-child {
  border-top-left-radius: var(--tabs-border-radius);
  border-bottom-left-radius: var(--tabs-border-radius);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-group > li:last-child {
  border-top-right-radius: var(--tabs-border-radius);
  border-bottom-right-radius: var(--tabs-border-radius);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li {
  border: 1px solid transparent;
  overflow: hidden;
  border-radius: var(--tabs-border-radius-pills);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li .icon {
  border-radius: 50%;
  border: 1px solid var(--border-color);
  margin-left: -8px;
  background-color: var(--tabs-item-icon-background);
  color: var(--tabs-item-icon-color);
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li.active {
  font-weight: 500;
  border-color: var(--border-color);
  background: var(--tabs-item-background-active);
  color: var(--tabs-item-color-active);
  padding-left: 8px;
}
.tabs-expand:not(.tabs-bottom) ul.tabs-pills > li.active::before {
  content: "";
  width: 4px;
  height: 4px;
  aspect-ratio: 1/1;
  background-color: var(--tabs-item-marker);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  z-index: 1;
  border-radius: 50%;
}
.tabs .tabs-text .active::before {
  display: none !important;
}
.tabs .tabs-list:not(.tabs-group).align-left {
  justify-content: flex-start;
}
.tabs .tabs-list:not(.tabs-group).align-center {
  justify-content: center;
}
.tabs .tabs-list:not(.tabs-group).align-right {
  justify-content: flex-end;
}
.tabs-black {
  --tabs-item-marker: #000000;
}
.tabs-white {
  --tabs-item-marker: #ffffff;
}
.tabs-dark {
  --tabs-item-marker: #1d1d1d;
}
.tabs-light {
  --tabs-item-marker: #f8f8f8;
}
.tabs-gray {
  --tabs-item-marker: hsl(0, 0%, 80%);
}
.tabs-gray-blue {
  --tabs-item-marker: hsl(210, 26%, 54%);
}
.tabs-gray-white {
  --tabs-item-marker: hsl(0, 0%, 96%);
}
.tabs-gray-mouse {
  --tabs-item-marker: hsl(199, 15%, 40%);
}
.tabs-lime {
  --tabs-item-marker: hsl(93, 97%, 71%);
}
.tabs-green {
  --tabs-item-marker: hsl(120, 100%, 35%);
}
.tabs-emerald {
  --tabs-item-marker: hsl(140, 52%, 55%);
}
.tabs-blue {
  --tabs-item-marker: hsl(225, 100%, 68%);
}
.tabs-teal {
  --tabs-item-marker: hsl(180, 77%, 44%);
}
.tabs-cyan {
  --tabs-item-marker: hsl(221, 100%, 79%);
}
.tabs-cobalt {
  --tabs-item-marker: hsl(215, 100%, 34%);
}
.tabs-indigo {
  --tabs-item-marker: hsl(276, 100%, 33%);
}
.tabs-almost {
  --tabs-item-marker: hsl(259, 84%, 55%);
}
.tabs-violet {
  --tabs-item-marker: hsl(300, 76%, 72%);
}
.tabs-pink {
  --tabs-item-marker: hsl(350, 100%, 88%);
}
.tabs-magenta {
  --tabs-item-marker: hsl(300, 100%, 50%);
}
.tabs-crimson {
  --tabs-item-marker: hsl(348, 88%, 46%);
}
.tabs-red {
  --tabs-item-marker: hsl(0, 100%, 50%);
}
.tabs-clown {
  --tabs-item-marker: hsl(3, 100%, 70%);
}
.tabs-orange {
  --tabs-item-marker: hsl(39, 100%, 50%);
}
.tabs-amber {
  --tabs-item-marker: hsl(45, 100%, 58%);
}
.tabs-yellow {
  --tabs-item-marker: hsl(52, 100%, 68%);
}
.tabs-brown {
  --tabs-item-marker: hsl(25, 57%, 51%);
}
.tabs-olive {
  --tabs-item-marker: hsl(60, 100%, 32%);
}
.tabs-steel {
  --tabs-item-marker: hsl(209, 19%, 57%);
}
.tabs-mauve {
  --tabs-item-marker: hsl(277, 100%, 84%);
}
.tabs-taupe {
  --tabs-item-marker: hsl(29, 19%, 50%);
}
.tabs-champagne {
  --tabs-item-marker: hsl(37, 74%, 88%);
}
.tabs-khaki {
  --tabs-item-marker: hsl(47, 47%, 69%);
}
.tabs-charcoal {
  --tabs-item-marker: hsl(0, 0%, 60%);
}
.tabs-bronze {
  --tabs-item-marker: hsl(29, 75%, 57%);
}
.tabs-windstorm {
  --tabs-item-marker: hsl(216, 53%, 66%);
}
.tabs-nude {
  --tabs-item-marker: hsl(29, 79%, 85%);
}
.tabs-terracotta {
  --tabs-item-marker: hsl(10, 76%, 55%);
}
.tabs-coral {
  --tabs-item-marker: hsl(16, 100%, 67%);
}
.tabs-army {
  --tabs-item-marker: hsl(69, 34%, 30%);
}
.tabs-seashell {
  --tabs-item-marker: hsl(25, 100%, 95%);
}
.tabs-sand {
  --tabs-item-marker: hsl(45, 71%, 81%);
}

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

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

/* ../metroui-lib/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);
  overflow: hidden;
}
.pagination .page-link {
  display: block;
  position: relative;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
}
@media (hover: hover) {
  .pagination .page-item:hover,
  .pagination .page-item.service:hover {
    background-color: var(--pagination-page-item-background-hover);
    color: var(--pagination-page-item-color-hover);
  }
}
@media (hover: hover) {
  .pagination .page-item:active,
  .pagination .page-item.service:active {
    background-color: var(--pagination-page-item-background-hover);
    color: var(--pagination-page-item-color-hover);
  }
}
.pagination .page-item.no-link {
  pointer-events: none;
  cursor: default;
  border-color: transparent;
}
@media (hover: hover) {
  .pagination .page-item.no-link:hover {
    background-color: var(--pagination-page-item-background);
    color: var(--pagination-page-item-color);
    border-color: transparent;
  }
}
@media (hover: none) {
  .pagination .page-item.no-link:active {
    background-color: var(--pagination-page-item-background);
    color: var(--pagination-page-item-color);
    border-color: transparent;
  }
}
.pagination .page-item.disabled {
  pointer-events: none;
  background-color: var(--pagination-page-item-background-disabled);
  color: var(--pagination-page-item-color-disabled);
}
.pagination .page-item.active {
  background-color: var(--pagination-page-item-background-active);
  color: var(--pagination-page-item-color-active);
}
.pagination.rounded .page-item {
  border-radius: var(--pagination-page-item-border-radius);
}
.pagination.no-gap {
  gap: 0;
}
.pagination.no-gap .page-item {
  margin: -1px;
}
.pagination.no-gap .no-link {
  margin: -1px 1px;
}
.pagination.no-gap.rounded .page-item {
  border-radius: 0;
}
.pagination.no-gap.rounded .page-item:first-child {
  border-top-left-radius: var(--pagination-page-item-border-radius);
  border-bottom-left-radius: var(--pagination-page-item-border-radius);
}
.pagination.no-gap.rounded .page-item:last-child {
  border-top-right-radius: var(--pagination-page-item-border-radius);
  border-bottom-right-radius: var(--pagination-page-item-border-radius);
}
.pagination.size-large .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination.size-small .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.short-pagination {
  display: flex;
  gap: 6px;
}
.pagination.gray {
  background: transparent;
}
.pagination.gray .page-item {
  --pagination-page-item-background: hsl(0, 0%, 95%);
  --pagination-page-item-color: hsl(0, 0%, 65%);
  --pagination-page-item-border-color: hsl(0, 0%, 65%);
}
@media (hover: hover) {
  .pagination.gray .page-item:hover {
    --pagination-page-item-background-hover: hsl(0, 0%, 65%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.gray .page-item:active {
    --pagination-page-item-background-hover: hsl(0, 0%, 65%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.gray .page-item.active {
  --pagination-page-item-background-active: hsl(0, 0%, 65%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.gray-blue {
  background: transparent;
}
.pagination.gray-blue .page-item {
  --pagination-page-item-background: hsl(210, 26%, 84%);
  --pagination-page-item-color: hsl(210, 26%, 39%);
  --pagination-page-item-border-color: hsl(210, 26%, 39%);
}
@media (hover: hover) {
  .pagination.gray-blue .page-item:hover {
    --pagination-page-item-background-hover: hsl(210, 26%, 39%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.gray-blue .page-item:active {
    --pagination-page-item-background-hover: hsl(210, 26%, 39%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.gray-blue .page-item.active {
  --pagination-page-item-background-active: hsl(210, 26%, 39%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.gray-mouse {
  background: transparent;
}
.pagination.gray-mouse .page-item {
  --pagination-page-item-background: hsl(199, 15%, 70%);
  --pagination-page-item-color: hsl(199, 15%, 25%);
  --pagination-page-item-border-color: hsl(199, 15%, 25%);
}
@media (hover: hover) {
  .pagination.gray-mouse .page-item:hover {
    --pagination-page-item-background-hover: hsl(199, 15%, 25%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.gray-mouse .page-item:active {
    --pagination-page-item-background-hover: hsl(199, 15%, 25%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.gray-mouse .page-item.active {
  --pagination-page-item-background-active: hsl(199, 15%, 25%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.lime {
  background: transparent;
}
.pagination.lime .page-item {
  --pagination-page-item-background: hsl(93, 97%, 91%);
  --pagination-page-item-color: hsl(93, 97%, 56%);
  --pagination-page-item-border-color: hsl(93, 97%, 56%);
}
@media (hover: hover) {
  .pagination.lime .page-item:hover {
    --pagination-page-item-background-hover: hsl(93, 97%, 56%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.lime .page-item:active {
    --pagination-page-item-background-hover: hsl(93, 97%, 56%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.lime .page-item.active {
  --pagination-page-item-background-active: hsl(93, 97%, 56%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.green {
  background: transparent;
}
.pagination.green .page-item {
  --pagination-page-item-background: hsl(120, 100%, 80%);
  --pagination-page-item-color: hsl(120, 100%, 20%);
  --pagination-page-item-border-color: hsl(120, 100%, 20%);
}
@media (hover: hover) {
  .pagination.green .page-item:hover {
    --pagination-page-item-background-hover: hsl(120, 100%, 20%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.green .page-item:active {
    --pagination-page-item-background-hover: hsl(120, 100%, 20%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.green .page-item.active {
  --pagination-page-item-background-active: hsl(120, 100%, 20%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.emerald {
  background: transparent;
}
.pagination.emerald .page-item {
  --pagination-page-item-background: hsl(140, 52%, 85%);
  --pagination-page-item-color: hsl(140, 52%, 40%);
  --pagination-page-item-border-color: hsl(140, 52%, 40%);
}
@media (hover: hover) {
  .pagination.emerald .page-item:hover {
    --pagination-page-item-background-hover: hsl(140, 52%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.emerald .page-item:active {
    --pagination-page-item-background-hover: hsl(140, 52%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.emerald .page-item.active {
  --pagination-page-item-background-active: hsl(140, 52%, 40%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.blue {
  background: transparent;
}
.pagination.blue .page-item {
  --pagination-page-item-background: hsl(225, 100%, 93%);
  --pagination-page-item-color: hsl(225, 100%, 53%);
  --pagination-page-item-border-color: hsl(225, 100%, 53%);
}
@media (hover: hover) {
  .pagination.blue .page-item:hover {
    --pagination-page-item-background-hover: hsl(225, 100%, 53%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.blue .page-item:active {
    --pagination-page-item-background-hover: hsl(225, 100%, 53%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.blue .page-item.active {
  --pagination-page-item-background-active: hsl(225, 100%, 53%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.teal {
  background: transparent;
}
.pagination.teal .page-item {
  --pagination-page-item-background: hsl(180, 77%, 79%);
  --pagination-page-item-color: hsl(180, 77%, 29%);
  --pagination-page-item-border-color: hsl(180, 77%, 29%);
}
@media (hover: hover) {
  .pagination.teal .page-item:hover {
    --pagination-page-item-background-hover: hsl(180, 77%, 29%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.teal .page-item:active {
    --pagination-page-item-background-hover: hsl(180, 77%, 29%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.teal .page-item.active {
  --pagination-page-item-background-active: hsl(180, 77%, 29%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.cyan {
  background: transparent;
}
.pagination.cyan .page-item {
  --pagination-page-item-background: hsl(221, 100%, 94%);
  --pagination-page-item-color: hsl(221, 100%, 64%);
  --pagination-page-item-border-color: hsl(221, 100%, 64%);
}
@media (hover: hover) {
  .pagination.cyan .page-item:hover {
    --pagination-page-item-background-hover: hsl(221, 100%, 64%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.cyan .page-item:active {
    --pagination-page-item-background-hover: hsl(221, 100%, 64%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.cyan .page-item.active {
  --pagination-page-item-background-active: hsl(221, 100%, 64%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.cobalt {
  background: transparent;
}
.pagination.cobalt .page-item {
  --pagination-page-item-background: hsl(215, 100%, 79%);
  --pagination-page-item-color: hsl(215, 100%, 19%);
  --pagination-page-item-border-color: hsl(215, 100%, 19%);
}
@media (hover: hover) {
  .pagination.cobalt .page-item:hover {
    --pagination-page-item-background-hover: hsl(215, 100%, 19%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.cobalt .page-item:active {
    --pagination-page-item-background-hover: hsl(215, 100%, 19%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.cobalt .page-item.active {
  --pagination-page-item-background-active: hsl(215, 100%, 19%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.indigo {
  background: transparent;
}
.pagination.indigo .page-item {
  --pagination-page-item-background: hsl(276, 100%, 78%);
  --pagination-page-item-color: hsl(276, 100%, 18%);
  --pagination-page-item-border-color: hsl(276, 100%, 18%);
}
@media (hover: hover) {
  .pagination.indigo .page-item:hover {
    --pagination-page-item-background-hover: hsl(276, 100%, 18%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.indigo .page-item:active {
    --pagination-page-item-background-hover: hsl(276, 100%, 18%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.indigo .page-item.active {
  --pagination-page-item-background-active: hsl(276, 100%, 18%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.almost {
  background: transparent;
}
.pagination.almost .page-item {
  --pagination-page-item-background: hsl(259, 84%, 85%);
  --pagination-page-item-color: hsl(259, 84%, 40%);
  --pagination-page-item-border-color: hsl(259, 84%, 40%);
}
@media (hover: hover) {
  .pagination.almost .page-item:hover {
    --pagination-page-item-background-hover: hsl(259, 84%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.almost .page-item:active {
    --pagination-page-item-background-hover: hsl(259, 84%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.almost .page-item.active {
  --pagination-page-item-background-active: hsl(259, 84%, 40%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.violet {
  background: transparent;
}
.pagination.violet .page-item {
  --pagination-page-item-background: hsl(300, 76%, 92%);
  --pagination-page-item-color: hsl(300, 76%, 57%);
  --pagination-page-item-border-color: hsl(300, 76%, 57%);
}
@media (hover: hover) {
  .pagination.violet .page-item:hover {
    --pagination-page-item-background-hover: hsl(300, 76%, 57%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.violet .page-item:active {
    --pagination-page-item-background-hover: hsl(300, 76%, 57%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.violet .page-item.active {
  --pagination-page-item-background-active: hsl(300, 76%, 57%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.pink {
  background: transparent;
}
.pagination.pink .page-item {
  --pagination-page-item-background: hsl(350, 100%, 98%);
  --pagination-page-item-color: hsl(350, 100%, 73%);
  --pagination-page-item-border-color: hsl(350, 100%, 73%);
}
@media (hover: hover) {
  .pagination.pink .page-item:hover {
    --pagination-page-item-background-hover: hsl(350, 100%, 73%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.pink .page-item:active {
    --pagination-page-item-background-hover: hsl(350, 100%, 73%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.pink .page-item.active {
  --pagination-page-item-background-active: hsl(350, 100%, 73%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.magenta {
  background: transparent;
}
.pagination.magenta .page-item {
  --pagination-page-item-background: hsl(300, 100%, 90%);
  --pagination-page-item-color: hsl(300, 100%, 35%);
  --pagination-page-item-border-color: hsl(300, 100%, 35%);
}
@media (hover: hover) {
  .pagination.magenta .page-item:hover {
    --pagination-page-item-background-hover: hsl(300, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.magenta .page-item:active {
    --pagination-page-item-background-hover: hsl(300, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.magenta .page-item.active {
  --pagination-page-item-background-active: hsl(300, 100%, 35%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.crimson {
  background: transparent;
}
.pagination.crimson .page-item {
  --pagination-page-item-background: hsl(348, 88%, 91%);
  --pagination-page-item-color: hsl(348, 88%, 31%);
  --pagination-page-item-border-color: hsl(348, 88%, 31%);
}
@media (hover: hover) {
  .pagination.crimson .page-item:hover {
    --pagination-page-item-background-hover: hsl(348, 88%, 31%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.crimson .page-item:active {
    --pagination-page-item-background-hover: hsl(348, 88%, 31%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.crimson .page-item.active {
  --pagination-page-item-background-active: hsl(348, 88%, 31%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.red {
  background: transparent;
}
.pagination.red .page-item {
  --pagination-page-item-background: hsl(0, 100%, 85%);
  --pagination-page-item-color: hsl(0, 100%, 35%);
  --pagination-page-item-border-color: hsl(0, 100%, 35%);
}
@media (hover: hover) {
  .pagination.red .page-item:hover {
    --pagination-page-item-background-hover: hsl(0, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.red .page-item:active {
    --pagination-page-item-background-hover: hsl(0, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.red .page-item.active {
  --pagination-page-item-background-active: hsl(0, 100%, 35%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.clown {
  background: transparent;
}
.pagination.clown .page-item {
  --pagination-page-item-background: hsl(3, 100%, 95%);
  --pagination-page-item-color: hsl(3, 100%, 55%);
  --pagination-page-item-border-color: hsl(3, 100%, 55%);
}
@media (hover: hover) {
  .pagination.clown .page-item:hover {
    --pagination-page-item-background-hover: hsl(3, 100%, 55%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.clown .page-item:active {
    --pagination-page-item-background-hover: hsl(3, 100%, 55%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.clown .page-item.active {
  --pagination-page-item-background-active: hsl(3, 100%, 55%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.orange {
  background: transparent;
}
.pagination.orange .page-item {
  --pagination-page-item-background: hsl(39, 100%, 90%);
  --pagination-page-item-color: hsl(39, 100%, 35%);
  --pagination-page-item-border-color: hsl(39, 100%, 35%);
}
@media (hover: hover) {
  .pagination.orange .page-item:hover {
    --pagination-page-item-background-hover: hsl(39, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.orange .page-item:active {
    --pagination-page-item-background-hover: hsl(39, 100%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.orange .page-item.active {
  --pagination-page-item-background-active: hsl(39, 100%, 35%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.amber {
  background: transparent;
}
.pagination.amber .page-item {
  --pagination-page-item-background: hsl(45, 100%, 78%);
  --pagination-page-item-color: hsl(45, 100%, 43%);
  --pagination-page-item-border-color: hsl(45, 100%, 43%);
}
@media (hover: hover) {
  .pagination.amber .page-item:hover {
    --pagination-page-item-background-hover: hsl(45, 100%, 43%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.amber .page-item:active {
    --pagination-page-item-background-hover: hsl(45, 100%, 43%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.amber .page-item.active {
  --pagination-page-item-background-active: hsl(45, 100%, 43%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.yellow {
  background: transparent;
}
.pagination.yellow .page-item {
  --pagination-page-item-background: hsl(52, 100%, 93%);
  --pagination-page-item-color: hsl(52, 100%, 53%);
  --pagination-page-item-border-color: hsl(52, 100%, 53%);
}
@media (hover: hover) {
  .pagination.yellow .page-item:hover {
    --pagination-page-item-background-hover: hsl(52, 100%, 53%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.yellow .page-item:active {
    --pagination-page-item-background-hover: hsl(52, 100%, 53%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.yellow .page-item.active {
  --pagination-page-item-background-active: hsl(52, 100%, 53%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.brown {
  background: transparent;
}
.pagination.brown .page-item {
  --pagination-page-item-background: hsl(25, 57%, 81%);
  --pagination-page-item-color: hsl(25, 57%, 36%);
  --pagination-page-item-border-color: hsl(25, 57%, 36%);
}
@media (hover: hover) {
  .pagination.brown .page-item:hover {
    --pagination-page-item-background-hover: hsl(25, 57%, 36%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.brown .page-item:active {
    --pagination-page-item-background-hover: hsl(25, 57%, 36%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.brown .page-item.active {
  --pagination-page-item-background-active: hsl(25, 57%, 36%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.olive {
  background: transparent;
}
.pagination.olive .page-item {
  --pagination-page-item-background: hsl(60, 100%, 72%);
  --pagination-page-item-color: hsl(60, 100%, 17%);
  --pagination-page-item-border-color: hsl(60, 100%, 17%);
}
@media (hover: hover) {
  .pagination.olive .page-item:hover {
    --pagination-page-item-background-hover: hsl(60, 100%, 17%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.olive .page-item:active {
    --pagination-page-item-background-hover: hsl(60, 100%, 17%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.olive .page-item.active {
  --pagination-page-item-background-active: hsl(60, 100%, 17%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.steel {
  background: transparent;
}
.pagination.steel .page-item {
  --pagination-page-item-background: hsl(209, 19%, 87%);
  --pagination-page-item-color: hsl(209, 19%, 42%);
  --pagination-page-item-border-color: hsl(209, 19%, 42%);
}
@media (hover: hover) {
  .pagination.steel .page-item:hover {
    --pagination-page-item-background-hover: hsl(209, 19%, 42%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.steel .page-item:active {
    --pagination-page-item-background-hover: hsl(209, 19%, 42%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.steel .page-item.active {
  --pagination-page-item-background-active: hsl(209, 19%, 42%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.mauve {
  background: transparent;
}
.pagination.mauve .page-item {
  --pagination-page-item-background: hsl(277, 100%, 96%);
  --pagination-page-item-color: hsl(277, 100%, 69%);
  --pagination-page-item-border-color: hsl(277, 100%, 69%);
}
@media (hover: hover) {
  .pagination.mauve .page-item:hover {
    --pagination-page-item-background-hover: hsl(277, 100%, 69%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.mauve .page-item:active {
    --pagination-page-item-background-hover: hsl(277, 100%, 69%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.mauve .page-item.active {
  --pagination-page-item-background-active: hsl(277, 100%, 69%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.taupe {
  background: transparent;
}
.pagination.taupe .page-item {
  --pagination-page-item-background: hsl(29, 19%, 80%);
  --pagination-page-item-color: hsl(29, 19%, 35%);
  --pagination-page-item-border-color: hsl(29, 19%, 35%);
}
@media (hover: hover) {
  .pagination.taupe .page-item:hover {
    --pagination-page-item-background-hover: hsl(29, 19%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.taupe .page-item:active {
    --pagination-page-item-background-hover: hsl(29, 19%, 35%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.taupe .page-item.active {
  --pagination-page-item-background-active: hsl(29, 19%, 35%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.champagne {
  background: transparent;
}
.pagination.champagne .page-item {
  --pagination-page-item-background: hsl(37, 74%, 98%);
  --pagination-page-item-color: hsl(37, 74%, 73%);
  --pagination-page-item-border-color: hsl(37, 74%, 73%);
}
@media (hover: hover) {
  .pagination.champagne .page-item:hover {
    --pagination-page-item-background-hover: hsl(37, 74%, 73%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.champagne .page-item:active {
    --pagination-page-item-background-hover: hsl(37, 74%, 73%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.champagne .page-item.active {
  --pagination-page-item-background-active: hsl(37, 74%, 73%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.khaki {
  background: transparent;
}
.pagination.khaki .page-item {
  --pagination-page-item-background: hsl(47, 47%, 94%);
  --pagination-page-item-color: hsl(47, 47%, 54%);
  --pagination-page-item-border-color: hsl(47, 47%, 54%);
}
@media (hover: hover) {
  .pagination.khaki .page-item:hover {
    --pagination-page-item-background-hover: hsl(47, 47%, 54%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.khaki .page-item:active {
    --pagination-page-item-background-hover: hsl(47, 47%, 54%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.khaki .page-item.active {
  --pagination-page-item-background-active: hsl(47, 47%, 54%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.charcoal {
  background: transparent;
}
.pagination.charcoal .page-item {
  --pagination-page-item-background: hsl(0, 0%, 90%);
  --pagination-page-item-color: hsl(0, 0%, 45%);
  --pagination-page-item-border-color: hsl(0, 0%, 45%);
}
@media (hover: hover) {
  .pagination.charcoal .page-item:hover {
    --pagination-page-item-background-hover: hsl(0, 0%, 45%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.charcoal .page-item:active {
    --pagination-page-item-background-hover: hsl(0, 0%, 45%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.charcoal .page-item.active {
  --pagination-page-item-background-active: hsl(0, 0%, 45%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.bronze {
  background: transparent;
}
.pagination.bronze .page-item {
  --pagination-page-item-background: hsl(29, 75%, 87%);
  --pagination-page-item-color: hsl(29, 75%, 42%);
  --pagination-page-item-border-color: hsl(29, 75%, 42%);
}
@media (hover: hover) {
  .pagination.bronze .page-item:hover {
    --pagination-page-item-background-hover: hsl(29, 75%, 42%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.bronze .page-item:active {
    --pagination-page-item-background-hover: hsl(29, 75%, 42%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.bronze .page-item.active {
  --pagination-page-item-background-active: hsl(29, 75%, 42%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.windstorm {
  background: transparent;
}
.pagination.windstorm .page-item {
  --pagination-page-item-background: hsl(216, 53%, 93%);
  --pagination-page-item-color: hsl(216, 53%, 51%);
  --pagination-page-item-border-color: hsl(216, 53%, 51%);
}
@media (hover: hover) {
  .pagination.windstorm .page-item:hover {
    --pagination-page-item-background-hover: hsl(216, 53%, 51%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.windstorm .page-item:active {
    --pagination-page-item-background-hover: hsl(216, 53%, 51%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.windstorm .page-item.active {
  --pagination-page-item-background-active: hsl(216, 53%, 51%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.nude {
  background: transparent;
}
.pagination.nude .page-item {
  --pagination-page-item-background: hsl(29, 79%, 97%);
  --pagination-page-item-color: hsl(29, 79%, 70%);
  --pagination-page-item-border-color: hsl(29, 79%, 70%);
}
@media (hover: hover) {
  .pagination.nude .page-item:hover {
    --pagination-page-item-background-hover: hsl(29, 79%, 70%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.nude .page-item:active {
    --pagination-page-item-background-hover: hsl(29, 79%, 70%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.nude .page-item.active {
  --pagination-page-item-background-active: hsl(29, 79%, 70%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.terracotta {
  background: transparent;
}
.pagination.terracotta .page-item {
  --pagination-page-item-background: hsl(10, 76%, 85%);
  --pagination-page-item-color: hsl(10, 76%, 40%);
  --pagination-page-item-border-color: hsl(10, 76%, 40%);
}
@media (hover: hover) {
  .pagination.terracotta .page-item:hover {
    --pagination-page-item-background-hover: hsl(10, 76%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.terracotta .page-item:active {
    --pagination-page-item-background-hover: hsl(10, 76%, 40%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.terracotta .page-item.active {
  --pagination-page-item-background-active: hsl(10, 76%, 40%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.coral {
  background: transparent;
}
.pagination.coral .page-item {
  --pagination-page-item-background: hsl(16, 100%, 92%);
  --pagination-page-item-color: hsl(16, 100%, 52%);
  --pagination-page-item-border-color: hsl(16, 100%, 52%);
}
@media (hover: hover) {
  .pagination.coral .page-item:hover {
    --pagination-page-item-background-hover: hsl(16, 100%, 52%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.coral .page-item:active {
    --pagination-page-item-background-hover: hsl(16, 100%, 52%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.coral .page-item.active {
  --pagination-page-item-background-active: hsl(16, 100%, 52%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.army {
  background: transparent;
}
.pagination.army .page-item {
  --pagination-page-item-background: hsl(69, 34%, 75%);
  --pagination-page-item-color: hsl(69, 34%, 15%);
  --pagination-page-item-border-color: hsl(69, 34%, 15%);
}
@media (hover: hover) {
  .pagination.army .page-item:hover {
    --pagination-page-item-background-hover: hsl(69, 34%, 15%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.army .page-item:active {
    --pagination-page-item-background-hover: hsl(69, 34%, 15%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.army .page-item.active {
  --pagination-page-item-background-active: hsl(69, 34%, 15%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.seashell {
  background: transparent;
}
.pagination.seashell .page-item {
  --pagination-page-item-background: hsl(25, 100%, 98%);
  --pagination-page-item-color: hsl(25, 100%, 80%);
  --pagination-page-item-border-color: hsl(25, 100%, 80%);
}
@media (hover: hover) {
  .pagination.seashell .page-item:hover {
    --pagination-page-item-background-hover: hsl(25, 100%, 80%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.seashell .page-item:active {
    --pagination-page-item-background-hover: hsl(25, 100%, 80%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.seashell .page-item.active {
  --pagination-page-item-background-active: hsl(25, 100%, 80%);
  --pagination-page-item-color-active: #ffffff;
}
.pagination.sand {
  background: transparent;
}
.pagination.sand .page-item {
  --pagination-page-item-background: hsl(45, 71%, 96%);
  --pagination-page-item-color: hsl(45, 71%, 66%);
  --pagination-page-item-border-color: hsl(45, 71%, 66%);
}
@media (hover: hover) {
  .pagination.sand .page-item:hover {
    --pagination-page-item-background-hover: hsl(45, 71%, 66%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
@media (hover: none) {
  .pagination.sand .page-item:active {
    --pagination-page-item-background-hover: hsl(45, 71%, 66%);
    --pagination-page-item-color-hover: #ffffff;
  }
}
.pagination.sand .page-item.active {
  --pagination-page-item-background-active: hsl(45, 71%, 66%);
  --pagination-page-item-color-active: #ffffff;
}

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

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

/* ../metroui-lib/source/components/product-card/product-card.less */
:root {
  --product-card-padding: 1rem;
  --product-card-font-size: 14px;
  --product-card-header-background: #fbfbfb;
  --product-card-header-color: #191919;
  --product-card-footer-background: #fbfbfb;
  --product-card-footer-color: #191919;
  --product-card-background: #ffffff;
  --product-card-color: #191919;
  --product-card-avatar-border-color: #ffffff;
  --product-card-border-radius: 6px;
  --product-card-button-border-color: var(--border-color);
  --product-title-color: #191919;
  --product-status-color: #191919;
  --product-price-color: #191919;
}
.dark-side {
  --product-card-header-background: #282c35;
  --product-card-header-color: #fbfbfb;
  --product-card-footer-background: #282c35;
  --product-card-footer-color: #fbfbfb;
  --product-card-background: #2b2d30;
  --product-card-color: #dbdfe7;
  --product-card-avatar-border-color: #414245;
  --product-card-button-border-color: var(--border-color);
  --product-title-color: #dbdfe7;
  --product-status-color: #dbdfe7;
  --product-price-color: #dbdfe7;
}
.product-card {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  font-size: var(--product-card-font-size);
  border: 1px solid var(--border-color);
  border-radius: var(--product-card-border-radius);
  background: var(--product-card-background);
  color: var(--product-card-color);
  padding: var(--product-card-padding);
  height: 100%;
}
.product-card .product-image {
  width: 100%;
  position: relative;
  display: block;
  padding-bottom: 100%;
  margin-bottom: 1rem;
}
.product-card .product-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: scale-down;
}
.product-card .product-title {
  --ratio: calc(19 / 14);
  font-size: calc(var(--product-card-font-size) * 1.14);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 2);
  -webkit-box-orient: vertical;
  line-height: var(--ratio);
  overflow: hidden;
  word-break: break-word;
  color: var(--product-title-color, inherit);
}
.product-card .product-status {
  font-size: calc(var(--product-card-font-size) / 1.16);
  font-weight: 500;
  line-height: 16px;
  word-break: break-word;
  color: var(--product-status-color, inherit);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 0.25rem 0;
  gap: 4px;
}
.product-card .product-status .icon {
  font-size: calc(var(--product-card-font-size) * 1.25);
  width: calc(var(--product-card-font-size) * 1.25);
  height: calc(var(--product-card-font-size) * 1.25);
  line-height: calc(var(--product-card-font-size) * 1.25);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.product-card .product-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  word-break: break-word;
  text-wrap: pretty;
  display: -webkit-box;
}
.product-card .product-rating {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 0.5rem 0;
}
.product-card .-old {
  font-size: 0.6em;
  font-weight: 400;
  line-height: 12px;
  text-decoration: line-through;
}
.product-card .product-price {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.product-card .product-footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  margin-top: 1rem;
  height: 40px;
}
.product-card > .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
}
.product-card > .badge.-left {
  left: 10px;
  right: auto;
}
.product-card .product-props {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: -1rem;
  right: -1rem;
  padding: 0 1rem 1rem 1rem;
  background-color: var(--product-card-background);
  z-index: -1;
  box-shadow: 0 16px 16px #0000003d;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
}
.product-card.hovered::before {
  content: "";
  display: none;
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: 0;
  border-radius: 0.25rem;
  background-color: var(--product-card-background);
  box-shadow: 0 16px 16px #0000003d;
  z-index: -1;
  border: 1px solid var(--border-color);
  border-bottom: none;
}
@media (hover: hover) {
  .product-card.hovered {
    border: none;
  }
  .product-card.hovered:hover {
    z-index: 2;
  }
  .product-card.hovered:hover::before {
    display: block;
  }
  .product-card.hovered:hover .product-props {
    display: block;
  }
}
@media (hover: none) {
  .product-card.hovered:active {
    z-index: 2;
  }
  .product-card.hovered:active::before {
    display: block;
  }
  .product-card.hovered:active .product-props {
    display: block;
  }
}
@container (width > 320px) {
  .product-card {
    --product-card-font-size: 11px;
    width: calc(50% - 4px);
  }
}
@container (width >= 540px) {
  .product-card {
    --product-card-font-size: 12px;
    width: calc(33% - 8px);
  }
}
@container (width >= 768px) {
  .product-card {
    --product-card-font-size: 11px;
    width: calc(25% - 12px);
  }
}
@container (width >= 1200px) {
  .product-card {
    --product-card-font-size: 14px;
    width: calc(20% - 16px);
  }
}

/* ../metroui-lib/source/components/progress/progress.less */
:root {
  --progress-bar-height: 12px;
  --progress-bar-height-ani: -24px;
  --progress-bar-radius: 8px;
  --progress-bar-back-color: #eeeeee;
  --progress-bar-color: #60A917;
  --progress-bar-buffer-color: #CE352C;
  --progress-bar-line-color: #b3d4fc;
  --progress-bar-line-back-color: #004D6F;
  --progress-bar-load-color:
    radial-gradient(
      #a9c0e9 0%,
      #a9c0e9 16%,
      transparent 42%);
  --progress-bar-value-color: #191919;
}
.dark-side {
  --progress-bar-back-color: #363942;
  --progress-bar-bar-color: #60A917;
  --progress-bar-buffer-color: #CE352C;
  --progress-bar-line-color: #b3d4fc;
  --progress-bar-line-back-color: #004D6F;
  --progress-bar-load-color:
    radial-gradient(
      #a9c0e9 0%,
      #a9c0e9 16%,
      transparent 42%);
  --progress-bar-value-color: #ffffff;
}
.progress-component {
  position: relative;
  display: block;
  width: 100%;
}
.progress-component .progress {
  display: block;
  position: relative;
  width: 100%;
  height: var(--progress-bar-height);
  background-color: var(--progress-bar-back-color);
  overflow: hidden;
  border-radius: var(--progress-bar-radius);
}
.progress-component .progress.with-load {
  background: transparent;
}
.progress-component .progress-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progress-component .progress-data .progress-label {
  order: 1;
  font-size: 14px;
  font-weight: 400;
}
.progress-component .progress-data .progress-value {
  margin-left: auto;
  order: 2;
  font-weight: 600;
}
.progress-component .bar,
.progress-component .buffer,
.progress-component .load {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.progress-component .load {
  width: 100%;
  animation: progress-loading 3s infinite linear;
  background: var(--progress-bar-load-color);
  background-size: var(--progress-bar-height) var(--progress-bar-height);
  z-index: 1;
  margin-top: -1px;
}
.progress-component .buffer {
  z-index: 2;
  background-color: var(--progress-bar-buffer-color);
}
.progress-component .bar {
  z-index: 3;
  background: var(--progress-bar-color);
}
.progress-component .line {
  background-color: var(--progress-bar-line-color);
  display: flex;
}
.progress-component .line::before {
  height: 100%;
  width: 100%;
  background-color: var(--progress-bar-line-back-color);
  content: "";
  animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.progress-component .segments {
  background: var(--progress-bar-back-color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.progress-component .segments .bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--progress-bar-color);
  z-index: 1;
}
.progress-component .segments .segment {
  background: transparent;
  border: 1px solid var(--progress-bar-back-color);
  height: 100%;
  z-index: 2;
}
.progress-component .segments .segment:first-child {
  border-radius: 8px 0 0 8px;
}
.progress-component .segments .segment:last-child {
  border-radius: 0 4px 4px 0;
}
.progress-component .progress.small {
  --progress-bar-height: 6px;
  --progress-bar-radius: 4px;
}
@keyframes progress-loading {
  0% {
    opacity: 1;
    background-position: 0 var(--progress-bar-height-ani);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    background-position: -200px var(--progress-bar-height-ani);
  }
}
@keyframes running-progress {
  0% {
    margin-left: 0;
    margin-right: 100%;
  }
  50% {
    margin-left: 25%;
    margin-right: 0;
  }
  100% {
    margin-left: 100%;
    margin-right: 0;
  }
}
.bar-gray {
  --progress-bar-color: hsl(0, 0%, 80%);
}
.progress-gray {
  --progress-bar-color: hsl(0, 0%, 80%);
  --progress-bar-back-color: hsl(0, 0%, 95%);
}
.bar-gray-blue {
  --progress-bar-color: hsl(210, 26%, 54%);
}
.progress-gray-blue {
  --progress-bar-color: hsl(210, 26%, 54%);
  --progress-bar-back-color: hsl(210, 26%, 84%);
}
.bar-gray-mouse {
  --progress-bar-color: hsl(199, 15%, 40%);
}
.progress-gray-mouse {
  --progress-bar-color: hsl(199, 15%, 40%);
  --progress-bar-back-color: hsl(199, 15%, 70%);
}
.bar-lime {
  --progress-bar-color: hsl(93, 97%, 71%);
}
.progress-lime {
  --progress-bar-color: hsl(93, 97%, 71%);
  --progress-bar-back-color: hsl(93, 97%, 91%);
}
.bar-green {
  --progress-bar-color: hsl(120, 100%, 35%);
}
.progress-green {
  --progress-bar-color: hsl(120, 100%, 35%);
  --progress-bar-back-color: hsl(120, 100%, 80%);
}
.bar-emerald {
  --progress-bar-color: hsl(140, 52%, 55%);
}
.progress-emerald {
  --progress-bar-color: hsl(140, 52%, 55%);
  --progress-bar-back-color: hsl(140, 52%, 85%);
}
.bar-blue {
  --progress-bar-color: hsl(225, 100%, 68%);
}
.progress-blue {
  --progress-bar-color: hsl(225, 100%, 68%);
  --progress-bar-back-color: hsl(225, 100%, 93%);
}
.bar-teal {
  --progress-bar-color: hsl(180, 77%, 44%);
}
.progress-teal {
  --progress-bar-color: hsl(180, 77%, 44%);
  --progress-bar-back-color: hsl(180, 77%, 79%);
}
.bar-cyan {
  --progress-bar-color: hsl(221, 100%, 79%);
}
.progress-cyan {
  --progress-bar-color: hsl(221, 100%, 79%);
  --progress-bar-back-color: hsl(221, 100%, 94%);
}
.bar-cobalt {
  --progress-bar-color: hsl(215, 100%, 34%);
}
.progress-cobalt {
  --progress-bar-color: hsl(215, 100%, 34%);
  --progress-bar-back-color: hsl(215, 100%, 79%);
}
.bar-indigo {
  --progress-bar-color: hsl(276, 100%, 33%);
}
.progress-indigo {
  --progress-bar-color: hsl(276, 100%, 33%);
  --progress-bar-back-color: hsl(276, 100%, 78%);
}
.bar-almost {
  --progress-bar-color: hsl(259, 84%, 55%);
}
.progress-almost {
  --progress-bar-color: hsl(259, 84%, 55%);
  --progress-bar-back-color: hsl(259, 84%, 85%);
}
.bar-violet {
  --progress-bar-color: hsl(300, 76%, 72%);
}
.progress-violet {
  --progress-bar-color: hsl(300, 76%, 72%);
  --progress-bar-back-color: hsl(300, 76%, 92%);
}
.bar-pink {
  --progress-bar-color: hsl(350, 100%, 88%);
}
.progress-pink {
  --progress-bar-color: hsl(350, 100%, 88%);
  --progress-bar-back-color: hsl(350, 100%, 98%);
}
.bar-magenta {
  --progress-bar-color: hsl(300, 100%, 50%);
}
.progress-magenta {
  --progress-bar-color: hsl(300, 100%, 50%);
  --progress-bar-back-color: hsl(300, 100%, 90%);
}
.bar-crimson {
  --progress-bar-color: hsl(348, 88%, 46%);
}
.progress-crimson {
  --progress-bar-color: hsl(348, 88%, 46%);
  --progress-bar-back-color: hsl(348, 88%, 91%);
}
.bar-red {
  --progress-bar-color: hsl(0, 100%, 50%);
}
.progress-red {
  --progress-bar-color: hsl(0, 100%, 50%);
  --progress-bar-back-color: hsl(0, 100%, 85%);
}
.bar-clown {
  --progress-bar-color: hsl(3, 100%, 70%);
}
.progress-clown {
  --progress-bar-color: hsl(3, 100%, 70%);
  --progress-bar-back-color: hsl(3, 100%, 95%);
}
.bar-orange {
  --progress-bar-color: hsl(39, 100%, 50%);
}
.progress-orange {
  --progress-bar-color: hsl(39, 100%, 50%);
  --progress-bar-back-color: hsl(39, 100%, 90%);
}
.bar-amber {
  --progress-bar-color: hsl(45, 100%, 58%);
}
.progress-amber {
  --progress-bar-color: hsl(45, 100%, 58%);
  --progress-bar-back-color: hsl(45, 100%, 78%);
}
.bar-yellow {
  --progress-bar-color: hsl(52, 100%, 68%);
}
.progress-yellow {
  --progress-bar-color: hsl(52, 100%, 68%);
  --progress-bar-back-color: hsl(52, 100%, 93%);
}
.bar-brown {
  --progress-bar-color: hsl(25, 57%, 51%);
}
.progress-brown {
  --progress-bar-color: hsl(25, 57%, 51%);
  --progress-bar-back-color: hsl(25, 57%, 81%);
}
.bar-olive {
  --progress-bar-color: hsl(60, 100%, 32%);
}
.progress-olive {
  --progress-bar-color: hsl(60, 100%, 32%);
  --progress-bar-back-color: hsl(60, 100%, 72%);
}
.bar-steel {
  --progress-bar-color: hsl(209, 19%, 57%);
}
.progress-steel {
  --progress-bar-color: hsl(209, 19%, 57%);
  --progress-bar-back-color: hsl(209, 19%, 87%);
}
.bar-mauve {
  --progress-bar-color: hsl(277, 100%, 84%);
}
.progress-mauve {
  --progress-bar-color: hsl(277, 100%, 84%);
  --progress-bar-back-color: hsl(277, 100%, 96%);
}
.bar-taupe {
  --progress-bar-color: hsl(29, 19%, 50%);
}
.progress-taupe {
  --progress-bar-color: hsl(29, 19%, 50%);
  --progress-bar-back-color: hsl(29, 19%, 80%);
}
.bar-champagne {
  --progress-bar-color: hsl(37, 74%, 88%);
}
.progress-champagne {
  --progress-bar-color: hsl(37, 74%, 88%);
  --progress-bar-back-color: hsl(37, 74%, 98%);
}
.bar-khaki {
  --progress-bar-color: hsl(47, 47%, 69%);
}
.progress-khaki {
  --progress-bar-color: hsl(47, 47%, 69%);
  --progress-bar-back-color: hsl(47, 47%, 94%);
}
.bar-charcoal {
  --progress-bar-color: hsl(0, 0%, 60%);
}
.progress-charcoal {
  --progress-bar-color: hsl(0, 0%, 60%);
  --progress-bar-back-color: hsl(0, 0%, 90%);
}
.bar-bronze {
  --progress-bar-color: hsl(29, 75%, 57%);
}
.progress-bronze {
  --progress-bar-color: hsl(29, 75%, 57%);
  --progress-bar-back-color: hsl(29, 75%, 87%);
}
.bar-windstorm {
  --progress-bar-color: hsl(216, 53%, 66%);
}
.progress-windstorm {
  --progress-bar-color: hsl(216, 53%, 66%);
  --progress-bar-back-color: hsl(216, 53%, 93%);
}
.bar-nude {
  --progress-bar-color: hsl(29, 79%, 85%);
}
.progress-nude {
  --progress-bar-color: hsl(29, 79%, 85%);
  --progress-bar-back-color: hsl(29, 79%, 97%);
}
.bar-terracotta {
  --progress-bar-color: hsl(10, 76%, 55%);
}
.progress-terracotta {
  --progress-bar-color: hsl(10, 76%, 55%);
  --progress-bar-back-color: hsl(10, 76%, 85%);
}
.bar-coral {
  --progress-bar-color: hsl(16, 100%, 67%);
}
.progress-coral {
  --progress-bar-color: hsl(16, 100%, 67%);
  --progress-bar-back-color: hsl(16, 100%, 92%);
}
.bar-army {
  --progress-bar-color: hsl(69, 34%, 30%);
}
.progress-army {
  --progress-bar-color: hsl(69, 34%, 30%);
  --progress-bar-back-color: hsl(69, 34%, 75%);
}
.bar-seashell {
  --progress-bar-color: hsl(25, 100%, 95%);
}
.progress-seashell {
  --progress-bar-color: hsl(25, 100%, 95%);
  --progress-bar-back-color: hsl(25, 100%, 98%);
}
.bar-sand {
  --progress-bar-color: hsl(45, 71%, 81%);
}
.progress-sand {
  --progress-bar-color: hsl(45, 71%, 81%);
  --progress-bar-back-color: hsl(45, 71%, 96%);
}
.progress-primary {
  --progress-bar-color: #f75553;
}
.progress-secondary {
  --progress-bar-color: #74290a;
}
.progress-tertiary {
  --progress-bar-color: #ffbebd;
}
.progress-success {
  --progress-bar-color: hsl(140, 52%, 55%);
}
.progress-alert {
  --progress-bar-color: hsl(348, 88%, 46%);
}
.progress-warning {
  --progress-bar-color: hsl(39, 100%, 50%);
}
.progress-info {
  --progress-bar-color: #468cff;
}
.progress-dark {
  --progress-bar-color: #505050;
}
.progress-light {
  --progress-bar-color: #f8f8f8;
}

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

/* ../metroui-lib/source/components/remark/remark.less */
:root {
  --remark-border-radius: 6px;
  --remark-border-color: var(--border-color);
  --remark-background: #ffffff;
  --remark-color: #191919;
}
.dark-side {
  --remark-border-color: var(--border-color);
  --remark-background: #26282e;
  --remark-color: #dbdfe7;
}
.remark {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  border: 1px solid;
  border-left: 4px solid;
  border-color: var(--remark-border-color);
  border-radius: var(--remark-border-radius);
  color: var(--remark-color);
  background: var(--remark-background);
  padding: 1rem 2rem 1rem 1rem;
  font-size: 14px;
  margin: 1rem 0;
  cursor: default;
  overflow: hidden;
}
.remark .icon {
  margin-right: 1rem;
  font-size: 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: 10px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remark::before {
  font-family: serif;
  content: "\201d";
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 48px;
  font-feature-settings: "onum";
  font-variant-numeric: oldstyle-nums;
}
.remark:has(.icon) {
  min-height: 40px;
  padding-left: 50px;
  padding-right: 50px;
}
.remark.gray {
  border-color: hsl(0, 0%, 80%);
  color: #191919;
  background: hsl(0, 0%, 95%);
}
.remark.gray .icon {
  color: hsl(0, 0%, 80%);
}
.remark.gray::before {
  color: hsl(0, 0%, 80%);
}
.remark.gray-blue {
  border-color: hsl(210, 26%, 54%);
  color: #191919;
  background: hsl(210, 26%, 84%);
}
.remark.gray-blue .icon {
  color: hsl(210, 26%, 54%);
}
.remark.gray-blue::before {
  color: hsl(210, 26%, 54%);
}
.remark.gray-mouse {
  border-color: hsl(199, 15%, 40%);
  color: #191919;
  background: hsl(199, 15%, 70%);
}
.remark.gray-mouse .icon {
  color: hsl(199, 15%, 40%);
}
.remark.gray-mouse::before {
  color: hsl(199, 15%, 40%);
}
.remark.lime {
  border-color: hsl(93, 97%, 71%);
  color: #191919;
  background: hsl(93, 97%, 91%);
}
.remark.lime .icon {
  color: hsl(93, 97%, 71%);
}
.remark.lime::before {
  color: hsl(93, 97%, 71%);
}
.remark.green {
  border-color: hsl(120, 100%, 35%);
  color: #191919;
  background: hsl(120, 100%, 80%);
}
.remark.green .icon {
  color: hsl(120, 100%, 35%);
}
.remark.green::before {
  color: hsl(120, 100%, 35%);
}
.remark.emerald {
  border-color: hsl(140, 52%, 55%);
  color: #191919;
  background: hsl(140, 52%, 85%);
}
.remark.emerald .icon {
  color: hsl(140, 52%, 55%);
}
.remark.emerald::before {
  color: hsl(140, 52%, 55%);
}
.remark.blue {
  border-color: hsl(225, 100%, 68%);
  color: #191919;
  background: hsl(225, 100%, 93%);
}
.remark.blue .icon {
  color: hsl(225, 100%, 68%);
}
.remark.blue::before {
  color: hsl(225, 100%, 68%);
}
.remark.teal {
  border-color: hsl(180, 77%, 44%);
  color: #191919;
  background: hsl(180, 77%, 79%);
}
.remark.teal .icon {
  color: hsl(180, 77%, 44%);
}
.remark.teal::before {
  color: hsl(180, 77%, 44%);
}
.remark.cyan {
  border-color: hsl(221, 100%, 79%);
  color: #191919;
  background: hsl(221, 100%, 94%);
}
.remark.cyan .icon {
  color: hsl(221, 100%, 79%);
}
.remark.cyan::before {
  color: hsl(221, 100%, 79%);
}
.remark.cobalt {
  border-color: hsl(215, 100%, 34%);
  color: #191919;
  background: hsl(215, 100%, 79%);
}
.remark.cobalt .icon {
  color: hsl(215, 100%, 34%);
}
.remark.cobalt::before {
  color: hsl(215, 100%, 34%);
}
.remark.indigo {
  border-color: hsl(276, 100%, 33%);
  color: #191919;
  background: hsl(276, 100%, 78%);
}
.remark.indigo .icon {
  color: hsl(276, 100%, 33%);
}
.remark.indigo::before {
  color: hsl(276, 100%, 33%);
}
.remark.almost {
  border-color: hsl(259, 84%, 55%);
  color: #191919;
  background: hsl(259, 84%, 85%);
}
.remark.almost .icon {
  color: hsl(259, 84%, 55%);
}
.remark.almost::before {
  color: hsl(259, 84%, 55%);
}
.remark.violet {
  border-color: hsl(300, 76%, 72%);
  color: #191919;
  background: hsl(300, 76%, 92%);
}
.remark.violet .icon {
  color: hsl(300, 76%, 72%);
}
.remark.violet::before {
  color: hsl(300, 76%, 72%);
}
.remark.pink {
  border-color: hsl(350, 100%, 88%);
  color: #191919;
  background: hsl(350, 100%, 98%);
}
.remark.pink .icon {
  color: hsl(350, 100%, 88%);
}
.remark.pink::before {
  color: hsl(350, 100%, 88%);
}
.remark.magenta {
  border-color: hsl(300, 100%, 50%);
  color: #191919;
  background: hsl(300, 100%, 90%);
}
.remark.magenta .icon {
  color: hsl(300, 100%, 50%);
}
.remark.magenta::before {
  color: hsl(300, 100%, 50%);
}
.remark.crimson {
  border-color: hsl(348, 88%, 46%);
  color: #191919;
  background: hsl(348, 88%, 91%);
}
.remark.crimson .icon {
  color: hsl(348, 88%, 46%);
}
.remark.crimson::before {
  color: hsl(348, 88%, 46%);
}
.remark.red {
  border-color: hsl(0, 100%, 50%);
  color: #191919;
  background: hsl(0, 100%, 85%);
}
.remark.red .icon {
  color: hsl(0, 100%, 50%);
}
.remark.red::before {
  color: hsl(0, 100%, 50%);
}
.remark.clown {
  border-color: hsl(3, 100%, 70%);
  color: #191919;
  background: hsl(3, 100%, 95%);
}
.remark.clown .icon {
  color: hsl(3, 100%, 70%);
}
.remark.clown::before {
  color: hsl(3, 100%, 70%);
}
.remark.orange {
  border-color: hsl(39, 100%, 50%);
  color: #191919;
  background: hsl(39, 100%, 90%);
}
.remark.orange .icon {
  color: hsl(39, 100%, 50%);
}
.remark.orange::before {
  color: hsl(39, 100%, 50%);
}
.remark.amber {
  border-color: hsl(45, 100%, 58%);
  color: #191919;
  background: hsl(45, 100%, 78%);
}
.remark.amber .icon {
  color: hsl(45, 100%, 58%);
}
.remark.amber::before {
  color: hsl(45, 100%, 58%);
}
.remark.yellow {
  border-color: hsl(52, 100%, 68%);
  color: #191919;
  background: hsl(52, 100%, 93%);
}
.remark.yellow .icon {
  color: hsl(52, 100%, 68%);
}
.remark.yellow::before {
  color: hsl(52, 100%, 68%);
}
.remark.brown {
  border-color: hsl(25, 57%, 51%);
  color: #191919;
  background: hsl(25, 57%, 81%);
}
.remark.brown .icon {
  color: hsl(25, 57%, 51%);
}
.remark.brown::before {
  color: hsl(25, 57%, 51%);
}
.remark.olive {
  border-color: hsl(60, 100%, 32%);
  color: #191919;
  background: hsl(60, 100%, 72%);
}
.remark.olive .icon {
  color: hsl(60, 100%, 32%);
}
.remark.olive::before {
  color: hsl(60, 100%, 32%);
}
.remark.steel {
  border-color: hsl(209, 19%, 57%);
  color: #191919;
  background: hsl(209, 19%, 87%);
}
.remark.steel .icon {
  color: hsl(209, 19%, 57%);
}
.remark.steel::before {
  color: hsl(209, 19%, 57%);
}
.remark.mauve {
  border-color: hsl(277, 100%, 84%);
  color: #191919;
  background: hsl(277, 100%, 96%);
}
.remark.mauve .icon {
  color: hsl(277, 100%, 84%);
}
.remark.mauve::before {
  color: hsl(277, 100%, 84%);
}
.remark.taupe {
  border-color: hsl(29, 19%, 50%);
  color: #191919;
  background: hsl(29, 19%, 80%);
}
.remark.taupe .icon {
  color: hsl(29, 19%, 50%);
}
.remark.taupe::before {
  color: hsl(29, 19%, 50%);
}
.remark.champagne {
  border-color: hsl(37, 74%, 88%);
  color: #191919;
  background: hsl(37, 74%, 98%);
}
.remark.champagne .icon {
  color: hsl(37, 74%, 88%);
}
.remark.champagne::before {
  color: hsl(37, 74%, 88%);
}
.remark.khaki {
  border-color: hsl(47, 47%, 69%);
  color: #191919;
  background: hsl(47, 47%, 94%);
}
.remark.khaki .icon {
  color: hsl(47, 47%, 69%);
}
.remark.khaki::before {
  color: hsl(47, 47%, 69%);
}
.remark.charcoal {
  border-color: hsl(0, 0%, 60%);
  color: #191919;
  background: hsl(0, 0%, 90%);
}
.remark.charcoal .icon {
  color: hsl(0, 0%, 60%);
}
.remark.charcoal::before {
  color: hsl(0, 0%, 60%);
}
.remark.bronze {
  border-color: hsl(29, 75%, 57%);
  color: #191919;
  background: hsl(29, 75%, 87%);
}
.remark.bronze .icon {
  color: hsl(29, 75%, 57%);
}
.remark.bronze::before {
  color: hsl(29, 75%, 57%);
}
.remark.windstorm {
  border-color: hsl(216, 53%, 66%);
  color: #191919;
  background: hsl(216, 53%, 93%);
}
.remark.windstorm .icon {
  color: hsl(216, 53%, 66%);
}
.remark.windstorm::before {
  color: hsl(216, 53%, 66%);
}
.remark.nude {
  border-color: hsl(29, 79%, 85%);
  color: #191919;
  background: hsl(29, 79%, 97%);
}
.remark.nude .icon {
  color: hsl(29, 79%, 85%);
}
.remark.nude::before {
  color: hsl(29, 79%, 85%);
}
.remark.terracotta {
  border-color: hsl(10, 76%, 55%);
  color: #191919;
  background: hsl(10, 76%, 85%);
}
.remark.terracotta .icon {
  color: hsl(10, 76%, 55%);
}
.remark.terracotta::before {
  color: hsl(10, 76%, 55%);
}
.remark.coral {
  border-color: hsl(16, 100%, 67%);
  color: #191919;
  background: hsl(16, 100%, 92%);
}
.remark.coral .icon {
  color: hsl(16, 100%, 67%);
}
.remark.coral::before {
  color: hsl(16, 100%, 67%);
}
.remark.army {
  border-color: hsl(69, 34%, 30%);
  color: #191919;
  background: hsl(69, 34%, 75%);
}
.remark.army .icon {
  color: hsl(69, 34%, 30%);
}
.remark.army::before {
  color: hsl(69, 34%, 30%);
}
.remark.seashell {
  border-color: hsl(25, 100%, 95%);
  color: #191919;
  background: hsl(25, 100%, 98%);
}
.remark.seashell .icon {
  color: hsl(25, 100%, 95%);
}
.remark.seashell::before {
  color: hsl(25, 100%, 95%);
}
.remark.sand {
  border-color: hsl(45, 71%, 81%);
  color: #191919;
  background: hsl(45, 71%, 96%);
}
.remark.sand .icon {
  color: hsl(45, 71%, 81%);
}
.remark.sand::before {
  color: hsl(45, 71%, 81%);
}
.remark.alert,
.remark.error {
  border-color: var(--color-red);
  background: var(--color-light-red) !important;
  color: #191919 !important;
}
.remark.alert .icon,
.remark.error .icon,
.remark.alert::before,
.remark.error::before {
  color: var(--color-red);
}
.remark.warning,
.remark.caution {
  border-color: var(--color-orange);
  background: var(--color-light-orange) !important;
  color: #191919 !important;
}
.remark.warning .icon,
.remark.caution .icon,
.remark.warning::before,
.remark.caution::before {
  color: var(--color-orange);
}
.remark.info {
  border-color: var(--color-blue);
  background: var(--color-light-blue) !important;
  color: #191919 !important;
}
.remark.info .icon,
.remark.info::before {
  color: var(--color-blue);
}
.remark.success {
  border-color: var(--color-green);
  background: var(--color-light-green) !important;
  color: #191919 !important;
}
.remark.success .icon,
.remark.success::before {
  color: var(--color-green);
}
.remark.dark {
  border-color: var(--color-dark);
  background: #dddddd !important;
  color: #191919 !important;
}
.remark.dark .icon {
  color: var(--color-dark);
}

/* ../metroui-lib/source/components/remote-dataset/remote-dataset.less */
:root {
  --remote-dataset-gap: 10px;
  --remote-dataset-order-block-size: 200px;
  --remote-dataset-count-block-size: 140px;
}
.remote-dataset .dataset-caption {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 1rem 0;
  font-size: 24px;
  font-weight: 600;
}
.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 wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.remote-dataset .service-block .search-block {
  flex-shrink: 1;
  flex-grow: 1;
}
.remote-dataset .service-block .order-block {
  flex: 0 0 var(--remote-dataset-order-block-size);
  margin-left: auto;
}
.remote-dataset .service-block .count-block {
  flex: 0 0 var(--remote-dataset-count-block-size);
}

/* ../metroui-lib/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: 0.8em;
}
.table.compact th,
.table.compact td,
.table.compact .th,
.table.compact .td {
  padding: 7px 8px;
  font-size: 0.9em;
}
.table.small-padding th,
.table.small-padding td,
.table.small-padding .th,
.table.small-padding .td {
  padding: 3px;
}
.table.medium-padding th,
.table.medium-padding td,
.table.medium-padding .th,
.table.medium-padding .td {
  padding: 6px;
}
.table.default-padding th,
.table.default-padding td,
.table.default-padding .th,
.table.default-padding .td {
  padding: 10px;
}
.table.large-padding th,
.table.large-padding td,
.table.large-padding .th,
.table.large-padding .td {
  padding: 16px;
}
.table.largest-padding th,
.table.largest-padding td,
.table.largest-padding .th,
.table.largest-padding .td {
  padding: 20px;
}
.table .check-cell,
.table .rownum-cell {
  width: 36px;
  text-align: center;
}
.table thead td.hidden,
.table tbody td.hidden,
.table .thead td.hidden,
.table .tbody td.hidden,
.table thead th.hidden,
.table tbody th.hidden,
.table .thead th.hidden,
.table .tbody th.hidden,
.table thead .th.hidden,
.table tbody .th.hidden,
.table .thead .th.hidden,
.table .tbody .th.hidden,
.table thead .td.hidden,
.table tbody .td.hidden,
.table .thead .td.hidden,
.table .tbody .td.hidden {
  display: none !important;
}
.table .data-wrapper {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table .checkbox,
.table .radio,
.table .switch {
  height: initial;
}
.table-component {
  display: block;
  position: relative;
  container: table-component / inline-size;
}
.table-component .inspector-button {
  font-family: "Segoe UI Symbol", serif;
}
.table-top {
  display: flex;
  flex-flow: row wrap;
  gap: 6px;
}
.table-bottom {
  margin-left: 0;
  margin-right: 0;
}
.table-info,
.table-pagination,
.table-skip {
  flex-basis: auto;
}
.table-info {
  margin-bottom: 10px;
}
.table-progress {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
}
.table-progress [class*=activity-] {
  margin: 0 auto;
}
.table-inspector {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--table-inspector-background);
  color: var(--table-inspector-color);
  z-index: 500;
  border: 1px double var(--table-inspector-border-color);
  border-radius: var(--table-inspector-border-radius);
  width: auto;
  padding: 10px;
  max-height: calc(100vh - 40px);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.table-inspector .table-inspector-header {
  display: block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5rem 0.5rem;
  border-bottom: 1px solid var(--table-border-color);
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.table-inspector .table-wrap {
  display: block;
  height: calc(100% - 110px);
  overflow-x: hidden;
  overflow-y: auto;
}
.table-inspector .table-inspector-actions {
  display: block;
  position: relative;
  border-top: 1px solid var(--table-border-color);
  padding: 0.5rem 0.5rem 0;
  margin-top: 0.5rem;
}
.table-inspector table,
.table-inspector .table {
  margin-bottom: 0;
}
.table-inspector table td,
.table-inspector .table td,
.table-inspector table .td,
.table-inspector .table .td {
  vertical-align: middle;
}
.table-inspector table tr.flash,
.table-inspector .table tr.flash,
.table-inspector table .tr.flash,
.table-inspector .table .tr.flash {
  animation: flash-bg 1s ease-out;
  animation-iteration-count: 1;
}
.table-inspector .spinner {
  width: 120px;
}
.table-inspector .spinner input {
  font-size: 14px;
}
.table-inspector.open {
  display: block;
}
.table-form {
  display: block;
  position: absolute;
  z-index: 500;
  height: auto;
  max-height: calc(100vh - 40px);
  width: auto;
  max-width: calc(100vw - 40px);
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
@keyframes flash-bg {
  0% {
    background-color: var(--table-background);
  }
  30% {
    background-color: var(--table-hover-background);
  }
  100% {
    background-color: var(--table-background);
  }
}
@container (min-width: 0) {
  .table.normal-fs th,
  .table.normal-fs td,
  .table.normal-fs .th,
  .table.normal-fs .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-fs th,
  .table.compact-fs td,
  .table.compact-fs .th,
  .table.compact-fs .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-fs th,
  .table.subcompact-fs td,
  .table.subcompact-fs .th,
  .table.subcompact-fs .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 360px) {
  .table.normal-xs th,
  .table.normal-xs td,
  .table.normal-xs .th,
  .table.normal-xs .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xs th,
  .table.compact-xs td,
  .table.compact-xs .th,
  .table.compact-xs .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xs th,
  .table.subcompact-xs td,
  .table.subcompact-xs .th,
  .table.subcompact-xs .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 576px) {
  .table.normal-sm th,
  .table.normal-sm td,
  .table.normal-sm .th,
  .table.normal-sm .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-sm th,
  .table.compact-sm td,
  .table.compact-sm .th,
  .table.compact-sm .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-sm th,
  .table.subcompact-sm td,
  .table.subcompact-sm .th,
  .table.subcompact-sm .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 640px) {
  .table.normal-ld th,
  .table.normal-ld td,
  .table.normal-ld .th,
  .table.normal-ld .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-ld th,
  .table.compact-ld td,
  .table.compact-ld .th,
  .table.compact-ld .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-ld th,
  .table.subcompact-ld td,
  .table.subcompact-ld .th,
  .table.subcompact-ld .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 768px) {
  .table.normal-md th,
  .table.normal-md td,
  .table.normal-md .th,
  .table.normal-md .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-md th,
  .table.compact-md td,
  .table.compact-md .th,
  .table.compact-md .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-md th,
  .table.subcompact-md td,
  .table.subcompact-md .th,
  .table.subcompact-md .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 992px) {
  .table.normal-lg th,
  .table.normal-lg td,
  .table.normal-lg .th,
  .table.normal-lg .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-lg th,
  .table.compact-lg td,
  .table.compact-lg .th,
  .table.compact-lg .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-lg th,
  .table.subcompact-lg td,
  .table.subcompact-lg .th,
  .table.subcompact-lg .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 1200px) {
  .table.normal-xl th,
  .table.normal-xl td,
  .table.normal-xl .th,
  .table.normal-xl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xl th,
  .table.compact-xl td,
  .table.compact-xl .th,
  .table.compact-xl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xl th,
  .table.subcompact-xl td,
  .table.subcompact-xl .th,
  .table.subcompact-xl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 1400px) {
  .table.normal-xxl th,
  .table.normal-xxl td,
  .table.normal-xxl .th,
  .table.normal-xxl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xxl th,
  .table.compact-xxl td,
  .table.compact-xxl .th,
  .table.compact-xxl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xxl th,
  .table.subcompact-xxl td,
  .table.subcompact-xxl .th,
  .table.subcompact-xxl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
@container (min-width: 2000px) {
  .table.normal-xxxl th,
  .table.normal-xxxl td,
  .table.normal-xxxl .th,
  .table.normal-xxxl .td {
    padding: 0.625rem;
    font-size: 1em;
  }
  .table.compact-xxxl th,
  .table.compact-xxxl td,
  .table.compact-xxxl .th,
  .table.compact-xxxl .td {
    padding: 7px 8px;
    font-size: 80%;
  }
  .table.subcompact-xxxl th,
  .table.subcompact-xxxl td,
  .table.subcompact-xxxl .th,
  .table.subcompact-xxxl .td {
    padding: 3px 8px;
    font-size: 80%;
  }
}
.table-load-data-activity {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 500;
}
.table-skip {
  display: flex;
  justify-content: flex-end;
  position: relative;
  flex-flow: row nowrap;
  gap: 6px;
}
.table-skip .input {
  width: 200px;
}
.table-component .table-top,
.table-component .table-rows-block,
.table-component .table-search-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
.table-component .table-search-block {
  flex-shrink: 1;
}
.table-component .table-rows-block {
  width: min(100%, 220px);
}
@media screen and (min-width: 768px) {
  .table-component .table-top {
    flex-flow: row nowrap;
  }
}
.table-component .table-container {
  border: 1px solid var(--border-color);
  margin: 10px 0;
  overflow: hidden;
  position: relative;
}
.table-component .table-container.horizontal-scroll {
  overflow-x: auto;
}
.table-component .table-container.horizontal-scroll .table {
  width: auto;
  min-width: 100%;
}
.table-scrollable {
  overflow-x: auto;
}
.table-scrollable .table {
  width: auto;
  min-width: 100%;
}
@container table-component (max-width: 359px) {
  .table.responsive-xs {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xs caption {
    margin-bottom: 6px;
  }
  .table.responsive-xs thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xs tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xs tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xs td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xs td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 575px) {
  .table.responsive-sm {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-sm caption {
    margin-bottom: 6px;
  }
  .table.responsive-sm thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-sm tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-sm tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-sm td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-sm td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 639px) {
  .table.responsive-ld {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-ld caption {
    margin-bottom: 6px;
  }
  .table.responsive-ld thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-ld tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-ld tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-ld td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-ld td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 767px) {
  .table.responsive-md {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-md caption {
    margin-bottom: 6px;
  }
  .table.responsive-md thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-md tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-md tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-md td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-md td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 991px) {
  .table.responsive-lg {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-lg caption {
    margin-bottom: 6px;
  }
  .table.responsive-lg thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-lg tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-lg tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-lg td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-lg td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1199px) {
  .table.responsive-xl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1399px) {
  .table.responsive-xxl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xxl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xxl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xxl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xxl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xxl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
@container table-component (max-width: 1999px) {
  .table.responsive-xxxl {
    --table-body-font-size: 12px;
    border: none;
  }
  .table.responsive-xxxl caption {
    margin-bottom: 6px;
  }
  .table.responsive-xxxl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .table.responsive-xxxl tbody {
    display: flex;
    flex-flow: column;
    gap: 6px;
  }
  .table.responsive-xxxl tr {
    border: 3px solid var(--table-border-color);
    display: block;
    border-radius: var(--table-border-radius);
  }
  .table.responsive-xxxl td {
    border-bottom: 1px solid var(--table-border-color);
    display: block;
    text-align: right;
    width: 100%;
    font-size: 14px;
  }
  .table.responsive-xxxl td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
  }
}
.table-container {
  scroll-snap-type: y mandatory;
}
.table.fixed-header tr {
  scroll-snap-align: start;
}
.table.fixed-header thead {
  position: sticky;
  top: 0;
}

/* ../metroui-lib/source/components/remote-table/remote-table.less */
:root {
  --remote-table-order-block-size: 200px;
  --remote-table-count-block-size: 140px;
}
.remote-table .service-block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}
.remote-table .service-block .search-block {
  flex-shrink: 1;
  flex-grow: 1;
}
.remote-table .service-block .order-block {
  flex: 0 0 var(--remote-table-order-block-size);
  margin-left: auto;
}
.remote-table .service-block .count-block {
  flex: 0 0 var(--remote-table-count-block-size);
}

/* ../metroui-lib/source/components/resizable-container/resizable-container.less */
:root {
  --resizable-container-border-color: #000;
  --resizable-container-border-width: 1px;
  --resizable-container-point-size: 8px;
}
.dark-side {
  --resizable-container-border-color: #fff;
}
.resizable-container {
  user-select: none;
}
.resizable-container .rc-contour {
  position: absolute;
  inset: 0;
  background: transparent;
  border: var(--resizable-container-border-width) dashed var(--resizable-container-border-color);
  border-radius: 0;
  overflow: visible;
}
.resizable-container .rc-contour .rc-point {
  position: absolute;
  width: var(--resizable-container-point-size);
  aspect-ratio: 1;
  background: var(--default-background);
  border: var(--resizable-container-border-width) solid var(--resizable-container-border-color);
}
.resizable-container .rc-contour .-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: translate(-50%, -50%);
}
.resizable-container .rc-contour .-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: translate(50%, -50%);
}
.resizable-container .rc-contour .-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: translate(-50%, 50%);
}
.resizable-container .rc-contour .-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
  transform: translate(50%, 50%);
}
.resizable-container .rc-contour .-n {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-50% - 1px));
  cursor: n-resize;
}
.resizable-container .rc-contour .-s {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(50% + 1px));
  cursor: s-resize;
}
.resizable-container .rc-contour .-e {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(50% + 1px));
  cursor: e-resize;
}
.resizable-container .rc-contour .-w {
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(calc(-50% - 1px));
  cursor: w-resize;
}
.resizable-container .rc-contour.disabled {
  display: none;
}

/* ../metroui-lib/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-gray {
  background: hsl(0, 0%, 80%);
  color: #ffffff;
}
.ribbon-gray::before {
  color: hsl(0, 0%, 55%);
}
.ribbon-gray-blue {
  background: hsl(210, 26%, 54%);
  color: #ffffff;
}
.ribbon-gray-blue::before {
  color: hsl(210, 26%, 29%);
}
.ribbon-gray-mouse {
  background: hsl(199, 15%, 40%);
  color: #ffffff;
}
.ribbon-gray-mouse::before {
  color: hsl(199, 15%, 15%);
}
.ribbon-lime {
  background: hsl(93, 97%, 71%);
  color: #ffffff;
}
.ribbon-lime::before {
  color: hsl(93, 97%, 46%);
}
.ribbon-green {
  background: hsl(120, 100%, 35%);
  color: #ffffff;
}
.ribbon-green::before {
  color: hsl(120, 100%, 10%);
}
.ribbon-emerald {
  background: hsl(140, 52%, 55%);
  color: #ffffff;
}
.ribbon-emerald::before {
  color: hsl(140, 52%, 30%);
}
.ribbon-blue {
  background: hsl(225, 100%, 68%);
  color: #ffffff;
}
.ribbon-blue::before {
  color: hsl(225, 100%, 43%);
}
.ribbon-teal {
  background: hsl(180, 77%, 44%);
  color: #ffffff;
}
.ribbon-teal::before {
  color: hsl(180, 77%, 19%);
}
.ribbon-cyan {
  background: hsl(221, 100%, 79%);
  color: #ffffff;
}
.ribbon-cyan::before {
  color: hsl(221, 100%, 54%);
}
.ribbon-cobalt {
  background: hsl(215, 100%, 34%);
  color: #ffffff;
}
.ribbon-cobalt::before {
  color: hsl(215, 100%, 9%);
}
.ribbon-indigo {
  background: hsl(276, 100%, 33%);
  color: #ffffff;
}
.ribbon-indigo::before {
  color: hsl(276, 100%, 8%);
}
.ribbon-almost {
  background: hsl(259, 84%, 55%);
  color: #ffffff;
}
.ribbon-almost::before {
  color: hsl(259, 84%, 30%);
}
.ribbon-violet {
  background: hsl(300, 76%, 72%);
  color: #ffffff;
}
.ribbon-violet::before {
  color: hsl(300, 76%, 47%);
}
.ribbon-pink {
  background: hsl(350, 100%, 88%);
  color: #ffffff;
}
.ribbon-pink::before {
  color: hsl(350, 100%, 63%);
}
.ribbon-magenta {
  background: hsl(300, 100%, 50%);
  color: #ffffff;
}
.ribbon-magenta::before {
  color: hsl(300, 100%, 25%);
}
.ribbon-crimson {
  background: hsl(348, 88%, 46%);
  color: #ffffff;
}
.ribbon-crimson::before {
  color: hsl(348, 88%, 21%);
}
.ribbon-red {
  background: hsl(0, 100%, 50%);
  color: #ffffff;
}
.ribbon-red::before {
  color: hsl(0, 100%, 25%);
}
.ribbon-clown {
  background: hsl(3, 100%, 70%);
  color: #ffffff;
}
.ribbon-clown::before {
  color: hsl(3, 100%, 45%);
}
.ribbon-orange {
  background: hsl(39, 100%, 50%);
  color: #ffffff;
}
.ribbon-orange::before {
  color: hsl(39, 100%, 25%);
}
.ribbon-amber {
  background: hsl(45, 100%, 58%);
  color: #ffffff;
}
.ribbon-amber::before {
  color: hsl(45, 100%, 33%);
}
.ribbon-yellow {
  background: hsl(52, 100%, 68%);
  color: #ffffff;
}
.ribbon-yellow::before {
  color: hsl(52, 100%, 43%);
}
.ribbon-brown {
  background: hsl(25, 57%, 51%);
  color: #ffffff;
}
.ribbon-brown::before {
  color: hsl(25, 57%, 26%);
}
.ribbon-olive {
  background: hsl(60, 100%, 32%);
  color: #ffffff;
}
.ribbon-olive::before {
  color: hsl(60, 100%, 7%);
}
.ribbon-steel {
  background: hsl(209, 19%, 57%);
  color: #ffffff;
}
.ribbon-steel::before {
  color: hsl(209, 19%, 32%);
}
.ribbon-mauve {
  background: hsl(277, 100%, 84%);
  color: #ffffff;
}
.ribbon-mauve::before {
  color: hsl(277, 100%, 59%);
}
.ribbon-taupe {
  background: hsl(29, 19%, 50%);
  color: #ffffff;
}
.ribbon-taupe::before {
  color: hsl(29, 19%, 25%);
}
.ribbon-champagne {
  background: hsl(37, 74%, 88%);
  color: #ffffff;
}
.ribbon-champagne::before {
  color: hsl(37, 74%, 63%);
}
.ribbon-khaki {
  background: hsl(47, 47%, 69%);
  color: #ffffff;
}
.ribbon-khaki::before {
  color: hsl(47, 47%, 44%);
}
.ribbon-charcoal {
  background: hsl(0, 0%, 60%);
  color: #ffffff;
}
.ribbon-charcoal::before {
  color: hsl(0, 0%, 35%);
}
.ribbon-bronze {
  background: hsl(29, 75%, 57%);
  color: #ffffff;
}
.ribbon-bronze::before {
  color: hsl(29, 75%, 32%);
}
.ribbon-windstorm {
  background: hsl(216, 53%, 66%);
  color: #ffffff;
}
.ribbon-windstorm::before {
  color: hsl(216, 53%, 41%);
}
.ribbon-nude {
  background: hsl(29, 79%, 85%);
  color: #ffffff;
}
.ribbon-nude::before {
  color: hsl(29, 79%, 60%);
}
.ribbon-terracotta {
  background: hsl(10, 76%, 55%);
  color: #ffffff;
}
.ribbon-terracotta::before {
  color: hsl(10, 76%, 30%);
}
.ribbon-coral {
  background: hsl(16, 100%, 67%);
  color: #ffffff;
}
.ribbon-coral::before {
  color: hsl(16, 100%, 42%);
}
.ribbon-army {
  background: hsl(69, 34%, 30%);
  color: #ffffff;
}
.ribbon-army::before {
  color: hsl(69, 34%, 5%);
}
.ribbon-seashell {
  background: hsl(25, 100%, 95%);
  color: #ffffff;
}
.ribbon-seashell::before {
  color: hsl(25, 100%, 70%);
}
.ribbon-sand {
  background: hsl(45, 71%, 81%);
  color: #ffffff;
}
.ribbon-sand::before {
  color: hsl(45, 71%, 56%);
}

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

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

/* ../metroui-lib/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: hsl(0, 0%, 80%) !important;
}
.sb-gray * {
  scrollbar-color: hsl(0, 0%, 80%) #e8e8e8 !important;
}
.sb-gray-blue ::-webkit-scrollbar-thumb {
  background-color: hsl(210, 26%, 54%) !important;
}
.sb-gray-blue * {
  scrollbar-color: hsl(210, 26%, 54%) #e8e8e8 !important;
}
.sb-gray-white ::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 96%) !important;
}
.sb-gray-white * {
  scrollbar-color: hsl(0, 0%, 96%) #e8e8e8 !important;
}
.sb-gray-mouse ::-webkit-scrollbar-thumb {
  background-color: hsl(199, 15%, 40%) !important;
}
.sb-gray-mouse * {
  scrollbar-color: hsl(199, 15%, 40%) #e8e8e8 !important;
}
.sb-lime ::-webkit-scrollbar-thumb {
  background-color: hsl(93, 97%, 71%) !important;
}
.sb-lime * {
  scrollbar-color: hsl(93, 97%, 71%) #e8e8e8 !important;
}
.sb-green ::-webkit-scrollbar-thumb {
  background-color: hsl(120, 100%, 35%) !important;
}
.sb-green * {
  scrollbar-color: hsl(120, 100%, 35%) #e8e8e8 !important;
}
.sb-emerald ::-webkit-scrollbar-thumb {
  background-color: hsl(140, 52%, 55%) !important;
}
.sb-emerald * {
  scrollbar-color: hsl(140, 52%, 55%) #e8e8e8 !important;
}
.sb-blue ::-webkit-scrollbar-thumb {
  background-color: hsl(225, 100%, 68%) !important;
}
.sb-blue * {
  scrollbar-color: hsl(225, 100%, 68%) #e8e8e8 !important;
}
.sb-teal ::-webkit-scrollbar-thumb {
  background-color: hsl(180, 77%, 44%) !important;
}
.sb-teal * {
  scrollbar-color: hsl(180, 77%, 44%) #e8e8e8 !important;
}
.sb-cyan ::-webkit-scrollbar-thumb {
  background-color: hsl(221, 100%, 79%) !important;
}
.sb-cyan * {
  scrollbar-color: hsl(221, 100%, 79%) #e8e8e8 !important;
}
.sb-cobalt ::-webkit-scrollbar-thumb {
  background-color: hsl(215, 100%, 34%) !important;
}
.sb-cobalt * {
  scrollbar-color: hsl(215, 100%, 34%) #e8e8e8 !important;
}
.sb-indigo ::-webkit-scrollbar-thumb {
  background-color: hsl(276, 100%, 33%) !important;
}
.sb-indigo * {
  scrollbar-color: hsl(276, 100%, 33%) #e8e8e8 !important;
}
.sb-almost ::-webkit-scrollbar-thumb {
  background-color: hsl(259, 84%, 55%) !important;
}
.sb-almost * {
  scrollbar-color: hsl(259, 84%, 55%) #e8e8e8 !important;
}
.sb-violet ::-webkit-scrollbar-thumb {
  background-color: hsl(300, 76%, 72%) !important;
}
.sb-violet * {
  scrollbar-color: hsl(300, 76%, 72%) #e8e8e8 !important;
}
.sb-pink ::-webkit-scrollbar-thumb {
  background-color: hsl(350, 100%, 88%) !important;
}
.sb-pink * {
  scrollbar-color: hsl(350, 100%, 88%) #e8e8e8 !important;
}
.sb-magenta ::-webkit-scrollbar-thumb {
  background-color: hsl(300, 100%, 50%) !important;
}
.sb-magenta * {
  scrollbar-color: hsl(300, 100%, 50%) #e8e8e8 !important;
}
.sb-crimson ::-webkit-scrollbar-thumb {
  background-color: hsl(348, 88%, 46%) !important;
}
.sb-crimson * {
  scrollbar-color: hsl(348, 88%, 46%) #e8e8e8 !important;
}
.sb-red ::-webkit-scrollbar-thumb {
  background-color: hsl(0, 100%, 50%) !important;
}
.sb-red * {
  scrollbar-color: hsl(0, 100%, 50%) #e8e8e8 !important;
}
.sb-clown ::-webkit-scrollbar-thumb {
  background-color: hsl(3, 100%, 70%) !important;
}
.sb-clown * {
  scrollbar-color: hsl(3, 100%, 70%) #e8e8e8 !important;
}
.sb-orange ::-webkit-scrollbar-thumb {
  background-color: hsl(39, 100%, 50%) !important;
}
.sb-orange * {
  scrollbar-color: hsl(39, 100%, 50%) #e8e8e8 !important;
}
.sb-amber ::-webkit-scrollbar-thumb {
  background-color: hsl(45, 100%, 58%) !important;
}
.sb-amber * {
  scrollbar-color: hsl(45, 100%, 58%) #e8e8e8 !important;
}
.sb-yellow ::-webkit-scrollbar-thumb {
  background-color: hsl(52, 100%, 68%) !important;
}
.sb-yellow * {
  scrollbar-color: hsl(52, 100%, 68%) #e8e8e8 !important;
}
.sb-brown ::-webkit-scrollbar-thumb {
  background-color: hsl(25, 57%, 51%) !important;
}
.sb-brown * {
  scrollbar-color: hsl(25, 57%, 51%) #e8e8e8 !important;
}
.sb-olive ::-webkit-scrollbar-thumb {
  background-color: hsl(60, 100%, 32%) !important;
}
.sb-olive * {
  scrollbar-color: hsl(60, 100%, 32%) #e8e8e8 !important;
}
.sb-steel ::-webkit-scrollbar-thumb {
  background-color: hsl(209, 19%, 57%) !important;
}
.sb-steel * {
  scrollbar-color: hsl(209, 19%, 57%) #e8e8e8 !important;
}
.sb-mauve ::-webkit-scrollbar-thumb {
  background-color: hsl(277, 100%, 84%) !important;
}
.sb-mauve * {
  scrollbar-color: hsl(277, 100%, 84%) #e8e8e8 !important;
}
.sb-taupe ::-webkit-scrollbar-thumb {
  background-color: hsl(29, 19%, 50%) !important;
}
.sb-taupe * {
  scrollbar-color: hsl(29, 19%, 50%) #e8e8e8 !important;
}
.sb-champagne ::-webkit-scrollbar-thumb {
  background-color: hsl(37, 74%, 88%) !important;
}
.sb-champagne * {
  scrollbar-color: hsl(37, 74%, 88%) #e8e8e8 !important;
}
.sb-khaki ::-webkit-scrollbar-thumb {
  background-color: hsl(47, 47%, 69%) !important;
}
.sb-khaki * {
  scrollbar-color: hsl(47, 47%, 69%) #e8e8e8 !important;
}
.sb-charcoal ::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 60%) !important;
}
.sb-charcoal * {
  scrollbar-color: hsl(0, 0%, 60%) #e8e8e8 !important;
}
.sb-bronze ::-webkit-scrollbar-thumb {
  background-color: hsl(29, 75%, 57%) !important;
}
.sb-bronze * {
  scrollbar-color: hsl(29, 75%, 57%) #e8e8e8 !important;
}
.sb-windstorm ::-webkit-scrollbar-thumb {
  background-color: hsl(216, 53%, 66%) !important;
}
.sb-windstorm * {
  scrollbar-color: hsl(216, 53%, 66%) #e8e8e8 !important;
}
.sb-nude ::-webkit-scrollbar-thumb {
  background-color: hsl(29, 79%, 85%) !important;
}
.sb-nude * {
  scrollbar-color: hsl(29, 79%, 85%) #e8e8e8 !important;
}
.sb-terracotta ::-webkit-scrollbar-thumb {
  background-color: hsl(10, 76%, 55%) !important;
}
.sb-terracotta * {
  scrollbar-color: hsl(10, 76%, 55%) #e8e8e8 !important;
}
.sb-coral ::-webkit-scrollbar-thumb {
  background-color: hsl(16, 100%, 67%) !important;
}
.sb-coral * {
  scrollbar-color: hsl(16, 100%, 67%) #e8e8e8 !important;
}
.sb-army ::-webkit-scrollbar-thumb {
  background-color: hsl(69, 34%, 30%) !important;
}
.sb-army * {
  scrollbar-color: hsl(69, 34%, 30%) #e8e8e8 !important;
}
.sb-seashell ::-webkit-scrollbar-thumb {
  background-color: hsl(25, 100%, 95%) !important;
}
.sb-seashell * {
  scrollbar-color: hsl(25, 100%, 95%) #e8e8e8 !important;
}
.sb-sand ::-webkit-scrollbar-thumb {
  background-color: hsl(45, 71%, 81%) !important;
}
.sb-sand * {
  scrollbar-color: hsl(45, 71%, 81%) #e8e8e8 !important;
}
.scroll-container {
  overscroll-behavior: contain;
}

/* ../metroui-lib/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-gray {
  box-shadow: 8px 8px 0 hsl(0, 0%, 80%);
}
.shadow-3d-border-gray {
  box-shadow: 0 0 0 2px hsl(0, 0%, 80%), 8px 8px 0 0 hsl(0, 0%, 80%);
}
.shadow-glow-gray {
  box-shadow: 0 0px 30px hsl(0, 0%, 80%);
}
.shadow-glow-soft-gray {
  box-shadow: 0 9px 30px hsl(0, 0%, 95%);
}
.shadow-3d-gray-blue {
  box-shadow: 8px 8px 0 hsl(210, 26%, 54%);
}
.shadow-3d-border-gray-blue {
  box-shadow: 0 0 0 2px hsl(210, 26%, 54%), 8px 8px 0 0 hsl(210, 26%, 54%);
}
.shadow-glow-gray-blue {
  box-shadow: 0 0px 30px hsl(210, 26%, 54%);
}
.shadow-glow-soft-gray-blue {
  box-shadow: 0 9px 30px hsl(210, 26%, 84%);
}
.shadow-3d-gray-mouse {
  box-shadow: 8px 8px 0 hsl(199, 15%, 40%);
}
.shadow-3d-border-gray-mouse {
  box-shadow: 0 0 0 2px hsl(199, 15%, 40%), 8px 8px 0 0 hsl(199, 15%, 40%);
}
.shadow-glow-gray-mouse {
  box-shadow: 0 0px 30px hsl(199, 15%, 40%);
}
.shadow-glow-soft-gray-mouse {
  box-shadow: 0 9px 30px hsl(199, 15%, 70%);
}
.shadow-3d-lime {
  box-shadow: 8px 8px 0 hsl(93, 97%, 71%);
}
.shadow-3d-border-lime {
  box-shadow: 0 0 0 2px hsl(93, 97%, 71%), 8px 8px 0 0 hsl(93, 97%, 71%);
}
.shadow-glow-lime {
  box-shadow: 0 0px 30px hsl(93, 97%, 71%);
}
.shadow-glow-soft-lime {
  box-shadow: 0 9px 30px hsl(93, 97%, 91%);
}
.shadow-3d-green {
  box-shadow: 8px 8px 0 hsl(120, 100%, 35%);
}
.shadow-3d-border-green {
  box-shadow: 0 0 0 2px hsl(120, 100%, 35%), 8px 8px 0 0 hsl(120, 100%, 35%);
}
.shadow-glow-green {
  box-shadow: 0 0px 30px hsl(120, 100%, 35%);
}
.shadow-glow-soft-green {
  box-shadow: 0 9px 30px hsl(120, 100%, 80%);
}
.shadow-3d-emerald {
  box-shadow: 8px 8px 0 hsl(140, 52%, 55%);
}
.shadow-3d-border-emerald {
  box-shadow: 0 0 0 2px hsl(140, 52%, 55%), 8px 8px 0 0 hsl(140, 52%, 55%);
}
.shadow-glow-emerald {
  box-shadow: 0 0px 30px hsl(140, 52%, 55%);
}
.shadow-glow-soft-emerald {
  box-shadow: 0 9px 30px hsl(140, 52%, 85%);
}
.shadow-3d-blue {
  box-shadow: 8px 8px 0 hsl(225, 100%, 68%);
}
.shadow-3d-border-blue {
  box-shadow: 0 0 0 2px hsl(225, 100%, 68%), 8px 8px 0 0 hsl(225, 100%, 68%);
}
.shadow-glow-blue {
  box-shadow: 0 0px 30px hsl(225, 100%, 68%);
}
.shadow-glow-soft-blue {
  box-shadow: 0 9px 30px hsl(225, 100%, 93%);
}
.shadow-3d-teal {
  box-shadow: 8px 8px 0 hsl(180, 77%, 44%);
}
.shadow-3d-border-teal {
  box-shadow: 0 0 0 2px hsl(180, 77%, 44%), 8px 8px 0 0 hsl(180, 77%, 44%);
}
.shadow-glow-teal {
  box-shadow: 0 0px 30px hsl(180, 77%, 44%);
}
.shadow-glow-soft-teal {
  box-shadow: 0 9px 30px hsl(180, 77%, 79%);
}
.shadow-3d-cyan {
  box-shadow: 8px 8px 0 hsl(221, 100%, 79%);
}
.shadow-3d-border-cyan {
  box-shadow: 0 0 0 2px hsl(221, 100%, 79%), 8px 8px 0 0 hsl(221, 100%, 79%);
}
.shadow-glow-cyan {
  box-shadow: 0 0px 30px hsl(221, 100%, 79%);
}
.shadow-glow-soft-cyan {
  box-shadow: 0 9px 30px hsl(221, 100%, 94%);
}
.shadow-3d-cobalt {
  box-shadow: 8px 8px 0 hsl(215, 100%, 34%);
}
.shadow-3d-border-cobalt {
  box-shadow: 0 0 0 2px hsl(215, 100%, 34%), 8px 8px 0 0 hsl(215, 100%, 34%);
}
.shadow-glow-cobalt {
  box-shadow: 0 0px 30px hsl(215, 100%, 34%);
}
.shadow-glow-soft-cobalt {
  box-shadow: 0 9px 30px hsl(215, 100%, 79%);
}
.shadow-3d-indigo {
  box-shadow: 8px 8px 0 hsl(276, 100%, 33%);
}
.shadow-3d-border-indigo {
  box-shadow: 0 0 0 2px hsl(276, 100%, 33%), 8px 8px 0 0 hsl(276, 100%, 33%);
}
.shadow-glow-indigo {
  box-shadow: 0 0px 30px hsl(276, 100%, 33%);
}
.shadow-glow-soft-indigo {
  box-shadow: 0 9px 30px hsl(276, 100%, 78%);
}
.shadow-3d-almost {
  box-shadow: 8px 8px 0 hsl(259, 84%, 55%);
}
.shadow-3d-border-almost {
  box-shadow: 0 0 0 2px hsl(259, 84%, 55%), 8px 8px 0 0 hsl(259, 84%, 55%);
}
.shadow-glow-almost {
  box-shadow: 0 0px 30px hsl(259, 84%, 55%);
}
.shadow-glow-soft-almost {
  box-shadow: 0 9px 30px hsl(259, 84%, 85%);
}
.shadow-3d-violet {
  box-shadow: 8px 8px 0 hsl(300, 76%, 72%);
}
.shadow-3d-border-violet {
  box-shadow: 0 0 0 2px hsl(300, 76%, 72%), 8px 8px 0 0 hsl(300, 76%, 72%);
}
.shadow-glow-violet {
  box-shadow: 0 0px 30px hsl(300, 76%, 72%);
}
.shadow-glow-soft-violet {
  box-shadow: 0 9px 30px hsl(300, 76%, 92%);
}
.shadow-3d-pink {
  box-shadow: 8px 8px 0 hsl(350, 100%, 88%);
}
.shadow-3d-border-pink {
  box-shadow: 0 0 0 2px hsl(350, 100%, 88%), 8px 8px 0 0 hsl(350, 100%, 88%);
}
.shadow-glow-pink {
  box-shadow: 0 0px 30px hsl(350, 100%, 88%);
}
.shadow-glow-soft-pink {
  box-shadow: 0 9px 30px hsl(350, 100%, 98%);
}
.shadow-3d-magenta {
  box-shadow: 8px 8px 0 hsl(300, 100%, 50%);
}
.shadow-3d-border-magenta {
  box-shadow: 0 0 0 2px hsl(300, 100%, 50%), 8px 8px 0 0 hsl(300, 100%, 50%);
}
.shadow-glow-magenta {
  box-shadow: 0 0px 30px hsl(300, 100%, 50%);
}
.shadow-glow-soft-magenta {
  box-shadow: 0 9px 30px hsl(300, 100%, 90%);
}
.shadow-3d-crimson {
  box-shadow: 8px 8px 0 hsl(348, 88%, 46%);
}
.shadow-3d-border-crimson {
  box-shadow: 0 0 0 2px hsl(348, 88%, 46%), 8px 8px 0 0 hsl(348, 88%, 46%);
}
.shadow-glow-crimson {
  box-shadow: 0 0px 30px hsl(348, 88%, 46%);
}
.shadow-glow-soft-crimson {
  box-shadow: 0 9px 30px hsl(348, 88%, 91%);
}
.shadow-3d-red {
  box-shadow: 8px 8px 0 hsl(0, 100%, 50%);
}
.shadow-3d-border-red {
  box-shadow: 0 0 0 2px hsl(0, 100%, 50%), 8px 8px 0 0 hsl(0, 100%, 50%);
}
.shadow-glow-red {
  box-shadow: 0 0px 30px hsl(0, 100%, 50%);
}
.shadow-glow-soft-red {
  box-shadow: 0 9px 30px hsl(0, 100%, 85%);
}
.shadow-3d-clown {
  box-shadow: 8px 8px 0 hsl(3, 100%, 70%);
}
.shadow-3d-border-clown {
  box-shadow: 0 0 0 2px hsl(3, 100%, 70%), 8px 8px 0 0 hsl(3, 100%, 70%);
}
.shadow-glow-clown {
  box-shadow: 0 0px 30px hsl(3, 100%, 70%);
}
.shadow-glow-soft-clown {
  box-shadow: 0 9px 30px hsl(3, 100%, 95%);
}
.shadow-3d-orange {
  box-shadow: 8px 8px 0 hsl(39, 100%, 50%);
}
.shadow-3d-border-orange {
  box-shadow: 0 0 0 2px hsl(39, 100%, 50%), 8px 8px 0 0 hsl(39, 100%, 50%);
}
.shadow-glow-orange {
  box-shadow: 0 0px 30px hsl(39, 100%, 50%);
}
.shadow-glow-soft-orange {
  box-shadow: 0 9px 30px hsl(39, 100%, 90%);
}
.shadow-3d-amber {
  box-shadow: 8px 8px 0 hsl(45, 100%, 58%);
}
.shadow-3d-border-amber {
  box-shadow: 0 0 0 2px hsl(45, 100%, 58%), 8px 8px 0 0 hsl(45, 100%, 58%);
}
.shadow-glow-amber {
  box-shadow: 0 0px 30px hsl(45, 100%, 58%);
}
.shadow-glow-soft-amber {
  box-shadow: 0 9px 30px hsl(45, 100%, 78%);
}
.shadow-3d-yellow {
  box-shadow: 8px 8px 0 hsl(52, 100%, 68%);
}
.shadow-3d-border-yellow {
  box-shadow: 0 0 0 2px hsl(52, 100%, 68%), 8px 8px 0 0 hsl(52, 100%, 68%);
}
.shadow-glow-yellow {
  box-shadow: 0 0px 30px hsl(52, 100%, 68%);
}
.shadow-glow-soft-yellow {
  box-shadow: 0 9px 30px hsl(52, 100%, 93%);
}
.shadow-3d-brown {
  box-shadow: 8px 8px 0 hsl(25, 57%, 51%);
}
.shadow-3d-border-brown {
  box-shadow: 0 0 0 2px hsl(25, 57%, 51%), 8px 8px 0 0 hsl(25, 57%, 51%);
}
.shadow-glow-brown {
  box-shadow: 0 0px 30px hsl(25, 57%, 51%);
}
.shadow-glow-soft-brown {
  box-shadow: 0 9px 30px hsl(25, 57%, 81%);
}
.shadow-3d-olive {
  box-shadow: 8px 8px 0 hsl(60, 100%, 32%);
}
.shadow-3d-border-olive {
  box-shadow: 0 0 0 2px hsl(60, 100%, 32%), 8px 8px 0 0 hsl(60, 100%, 32%);
}
.shadow-glow-olive {
  box-shadow: 0 0px 30px hsl(60, 100%, 32%);
}
.shadow-glow-soft-olive {
  box-shadow: 0 9px 30px hsl(60, 100%, 72%);
}
.shadow-3d-steel {
  box-shadow: 8px 8px 0 hsl(209, 19%, 57%);
}
.shadow-3d-border-steel {
  box-shadow: 0 0 0 2px hsl(209, 19%, 57%), 8px 8px 0 0 hsl(209, 19%, 57%);
}
.shadow-glow-steel {
  box-shadow: 0 0px 30px hsl(209, 19%, 57%);
}
.shadow-glow-soft-steel {
  box-shadow: 0 9px 30px hsl(209, 19%, 87%);
}
.shadow-3d-mauve {
  box-shadow: 8px 8px 0 hsl(277, 100%, 84%);
}
.shadow-3d-border-mauve {
  box-shadow: 0 0 0 2px hsl(277, 100%, 84%), 8px 8px 0 0 hsl(277, 100%, 84%);
}
.shadow-glow-mauve {
  box-shadow: 0 0px 30px hsl(277, 100%, 84%);
}
.shadow-glow-soft-mauve {
  box-shadow: 0 9px 30px hsl(277, 100%, 96%);
}
.shadow-3d-taupe {
  box-shadow: 8px 8px 0 hsl(29, 19%, 50%);
}
.shadow-3d-border-taupe {
  box-shadow: 0 0 0 2px hsl(29, 19%, 50%), 8px 8px 0 0 hsl(29, 19%, 50%);
}
.shadow-glow-taupe {
  box-shadow: 0 0px 30px hsl(29, 19%, 50%);
}
.shadow-glow-soft-taupe {
  box-shadow: 0 9px 30px hsl(29, 19%, 80%);
}
.shadow-3d-champagne {
  box-shadow: 8px 8px 0 hsl(37, 74%, 88%);
}
.shadow-3d-border-champagne {
  box-shadow: 0 0 0 2px hsl(37, 74%, 88%), 8px 8px 0 0 hsl(37, 74%, 88%);
}
.shadow-glow-champagne {
  box-shadow: 0 0px 30px hsl(37, 74%, 88%);
}
.shadow-glow-soft-champagne {
  box-shadow: 0 9px 30px hsl(37, 74%, 98%);
}
.shadow-3d-khaki {
  box-shadow: 8px 8px 0 hsl(47, 47%, 69%);
}
.shadow-3d-border-khaki {
  box-shadow: 0 0 0 2px hsl(47, 47%, 69%), 8px 8px 0 0 hsl(47, 47%, 69%);
}
.shadow-glow-khaki {
  box-shadow: 0 0px 30px hsl(47, 47%, 69%);
}
.shadow-glow-soft-khaki {
  box-shadow: 0 9px 30px hsl(47, 47%, 94%);
}
.shadow-3d-charcoal {
  box-shadow: 8px 8px 0 hsl(0, 0%, 60%);
}
.shadow-3d-border-charcoal {
  box-shadow: 0 0 0 2px hsl(0, 0%, 60%), 8px 8px 0 0 hsl(0, 0%, 60%);
}
.shadow-glow-charcoal {
  box-shadow: 0 0px 30px hsl(0, 0%, 60%);
}
.shadow-glow-soft-charcoal {
  box-shadow: 0 9px 30px hsl(0, 0%, 90%);
}
.shadow-3d-bronze {
  box-shadow: 8px 8px 0 hsl(29, 75%, 57%);
}
.shadow-3d-border-bronze {
  box-shadow: 0 0 0 2px hsl(29, 75%, 57%), 8px 8px 0 0 hsl(29, 75%, 57%);
}
.shadow-glow-bronze {
  box-shadow: 0 0px 30px hsl(29, 75%, 57%);
}
.shadow-glow-soft-bronze {
  box-shadow: 0 9px 30px hsl(29, 75%, 87%);
}
.shadow-3d-windstorm {
  box-shadow: 8px 8px 0 hsl(216, 53%, 66%);
}
.shadow-3d-border-windstorm {
  box-shadow: 0 0 0 2px hsl(216, 53%, 66%), 8px 8px 0 0 hsl(216, 53%, 66%);
}
.shadow-glow-windstorm {
  box-shadow: 0 0px 30px hsl(216, 53%, 66%);
}
.shadow-glow-soft-windstorm {
  box-shadow: 0 9px 30px hsl(216, 53%, 93%);
}
.shadow-3d-nude {
  box-shadow: 8px 8px 0 hsl(29, 79%, 85%);
}
.shadow-3d-border-nude {
  box-shadow: 0 0 0 2px hsl(29, 79%, 85%), 8px 8px 0 0 hsl(29, 79%, 85%);
}
.shadow-glow-nude {
  box-shadow: 0 0px 30px hsl(29, 79%, 85%);
}
.shadow-glow-soft-nude {
  box-shadow: 0 9px 30px hsl(29, 79%, 97%);
}
.shadow-3d-terracotta {
  box-shadow: 8px 8px 0 hsl(10, 76%, 55%);
}
.shadow-3d-border-terracotta {
  box-shadow: 0 0 0 2px hsl(10, 76%, 55%), 8px 8px 0 0 hsl(10, 76%, 55%);
}
.shadow-glow-terracotta {
  box-shadow: 0 0px 30px hsl(10, 76%, 55%);
}
.shadow-glow-soft-terracotta {
  box-shadow: 0 9px 30px hsl(10, 76%, 85%);
}
.shadow-3d-coral {
  box-shadow: 8px 8px 0 hsl(16, 100%, 67%);
}
.shadow-3d-border-coral {
  box-shadow: 0 0 0 2px hsl(16, 100%, 67%), 8px 8px 0 0 hsl(16, 100%, 67%);
}
.shadow-glow-coral {
  box-shadow: 0 0px 30px hsl(16, 100%, 67%);
}
.shadow-glow-soft-coral {
  box-shadow: 0 9px 30px hsl(16, 100%, 92%);
}
.shadow-3d-army {
  box-shadow: 8px 8px 0 hsl(69, 34%, 30%);
}
.shadow-3d-border-army {
  box-shadow: 0 0 0 2px hsl(69, 34%, 30%), 8px 8px 0 0 hsl(69, 34%, 30%);
}
.shadow-glow-army {
  box-shadow: 0 0px 30px hsl(69, 34%, 30%);
}
.shadow-glow-soft-army {
  box-shadow: 0 9px 30px hsl(69, 34%, 75%);
}
.shadow-3d-seashell {
  box-shadow: 8px 8px 0 hsl(25, 100%, 95%);
}
.shadow-3d-border-seashell {
  box-shadow: 0 0 0 2px hsl(25, 100%, 95%), 8px 8px 0 0 hsl(25, 100%, 95%);
}
.shadow-glow-seashell {
  box-shadow: 0 0px 30px hsl(25, 100%, 95%);
}
.shadow-glow-soft-seashell {
  box-shadow: 0 9px 30px hsl(25, 100%, 98%);
}
.shadow-3d-sand {
  box-shadow: 8px 8px 0 hsl(45, 71%, 81%);
}
.shadow-3d-border-sand {
  box-shadow: 0 0 0 2px hsl(45, 71%, 81%), 8px 8px 0 0 hsl(45, 71%, 81%);
}
.shadow-glow-sand {
  box-shadow: 0 0px 30px hsl(45, 71%, 81%);
}
.shadow-glow-soft-sand {
  box-shadow: 0 9px 30px hsl(45, 71%, 96%);
}
.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-gray {
  text-shadow: 0 0 10px hsl(0, 0%, 80%);
}
.text-shadow-glow-gray-blue {
  text-shadow: 0 0 10px hsl(210, 26%, 54%);
}
.text-shadow-glow-gray-mouse {
  text-shadow: 0 0 10px hsl(199, 15%, 40%);
}
.text-shadow-glow-lime {
  text-shadow: 0 0 10px hsl(93, 97%, 71%);
}
.text-shadow-glow-green {
  text-shadow: 0 0 10px hsl(120, 100%, 35%);
}
.text-shadow-glow-emerald {
  text-shadow: 0 0 10px hsl(140, 52%, 55%);
}
.text-shadow-glow-blue {
  text-shadow: 0 0 10px hsl(225, 100%, 68%);
}
.text-shadow-glow-teal {
  text-shadow: 0 0 10px hsl(180, 77%, 44%);
}
.text-shadow-glow-cyan {
  text-shadow: 0 0 10px hsl(221, 100%, 79%);
}
.text-shadow-glow-cobalt {
  text-shadow: 0 0 10px hsl(215, 100%, 34%);
}
.text-shadow-glow-indigo {
  text-shadow: 0 0 10px hsl(276, 100%, 33%);
}
.text-shadow-glow-almost {
  text-shadow: 0 0 10px hsl(259, 84%, 55%);
}
.text-shadow-glow-violet {
  text-shadow: 0 0 10px hsl(300, 76%, 72%);
}
.text-shadow-glow-pink {
  text-shadow: 0 0 10px hsl(350, 100%, 88%);
}
.text-shadow-glow-magenta {
  text-shadow: 0 0 10px hsl(300, 100%, 50%);
}
.text-shadow-glow-crimson {
  text-shadow: 0 0 10px hsl(348, 88%, 46%);
}
.text-shadow-glow-red {
  text-shadow: 0 0 10px hsl(0, 100%, 50%);
}
.text-shadow-glow-clown {
  text-shadow: 0 0 10px hsl(3, 100%, 70%);
}
.text-shadow-glow-orange {
  text-shadow: 0 0 10px hsl(39, 100%, 50%);
}
.text-shadow-glow-amber {
  text-shadow: 0 0 10px hsl(45, 100%, 58%);
}
.text-shadow-glow-yellow {
  text-shadow: 0 0 10px hsl(52, 100%, 68%);
}
.text-shadow-glow-brown {
  text-shadow: 0 0 10px hsl(25, 57%, 51%);
}
.text-shadow-glow-olive {
  text-shadow: 0 0 10px hsl(60, 100%, 32%);
}
.text-shadow-glow-steel {
  text-shadow: 0 0 10px hsl(209, 19%, 57%);
}
.text-shadow-glow-mauve {
  text-shadow: 0 0 10px hsl(277, 100%, 84%);
}
.text-shadow-glow-taupe {
  text-shadow: 0 0 10px hsl(29, 19%, 50%);
}
.text-shadow-glow-champagne {
  text-shadow: 0 0 10px hsl(37, 74%, 88%);
}
.text-shadow-glow-khaki {
  text-shadow: 0 0 10px hsl(47, 47%, 69%);
}
.text-shadow-glow-charcoal {
  text-shadow: 0 0 10px hsl(0, 0%, 60%);
}
.text-shadow-glow-bronze {
  text-shadow: 0 0 10px hsl(29, 75%, 57%);
}
.text-shadow-glow-windstorm {
  text-shadow: 0 0 10px hsl(216, 53%, 66%);
}
.text-shadow-glow-nude {
  text-shadow: 0 0 10px hsl(29, 79%, 85%);
}
.text-shadow-glow-terracotta {
  text-shadow: 0 0 10px hsl(10, 76%, 55%);
}
.text-shadow-glow-coral {
  text-shadow: 0 0 10px hsl(16, 100%, 67%);
}
.text-shadow-glow-army {
  text-shadow: 0 0 10px hsl(69, 34%, 30%);
}
.text-shadow-glow-seashell {
  text-shadow: 0 0 10px hsl(25, 100%, 95%);
}
.text-shadow-glow-sand {
  text-shadow: 0 0 10px hsl(45, 71%, 81%);
}

/* ../metroui-lib/source/components/shapes/shapes.less */
.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.trapezoid {
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.parallelogram {
  --offset: 25%;
  clip-path: polygon(var(--offset) 0%, 100% 0%, calc(100% - var(--offset)) 100%, 0% 100%);
}
.rhomb {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.pentagon {
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.hexagon {
  --offset: 25%;
  clip-path: polygon(var(--offset) 0%, calc(100% - var(--offset)) 0%, 100% 50%, calc(100% - var(--offset)) 100%, var(--offset) 100%, 0% 50%);
}
.heptagon {
  clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}
.octagon {
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.nonagon {
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.decagon {
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
}
.bevel {
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}
.rabbet {
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.left-point {
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}
.right-point {
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.left-chevron {
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}
.right-chevron {
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
.message-shape {
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}
.diagonal {
  position: relative;
  isolation: isolate;
  --skew-angle: 5deg;
  --background: var(--color-primary);
}
.diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewY(calc(-1 * var(--skew-angle)));
  z-index: -1;
  background: var(--background);
}
.diagonal.reverse::after {
  transform: skewY(calc(1 * var(--skew-angle)));
}
.concave {
  --deep: 10%;
  clip-path: polygon(0 0, 50% var(--deep), 100% 0, 100% 100%, 50% calc(100% - var(--deep)), 0 100%);
}
.concave2 {
  --deep: 10%;
  --divider: 2;
  clip-path: polygon(0 0, 50% var(--deep), 100% 0, calc(100% - var(--deep) / var(--divider)) 50%, 100% 100%, 50% calc(100% - var(--deep)), 0 100%, calc(var(--deep) / var(--divider)) 50%);
}
.wavy {
  --mask:
    radial-gradient(
      67.08px at 50% 90px,
      #000 99%,
      #0000 101%) calc(50% - 60px) 0/120px 51% repeat-x,
    radial-gradient(
      67.08px at 50% -60px,
      #0000 99%,
      #000 101%) 50% 30px/120px calc(51% - 30px) repeat-x,
    radial-gradient(
      67.08px at 50% calc(100% - 90px),
      #000 99%,
      #0000 101%) calc(50% - 60px) 100%/120px 51% repeat-x,
    radial-gradient(
      67.08px at 50% calc(100% + 60px),
      #0000 99%,
      #000 101%) 50% calc(100% - 30px)/120px calc(51% - 30px) repeat-x;
  mask: var(--mask);
}
.wavy-top {
  --mask:
    radial-gradient(
      67.08px at 50% 90px,
      #000 99%,
      #0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(
      67.08px at 50% -60px,
      #0000 99%,
      #000 101%) 50% 30px/120px 100% repeat-x;
  mask: var(--mask);
}
.wavy-bottom {
  --mask:
    radial-gradient(
      67.08px at 50% calc(100% - 90px),
      #000 99%,
      #0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(
      67.08px at 50% calc(100% + 60px),
      #0000 99%,
      #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
  mask: var(--mask);
}
.wave {
  clip-path: shape(from 0% 20%, curve to 100% 20% with 25% 0% / 75% 40%, vline to 80%, curve to 0% 80% with 75% 100% / 25% 60%, close);
}

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

/* ../metroui-lib/source/components/sidebar/sidebar.less */
:root {
  --sidebar-width: 240px;
  --sidebar-item-border-radius: 4px;
}
:root {
  --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;
  --sidebar-group-title-color: #191919;
}
.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-group-title-color: #dbdfe7;
}
.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: 100%;
}
.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;
  font-size: 13px;
  user-select: none;
}
.sidebar-menu li {
  position: relative;
  border-radius: var(--sidebar-item-border-radius);
  cursor: pointer;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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;
  border: 2px solid transparent;
  position: relative;
}
.sidebar-menu a .dropdown-caret {
  margin-left: auto;
}
.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;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.sidebar-header ~ .sidebar-menu {
  height: calc(100% - 160px);
}

/* ../metroui-lib/source/components/sidenav/sidenav.less */
:root {
  --sidenav-border-radius: 4px;
  --sidenav-width: 220px;
  --sidenav-width-compact: 54px;
}
:root {
  --sidenav-background: #f6f6f6;
  --sidenav-color: #191919;
  --sidenav-icon-color: #676767;
  --sidenav-counter-color: #191919;
  --sidenav-background-hover: #cecece;
  --sidenav-color-hover: #0a0a0a;
  --sidenav-background-active: #68a3ff;
  --sidenav-color-active: #ffffff;
  --sidenav-border-color: var(--border-color);
}
.dark-side {
  --sidenav-background: #2b2d30;
  --sidenav-color: #dfe1e5;
  --sidenav-icon-color: #dfe1e5;
  --sidenav-counter-color: #dfe1e5;
  --sidenav-background-hover: #43454a;
  --sidenav-color-hover: #ffffff;
  --sidenav-background-active: #468cff;
  --sidenav-color-active: #ffffff;
  --sidenav-border-color: var(--border-color);
}
.sidenav {
  display: block;
  position: relative;
  list-style: none inside;
  height: 100%;
  width: var(--sidenav-width-compact);
  margin: 0;
  background-color: var(--sidenav-background);
  color: var(--sidenav-color);
  padding: 10px 0;
  transition: width 0.3s ease-in-out;
}
.sidenav li {
  margin: 0 6px;
  font-size: 14px;
}
.sidenav li,
.sidenav a {
  position: relative;
  color: inherit;
  border-radius: var(--sidenav-border-radius);
}
.sidenav > li {
  background: transparent;
}
.sidenav > li.stick-left::before,
.sidenav > li.stick-right::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 42px;
  border-radius: var(--sidenav-border-radius) 0 0 var(--sidenav-border-radius);
  background-color: inherit;
  top: 0;
  left: -12px;
}
.sidenav > li.stick-right::before {
  left: auto;
  right: -12px;
  border-radius: 0 var(--sidenav-border-radius) var(--sidenav-border-radius) 0;
}
.sidenav a {
  display: flex;
  align-items: center;
  overflow: hidden !important;
  width: 42px;
  padding: 0.625rem;
  text-decoration: none;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}
.sidenav a:hover {
  text-decoration: none;
}
.sidenav a > *:not(.icon, .badge) {
  visibility: collapse;
}
.sidenav li + li {
  border-top: 1px solid var(--sidenav-border-color);
}
.sidenav .icon {
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 20px;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 10px;
  object-fit: cover;
  color: var(--sidenav-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 20px;
}
.sidenav .caption {
  font-size: 14px;
}
.sidenav .title {
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  cursor: default;
  align-items: center;
  justify-content: flex-start;
  display: none;
}
.sidenav .title .action {
  margin-left: auto;
}
@media (hover: hover) {
  .sidenav li:not(.title):hover {
    background-color: var(--sidenav-background-hover);
    color: var(--sidenav-color-hover);
  }
}
@media (hover: none) {
  .sidenav li:not(.title):active {
    background-color: var(--sidenav-background-hover);
    color: var(--sidenav-color-hover);
  }
}
.sidenav li:not(.title).active {
  background-color: var(--sidenav-background-active);
  color: var(--sidenav-color-active);
}
.sidenav .dropdown-caret {
  margin-left: auto;
}
.sidenav .badge {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 11px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.sidenav.expanded {
  width: var(--sidenav-width);
}
.sidenav.expanded a {
  width: auto;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
}
.sidenav.expanded a > *:not(.icon) {
  visibility: visible;
}
.sidenav.expanded .title {
  display: flex;
}
.sidenav.expanded .badge {
  top: 21px;
  transform: translateY(-50%);
  right: 8px;
}
.sidenav .dropdown-toggle::after {
  content: "\25e2";
  position: absolute;
  right: 0;
  top: 26px;
  font-size: 12px;
  color: var(--sidenav-icon-color);
}
.sidenav .d-menu {
  --d-menu-background: var(--sidenav-background);
  --d-menu-color: var(--sidenav-color);
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
}
.sidenav .d-menu a {
  width: auto !important;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
}
.sidenav .d-menu.drop-up {
  top: auto !important;
  bottom: 0 !important;
}
.sidenav .d-menu .caption {
  visibility: visible !important;
}
.sidenav .d-menu .badge {
  top: 21px;
  transform: translateY(-50%);
  right: 8px;
}
.sidenav.expanded .dropdown-toggle::after {
  display: none;
}
.sidenav.expanded .d-menu {
  left: 0;
  position: relative;
  box-shadow: none;
  width: 100%;
  float: none;
  border-radius: 0 !important;
  padding: 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--sidenav-border-color);
}
.sidenav.expanded .d-menu li {
  margin: 0;
}
.sidenav.expanded .d-menu li:not(:first-child) {
  border-top: 1px solid var(--border-color);
}
.sidenav.expanded .d-menu a {
  border-radius: 0 !important;
}
.stick-color-gray::before {
  background-color: hsl(0, 0%, 80%) !important;
}
.stick-color-gray-blue::before {
  background-color: hsl(210, 26%, 54%) !important;
}
.stick-color-gray-mouse::before {
  background-color: hsl(199, 15%, 40%) !important;
}
.stick-color-lime::before {
  background-color: hsl(93, 97%, 71%) !important;
}
.stick-color-green::before {
  background-color: hsl(120, 100%, 35%) !important;
}
.stick-color-emerald::before {
  background-color: hsl(140, 52%, 55%) !important;
}
.stick-color-blue::before {
  background-color: hsl(225, 100%, 68%) !important;
}
.stick-color-teal::before {
  background-color: hsl(180, 77%, 44%) !important;
}
.stick-color-cyan::before {
  background-color: hsl(221, 100%, 79%) !important;
}
.stick-color-cobalt::before {
  background-color: hsl(215, 100%, 34%) !important;
}
.stick-color-indigo::before {
  background-color: hsl(276, 100%, 33%) !important;
}
.stick-color-almost::before {
  background-color: hsl(259, 84%, 55%) !important;
}
.stick-color-violet::before {
  background-color: hsl(300, 76%, 72%) !important;
}
.stick-color-pink::before {
  background-color: hsl(350, 100%, 88%) !important;
}
.stick-color-magenta::before {
  background-color: hsl(300, 100%, 50%) !important;
}
.stick-color-crimson::before {
  background-color: hsl(348, 88%, 46%) !important;
}
.stick-color-red::before {
  background-color: hsl(0, 100%, 50%) !important;
}
.stick-color-clown::before {
  background-color: hsl(3, 100%, 70%) !important;
}
.stick-color-orange::before {
  background-color: hsl(39, 100%, 50%) !important;
}
.stick-color-amber::before {
  background-color: hsl(45, 100%, 58%) !important;
}
.stick-color-yellow::before {
  background-color: hsl(52, 100%, 68%) !important;
}
.stick-color-brown::before {
  background-color: hsl(25, 57%, 51%) !important;
}
.stick-color-olive::before {
  background-color: hsl(60, 100%, 32%) !important;
}
.stick-color-steel::before {
  background-color: hsl(209, 19%, 57%) !important;
}
.stick-color-mauve::before {
  background-color: hsl(277, 100%, 84%) !important;
}
.stick-color-taupe::before {
  background-color: hsl(29, 19%, 50%) !important;
}
.stick-color-champagne::before {
  background-color: hsl(37, 74%, 88%) !important;
}
.stick-color-khaki::before {
  background-color: hsl(47, 47%, 69%) !important;
}
.stick-color-charcoal::before {
  background-color: hsl(0, 0%, 60%) !important;
}
.stick-color-bronze::before {
  background-color: hsl(29, 75%, 57%) !important;
}
.stick-color-windstorm::before {
  background-color: hsl(216, 53%, 66%) !important;
}
.stick-color-nude::before {
  background-color: hsl(29, 79%, 85%) !important;
}
.stick-color-terracotta::before {
  background-color: hsl(10, 76%, 55%) !important;
}
.stick-color-coral::before {
  background-color: hsl(16, 100%, 67%) !important;
}
.stick-color-army::before {
  background-color: hsl(69, 34%, 30%) !important;
}
.stick-color-seashell::before {
  background-color: hsl(25, 100%, 95%) !important;
}
.stick-color-sand::before {
  background-color: hsl(45, 71%, 81%) !important;
}
.sidenav .dropdown-caret {
  display: none;
}
.sidenav .dropdown-toggle::after {
  display: block !important;
}
.layout-sidenav {
  display: grid;
  grid-template-columns: var(--sidenav-width-compact) 1fr;
  grid-gap: 4px;
  transition: grid-template-columns 0.3s ease-in-out;
  height: 100%;
}
.layout-sidenav:has(.sidenav.expanded) {
  grid-template-columns: var(--sidenav-width) 1fr;
}

/* ../metroui-lib/source/components/sidenav-counter/sidenav-counter.less */
:root {
  --sidenav-counter-width: 220px;
  --sidenav-counter-border-radius: 4px;
}
: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: 60px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0 6px;
  background-color: var(--sidenav-counter-background);
  color: var(--sidenav-counter-color);
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.sidenav-counter::-webkit-scrollbar {
  display: none !important;
}
.sidenav-counter li,
.sidenav-counter a {
  display: block;
  position: relative;
  height: 52px;
  line-height: 52px;
  background-color: inherit;
  color: inherit;
  width: 100%;
  border-radius: var(--sidenav-counter-border-radius);
}
.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.8rem;
  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: var(--sidenav-counter-width);
}
.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;
}

/* ../metroui-lib/source/components/sidenav-simple/sidenav-simple.less */
:root {
  --sidenav-simple-width: 220px;
  --sidenav-simple-border-radius: 4px;
}
:root {
  --sidenav-simple-background: #f6f6f6;
  --sidenav-simple-color: #191919;
  --sidenav-simple-icon-color: #191919;
  --sidenav-simple-counter-color: #191919;
  --sidenav-simple-background-hover: #cecece;
  --sidenav-simple-color-hover: #0a0a0a;
  --sidenav-simple-background-active: #68a3ff;
  --sidenav-simple-color-active: #ffffff;
}
.dark-side {
  --sidenav-simple-background: #2b2d30;
  --sidenav-simple-color: #dfe1e5;
  --sidenav-simple-icon-color: #dfe1e5;
  --sidenav-simple-counter-color: #dfe1e5;
  --sidenav-simple-background-hover: #43454a;
  --sidenav-simple-color-hover: #ffffff;
  --sidenav-simple-background-active: #468cff;
  --sidenav-simple-color-active: #ffffff;
}
.sidenav-simple {
  display: block;
  position: relative;
  list-style: none inside;
  width: 64px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0 6px;
  background-color: var(--sidenav-simple-background);
  color: var(--sidenav-simple-color);
  height: 100%;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow: hidden;
}
.sidenav-simple::-webkit-scrollbar {
  display: none !important;
}
.sidenav-simple li,
.sidenav-simple a {
  position: relative;
  background-color: inherit;
  color: inherit;
  width: 100%;
  border-radius: var(--sidenav-simple-border-radius, 4px);
}
.sidenav-simple a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  padding: 0.75rem;
}
.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;
  margin-right: 0.75rem;
}
.sidenav-simple .title {
  margin: 0;
  white-space: nowrap;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: none;
}
.sidenav-simple li:hover {
  background-color: var(--sidenav-simple-background-hover);
  color: var(--sidenav-simple-color-hover);
}
.sidenav-simple li:active {
  background-color: var(--sidenav-simple-background-active);
  color: var(--sidenav-simple-color-active);
}
.sidenav-simple .active,
.sidenav-simple li.active:hover {
  background-color: var(--sidenav-simple-background-active);
  color: var(--sidenav-simple-color-active);
}
.sidenav-simple[dir=rtl] .icon {
  left: 0.725rem;
}
.sidenav-simple.expanded {
  width: var(--sidenav-simple-width);
}
.sidenav-simple.expanded .title {
  display: block;
}

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

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

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

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

/* ../metroui-lib/source/components/stack-menu/stack-menu.less */
:root {
  --stack-menu-icon-size: 18px;
  --stack-menu-chevron: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 6'%3E%3Cpath d='M5.5 6L11 .7l-.73-.7L5.5 4.6.73 0 0 .7z' fill='%23595959'/%3E%3C/svg%3E");
  --stack-menu-background: #ffffff;
  --stack-menu-color: #191919;
  --stack-menu-title-color: #303030;
  --stack-menu-border-color: #e7e7e7;
  --stack-menu-item-background-hover: #e8e8e8;
  --stack-menu-item-color-hover: #000000;
}
.dark-side {
  --stack-menu-chevron: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 6'%3E%3Cpath d='M5.5 6L11 .7l-.73-.7L5.5 4.6.73 0 0 .7z' fill='%23e0e0e0'/%3E%3C/svg%3E");
  --stack-menu-background: #343637;
  --stack-menu-color: #dbdfe7;
  --stack-menu-title-color: #dbdfe7;
  --stack-menu-border-color: #2b2d30;
  --stack-menu-item-background-hover: #1e1f22;
  --stack-menu-item-color-hover: #ffffff;
}
.stack-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 320px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background: var(--stack-menu-background);
  color: var(--stack-menu-color);
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(-110%);
  transition: transform 0.3s;
  border: 1px solid transparent;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
}
.stack-menu.open {
  transform: translateX(0);
}
.stack-menu .title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--stack-menu-title-color);
  letter-spacing: 0.15px;
  margin: 0;
  padding: 10px 16px 16px;
  text-decoration: none;
}
.stack-menu ul {
  list-style: none;
  padding: 0 0 8px;
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 48px);
  overflow-y: auto;
}
.stack-menu li {
  display: block;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.stack-menu li a {
  position: relative;
  display: flex;
  height: 48px;
  border-top: 1px solid var(--stack-menu-border-color);
  cursor: pointer;
  padding: 0 0.5rem;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--stack-menu-color);
  font-weight: 400;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.stack-menu li a .icon {
  width: var(--stack-menu-icon-size);
  height: var(--stack-menu-icon-size);
  line-height: var(--stack-menu-icon-size);
  font-size: var(--stack-menu-icon-size);
  opacity: 1;
  margin-right: 8px;
  object-fit: cover;
}
.stack-menu li a::after {
  content: "";
  position: absolute;
  background-image: var(--stack-menu-chevron);
  top: calc(50% - 3px);
  transform: rotate(270deg);
  width: 11px;
  height: 6px;
  right: 14px;
  display: none;
}
.stack-menu li:not([data-menu-id=none]) a::after {
  display: block;
}
.stack-menu li.-initial {
  transform: translateX(-100%);
}

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

/* ../metroui-lib/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: hsl(0, 0%, 55%);
}
.streamer .stream-event {
  position: relative;
  user-select: none;
}
.streamer .stream-event.selected {
  box-shadow: 0 0 0 1px #e0eaff !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;
  }
}

/* ../metroui-lib/source/components/switch/switch.less */
:root {
  --switch-background: #e9e9e9;
  --switch-background-checked: #191919;
  --switch-background-disabled: #e8e8e8;
  --switch-toggle-color: #fff;
  --switch-toggle-disabled: #ccc;
  --switch-text-color: #000;
  --switch-text-color-checked: #fff;
  --switch-focus-color: #e8e8e8;
}
.dark-side {
  --switch-background: #232527;
  --switch-background-checked: #474748;
  --switch-toggle-color: #fff;
  --switch-toggle-disabled: #3e4145;
  --switch-text-color: #efefef;
  --switch-text-color-checked: #fff;
  --switch-focus-color: #191919;
}
.switch {
  height: 36px;
  padding: 8px 0;
  margin: 0 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: auto;
  flex-wrap: nowrap;
}
.switch > input {
  appearance: none;
  position: relative;
  width: 48px;
  height: 20px;
  order: 2;
  background: var(--switch-background);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s background-color;
  margin: 0;
  padding: 0;
  border-color: transparent !important;
}
.switch > input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--switch-toggle-color);
  border-radius: 50%;
  transition: 0.3s;
  opacity: 1;
  border: 1px solid transparent;
  transform: none;
}
.switch > input::after {
  position: absolute;
  content: attr(data-off);
  top: 5px;
  left: 2px;
  transform: translate(20px, 0);
  color: var(--switch-text-color);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 400;
  transition: 0.3s transform;
  line-height: 1;
}
.switch > input:checked {
  background: var(--switch-background-checked);
}
.switch > input:checked::before {
  transform: translateX(28px);
}
.switch > input:checked::after {
  content: attr(data-on);
  transform: translateX(6px);
  color: var(--switch-text-color-checked);
}
.switch > input:disabled {
  background: var(--switch-background-disabled);
}
.switch > input:disabled::before {
  background: var(--switch-toggle-disabled);
}
.switch .caption-prepend,
.switch .caption-append {
  font-size: 12px;
  margin: 0 6px;
  position: relative;
  white-space: nowrap;
}
.switch .caption-prepend {
  order: 1;
}
.switch .caption-append {
  order: 3;
}
.switch > input[type=checkbox]:disabled ~ .caption-prepend,
.switch > input[type=checkbox]:disabled ~ .caption-append {
  color: var(--switch-toggle-disabled);
}
.switch > input[type=checkbox]:focus {
  box-shadow: 0 0 0 3px var(--switch-focus-color);
}
.switch.material > input {
  height: 17px;
}
.switch.material > input::before {
  top: -6px;
  left: -4px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--switch-toggle-color);
  box-shadow: 0 2px 10px #00000029, 0 2px 5px #00000042;
}
.switch.material > input::after {
  top: 4px;
  transform: translateX(22px);
}
.switch.material > input:checked::before {
  transform: translateX(28px);
}
.switch.material > input:checked::after {
  transform: translateX(4px);
}
.switch.material .caption-prepend {
  margin-right: 8px;
}
.switch.material .caption-append {
  margin-left: 8px;
}
.switch:has(input:disabled) {
  cursor: default;
}
.switch-gray {
  --switch-background-checked: hsl(0, 0%, 80%) !important;
}
.switch-gray-blue {
  --switch-background-checked: hsl(210, 26%, 54%) !important;
}
.switch-gray-mouse {
  --switch-background-checked: hsl(199, 15%, 40%) !important;
}
.switch-lime {
  --switch-background-checked: hsl(93, 97%, 71%) !important;
}
.switch-green {
  --switch-background-checked: hsl(120, 100%, 35%) !important;
}
.switch-emerald {
  --switch-background-checked: hsl(140, 52%, 55%) !important;
}
.switch-blue {
  --switch-background-checked: hsl(225, 100%, 68%) !important;
}
.switch-teal {
  --switch-background-checked: hsl(180, 77%, 44%) !important;
}
.switch-cyan {
  --switch-background-checked: hsl(221, 100%, 79%) !important;
}
.switch-cobalt {
  --switch-background-checked: hsl(215, 100%, 34%) !important;
}
.switch-indigo {
  --switch-background-checked: hsl(276, 100%, 33%) !important;
}
.switch-almost {
  --switch-background-checked: hsl(259, 84%, 55%) !important;
}
.switch-violet {
  --switch-background-checked: hsl(300, 76%, 72%) !important;
}
.switch-pink {
  --switch-background-checked: hsl(350, 100%, 88%) !important;
}
.switch-magenta {
  --switch-background-checked: hsl(300, 100%, 50%) !important;
}
.switch-crimson {
  --switch-background-checked: hsl(348, 88%, 46%) !important;
}
.switch-red {
  --switch-background-checked: hsl(0, 100%, 50%) !important;
}
.switch-clown {
  --switch-background-checked: hsl(3, 100%, 70%) !important;
}
.switch-orange {
  --switch-background-checked: hsl(39, 100%, 50%) !important;
}
.switch-amber {
  --switch-background-checked: hsl(45, 100%, 58%) !important;
}
.switch-yellow {
  --switch-background-checked: hsl(52, 100%, 68%) !important;
}
.switch-brown {
  --switch-background-checked: hsl(25, 57%, 51%) !important;
}
.switch-olive {
  --switch-background-checked: hsl(60, 100%, 32%) !important;
}
.switch-steel {
  --switch-background-checked: hsl(209, 19%, 57%) !important;
}
.switch-mauve {
  --switch-background-checked: hsl(277, 100%, 84%) !important;
}
.switch-taupe {
  --switch-background-checked: hsl(29, 19%, 50%) !important;
}
.switch-champagne {
  --switch-background-checked: hsl(37, 74%, 88%) !important;
}
.switch-khaki {
  --switch-background-checked: hsl(47, 47%, 69%) !important;
}
.switch-charcoal {
  --switch-background-checked: hsl(0, 0%, 60%) !important;
}
.switch-bronze {
  --switch-background-checked: hsl(29, 75%, 57%) !important;
}
.switch-windstorm {
  --switch-background-checked: hsl(216, 53%, 66%) !important;
}
.switch-nude {
  --switch-background-checked: hsl(29, 79%, 85%) !important;
}
.switch-terracotta {
  --switch-background-checked: hsl(10, 76%, 55%) !important;
}
.switch-coral {
  --switch-background-checked: hsl(16, 100%, 67%) !important;
}
.switch-army {
  --switch-background-checked: hsl(69, 34%, 30%) !important;
}
.switch-seashell {
  --switch-background-checked: hsl(25, 100%, 95%) !important;
}
.switch-sand {
  --switch-background-checked: hsl(45, 71%, 81%) !important;
}

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

/* ../metroui-lib/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;
  --t-menu-dropdown-color: #191919;
}
.dark-side {
  --t-menu-border-color: #484b4c;
  --t-menu-background: #343637;
  --t-menu-color: #dbdfe7;
  --t-menu-dropdown-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-dropdown-color) transparent;
  transform: rotate(0);
}
.t-menu .dropdown-toggle:before {
  display: none;
}
.t-menu .dropdown-caret {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ../metroui-lib/source/components/v-menu/v-menu.less */
:root {
  --v-menu-border-color: #e9e9e9;
  --v-menu-divider-color: #e9e9e9;
  --v-menu-background: #ffffff;
  --v-menu-title-color: #515151;
  --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-title-color: #ffffff;
  --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: var(--v-menu-background);
  color: var(--v-menu-title-color);
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  padding: 0 8px;
  border: 0;
  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: var(--v-menu-background);
  cursor: default;
  border: 0;
}
.v-menu .dropdown-caret {
  margin-left: auto;
}
.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;
}

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

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

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

/* ../metroui-lib/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: hsl(221, 100%, 79%);
}
.wizard > section.current,
.wizard > .section.current,
.wizard > section.complete,
.wizard > .section.complete {
  transition: width 0.3s ease;
}
.wizard > section.complete,
.wizard > .section.complete {
  cursor: pointer;
}
.wizard .action-bar {
  display: flex;
  flex-flow: row nowrap;
  justify-content: right;
  position: absolute;
  bottom: 1rem;
  left: 41px;
}
.wizard .action-bar::after {
  display: block;
  clear: both;
  content: "";
}
.wizard .action-bar > * {
  margin: 1px;
}
.wizard .action-bar .wizard-btn-help,
.wizard .action-bar .wizard-btn-next,
.wizard .action-bar .wizard-btn-prev,
.wizard .action-bar .wizard-btn-finish {
  font-size: 20px !important;
  font-family: sans-serif;
}
.wizard > section {
  border-color: hsl(221, 100%, 29%);
}
.wizard > section:nth-child(1) {
  border-color: hsl(221, 100%, 79%);
}
.wizard > section:nth-child(2) {
  border-color: hsl(221, 100%, 74%);
}
.wizard > section:nth-child(3) {
  border-color: hsl(221, 100%, 69%);
}
.wizard > section:nth-child(4) {
  border-color: hsl(221, 100%, 64%);
}
.wizard > section:nth-child(5) {
  border-color: hsl(221, 100%, 59%);
}
.wizard > section:nth-child(6) {
  border-color: hsl(221, 100%, 54%);
}
.wizard > section:nth-child(7) {
  border-color: hsl(221, 100%, 49%);
}
.wizard > section:nth-child(8) {
  border-color: hsl(221, 100%, 44%);
}
.wizard > section:nth-child(9) {
  border-color: hsl(221, 100%, 39%);
}
.wizard > section:nth-child(10) {
  border-color: hsl(221, 100%, 29%);
}
.wizard > section.complete {
  border-color: hsl(0, 0%, 45%);
}
.wizard > section.complete:nth-child(1) {
  border-color: hsl(0, 0%, 95%);
}
.wizard > section.complete:nth-child(2) {
  border-color: hsl(0, 0%, 90%);
}
.wizard > section.complete:nth-child(3) {
  border-color: hsl(0, 0%, 85%);
}
.wizard > section.complete:nth-child(4) {
  border-color: hsl(0, 0%, 80%);
}
.wizard > section.complete:nth-child(5) {
  border-color: hsl(0, 0%, 75%);
}
.wizard > section.complete:nth-child(6) {
  border-color: hsl(0, 0%, 70%);
}
.wizard > section.complete:nth-child(7) {
  border-color: hsl(0, 0%, 65%);
}
.wizard > section.complete:nth-child(8) {
  border-color: hsl(0, 0%, 60%);
}
.wizard > section.complete:nth-child(9) {
  border-color: hsl(0, 0%, 55%);
}
.wizard > section.complete:nth-child(10) {
  border-color: hsl(0, 0%, 45%);
}
@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;
  }
}

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

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

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

/* ../metroui-lib/source/icons/font.less */
@font-face {
  font-family: "metro-ui-icons-core-set";
  font-weight: normal;
  font-style: normal;
  font-display: block;
  src: url(data:application/font-woff;base64,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BQQBBQgBAggCAQwJBAsICQgBBAEIBAoBBAEECQEEAQQBAw4HAgEDAQQBBQMBBgQMAwcCBwwBAQICAQgEBQIHAwIKAQICBQIHAQUEAwwCAxoKBg8BBwcGBQQEAggEAwEEAQICBQkDAQQBBQYEAQUCAQUDCwECAwEBAwQFBgMKAgIBAQYFAQUBAwcEAQ4EAQICBQMFAgYJCwEBBgQIBAEHBQQFAwgIBQMDAgEBAwIFAgUJBQEHBQQDAwQBBAwGAgsEBQIBAgQCAQMCAQEDBgMEAggDCwMBAwECAQEBAQMCBgQDBQQGAwEGAQECBgICAgMCAgMLBAUDAgcFBAQDBAgFDRMQCwICAQMCBgEEDgICBQMIAgECAQMDAgUDCQQECgEBAggBCAMFAQEHAwEDAQUDAgMBAgEBAQEBAQUDAgUBAgIBHDsfOzc3YCgpHgIBAwMCBAIBBgIBAgIEAQEBAQEVFwECAhYBAxACAg0BCgMFQREBBAIBAQECAQMFBAUFAQYJCQcGAQMEAQ4CBAEEBwkJNgEIBQwFCAEEAQMCAwsCAwsBEQMDBQUDBQIFAQQEAQMHBBAKAQIYBA8CAwIBAg8CAgEIAQUCBAECAwIBBQUDAwIBBgcGBCUHGAEEDQULBAECAQMBAQQCBAIDAQMDAwMEBAEBBQQBBQEFAwEFAg0BAg8CHQMEDAEEBgIKAwUTAwUBBCACBAMDBwMEAwIJBQIHAgEDAQ0FBAamAQQCBAEDCRYCBwEEAQEEAwIDBAEBAVMGDgICAQEDAgIGAgMGCQMDARwFBAEBAQQCBAEFBQIDAQYCAQMBAwMDDAUCBAUDAQ0HBAYCAQgEAQEBAj4gBwkJByAHCQnBAQIBBBwBCwEDBQMCAQMHBQICAQcGBSgDCgEDBQIHBQYBBwYFCgEGAgUBAwMFAQICAQMdAQIBAQFFAQEBAwIKAkAoKIteXWpqXV6LKCgoKIteXWpqXV6LKCgCKwEBAwQCAQECAgQEAQECBAIHCQQDAQQDEQEDAQUDCgoDDgUDCAQPAhYQCQERAwEPBwYBDQIOAQYOBgcOBytfM0hCQm4pKhcMFgILBAsFBAkFAy4RGA8NARUFAwcEGwEEDAcCGAIDAQYKAw0CBg0MAgIHBAoCBgwBAQEJBgUFDgMEFgEBAQEBCgIDAQEBA5EKBAUDAQECAgYGBAEIDQoCAwIDCQcJAgEIowIDAiMEAQsCAgoEAg0EAQEFBQMGAwMJBAEBAgMDBgYECAcDAgIPAgkDAg0CAwMDCQEBAgITBQMEAgEOAQEDAgEGAwYFBAYDBA4FAgQLAQECBQQBGQIGAwUCAgIJBxkDAgEBAQQDAwUBAgcMBAEGAgEDBwEBBQUEAwQCBAgDBQgEAQQBDgMBBwQCBwEDBwMLBAEBAQMKBgYDCRIEBwEKBBwWFh8JCAgIHRUVGgEDAQQBCQUBAQIBAQQBAQIBAQIFBAIDAgQCBAUCBAEDBAESCwELBAEJBQQBAQMDAQIBAQELAwQBAgYHAwEEAwkGAQQFBwYEAQUCAg0JAgsDAgIBAQIBBQYOAgkCAQEBAQQGAgMHAQMHAgQKAwIBAwENBAECAQUHBAQCAQwBAwICAwECBwQBEgMIAwIBBAcHBQMFBAMNBwMCEgYIAgUBAQIIBAIDAQEDAQECAQEBAgEBAwEBAwEFAwsCAQgDAgULAQIOBwUKAg8EBAcBCAIMAgMDAQMCAgMCAQIBBQENCRcFBwQLBAEEAgEJAQQGAwUGAgcEBgQEBAQBAQEBAREFBwMCBgQFBwQQAgEBBQECAQIDAgwBAQIBAwEDAQEBAwMCAQICAgECAQUFAgECBQEEAgkECwUGBgMDBQwDAwECAxMNDBECAgICDwISBwUHAggDAwgEDwMCAQMDBwQFBwMCAgQLAQMCAgQBBQUEAwgFAwQBBgQGAwMBAQIDBQQDBQICBwkPDjYmJS8IDwIBBAUBBAMBAgIDAgEHAwEDAQIBAQEsYTQCAwIDBAEBDAMFBAQCEa8JAQMFAwIEAQ4BCQYHCQIEAQUDBgYDCQcHCdABAgEHCggGAQIFAgMKAwMKBAEUAyACGgYJBQECAgoIDgkRAQMQBg4CBQEDBAMJBQoCHgILCA4HFQkNCgoOBwgBBAsFBBQEAwEIBAQGAw4EAxcGAgsCCwMCBgIICwgDBgMGBAUCCAMCAgENAgYCAQIHAgMEBQMGBAUBAQEBGQQEAgEDBgQEAQIFCAQPAwsCBRADBAgECAEEGAICrAMDAgICCQYYDgIDBwQCBAkBAgEEAwICRwIDAQMCAgUBAwcHCQMFAx8EBQMBBAMDAgQDCQYDBAYBBAEBAQgDAgYFBAMEBwUqAgECAVIJBwcJCQcHCf7lAQIBAgIBAgEBAgICAwMDBAEGAgETBAMB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AQEBAQMBAQMCAQEBAQICBAIBBAIBAgEBAwECBAMJFQwMGQ4NHQ4PHg8DCAQBBAICAwIEBwQDCAMCAwICAwIEBgQDBwMCAwEBAgECAQMGAwICAgEDAgMFAwMFAgEBASYaAQEDBQMBAwIBAwICBAIECgUFCgYDBQMDBgMCAwIBAwIDBwMBAQEBAgEBBAEEBgQDBwQCAwICAwIEBwMEBwQCAwICAwIEBwMPGw4NGQsMFAkJEAcBAwICAQIBAwEBAgEBAQEBAQIBAQEBAQEBAQEBGiRKAgEBAQEBAQECAQEBAQEBAQIBAQMCAgECAgMCAQQCAQEBAQIBAgQCCBMKCxYMDBkNDBoNBAYDAgMCAQMCAwYEAwYDAgMBAgMBAwYDAwUDAgICAQEBAgMFAwEDAQEDAQIFAwIEAwQIBAQGAwEDAQIDAQIDAQMFAgEBFyMDAQECBQMCBgICAgIBAwEDBgIBAgEBAQIDAQMGAwMGAwIDAQIDAQMHAwMGAwIDAQIDAgMGAwwYDAsVCgoRCAgNBQICAQEBAQIBAgEBAgEBAQECAQEBAQEBAQEBAQEeFgEBAQEBAQEBAQECAQEBAQEBAwEBAwEBAQEBAQECAwECBAEBAgEBAgECBAIIEwoLFgwMGQwNGg0DBwMCAwECAwIDBgMEBgMBAwIBAwIDBgMDBQMCAgICAQEBAwUDAQMBAQMBAgUCAwQDBAgEAwcDAQMBAgMBAgMBAgUDAQEXIgQCBQMCBgICAgIBAwEDBgIBAgEBAQIDAQMGAwMGAwIDAQIDAQMHAwMGAwIDAQIDAgMGAwwYDAsVCgoRCAgNBQICAQEBAQIBAgEBAgEBAQECAQEBAQEBAQEBAQEfFgG+AwUDAgICAQMCAgQCBQkFBQoGAwYCAwYDAgMCAQMCAwcDAQEBAQIBAQQBBAcDAwcEAgMCAgMCBAcDBAcEAgMCAgMCBAcEDhwNDRkLDBQKCQ8HAQMCAgECAgIBAQIBAQEBAQECAQEBAQEBAQEBARolAQEBAQEBAQECAQEBAQEBAQEBAQEBAgEBAQEBAQEDAQEDAgEBAQECAgQCAQQCAQIBAQMBAgQDCRUMDBkODR0ODx4PAwgEAQQCAgMCBAcEAwgDAgMCAgMCBAYEAwcDAgMBAQIBAgEDBgMCAgIBAwIDBQMDBQIBASYaAQEDBQMCAgIBAwICBAIFCQUFCgYD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AQoHATcDDQcGBQQECwUDBwQDBQIGAwQFCgQVAwUCAgwGBwgCAgUDAgkGAQICBgcCAQsKEgkGDQICBgcJFAoBAgEGCQIBBwdZCBEIBg0EBAMGCREKAgMCBQgDAwUGTQcOBgUOBQUBBQYPCAIGAwQGAwUBBf8IEQgHCwEJCAgSCQcKCgEbCScmVSIiIiJVJicJCScmVSIiIiJVJicJWWkKAQEBAQEBAQIBAQEBAgECAQECAQECAQICAQICAQEDAgEDAQIDAgEDAgEEAgEEAQIEAgIDAgIFAgIDAgMEAwIEAgIFAwIEAgMGAwIEAgMHBAIDAgULBgYLBQIDAgMHBAIEAgMGAgMEAgIGAgIEAgIFAgIEAgIFAgEEAgIEAgEEAQIEAQIDAQIDAgEDAQEDAgECAQICAQICAQECAQEBAQECAQEBAQIBAQEBAQEBCmpYzQdrW1trBwECBQMBAQEDBgMDBwMBAQEDBwQDBwQBAQEEBwMEBwQCAQMHBAMHAwECAQMGAwQGAgECAwUDAwQDAQEEBwMBAQIBAQIBAQMHBAEBAQIEAwMFAwEBAQMGAwMGAwECAQMHAwQHAwECAQMHBAMHBAECBAcDAQMHAwEBAQMHAwMGAwEBAQMFAwEBAQEBAQECAQEBAQIBAgEBAgEBAgEBAwEBAgIBAwIBAgIBBAECAwECAwICAwICBQIBAwICBQMCAwECBQMCBAICBgMCAwIDBwMCAwIECAQCAgIFCwYGCwUCAgEECQMCBAIDBgMCBAIDBQMCBAICBQMBAwICBgICAgICBQICAwIBBAIBAwECBAECAgECAwECAgEBAwEBAgEBAgEBAQEBAgEBAQECAQEBAQEBAQECBQMBAQEDBgMDBwMBAQEDBwQDBwQBAQEEBwMEBwQCAQMHBAMHAwECAQMGAwQGAgECAwUDAwQDAQEEBwMBAQIBAQIBAQMHBAEBAQIFAgMFAwEBAQMGAwMGAwECAQMHAwQHAwECAQMHBAMHBAECBAcDAQMHAwEBAQMHAwMGAwEBAQMFA/4AHhX+iBUeHhUBeBUe/nerBwoKB6sHCgoHEQoHRQcKCgdFBwq8iQcKCgeJBwoKB6sHCgoHqwcKCgdEuwgKCgi7BwoKAfMBCwcIEAkHCgoHCRIJBwl+BAUBAQMNBwkSCAYDAwQOBggQCTQJEgoGBwIMBwoUCQcHAwIMygQJ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BAAAAAQAAAAEAAAABAAAAAQeAAAEKAAABAAAAAQAAAAEAP/+BAAAAAQAAAAEwAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABIAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAFAAAABAAAAAQAAAAEAAAABEAAAAQAAAAEAAAABIAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAUAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEQAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAASAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABEAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAA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AAGEMAABhMwAAYVoAAGF9AABhqQAAYcQAAGIIAABiHQAAYjIAAGJxAABikgAAYsQAAGL6AABjFwAAYzsAAGNeAABjlgAAY9oAAGPpAABj+AAAZCQAAGQ6AABkRwAAZHAAAGSyAABkyQAAZOwAAGUSAABlPQAAZWkAAGWWAABlrAAAZcEAAGXcAABl+gAAZhsAAGY2AABmUAAAZmcAAGaaAABmvgAAZu0AAGcQAABnKgAAZ04AAGeGAABnmgAAZ8MAAGhQAABowgAAaNwAAGkMAABpIgAAaUIAAGlrAABpfQAAaZgAAGmvAABpwwAAadIAAGn7AABqIgAAakMAAGpmAABqjgAAaqEAAGq+AABq+wAAayAAAGs8AABrcgAAa4EAAGuXAABrrQAAa9oAAGwOAABsSQAAbG4AAGx1AABspQAAbNIAAGzoAABtRQAAbZkAAG4jAABuNgAAbmwAAG6EAABu1AAAbzkAAHJXAABzyAAAc+MAAHXlAAB2EQAAdoMAAHcXAAB4cwAAePsAAHmXAAB6CwAAepUAAHqxAAB7HAAAe7QAAHvJAAB8VwAAfHIAAH0dAAB9ngAAfjkAAH7JAAB/QgAAf8kAAIBmAACBCAAAgacAAII9AACCjQAAgxIAAINUAACDhgAAg7UAAIPTAACEJgAAhK8AAITCAACFIAAAhW8AAIWVAACF7wAAhgwAAIcrAACHiAAAh9gAAIf2AACLKwAAjlgAAI6RAACPOAAAj48AAI/cAACQJQAAkFAAAJCAAACQ5wAAkSYAAJE6AACRTAAAkXcAAJGtAACTAgAAk0EAAJNkAACToAAAk8QAAJPdAACT+gAAlCEAAJRZAACUlAAAlS4AAJV3AACVowAAljcAAJZxAACWmAAAlr8AAJbhAACW+wAAlxQAAJdJAACXfQAAl6EAAJfQAACX9gAAmB8AAJg7AACYcwAAmJcAAJjGAACY9QAAmRwAAJlnAACZkwAAmbMAAJnIAACZ4wAAmg0AAJoYAACaMAAAmlQAAJp7AACahgAAmsoAAJrsAACbBwAAmyQAAJtEAACbZwAAm3UAAJuDAACbngAAm78AAJvnAACcEAAAnEIAAJxsAACcmQAAnMIAAJzkAACdAgAAnRcAAJ1BAACddAAAnYMAAJ2lAACd2gAAnfQAAJ4fAACeQgAAnloAAJ6OAACewAAAnxoAAJ9XAACfigAAn9wAAJ/7AACgKAAAoEAAAKBzAACgogAAoNMAAKDvAAChDAAAoVUAAKGdAAChsQAAobwAAKHHAACh4gAAom4AAKKGAACixwAAowEAAKMiAACjcQAAo7cAAKQHAACkSQAApGIAAKSjAACksQAApNsAAKU/AACljAAApbUAAKXdAACmFQAApjIAAKbWAACnDgAApzQAAKeDAACnqgAAp8MAAKfiAACoAgAAqCAAAKhlAACoggAAqKEAAKi0AACo1AAAqVQAAKlnAACqMQAAqoAAAKtnAACsQAAArRcAAK2wAACu+gAAsbcAALJLAACybgAAspMAALK4AACy5gAAswkAALM2AACzgQAAs58AALPPAAC0CQAAtJ4AALTeAAC1GQAAtbYAALcyAAC3zwAAuO0AALmZAAC51gAAuhAAALqMAAC7dgAAu8UAALwVAAC8fgAAvQcAAL1qAAC9jQAAvdEAAL4bAAC+RgAAvnMAAL6+AAC/AgAAvyIAAL+wAADAFwAAwJsAAMDSAADBLgAAweEAAMJMAADCqAAAwssAAMLoAADDNAAAwz0AAMNfAADDfAAAw6QAAMQOAADEQQAAxG4AAMSVAADFFAAAxWgAAMXOAADF7AAAxgMAAMZHAADGYQAAxxYAAMc0AADHUwAAx4MAAMeaAADISQAAyLEAAMjaAADJHQAAyX8AAMmhAADJ2gAAyjMAAMqlAADLrAAAzGMAAMyjAADNIgAAze0AAM6CAADPPQAAz20AANBZAADQxAAA0RsAANFpAADRpgAA0lAAANKWAADSrwAA0uIAANNPAADUfQAA1R4AANXUAADWoAAA1sUAANb/AADXHAAA12cAANe4AADYWAAA2MUAANj5AADZRQAA2Z0AANnvAADa/AAA204AANt/AADbrQAA3B4AANxPAADckQAA3LgAANzjAADdVAAA3YAAAN2+AADeLgAA3uAAAN+PAADfuQAA39MAAOA0AADgUwAA4HcAAOCbAADhHwAA4WkAAOHZAADiZQAA4xUAAONPAADkPwAA5QAAAOWnAADmDgAA5hwAAObVAADm/gAA5zkAAOgWAADoWAAA6JAAAOi/AADo9QAA6SkAAOl+AADpvgAA6iIAAOpCAADqqAAA6sAAAOrWAADq/wAA6yMAAOs3AADrewAA65sAAOv/AADsTAAA7KsAAOzqAADtYQAA7asAAO4EAADuOQAA7qEAAO7YAADvNgAA72oAAPFjAADxsQAA8kkAAPKhAADy4QAA8ycAAPN3AAD0aQAA9VsAAPWvAAD2BgAA9lkAAPbbAAD3NAAA95sAAPfbAAD4DQAA+EUAAPhlAAD4ygAA+QgAAPlcAAD55AAA+kYAAPqIAABAAADxwfZADkAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAFgEOAAEAAAAAAAAAEgEFAAEAAAAAAAEADQAAAAEAAAAAAAIABwIZAAEAAAAAAAMADQHLAAEAAAAAAAQADQIuAAEAAAAAAAUACwGqAAEAAAAAAAYADQHyAAEAAAAAAAoANQBmAAEAAAAAAAsAFQAnAAEAAAAAAA0AAwE7AAEAAAAAAA4AIgFEAAMAAQQJAAAAJAEXAAMAAQQJAAEAGgANAAMAAQQJAAIADgIgAAMAAQQJAAMAGgHYAAMAAQQJAAQAGgI7AAMAAQQJAAUAFgG1AAMAAQQJAAYAGgH/AAMAAQQJAAoAagCbAAMAAQQJAAsAKgA8AAMAAQQJAA0ABgE+AAMAAQQJAA4ARAFmbWV0cm8tdWktY29yZQBtAGUAdAByAG8ALQB1AGkALQBjAG8AcgBlaHR0cDovL21ldHJvdWkub3JnLnVhAGgAdAB0AHAAOgAvAC8AbQBlAHQAcgBvAHUAaQAuAG8AcgBnAC4AdQBhTWV0cm8gSWNvbiBGb250IC0gQ29yZSBTZXQKRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ATQBlAHQAcgBvACAASQBjAG8AbgAgAEYAbwBuAHQAIAAtACAAQwBvAHIAZQAgAFMAZQB0AAoARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuMjAxMi0yMDI0IE1ldHJvIFVJADIAMAAxADIALQAyADAAMgA0ACAATQBlAHQAcgBvACAAVQBJTUlUAE0ASQBUaHR0cDovL21ldHJvdWkub3JnLnVhL2xpY2Vuc2UuaHRtbABoAHQAdABwADoALwAvAG0AZQB0AHIAbwB1AGkALgBvAHIAZwAuAHUAYQAvAGwAaQBjAGUAbgBzAGUALgBoAHQAbQBsVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwbWV0cm8tdWktY29yZQBtAGUAdAByAG8ALQB1AGkALQBjAG8AcgBlbWV0cm8tdWktY29yZQBtAGUAdAByAG8ALQB1AGkALQBjAG8AcgBlUmVndWxhcgBSAGUAZwB1AGwAYQBybWV0cm8tdWktY29yZQBtAGUAdAByAG8ALQB1AGkALQBjAG8AcgBlAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA);
}

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

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