/* this gets exported as style.css and can be used for the default theming */
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
.react-flow {
  direction: ltr;
}
.react-flow__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.react-flow__pane {
  z-index: 1;
  cursor: grab;
}
.react-flow__pane.selection {
    cursor: pointer;
  }
.react-flow__pane.dragging {
    cursor: grabbing;
  }
.react-flow__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}
.react-flow__renderer {
  z-index: 4;
}
.react-flow__selection {
  z-index: 6;
}
.react-flow__nodesselection-rect:focus,
.react-flow__nodesselection-rect:focus-visible {
  outline: none;
}
.react-flow .react-flow__edges {
  pointer-events: none;
  overflow: visible;
}
.react-flow__edge-path,
.react-flow__connection-path {
  stroke: #b1b1b7;
  stroke-width: 1;
  fill: none;
}
.react-flow__edge {
  pointer-events: visibleStroke;
  cursor: pointer;
}
.react-flow__edge.animated path {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
.react-flow__edge.animated path.react-flow__edge-interaction {
    stroke-dasharray: none;
    animation: none;
  }
.react-flow__edge.inactive {
    pointer-events: none;
  }
.react-flow__edge.selected,
  .react-flow__edge:focus,
  .react-flow__edge:focus-visible {
    outline: none;
  }
.react-flow__edge.selected .react-flow__edge-path,
  .react-flow__edge:focus .react-flow__edge-path,
  .react-flow__edge:focus-visible .react-flow__edge-path {
    stroke: #555;
  }
.react-flow__edge-textwrapper {
    pointer-events: all;
  }
.react-flow__edge-textbg {
    fill: white;
  }
.react-flow__edge .react-flow__edge-text {
    pointer-events: none;
    -webkit-user-select: none;
            user-select: none;
  }
.react-flow__connection {
  pointer-events: none;
}
.react-flow__connection .animated {
    stroke-dasharray: 5;
    animation: dashdraw 0.5s linear infinite;
  }
.react-flow__connectionline {
  z-index: 1001;
}
.react-flow__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}
.react-flow__node {
  position: absolute;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
  cursor: grab;
}
.react-flow__node.dragging {
    cursor: grabbing;
  }
.react-flow__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}
.react-flow__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: grab;
  }
.react-flow__handle {
  position: absolute;
  pointer-events: none;
  min-width: 5px;
  min-height: 5px;
  width: 6px;
  height: 6px;
  background: #1a192b;
  border: 1px solid white;
  border-radius: 100%;
}
.react-flow__handle.connectionindicator {
    pointer-events: all;
    cursor: crosshair;
  }
.react-flow__handle-bottom {
    top: auto;
    left: 50%;
    bottom: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-top {
    left: 50%;
    top: -4px;
    transform: translate(-50%, 0);
  }
.react-flow__handle-left {
    top: 50%;
    left: -4px;
    transform: translate(0, -50%);
  }
.react-flow__handle-right {
    right: -4px;
    top: 50%;
    transform: translate(0, -50%);
  }
.react-flow__edgeupdater {
  cursor: move;
  pointer-events: all;
}
.react-flow__panel {
  position: absolute;
  z-index: 5;
  margin: 15px;
}
.react-flow__panel.top {
    top: 0;
  }
.react-flow__panel.bottom {
    bottom: 0;
  }
.react-flow__panel.left {
    left: 0;
  }
.react-flow__panel.right {
    right: 0;
  }
.react-flow__panel.center {
    left: 50%;
    transform: translateX(-50%);
  }
.react-flow__attribution {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  margin: 0;
}
.react-flow__attribution a {
    text-decoration: none;
    color: #999;
  }
@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}
.react-flow__edgelabel-renderer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.react-flow__edge.updating .react-flow__edge-path {
      stroke: #777;
    }
.react-flow__edge-text {
    font-size: 10px;
  }
.react-flow__node.selectable:focus,
  .react-flow__node.selectable:focus-visible {
    outline: none;
  }
.react-flow__node-default,
.react-flow__node-input,
.react-flow__node-output,
.react-flow__node-group {
  padding: 10px;
  border-radius: 3px;
  width: 150px;
  font-size: 12px;
  color: #222;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-color: #1a192b;
  background-color: white;
}
.react-flow__node-default.selectable:hover, .react-flow__node-input.selectable:hover, .react-flow__node-output.selectable:hover, .react-flow__node-group.selectable:hover {
      box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.08);
    }
.react-flow__node-default.selectable.selected,
    .react-flow__node-default.selectable:focus,
    .react-flow__node-default.selectable:focus-visible,
    .react-flow__node-input.selectable.selected,
    .react-flow__node-input.selectable:focus,
    .react-flow__node-input.selectable:focus-visible,
    .react-flow__node-output.selectable.selected,
    .react-flow__node-output.selectable:focus,
    .react-flow__node-output.selectable:focus-visible,
    .react-flow__node-group.selectable.selected,
    .react-flow__node-group.selectable:focus,
    .react-flow__node-group.selectable:focus-visible {
      box-shadow: 0 0 0 0.5px #1a192b;
    }
.react-flow__node-group {
  background-color: rgba(240, 240, 240, 0.25);
}
.react-flow__nodesselection-rect,
.react-flow__selection {
  background: rgba(0, 89, 220, 0.08);
  border: 1px dotted rgba(0, 89, 220, 0.8);
}
.react-flow__nodesselection-rect:focus,
  .react-flow__nodesselection-rect:focus-visible,
  .react-flow__selection:focus,
  .react-flow__selection:focus-visible {
    outline: none;
  }
.react-flow__controls {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08);
}
.react-flow__controls-button {
    border: none;
    background: #fefefe;
    border-bottom: 1px solid #eee;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    -webkit-user-select: none;
            user-select: none;
    padding: 5px;
  }
.react-flow__controls-button:hover {
      background: #f4f4f4;
    }
.react-flow__controls-button svg {
      width: 100%;
      max-width: 12px;
      max-height: 12px;
    }
.react-flow__controls-button:disabled {
      pointer-events: none;
    }
.react-flow__controls-button:disabled svg {
        fill-opacity: 0.4;
      }
.react-flow__minimap {
  background-color: #fff;
}
.react-flow__minimap svg {
  display: block;
}
.react-flow__resize-control {
  position: absolute;
}
.react-flow__resize-control.left,
.react-flow__resize-control.right {
  cursor: ew-resize;
}
.react-flow__resize-control.top,
.react-flow__resize-control.bottom {
  cursor: ns-resize;
}
.react-flow__resize-control.top.left,
.react-flow__resize-control.bottom.right {
  cursor: nwse-resize;
}
.react-flow__resize-control.bottom.left,
.react-flow__resize-control.top.right {
  cursor: nesw-resize;
}
/* handle styles */
.react-flow__resize-control.handle {
  width: 4px;
  height: 4px;
  border: 1px solid #fff;
  border-radius: 1px;
  background-color: #3367d9;
  transform: translate(-50%, -50%);
}
.react-flow__resize-control.handle.left {
  left: 0;
  top: 50%;
}
.react-flow__resize-control.handle.right {
  left: 100%;
  top: 50%;
}
.react-flow__resize-control.handle.top {
  left: 50%;
  top: 0;
}
.react-flow__resize-control.handle.bottom {
  left: 50%;
  top: 100%;
}
.react-flow__resize-control.handle.top.left {
  left: 0;
}
.react-flow__resize-control.handle.bottom.left {
  left: 0;
}
.react-flow__resize-control.handle.top.right {
  left: 100%;
}
.react-flow__resize-control.handle.bottom.right {
  left: 100%;
}
/* line styles */
.react-flow__resize-control.line {
  border-color: #3367d9;
  border-width: 0;
  border-style: solid;
}
.react-flow__resize-control.line.left,
.react-flow__resize-control.line.right {
  width: 1px;
  transform: translate(-50%, 0);
  top: 0;
  height: 100%;
}
.react-flow__resize-control.line.left {
  left: 0;
  border-left-width: 1px;
}
.react-flow__resize-control.line.right {
  left: 100%;
  border-right-width: 1px;
}
.react-flow__resize-control.line.top,
.react-flow__resize-control.line.bottom {
  height: 1px;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.react-flow__resize-control.line.top {
  top: 0;
  border-top-width: 1px;
}
.react-flow__resize-control.line.bottom {
  border-bottom-width: 1px;
  top: 100%;
}

/* UIGraph Component Styles - Converted from HTML demo */

:root {
  --ui-graph-bg: #0f172a;        /* slate-900 */
  --ui-graph-panel: #111827;     /* gray-900 */
  --ui-graph-muted: #1f2937;     /* gray-800 */
  --ui-graph-text: #e5e7eb;      /* gray-200 */
  --ui-graph-sub: #9ca3af;       /* gray-400 */
  --ui-graph-primary: #60a5fa;   /* blue-400 */
  --ui-graph-accent: #22d3ee;    /* cyan-400 */
  --ui-graph-ok: #34d399;        /* emerald-400 */
  --ui-graph-warn: #fbbf24;      /* amber-400 */
  --ui-graph-err: #f87171;       /* red-400 */
  --ui-graph-edge: #64748b;      /* slate-500 */
  --ui-graph-card: #0b1220;      /* dark card */
}

.ui-graph-app {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  background: #0f172a;
  background: var(--ui-graph-bg);
  color: #e5e7eb;
  color: var(--ui-graph-text);
  font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial;
  box-sizing: border-box;
}

.ui-graph-app * {
  box-sizing: border-box;
}

.ui-graph-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border-bottom: 1px solid #1f2937;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.ui-graph-header h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.ui-graph-accent {
  color: #22d3ee;
  color: var(--ui-graph-accent);
}

.ui-graph-tag {
  font-size: 12px;
  color: #9ca3af;
  color: var(--ui-graph-sub);
  padding: 2px 8px;
  border: 1px solid #374151;
  border-radius: 999px;
}

.ui-graph-main {
  display: grid;
  grid-template-columns: 320px 1fr 360px;
  grid-gap: 8px;
  gap: 8px;
  padding: 8px;
  min-height: 0;
}

.ui-graph-panel {
  background: #111827;
  background: var(--ui-graph-panel);
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 12px;
}

.ui-graph-panel-title {
  margin: 4px 0 10px;
  font-size: 14px;
  color: #9ca3af;
  color: var(--ui-graph-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ui-graph-kv {
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-gap: 6px 10px;
  gap: 6px 10px;
  font-size: 13px;
  color: #9ca3af;
  color: var(--ui-graph-sub);
  margin-bottom: 10px;
}

.ui-graph-kv div:nth-child(odd) {
  color: #9ca3af;
}

.ui-graph-input,
.ui-graph-select {
  width: 100%;
  background: #0b1220;
  color: #e5e7eb;
  color: var(--ui-graph-text);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.ui-graph-filters {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.ui-graph-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ui-graph-pill {
  font-size: 12px;
  border: 1px solid #334155;
  border-radius: 999px;
  padding: 2px 8px;
  background: #0b1220;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ui-graph-pill input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.ui-graph-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  gap: 8px;
}

.ui-graph-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.ui-graph-checkbox-label input[type="checkbox"] {
  width: auto;
}

.ui-graph-small {
  font-size: 12px;
  color: #9ca3af;
  color: var(--ui-graph-sub);
}

.ui-graph-buttons {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ui-graph-button {
  background: #0b1220;
  color: #e5e7eb;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
}

.ui-graph-button:hover {
  border-color: #4b5563;
}

/* Graph */
.ui-graph-graph-wrap {
  position: relative;
  background: radial-gradient(ellipse at top left, rgba(96,165,250,.08), transparent 40%), #0b1220;
  background: radial-gradient(ellipse at top left, rgba(96,165,250,.08), transparent 40%), var(--ui-graph-card);
  border: 1px solid #1f2937;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.ui-graph-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 10px;
}

.ui-graph-graph {
  position: relative;
  flex: 1 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.ui-graph-edges {
  position: absolute;
  inset: 0;
  display: block;
}

.rf-ui-node .ui-graph-node {
  position: relative;
  min-width: 160px;
  max-width: 240px;
  border: 1.5px solid #2a3343;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  cursor: pointer;
}

.ui-graph-node-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-bottom: 1px solid #2a3343;
  background: rgba(0,0,0,.25);
}

.ui-graph-node-header-icon {
  font-size: 13px;
  line-height: 1;
}

.ui-graph-node-header-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ui-graph-node-body {
  padding: 8px 10px 6px;
}

.ui-graph-node-label {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  display: block;
  line-height: 1.35;
}

.rf-ui-node .ui-graph-port {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1f2937; /* slate-800 */
  border: 2px solid #64748b;
  border: 2px solid var(--ui-graph-edge);
  z-index: 1;
}
.rf-ui-node .ui-graph-port-in { left: -6px; top: 16px; border-color: #34d399; background: #065f46; } /* green */
.rf-ui-node .ui-graph-port-out { right: -6px; top: 16px; border-color: #f87171; background: #7f1d1d; } /* red */

.ui-graph-node-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.ui-graph-node-type {
  font-size: 11px;
  color: #cbd5e1;
  border: 1px solid #334155;
  border-radius: 999px;
  padding: 0 6px;
}

.ui-graph-node-caps {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ui-graph-node-cap {
  font-size: 11px;
  border: 1px dashed #3b4252;
  border-radius: 6px;
  padding: 2px 6px;
  color: #cbd5e1;
}

.ui-graph-node-ok {
  outline: 2px solid rgba(52,211,153,.35);
}

.ui-graph-node-missing {
  outline: 2px solid rgba(248,113,113,.5);
}

.ui-graph-node-dim {
  opacity: .35;
}

.ui-graph-node-selected .ui-graph-node {
  box-shadow: 0 0 0 3px rgba(250,204,21,.4), 0 4px 20px rgba(0,0,0,.4);
}

.ui-graph-open-btn {
  padding: 3px 10px;
  font-size: 12px;
  color: #60a5fa;
  border-color: #1e3a5f;
}

/* Edge styling */
.ui-graph-edge {
  stroke: #64748b;
  stroke: var(--ui-graph-edge);
  stroke-width: 1.4;
  fill: none;
  opacity: .85;
}

.ui-graph-edge-CONTAINS {
  stroke-dasharray: 0;
}

.ui-graph-edge-TRIGGERS {
  stroke-dasharray: 4 4;
}

.ui-graph-edge-MUTATES {
  stroke-dasharray: 6 4;
}

.ui-graph-edge-NAVIGATES {
  stroke-dasharray: 2 3;
}

.ui-graph-arrow {
  fill: #64748b;
  fill: var(--ui-graph-edge);
}

.ui-graph-edge-reverse {
  opacity: 0.6;
  stroke-dasharray: 5 5;
}

.ui-graph-edge-label {
  font-size: 10px;
  fill: #1f2937;
  fill: var(--ui-graph-muted);
  font-weight: 500;
  text-shadow: 0 0 3px #0b1220;
  text-shadow: 0 0 3px var(--ui-graph-card);
}

/* Inspector */
.ui-graph-inspector {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.ui-graph-inspector-box {
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 10px;
}

.ui-graph-inspector-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed #263244;
}

.ui-graph-inspector-row:last-child {
  border-bottom: 0;
}

.ui-graph-muted {
  color: #9ca3af;
  color: var(--ui-graph-sub);
}

.ui-graph-ok-text {
  color: #34d399;
  color: var(--ui-graph-ok);
}

.ui-graph-err-text {
  color: #f87171;
  color: var(--ui-graph-err);
}

/* Layout algorithm bar */
.ui-graph-algo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-top: 1px solid #1f2937;
  flex-shrink: 0;
}

.ui-graph-algo-btn {
  background: #0b1220;
  color: #94a3b8;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  cursor: pointer;
}

.ui-graph-algo-btn:hover {
  border-color: #4b5563;
  color: #e2e8f0;
}

.ui-graph-algo-btn--active {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96,165,250,.08);
}

/* Inspector sections */
.ui-graph-inspector-section {
  margin-top: 8px;
}

.ui-graph-inspector-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #64748b;
  padding: 4px 0 6px;
  border-top: 1px dashed #1e3a5f;
}

.ui-graph-action-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-graph-action-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 5px 8px;
  background: rgba(96,165,250,.05);
  border: 1px solid #1e3a5f;
  border-radius: 6px;
}

.ui-graph-action-name {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
}

.ui-graph-action-steps {
  font-size: 10px;
  color: #64748b;
  font-family: ui-monospace, monospace;
}

/* React Flow Controls - larger buttons */
.ui-graph-graph .react-flow__controls {
  scale: 1.7;
  transform-origin: bottom left;
  bottom: 16px;
  left: 16px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .ui-graph-main {
    grid-template-columns: 280px 1fr 320px;
  }
}

@media (max-width: 1000px) {
  .ui-graph-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 768px) {
  .ui-graph-main {
    padding: 8px;
    gap: 8px;
  }
  
  .ui-graph-header {
    padding: 12px;
  }
  
  .ui-graph-header h1 {
    font-size: 16px;
  }
  
  .ui-graph-checkboxes {
    grid-template-columns: 1fr;
  }
}

.cpu-wraps .ant-progress-inner {
    background-color: rgb(138, 132, 132);
}
/* This file is bundled with the code from the following third party libraries */

/**
 * http://prismjs.com/
 * Dracula Theme originally by Zeno Rocha [@zenorocha]
 * https://draculatheme.com/
 *
 * Ported for PrismJS by Albert Vallverdu [@byverdu]
 */
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}

.tox{box-shadow:none;box-sizing:content-box;cursor:auto;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;-webkit-text-decoration:none;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:baseline;vertical-align:initial;white-space:normal}.tox :not(svg):not(rect){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit;background:0 0;border:0;box-shadow:none;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}@keyframes tox-rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.tox{color:#222f3e;color:var(--tox-private-color-black,#222f3e);font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-family:var(--tox-private-font-stack, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);font-size:16px;font-size:var(--tox-private-font-size-base, 16px)}.tox-tinymce{border:2px solid #eee;border-radius:10px;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-family:var(--tox-private-font-stack, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);overflow:hidden;position:relative;visibility:inherit!important}.tox.tox-tinymce-inline{border:none;box-shadow:none;overflow:visible;overflow:initial}.tox.tox-tinymce-inline .tox-editor-container{overflow:visible;overflow:initial}.tox.tox-tinymce-inline .tox-editor-header{background-color:#fff;border:2px solid #eee;border-radius:10px;box-shadow:none;overflow:hidden}.tox-tinymce-aux{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-family:var(--tox-private-font-stack, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);z-index:1300;z-index:var(--tox-private-z-index-sink,1300)}.tox[dir=rtl] .tox-icon--flip svg{transform:rotateY(180deg)}.tox .tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox .tox-editor-header{display:grid;grid-template-columns:1fr -webkit-min-content;grid-template-columns:1fr min-content;z-index:2}.tox:not(.tox-tinymce-inline) .tox-editor-header{background-color:#fff;border-bottom:none;box-shadow:0 2px 2px -2px rgba(34,47,62,.1),0 8px 8px -4px rgba(34,47,62,.07);padding:4px 0}.tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition){transition:box-shadow .5s}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header{border-top:1px solid #e3e3e3;box-shadow:none}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header{background-color:#fff;box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15);padding:4px 0}.tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header{box-shadow:0 2px 2px -2px rgba(34,47,62,.2),0 8px 8px -4px rgba(34,47,62,.15)}.tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty{background:0 0;border:none;box-shadow:none;padding:0}.tox-editor-dock-fadeout{opacity:0;visibility:hidden}.tox-editor-dock-fadein{opacity:1;visibility:visible}.tox-editor-dock-transition{transition:visibility 0s linear .25s,opacity .25s ease}.tox-editor-dock-transition.tox-editor-dock-fadein{transition-delay:0s}.tox .accessibility-issue__header{align-items:center;display:flex;margin-bottom:4px}.tox #accessibility-issue__subheader{font-size:16px;color:#222f3e}.tox .accessbility-sr-only{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.tox .accessibility-issue__description{align-items:stretch;border-radius:6px;justify-content:space-between}.tox .accessibility-issue__description>div{padding-bottom:4px}.tox .accessibility-issue__description>div>div{align-items:center;display:flex;margin-bottom:4px}.tox .accessibility-issue__description>div>div .tox-icon svg{display:block}.tox #accessibility-issue__contentID{margin-top:8px;margin-bottom:8px}.tox #accessibility-issue__contentID span:first-child{font-weight:700}.tox #accessibility-issue__document{padding-bottom:8px}.tox .accessibility-issue__repair{margin-top:8px}.tox .accessibility-issue__repair .tox-form__group .tox-form__group--error{color:#c00}.tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description{background-color:#e6f0fd;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2{font-size:14px;color:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info .tox-icon.accessibility-issue__icon svg{fill:#006ce7}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon{background-color:#006ce7;color:#fff}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover{background-color:#0060ce}.tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active{background-color:#0054b4}.tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description{background-color:#fffae6;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2{font-size:14px;color:#7a6e25}.tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon.accessibility-issue__icon svg{fill:#7a6e25}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon{background-color:#ffe89d;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover{background-color:#f2d574;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active{background-color:#e8c657;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description{background-color:#fae6e6;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2{font-size:14px;color:#c00}.tox .tox-dialog__body-content .accessibility-issue--error .tox-icon.accessibility-issue__icon svg{fill:#c00}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon{background-color:#f2bfbf;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover{background-color:#e9a4a4;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active{background-color:#ee9494;color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description{background-color:rgba(120,171,70,.1);color:#222f3e}.tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description>:last-child{display:none}.tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2{color:#527530}.tox .tox-dialog__body-content .accessibility-issue--success .tox-icon.accessibility-issue__icon svg{fill:#527530}.tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,.tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2{margin-top:0}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-left:4px}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-left:auto}.tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description{padding:8px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button{margin-right:4px}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header>:nth-last-child(2){margin-right:auto}.tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description{padding:4px 8px 4px 4px}.tox .mce-codemirror{background:#fff;bottom:0;font-size:13px;left:0;position:absolute;right:0;top:0;z-index:1}.tox .mce-codemirror.tox-inline-codemirror{margin:8px;position:absolute}.tox .tox-advtemplate .tox-form__grid{flex:1 1}.tox .tox-advtemplate .tox-form__grid>div:first-child{display:flex;flex-direction:column;width:30%}.tox .tox-advtemplate .tox-form__grid>div:first-child>div:nth-child(2){flex-basis:0;flex-grow:1;overflow:auto}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid>div:first-child{width:100%}}.tox .tox-advtemplate iframe{border-color:#eee;border-radius:10px;border-style:solid;border-width:1px;margin:0 10px}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bottom-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#006ce7;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#006ce7;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;line-height:24px;margin:0;outline:0;padding:4px 16px;position:relative;text-align:center;-webkit-text-decoration:none;text-decoration:none;text-transform:none;white-space:nowrap}.tox .tox-button::before{border-radius:6px;bottom:-1px;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #006ce7;content:'';left:-1px;opacity:0;pointer-events:none;position:absolute;right:-1px;top:-1px}.tox .tox-button[disabled]{background-color:#006ce7;background-image:none;border-color:#006ce7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:focus:not(:disabled)::before{opacity:1}.tox .tox-button:hover:not(:disabled){background-color:#0060ce;background-image:none;border-color:#0060ce;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled[disabled]{background-color:#0054b4;background-image:none;border-color:#0054b4;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button.tox-button--enabled:focus:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:hover:not(:disabled){background-color:#00489b;background-image:none;border-color:#00489b;box-shadow:none;color:#fff}.tox .tox-button.tox-button--enabled:active:not(:disabled){background-color:#003c81;background-image:none;border-color:#003c81;box-shadow:none;color:#fff}.tox .tox-button--icon-and-text,.tox .tox-button.tox-button--icon-and-text,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text{display:flex;justify-content:center;align-items:center;gap:2px;padding:5px 4px}.tox .tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--icon-and-text .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--icon-and-text .tox-icon.tox-icon--success svg,.tox .tox-button.tox-button--icon-and-text .tox-icon.tox-icon--success svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon.tox-icon--success svg{fill:#78AB46}.tox .tox-button--icon-and-text .tox-icon.tox-icon--error svg,.tox .tox-button.tox-button--icon-and-text .tox-icon.tox-icon--error svg,.tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon.tox-icon--error svg{fill:#c00}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:0 0;background-repeat:repeat;border-color:#f0f0f0;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;font-size:14px;font-style:normal;font-weight:700;letter-spacing:normal;outline:0;padding:4px 16px;-webkit-text-decoration:none;text-decoration:none;text-transform:none}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled[disabled]{background-color:#a8c8ed;background-image:none;border-color:#a8c8ed;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled){background-color:#93bbe9;background-image:none;border-color:#93bbe9;box-shadow:none;color:#222f3e}.tox .tox-button--secondary.tox-button--enabled:active:not(:disabled){background-color:#7daee4;background-image:none;border-color:#7daee4;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button--icon .tox-icon.tox-icon--success svg,.tox .tox-button.tox-button--icon .tox-icon.tox-icon--success svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon.tox-icon--success svg{fill:#78AB46}.tox .tox-button--icon .tox-icon.tox-icon--error svg,.tox .tox-button.tox-button--icon .tox-icon.tox-icon--error svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon.tox-icon--error svg{fill:#c00}.tox-context-form__group .tox-button--icon,.tox-context-form__group .tox-button.tox-button--icon{margin:6px 1px 5px 0;padding:0}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}.tox .tox-button--naked[disabled]{background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:rgba(34,47,62,.5)}.tox .tox-button--naked:hover:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:rgba(34,47,62,.12);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:rgba(34,47,62,.18);border-color:transparent;box-shadow:none;box-shadow:initial;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-button--stretch{width:100%}.tox .tox-button--secondary--outline{background-color:transparent;border-color:#f0f0f0;border-color:var(--tox-private-button-secondary-outline-border-color,#f0f0f0);color:#222f3e;color:var(--tox-private-button-secondary-outline-text-color,#222f3e)}.tox .tox-button--secondary--outline:focus:not(:disabled){background-color:#e3e3e3;background-color:var(--tox-private-button-secondary-outline-focus-background-color,#e3e3e3);border-color:#e3e3e3;border-color:var(--tox-private-button-secondary-outline-focus-border-color,#e3e3e3);color:#222f3e;color:var(--tox-private-button-secondary-outline-focus-text-color,#222f3e)}.tox .tox-button--secondary--outline:hover:not(:disabled){background-color:#f0f0f0;background-color:var(--tox-private-button-secondary-outline-hover-background-color,#f0f0f0);border-color:#e3e3e3;border-color:var(--tox-private-button-secondary-outline-hover-border-color,#e3e3e3);color:#222f3e;color:var(--tox-private-button-secondary-outline-hover-text-color,#222f3e)}.tox .tox-button--secondary--outline:active:not(:disabled){background-color:#e3e3e3;background-color:var(--tox-private-button-secondary-outline-active-background-color,#e3e3e3);border-color:#e3e3e3;border-color:var(--tox-private-button-secondary-outline-active-border-color,#e3e3e3);color:#222f3e;color:var(--tox-private-button-secondary-outline-active-text-color,#222f3e)}.tox .tox-button--secondary--outline[disabled]{background-color:transparent;background-color:var(--tox-private-button-secondary-outline-disabled-background-color,transparent);border-color:#f0f0f0;border-color:var(--tox-private-button-secondary-outline-disabled-border-color,#f0f0f0);color:rgba(34,47,62,.5);color:var(--tox-private-button-secondary-outline-disabled-text-color,rgba(34,47,62,.5))}.tox .tox-checkbox{align-items:center;border-radius:6px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{align-items:center;border-radius:6px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;display:flex;height:24px;justify-content:center;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,0.3)}@media (forced-colors:active){.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:currentColor!important}}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#006ce7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#006ce7}.tox .tox-checkbox--disabled{color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg{fill:rgba(34,47,62,0.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{fill:rgba(34,47,62,0.5)}.tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{fill:rgba(34,47,62,0.5)}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:6px;box-shadow:inset 0 0 0 1px #006ce7;padding:calc(4px - 1px)}.tox:not([dir=rtl]) .tox-checkbox__label{margin-left:4px}.tox:not([dir=rtl]) .tox-checkbox__input{left:-10000px}.tox:not([dir=rtl]) .tox-bar .tox-checkbox{margin-left:4px}.tox[dir=rtl] .tox-checkbox__label{margin-right:4px}.tox[dir=rtl] .tox-checkbox__input{right:-10000px}.tox[dir=rtl] .tox-bar .tox-checkbox{margin-right:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#e3e3e3;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#fcfcfc;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;border-radius:3px;color:#222f3e;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.tox .tox-image-selector-menu .tox-collection__item,.tox .tox-image-selector-menu .tox-collection__item-image-selector{flex-direction:column}.tox .tox-image-selector-menu .tox-collection__item .tox-collection__item-checkmark,.tox .tox-image-selector-menu .tox-collection__item .tox-collection__item-icon,.tox .tox-image-selector-menu .tox-collection__item .tox-collection__item-image,.tox .tox-image-selector-menu .tox-collection__item-image-selector .tox-collection__item-checkmark,.tox .tox-image-selector-menu .tox-collection__item-image-selector .tox-collection__item-icon,.tox .tox-image-selector-menu .tox-collection__item-image-selector .tox-collection__item-image{flex-grow:1}.tox .tox-image-selector-menu .tox-collection__item label,.tox .tox-image-selector-menu .tox-collection__item-image-selector label{width:48px;white-space:nowrap;overflow:hidden;font-size:12px;color:#222f3e;text-align:center;align-self:flex-end}.tox .tox-image-selector-menu .tox-collection__item-checkmark{height:24px;width:24px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.tox .tox-image-selector-menu .tox-collection__item-checkmark svg path{fill:#006ce7;stroke:#006ce7}.tox .tox-image-selector-menu .tox-image-selector__row .tox-collection__item-image-selector.tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#fff}.tox .tox-image-selector-menu .tox-image-selector__row .tox-collection__item-image-selector.tox-collection__item--enabled:not(.tox-collection__item--state-disabled){z-index:2;background-color:#fff;opacity:.8;background-clip:content-box}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#fff;color:#222f3e}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#006ce7;color:#fff}@media (forced-colors:active){.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){border:solid 1px}}.tox .tox-collection--grid .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#a6ccf7;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#f0f0f0;color:#222f3e;position:relative;z-index:1}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7 inset;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border:2px solid highlight}}.tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){background-color:#a6ccf7;color:#222f3e}@media (forced-colors:active){.tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled){border-radius:3px;outline:solid 1px}}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){color:#222f3e;background-color:#fff;position:relative}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{background-color:#f0f0f0;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus{background-color:#f0f0f0;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after{border:2px solid highlight}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover{border-radius:3px;outline:solid 1px}}.tox .tox-collection__item-image{border:1px solid #eee;border-radius:6px;display:flex;flex-direction:column;justify-content:center;margin-bottom:4px;position:relative}.tox .tox-collection__item-checkmark,.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-checkmark svg,.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1 1;font-size:14px;font-style:normal;font-weight:400;line-height:24px;max-width:100%;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:currentColor;display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:none}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox .tox-collection__item-caret svg{fill:currentColor}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-collection__item--state-disabled .tox-collection__item-caret svg{fill:rgba(34,47,62,0.5)}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory+.tox-collection__item-checkmark{display:none}.tox .tox-collection--horizontal{background-color:#fff;border:1px solid #e3e3e3;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:nowrap;margin-bottom:0;overflow-x:auto;padding:0}.tox .tox-collection--horizontal .tox-collection__group{align-items:center;display:flex;flex-wrap:nowrap;margin:0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item{height:28px;margin:6px 1px 5px 0;padding:0 4px}.tox .tox-collection--horizontal .tox-collection__item-label{white-space:nowrap}.tox .tox-collection--horizontal .tox-collection__item-caret{margin-left:4px}.tox .tox-collection__item-container{display:flex}.tox .tox-collection__item-container--row{align-items:center;flex:1 1 auto;flex-direction:row}.tox .tox-collection__item-container--row.tox-collection__item-container--align-left{margin-right:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--align-right{justify-content:flex-end;margin-left:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-top{align-items:flex-start;margin-bottom:auto}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle{align-items:center}.tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom{align-items:flex-end;margin-top:auto}.tox .tox-collection__item-container--column{align-self:center;flex:1 1 auto;flex-direction:column}.tox .tox-collection__item-container--column.tox-collection__item-container--align-left{align-items:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--align-right{align-items:flex-end}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-top{align-self:flex-start}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle{align-self:center}.tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom{align-self:flex-end}.tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-right:1px solid transparent}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type){border-left:1px solid transparent}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>.tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret{margin-right:4px}@media (forced-colors:active){.tox .tox-hue-slider,.tox .tox-rgb-form .tox-rgba-preview{background-color:currentColor!important;border:1px solid highlight!important;forced-color-adjust:none}}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-spectrum:focus,.tox .tox-sv-palette-spectrum:focus{outline:#08f solid}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{min-width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important;box-shadow:0 0 0 1px red}.tox .tox-rgb-container{position:relative}.tox .tox-rgb-form .tox-invalid-icon{align-content:center;align-items:center;display:none;height:100%;position:absolute;right:0;top:0}.tox .tox-rgb-form .tox-invalid-icon .tox-control-wrap__status-icon-invalid{margin:0}.tox .tox-rgb-warning-note{background-color:#f5cccc;border:1px solid #f0b3b3;border-radius:3px;color:#77181f;padding:3px}.tox input.tox-invalid+.tox-invalid-icon{display:flex}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider-thumb{margin-left:-1px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-hue-slider-thumb{margin-right:-1px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:5px 0 6px 11px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px -4px}.tox .tox-swatches__row{display:flex}@media (forced-colors:active){.tox .tox-swatches__row{forced-color-adjust:none}}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#f0f0f0}.tox div.tox-swatch:not(.tox-swatch--remove) svg{display:none;fill:#222f3e;height:24px;margin:calc((30px - 24px)/ 2) calc((30px - 24px)/ 2);width:24px}.tox div.tox-swatch:not(.tox-swatch--remove) svg path{fill:#fff;paint-order:stroke;stroke:#222f3e;stroke-width:2px}.tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg{display:block}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment{background:#fff;border:1px solid #fff;border-radius:6px;padding:8px;padding-bottom:16px;position:relative}.tox .tox-comment:hover{box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}.tox .tox-comment.tox-comment--selected{background-color:#fff2c9;border:1px solid #ffcf30;box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}.tox .tox-comment.tox-comment--selected:focus{border:2px solid #006ce7;margin:-1px}.tox .tox-comment.tox-comment--selected:focus:not(:first-child){margin-top:7px}.tox .tox-comment.tox-comment--selected .tox-comment__single{margin-bottom:12px}.tox .tox-comment.tox-comment--selected .tox-comment__single:focus{position:relative}.tox .tox-comment.tox-comment--selected .tox-comment__single:focus::after{top:-9px;pointer-events:none;position:absolute;content:"";display:block;bottom:-9px;left:-9px;right:-9px;border-radius:6px;border:2px solid #006ce7}.tox .tox-comment.tox-comment--selected .tox-comment__single:focus:last-of-type:has(textarea):after{bottom:calc((12px + 16px + 1px) * -1)}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-comment__body{color:#222f3e;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:none;text-transform:initial;transition:max-height .5s cubic-bezier(0, 1, 0, 1);white-space:pre-wrap}.tox .tox-comment__body.tox-comment__body--expanded{max-height:100em;transition:max-height 1s ease-in-out}.tox .tox-comment__body.tox-comment__body--pending{transition:max-height 0s}.tox .tox-comment__body p{margin:0}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%;font-size:16px}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__expander p:focus{font-weight:700}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-tbtn.tox-comment__mention-btn{display:flex;width:34px;height:34px;padding:5px;justify-content:center;align-items:center;margin:0;background-color:transparent}.tox .tox-comment-thread{background:#fff;position:relative;border-radius:6px;background-color:transparent}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:20}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto;padding:12px;scroll-behavior:smooth}.tox .tox-comment__scroll:has(textarea:focus){scroll-behavior:auto}.tox .tox-comment--disappearing{transition:opacity .5s ease}.tox .tox-comment[data-transitioning-destination=deleting]{opacity:0}.tox .tox-ring-loader{width:10px;height:10px;border:1px solid #fff;border-bottom-color:transparent;border-radius:50%;display:inline-block;box-sizing:border-box;animation:tox-rotation 1s linear infinite}.tox:not([dir=rtl]) .tox-comment__edit{margin-left:8px}.tox:not([dir=rtl]) .tox-comment__buttonspacing>:last-child,.tox:not([dir=rtl]) .tox-comment__edit>:last-child,.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__edit{margin-right:8px}.tox[dir=rtl] .tox-comment__buttonspacing>:last-child,.tox[dir=rtl] .tox-comment__edit>:last-child,.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,0.7)}.tox .tox-user__avatar img{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-user__name{color:#222f3e;font-size:14px;font-style:normal;font-weight:700;line-height:18px;text-transform:none}.tox:not([dir=rtl]) .tox-user__avatar img,.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar img,.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1}.tox .tox-dialog-wrap__backdrop--opaque{background-color:#fff}.tox .tox-dialog{background-color:#fff;border-color:#eee;border-radius:10px;border-style:solid;border-width:0;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:2}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog{align-self:flex-start;margin:8px auto;max-height:calc(100vh - 8px * 2);width:calc(100vw - 16px)}}.tox .tox-dialog-inline{z-index:1100}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:none}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1 1;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;text-align:left;text-transform:none}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body{flex-direction:column}}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column;flex-shrink:0;padding:16px 16px}@media only screen and (min-width:768px){.tox .tox-dialog__body-nav{max-width:11em}}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox .tox-dialog__body-nav{flex-direction:row;-webkit-overflow-scrolling:touch;overflow-x:auto;padding-bottom:0}}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;flex-shrink:0;font-size:14px;line-height:1.3;margin-bottom:8px;max-width:13em;-webkit-text-decoration:none;text-decoration:none}.tox .tox-dialog__body-nav-item:focus{background-color:rgba(0,108,231,.1)}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #144782;color:#144782}@media (forced-colors:active){.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid highlight;color:highlight}}.tox .tox-dialog__body-content{box-sizing:border-box;display:flex;flex:1 1;flex-direction:column;max-height:min(650px,calc(100vh - 110px));overflow:auto;-webkit-overflow-scrolling:touch;padding:16px 16px}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content a{color:#144782;cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-dialog__body-content a:focus,.tox .tox-dialog__body-content a:hover{color:#071729;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-dialog__body-content a:focus-visible{border-radius:1px;outline:2px solid #144782;outline-offset:2px}.tox .tox-dialog__body-content a:active{color:#000;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-dialog__body-content svg{fill:#222f3e}.tox .tox-dialog__body-content strong{font-weight:700}.tox .tox-dialog__body-content ul{list-style-type:disc}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{-webkit-padding-start:2.5rem;padding-inline-start:2.5rem}.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{margin-bottom:16px}.tox .tox-dialog__body-content dd,.tox .tox-dialog__body-content dl,.tox .tox-dialog__body-content dt,.tox .tox-dialog__body-content ol,.tox .tox-dialog__body-content ul{display:block;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0}.tox .tox-dialog__body-content .tox-form__group h1{color:#222f3e;font-size:20px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group h2{color:#222f3e;font-size:16px;font-style:normal;font-weight:700;letter-spacing:normal;margin-bottom:16px;margin-top:2rem;text-transform:none}.tox .tox-dialog__body-content .tox-form__group p{margin-bottom:16px}.tox .tox-dialog__body-content .tox-form__group h1:first-child,.tox .tox-dialog__body-content .tox-form__group h2:first-child,.tox .tox-dialog__body-content .tox-form__group p:first-child{margin-top:0}.tox .tox-dialog__body-content .tox-form__group h1:last-child,.tox .tox-dialog__body-content .tox-form__group h2:last-child,.tox .tox-dialog__body-content .tox-form__group p:last-child{margin-bottom:0}.tox .tox-dialog__body-content .tox-form__group h1:only-child,.tox .tox-dialog__body-content .tox-form__group h2:only-child,.tox .tox-dialog__body-content .tox-form__group p:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center{text-align:center}.tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end{text-align:end}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--fullscreen{height:100%;max-width:100%}.tox .tox-dialog--fullscreen .tox-dialog__body-content{max-height:100%}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:none;display:flex;justify-content:space-between;padding:8px 16px}.tox .tox-dialog__footer-end,.tox .tox-dialog__footer-start{display:flex}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:3}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table thead th:first-child{padding-right:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #626262}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__table td:first-child{padding-right:8px}.tox .tox-dialog__iframe{min-height:200px}.tox .tox-dialog__iframe.tox-dialog__iframe--opaque{background:#fff}.tox .tox-navobj-bordered{position:relative}.tox .tox-navobj-bordered::before{border:1px solid #eee;border-radius:6px;content:'';inset:0;opacity:1;pointer-events:none;position:absolute;z-index:1}.tox .tox-navobj-bordered iframe{border-radius:6px}.tox .tox-navobj-bordered-focus.tox-navobj-bordered::before{border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1 1;flex-direction:column}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1 1}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1 1;height:100%}.tox .tox-dialog-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-dialog-dock-fadein{opacity:1;visibility:visible}.tox .tox-dialog-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-dialog-dock-transition.tox-dialog-dock-fadein{transition-delay:0s}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:0}body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child){margin-left:8px}}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}@media only screen and (max-width:767px){body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav{margin-left:0}body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child){margin-right:8px}}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}body.tox-dialog__disable-scroll{overflow:hidden}.tox .tox-dropzone-container{display:flex;flex:1 1}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #eee;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{display:flex;flex:1 1;overflow:hidden;position:relative}.tox .tox-edit-area::before{border:2px solid #006ce7;border-radius:4px;content:'';inset:0;opacity:0;pointer-events:none;position:absolute;transition:opacity .15s;z-index:1}@media (forced-colors:active){.tox .tox-edit-area::before{border:2px solid highlight}}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1 1;height:100%;position:absolute;width:100%}.tox.tox-edit-focus .tox-edit-area::before{opacity:1}.tox.tox-inline-edit-area{border:1px dotted #eee}.tox .tox-control-wrap{flex:1 1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-custom-preview{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;flex:1 1;padding:8px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{box-sizing:border-box;max-width:25em}.tox .tox-autocompleter .tox-autocompleter-highlight{font-weight:700}.tox .tox-color-input{display:flex;position:relative;z-index:1}.tox .tox-color-input .tox-textfield{z-index:-1}.tox .tox-color-input span{border-color:rgba(34 47 3.1%);border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;height:24px;position:absolute;top:6px;width:24px}@media (forced-colors:active){.tox .tox-color-input span{border-color:currentColor;border-width:2px!important;forced-color-adjust:none}}.tox .tox-color-input span:focus:not([aria-disabled=true]),.tox .tox-color-input span:hover:not([aria-disabled=true]){border-color:#006ce7;cursor:pointer}.tox .tox-color-input span::before{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(-45deg,rgba(0,0,0,.25) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgba(0,0,0,.25) 75%),linear-gradient(-45deg,transparent 75%,rgba(0,0,0,.25) 75%);background-position:0 0,0 6px,6px -6px,-6px 0;background-size:12px 12px;border:1px solid #fff;border-radius:6px;box-sizing:border-box;content:'';height:24px;left:-1px;position:absolute;top:-1px;width:24px;z-index:-1}@media (forced-colors:active){.tox .tox-color-input span::before{border:none}}.tox .tox-color-input span[aria-disabled=true]{cursor:not-allowed}.tox:not([dir=rtl]) .tox-color-input .tox-textfield{padding-left:36px}.tox:not([dir=rtl]) .tox-color-input span{left:6px}.tox[dir=rtl] .tox-color-input .tox-textfield{padding-right:36px}.tox[dir=rtl] .tox-color-input span{right:6px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:none;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1 1;flex-direction:column}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form-group--maximize{flex:1 1}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1 1;flex-direction:column}.tox .tox-form__group--stretched .tox-textarea{flex:1 1}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1 1}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1 1;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-context-form__group .tox-button--icon.tox-lock-context-form-size-input{margin-left:8px;margin-right:8px}.tox .tox-listboxfield .tox-listbox--select,.tox .tox-textarea,.tox .tox-textarea-wrap .tox-textarea:focus,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-textarea[disabled],.tox .tox-textfield[disabled],.tox .tox-toolbar-textfield[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-custom-editor:focus-within,.tox .tox-focusable-wrapper:focus,.tox .tox-listboxfield .tox-listbox--select:focus,.tox .tox-textarea-wrap:focus-within,.tox .tox-textarea:focus,.tox .tox-textfield:focus,.tox .tox-toolbar-textfield:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}.tox .tox-toolbar-textfield{max-width:250px;min-height:0;min-height:initial;height:28px;margin:5px 0 6px 0}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:none;box-shadow:initial;color:#006ce7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox .tox-textfield-size{width:80px}.tox:not([dir=rtl]) .tox-toolbar-textfield+*{margin-left:4px}.tox[dir=rtl] .tox-toolbar-textfield+*{margin-right:4px}.tox .tox-listboxfield{cursor:pointer;position:relative}.tox .tox-listboxfield .tox-listbox--select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-listbox__select-label{cursor:default;flex:1 1;margin:0 4px}.tox .tox-listbox__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-listbox__select-chevron svg{fill:#222f3e}@media (forced-colors:active){.tox .tox-listbox__select-chevron svg{fill:currentColor!important}}.tox .tox-listboxfield .tox-listbox--select{align-items:center;display:flex}.tox:not([dir=rtl]) .tox-listboxfield svg{right:8px}.tox[dir=rtl] .tox-listboxfield svg{left:8px}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{-webkit-appearance:none;appearance:none;background-color:#fff;border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;min-height:34px;outline:0;padding:5px 5.5px;resize:none;width:100%}.tox .tox-selectfield select[disabled]{background-color:#f2f2f2;color:rgba(34,47,62,.85);cursor:not-allowed}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield select:focus{background-color:#fff;border-color:#006ce7;box-shadow:0 0 0 1px #006ce7;outline:0}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-selectfield select option:checked{background-color:revert;color:revert}.tox:not([dir=rtl]) .tox-selectfield select[size="0"],.tox:not([dir=rtl]) .tox-selectfield select[size="1"]{padding-right:24px}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield select[size="0"],.tox[dir=rtl] .tox-selectfield select[size="1"]{padding-left:24px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-textarea-wrap{border-color:#eee;border-radius:6px;border-style:solid;border-width:1px;display:flex;flex:1 1;overflow:hidden}.tox .tox-textarea{-webkit-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox .tox-textarea-wrap .tox-textarea{border:none}.tox .tox-textarea-wrap .tox-textarea:focus{border:none}.tox-fullscreen{border:0;height:100%;margin:0;overflow:hidden;overscroll-behavior:none;padding:0;touch-action:pinch-zoom;width:100%}.tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-shadowhost.tox-fullscreen,.tox.tox-tinymce.tox-fullscreen{left:0;position:fixed;top:0;z-index:1200}.tox.tox-tinymce.tox-fullscreen{background-color:transparent}.tox-fullscreen .tox.tox-tinymce-aux,.tox-fullscreen~.tox.tox-tinymce-aux{z-index:1201}.tox .tox-help__more-link{list-style:none;margin-top:1em}.tox .tox-imagepreview{background-color:#666;height:380px;overflow:hidden;position:relative;width:100%}.tox .tox-imagepreview.tox-imagepreview__loaded{overflow:auto}.tox .tox-imagepreview__container{display:flex;left:100vw;position:absolute;top:100vw}.tox .tox-imagepreview__image{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools .tox-spacer{flex:1 1}.tox .tox-image-tools .tox-bar{align-items:center;display:flex;height:60px;justify-content:center}.tox .tox-image-tools .tox-imagepreview,.tox .tox-image-tools .tox-imagepreview+.tox-bar{margin-top:8px}.tox .tox-image-tools .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-image-tools .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-image-tools .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-image-tools .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-image-tools .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-image-tools .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-image-tools .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox .tox-image-selector-loading-spinner-wrapper{display:flex;justify-content:center;align-items:center}.tox .tox-image-selector-loading-spinner{position:absolute;width:min(24px,30%);aspect-ratio:1;border-radius:50%;border:3px solid #006ce7;border-bottom-color:transparent;animation:tox-rotation 1s linear infinite}.tox .tox-toolbar .tox-image-selector,.tox .tox-toolbar__overflow .tox-image-selector,.tox .tox-toolbar__primary .tox-image-selector{margin:5px 0 6px 11px}.tox .tox-image-selector-menu{border:0;border-radius:3px;margin:-4px -4px;padding:4px}.tox .tox-image-selector-menu .tox-collection--list .tox-collection__group{border:0;padding:0;margin:-4px -4px}.tox .tox-image-selector-menu .tox-collection__item{max-width:48px}.tox .tox-image-selector-menu .tox-collection__item-icon{border:1px solid #eee;border-radius:3px;margin-bottom:4px;width:100%}.tox .tox-image-selector-menu .tox-collection__item-icon svg path{stroke:#c00}.tox .tox-image-selector__row{display:flex}.tox .tox-image-selector--remove{align-items:center;display:flex;justify-content:center}.tox .tox-image-selector--remove svg path{stroke:#c00}.tox .tox-image-selector-image-wrapper{width:46px;height:46px;display:flex;align-items:center;justify-content:center}.tox .tox-image-selector-image-img{max-width:100%;max-height:100%}.tox .tox-image-selector__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-image-selector__picker-btn svg{fill:#222f3e;height:24px;width:24px}.tox .tox-image-selector__picker-btn:hover{background:#f0f0f0}.tox .tox-insert-table-picker{background-color:#fff;display:flex;flex-wrap:wrap;width:170px}.tox .tox-insert-table-picker>div{border-color:#eee;border-style:solid;border-width:0 1px 1px 0;box-sizing:border-box;height:17px;width:17px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px -4px}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:#006ce7;border-color:#eee}@media (forced-colors:active){.tox .tox-insert-table-picker .tox-insert-table-picker__selected{border-color:Highlight;filter:contrast(50%)}}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox-mentions__card-common{z-index:1200}.tox.tox-mentions__card{background:#fff;border:1px solid #eee;display:flex;padding:4px 8px}.tox.tox-mentions__card .tox-mentions__container{display:flex;flex-direction:column;align-self:center;margin:0 4px}.tox .tox-mentions__avatar{width:42px;height:42px;border-radius:50%;margin-right:4px}.tox .tox-mentions__username{font-size:14px;line-height:21px;color:#222f3e}.tox .tox-mentions__description{font-size:12px;line-height:21px;color:rgba(34,47,62,.7)}.tox .tox-collection__item--active .tox-mentions__description,.tox .tox-collection__item--active .tox-mentions__username{color:inherit}.tox .tox-menu{background-color:#fff;border:1px solid transparent;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);display:inline-block;overflow:hidden;vertical-align:top;z-index:1150}.tox .tox-menu.tox-collection.tox-collection--list{padding:0 4px}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:8px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:8px}@media only screen and (min-width:768px){.tox .tox-menu .tox-collection__item-label{overflow-wrap:break-word;word-break:normal}.tox .tox-dialog__popups .tox-menu .tox-collection__item-label{word-break:break-all}}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;grid-column:1/-1;grid-row:1;padding:0 11px 0 12px}.tox .tox-promotion+.tox-menubar{grid-column:1}.tox .tox-promotion{background:repeating-linear-gradient(transparent 0 1px,transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;background-color:#fff;grid-column:2;grid-row:1;-webkit-padding-end:8px;padding-inline-end:8px;-webkit-padding-start:4px;padding-inline-start:4px;padding-top:5px}.tox .tox-promotion-link{align-items:unsafe center;background-color:#e8f1f8;border-radius:5px;color:#086be6;cursor:pointer;display:flex;font-size:14px;height:26.6px;padding:4px 8px;white-space:nowrap}.tox .tox-promotion-link:hover{background-color:#b4d7ff}.tox .tox-promotion-link:focus{background-color:#d9edf7}.tox .tox-mbtn{align-items:center;background:#fff;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:5px 1px 6px 0;outline:0;padding:0 4px;text-transform:none;width:auto}.tox .tox-mbtn[disabled]{background-color:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:focus:not(:disabled){background:#fff;border:0;box-shadow:none;color:#222f3e;position:relative;z-index:1}.tox .tox-mbtn:focus:not(:disabled)::after{pointer-events:none;border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-mbtn:focus:not(:disabled)::after{border:2px solid highlight}}.tox .tox-mbtn--active,.tox .tox-mbtn:not(:disabled).tox-mbtn--active:focus{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active){background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{border-radius:6px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;display:grid;font-size:14px;font-weight:400;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-left:auto;margin-right:auto;margin-top:4px;opacity:0;padding:4px;transition:transform .1s ease-in,opacity 150ms ease-in;width:-webkit-max-content;width:max-content}.tox .tox-notification a{cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification p{font-size:14px;font-weight:400}.tox .tox-notification:focus{border-color:#006ce7;box-shadow:0 0 0 1px #006ce7}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#e4eeda;border-color:#d7e6c8;color:#222f3e}.tox .tox-notification--success p{color:#222f3e}.tox .tox-notification--success a{color:#517342}.tox .tox-notification--success a:focus,.tox .tox-notification--success a:hover{color:#24321d;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--success a:focus-visible{border-radius:1px;outline:2px solid #517342;outline-offset:2px}.tox .tox-notification--success a:active{color:#0d120a;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--success svg{fill:#222f3e}.tox .tox-notification--error{background-color:#f5cccc;border-color:#f0b3b3;color:#222f3e}.tox .tox-notification--error p{color:#222f3e}.tox .tox-notification--error a{color:#77181f}.tox .tox-notification--error a:focus,.tox .tox-notification--error a:hover{color:#220709;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--error a:focus-visible{border-radius:1px;outline:2px solid #77181f;outline-offset:2px}.tox .tox-notification--error a:active{color:#000;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--error svg{fill:#222f3e}.tox .tox-notification--warn,.tox .tox-notification--warning{background-color:#fff5cc;border-color:#fff0b3;color:#222f3e}.tox .tox-notification--warn p,.tox .tox-notification--warning p{color:#222f3e}.tox .tox-notification--warn a,.tox .tox-notification--warning a{color:#7a6e25}.tox .tox-notification--warn a:focus,.tox .tox-notification--warn a:hover,.tox .tox-notification--warning a:focus,.tox .tox-notification--warning a:hover{color:#2c280d;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--warn a:focus-visible,.tox .tox-notification--warning a:focus-visible{border-radius:1px;outline:2px solid #7a6e25;outline-offset:2px}.tox .tox-notification--warn a:active,.tox .tox-notification--warning a:active{color:#050502;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--warn svg,.tox .tox-notification--warning svg{fill:#222f3e}.tox .tox-notification--info{background-color:#d6e7fb;border-color:#c1dbf9;color:#222f3e}.tox .tox-notification--info p{color:#222f3e}.tox .tox-notification--info a{color:#2a64a6}.tox .tox-notification--info a:focus,.tox .tox-notification--info a:hover{color:#163355;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--info a:focus-visible{border-radius:1px;outline:2px solid #2a64a6;outline-offset:2px}.tox .tox-notification--info a:active{color:#0b1a2c;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-notification--info svg{fill:#222f3e}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;grid-column-end:2;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;grid-column-end:4;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{grid-column-end:4;grid-column-start:1;grid-row-end:3;grid-row-start:2;justify-self:center}.tox .tox-notification-container-dock-fadeout{opacity:0;visibility:hidden}.tox .tox-notification-container-dock-fadein{opacity:1;visibility:visible}.tox .tox-notification-container-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox .tox-notification-container-dock-transition.tox-notification-container-dock-fadein{transition-delay:0s}.tox .tox-onboarding-overlay{height:100%;background-color:#f0f0f0;position:absolute;top:0;left:0;right:0;z-index:1302;overflow:auto;display:grid;justify-content:center;align-items:center}.tox .tox-onboarding-dialog{max-width:512px;background-color:#fff;display:flex;flex-direction:column;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);border-radius:12px;margin:8px}.tox .tox-onboarding-dialog .tox-onboarding-header{color:#222f3e;display:flex;justify-content:center;align-items:center;font-size:20px;margin:24px 0 8px}.tox .tox-onboarding-dialog .tox-onboarding-step{display:grid;grid-template-columns:-webkit-min-content 1fr -webkit-min-content;grid-template-columns:min-content 1fr min-content;align-items:center;margin:0 24px}.tox .tox-onboarding-dialog .tox-onboarding-step:not(:last-child){border-bottom:1px solid #e3e3e3}.tox .tox-onboarding-dialog .tox-onboarding-step--number{width:24px;aspect-ratio:1;border-radius:50%;border:1px solid #00ad0e;display:flex;justify-content:center;align-items:center;font-size:12px;font-weight:700;color:#00ad0e}.tox .tox-onboarding-dialog .tox-onboarding-step--body{padding:24px 0 24px 16px}.tox .tox-onboarding-dialog .tox-onboarding-step--body-header{color:#222f3e;font-size:14px;font-weight:700;margin-bottom:4px}.tox .tox-onboarding-dialog .tox-onboarding-step--body-details{color:rgba(34,47,62,.7);font-size:14px}.tox .tox-onboarding-dialog .tox-onboarding-step--action{padding-left:24px}.tox .tox-onboarding-dialog .tox-onboarding-footer{background-color:#f0f0f0;display:flex;justify-content:space-between;align-items:center;padding:16px 24px;border-bottom-left-radius:12px;border-bottom-right-radius:12px}.tox .tox-onboarding-dialog .tox-onboarding-footer p{display:flex;align-items:center;justify-content:center;gap:4px;font-size:14px;color:rgba(34,47,62,.7)}.tox .tox-onboarding-dialog svg{width:24px;fill:rgba(34,47,62,0.7)}.tox .tox-promotion-dialog .tox-promotion-dialog-plugin{display:grid;align-items:center;grid-template-columns:-webkit-min-content 1fr -webkit-min-content;grid-template-columns:min-content 1fr min-content;border-bottom:1px solid #e3e3e3;padding:24px 0;margin:0 16px}.tox .tox-promotion-dialog .tox-promotion-dialog-plugin--body{margin:0 16px}.tox .tox-promotion-dialog .tox-promotion-dialog-plugin--body .tox-promotion-dialog-plugin-header{color:#222f3e;font-size:14px;font-weight:700;margin-bottom:4px}.tox .tox-promotion-dialog .tox-promotion-dialog-plugin--body .tox-promotion-dialog-plugin-details{color:rgba(34,47,62,.7);font-size:14px}.tox .tox-promotion-dialog .tox-promotion-dialog-plugin--icon{display:grid;place-content:center;width:56px;height:56px;line-height:24px;font-size:24px;border-radius:12px;background:linear-gradient(180deg,#fff 24%,#f0f0f0 100%);box-shadow:0 1px 1px 0 #222f3e12,0 3px 6px 0 #222f3e06;color:#006ce7}.tox .tox-promotion-dialog--subtitle{margin:16px;color:rgba(34,47,62,.7);font-size:14px}.tox .tox-promotion-dialog--explore{text-align:center;margin:16px;color:rgba(34,47,62,.7);font-size:14px}.tox .tox-promotion-dialog--explore a{color:#006ce7}.tox .tox-promotion-dialog--footer{background-color:#f0f0f0;color:rgba(34,47,62,.7);font-size:12px;text-align:center;padding:16px}.tox .tox-promotion-button{display:flex;align-items:center;height:26.6px;line-height:26.6px;font-size:14px;font-weight:700;background-color:#f1ebf9;color:#851aff;padding:8px 16px;cursor:pointer;white-space:nowrap;border-radius:5px}.tox .tox-promotion-button:focus{outline:1px solid #851AFF}.tox .tox-onboarding-dialog a,.tox .tox-promotion-dialog--footer a{color:rgba(34,47,62,.7);cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-onboarding-dialog a:focus,.tox .tox-onboarding-dialog a:hover,.tox .tox-promotion-dialog--footer a:focus,.tox .tox-promotion-dialog--footer a:hover{color:#071729;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-onboarding-dialog a:focus-visible,.tox .tox-promotion-dialog--footer a:focus-visible{border-radius:1px;outline:2px solid #144782;outline-offset:2px}.tox .tox-onboarding-dialog a:active,.tox .tox-promotion-dialog--footer a:active{color:#000;-webkit-text-decoration:underline;text-decoration:underline}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar,.tox .tox-pop--resizing .tox-toolbar__group{flex-wrap:nowrap}.tox .tox-pop--transition{transition:.15s ease;transition-property:left,right,top,bottom}.tox .tox-pop--transition::after,.tox .tox-pop--transition::before{transition:all .15s,visibility 0s,opacity 75ms ease 75ms}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #eee;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent;margin-bottom:-1px}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;opacity:1;position:absolute;width:0}@media (forced-colors:active){.tox .tox-pop::after,.tox .tox-pop::before{content:none}}.tox .tox-pop.tox-pop--inset::after,.tox .tox-pop.tox-pop--inset::before{opacity:0;transition:all 0s .15s,visibility 0s,opacity 75ms ease}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#eee transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #eee transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #eee transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #eee;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{background-color:#f0f0f0;background-color:var(--tox-private-sidebar-background-color,#f0f0f0);display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-sidebar-content{display:flex;flex-direction:column;position:relative;height:100%;min-width:300px;max-width:300px;width:300px;border-left:1px solid #e3e3e3;border-left:1px solid var(--tox-private-sidebar-border-color,#e3e3e3)}.tox .tox-sidebar-content__header{align-items:center;display:flex;justify-content:space-between;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);box-shadow:var(--tox-private-sidebar-header-box-shadow,0 4px 8px 0 rgba(34,47,62,.1));padding:8px 12px;padding:var(--tox-private-pad-sm,8px) 12px;background:#fff;background:var(--tox-private-background-color,#fff);z-index:1}.tox .tox-sidebar-content__header .tox-sidebar-content__header-close-button{margin-left:auto}.tox .tox-sidebar-content__title{font-size:20px;font-size:var(--tox-private-font-size-lg, 20px);font-weight:normal;font-weight:var(--tox-private-font-weight-normal,normal);padding:8px 0 8px 0;padding:var(--tox-private-pad-sm,8px) 0 var(--tox-private-pad-sm,8px) 0;color:#222f3e;color:var(--tox-private-text-color,#222f3e);line-height:28px}.tox-ai .tox-ai__user-prompt{display:flex;flex-direction:column;margin-left:auto;gap:inherit}.tox-ai .tox-ai__user-prompt__context{margin-left:auto}.tox-ai .tox-ai__user-prompt__text{background-color:#f0f0f0;background-color:var(--tox-private-ai-user-prompt-background,#f0f0f0);padding:8px 12px;padding:var(--tox-private-pad-sm,8px) 12px;border-radius:6px;border-radius:var(--tox-private-control-border-radius,6px);max-width:80%;align-self:flex-end;color:#222f3e;color:var(--tox-private-text-color,#222f3e)}.tox-ai .tox-ai__scroll{overflow:auto;background-color:#fff;background-color:var(--tox-private-background-color,#fff);display:flex;padding:12px;flex-direction:column;align-items:flex-start;gap:12px;flex:1 0;align-self:stretch}.tox-ai .tox-ai__response-content{padding:8px 0;padding:var(--tox-private-pad-sm,8px) 0;color:#222f3e;color:var(--tox-private-text-color,#222f3e);font-feature-settings:'liga' off,'clig' off;font-size:14px;font-size:var(--tox-private-font-size-sm, 14px);font-style:normal;font-weight:normal;font-weight:var(--tox-private-font-weight-normal,normal);line-height:18px;line-height:var(--tox-private-line-height, 18px);white-space:pre-wrap}.tox-ai .tox-ai__response.tox-ai__response-streaming{background:linear-gradient(180deg,#222f3e 0,color-mix(in srgb,#222f3e 0,transparent) 100%);background:linear-gradient(180deg,var(--tox-private-color-black,#222f3e) 0,color-mix(in srgb,var(--tox-private-color-black,#222f3e) 0,transparent) 100%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.tox-ai .tox-ai__error-message{border-radius:6px;border-radius:var(--tox-private-panel-border-radius,6px);border:1px solid #c00;border:1px solid var(--tox-private-color-error,#c00);background:linear-gradient(0deg,color-mix(in srgb,#fff 90%,transparent) 0,color-mix(in srgb,#fff 90%,transparent) 100%),#c00;background:linear-gradient(0deg,color-mix(in srgb,var(--tox-private-color-white,#fff) 90%,transparent) 0,color-mix(in srgb,var(--tox-private-color-white,#fff) 90%,transparent) 100%),var(--tox-private-color-error,#c00);padding:8px;padding:var(--tox-private-pad-sm,8px);width:100%}.tox-ai .tox-ai__footer{border-top:1px solid #e3e3e3;border-top:1px solid var(--tox-private-ai-footer-border-color,#e3e3e3);padding:12px;gap:8px;gap:var(--tox-private-pad-sm,8px);background-color:#fff;background-color:var(--tox-private-background-color,#fff);display:flex;flex-direction:column}.tox-ai .tox-ai__footer-actions{display:flex;gap:8px;gap:var(--tox-private-pad-sm,8px)}.tox .tox-selector{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;display:inline-block;height:10px;position:absolute;width:10px}.tox.tox-platform-touch .tox-selector{height:12px;width:12px}.tox .tox-skeleton .tox-skeleton__line{height:16px;width:100%;background:linear-gradient(to right,rgba(240,240,240,.5) 8%,rgba(240,240,240,.7) 18%,rgba(240,240,240,.5) 33%);animation:wave 2s infinite ease-out}.tox .tox-skeleton .tox-skeleton__circle{height:36px;width:36px;margin-right:8px;border-radius:100%;background:linear-gradient(to right,rgba(240,240,240,.5) 8%,rgba(240,240,240,.7) 18%,rgba(240,240,240,.5) 33%);animation:wave 2s infinite ease-out}@keyframes wave{0%{background-position:-268px 0}100%{background-position:268px 0}}.tox .tox-slider{align-items:center;display:flex;flex:1 1;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #eee;border-radius:6px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#006ce7;border:2px solid #0054b4;border-radius:6px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-form__controls-h-stack>.tox-slider:not(:first-of-type){-webkit-margin-start:8px;margin-inline-start:8px}.tox .tox-form__controls-h-stack>.tox-form__group+.tox-slider{-webkit-margin-start:32px;margin-inline-start:32px}.tox .tox-form__controls-h-stack>.tox-slider+.tox-form__group{-webkit-margin-start:32px;margin-inline-start:32px}.tox .tox-toolbar-slider{align-items:center;display:inline-flex;height:16px}.tox .tox-toolbar-slider__input{-webkit-appearance:none;appearance:none;background:#eee;border-radius:16px;width:130px;height:2px}.tox .tox-toolbar-slider__input::-webkit-slider-runnable-track{background-color:transparent;height:16px}.tox .tox-toolbar-slider__input::-moz-range-track{background-color:transparent;height:16px}.tox .tox-toolbar-slider__input::-webkit-slider-thumb{-webkit-appearance:none;background-color:#006ce7;border-radius:16px;border:none;height:16px;width:16px}.tox .tox-toolbar-slider__input::-moz-range-thumb{appearance:none;background-color:#006ce7;border-radius:16px;border:none;height:16px;width:16px}.tox .tox-toolbar-slider__input:focus-visible{outline:0}.tox .tox-toolbar-slider__input:focus::-webkit-slider-thumb{background-color:#0060ce;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #006ce7}.tox .tox-toolbar-slider__input:focus::-moz-range-thumb{background-color:#0060ce;box-shadow:inset 0 0 0 1px #fff,0 0 0 2px #006ce7}.tox .tox-toolbar-slider__input:hover::-webkit-slider-thumb{background-color:#0060ce}.tox .tox-toolbar-slider__input:hover::-moz-range-thumb{background-color:#0060ce}.tox .tox-toolbar-slider__input:active::-webkit-slider-thumb{background-color:#0054b4}.tox .tox-toolbar-slider__input:active::-moz-range-thumb{background-color:#0054b4}.tox .tox-toolbar-slider__input[disabled]::-webkit-slider-thumb{background-color:rgba(255,255,255,.5)}.tox .tox-toolbar-slider__input[disabled]::-moz-range-thumb{background-color:rgba(255,255,255,.5)}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:first-child{animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox:not([dir=rtl]) .tox-spinner>div:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-spinner>div:not(:first-child){margin-right:4px}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #e3e3e3;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:14px;font-weight:400;height:25px;overflow:hidden;padding:0 8px;position:relative;text-transform:none}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__right-container{display:flex;justify-content:flex-end;white-space:nowrap}.tox .tox-statusbar__help-text{text-align:center}.tox .tox-statusbar__text-container{align-items:flex-start;display:flex;flex:1 1 auto;height:16px;justify-content:space-between}@media only screen and (min-width:768px){.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__help-text,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__path,.tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols>.tox-statusbar__right-container{flex-grow:0;flex-shrink:0;flex-basis:calc(100% / 3)}}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end{justify-content:flex-end}.tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start{justify-content:flex-start}.tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around{justify-content:space-around}.tox .tox-statusbar__path>*{display:inline;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}@media only screen and (max-width:767px){.tox .tox-statusbar__text-container .tox-statusbar__help-text{display:none}.tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child{display:block}}.tox .tox-statusbar a,.tox .tox-statusbar__path-item,.tox .tox-statusbar__wordcount{color:rgba(34,47,62,.7);position:relative;-webkit-text-decoration:none;text-decoration:none}.tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),.tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]){color:#222f3e;cursor:pointer}.tox .tox-statusbar a:focus-visible::after,.tox .tox-statusbar__path-item:focus-visible::after,.tox .tox-statusbar__wordcount:focus-visible::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-statusbar a:focus-visible::after,.tox .tox-statusbar__path-item:focus-visible::after,.tox .tox-statusbar__wordcount:focus-visible::after{border:2px solid highlight}}.tox .tox-statusbar__branding svg{fill:rgba(34,47,62,0.8);height:1em;margin-left:.3em;width:auto}@media (forced-colors:active){.tox .tox-statusbar__branding svg{fill:currentColor}}.tox .tox-statusbar__branding a{align-items:center;display:inline-flex}.tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,.tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg{fill:#222f3e}.tox .tox-statusbar__resize-cursor-default{cursor:ns-resize}.tox .tox-statusbar__resize-cursor-both{cursor:nwse-resize}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;display:flex;flex:0 0 auto;justify-content:flex-end;margin-bottom:3px;margin-left:4px;margin-right:calc(3px - 8px);margin-top:3px;padding-bottom:0;padding-left:0;padding-right:0;position:relative}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,0.5)}.tox .tox-statusbar__resize-handle:focus svg,.tox .tox-statusbar__resize-handle:hover svg{fill:#222f3e}.tox .tox-statusbar__resize-handle:focus-visible{background-color:transparent;border-radius:1px 1px 5px 1px;box-shadow:0 0 0 2px transparent}.tox .tox-statusbar__resize-handle:focus-visible::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-statusbar__resize-handle:focus-visible::after{border:2px solid highlight}}.tox .tox-statusbar__resize-handle:only-child{margin-left:auto}.tox:not([dir=rtl]) .tox-statusbar__path>*{margin-right:4px}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:2ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox[dir=rtl] .tox-statusbar__path>*{margin-left:4px}.tox[dir=rtl] .tox-statusbar__branding svg{margin-left:0;margin-right:.3em}.tox .tox-tag{width:-webkit-fit-content;width:fit-content;display:flex;padding:4px 6px;align-items:center;gap:4px;border-radius:3px;background:linear-gradient(0deg,color-mix(in srgb,#fff 90%,transparent) 0,color-mix(in srgb,#fff 90%,transparent) 100%),#006ce7;background:linear-gradient(0deg,color-mix(in srgb,var(--tox-private-color-white,#fff) 90%,transparent) 0,color-mix(in srgb,var(--tox-private-color-white,#fff) 90%,transparent) 100%),var(--tox-private-color-tint,#006ce7);line-height:16px;line-height:var(--tox-private-base-value, 16px);font-size:12px;font-size:var(--tox-private-font-size-xs, 12px)}.tox .tox-tag .tox-tag__icon{height:16px;height:var(--tox-private-base-value,16px)}.tox .tox-tag .tox-tag__close{height:16px;height:var(--tox-private-base-value,16px)}.tox .tox-tag .tox-tag__close .tox-button.tox-button--icon{border:0;padding:0}.tox .tox-tag .tox-tag__close .tox-button.tox-button--icon::before{box-shadow:none}.tox .tox-throbber{z-index:1299}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-toggle{--tox-private-slider-background-color:#fff;--tox-private-slider-border-color:rgb(227, 227, 227);--tox-private-slider-handle-background-color:#222f3e;display:flex;align-items:center;gap:4px;padding:4px;font-weight:400;line-height:24px;white-space:nowrap;background-color:#fff;color:#222f3e}.tox .tox-toggle input{position:absolute;opacity:0;width:0;height:0}.tox .tox-toggle__slider{position:relative;cursor:pointer;box-sizing:border-box;transition:.4s;border-radius:34px;width:28px;height:16px;background-color:var(--tox-private-slider-background-color);border:1px solid var(--tox-private-slider-border-color)}.tox .tox-toggle__slider::before{position:absolute;content:"";height:12px;width:12px;left:1px;bottom:1px;transition:.4s;border-radius:50%;background-color:var(--tox-private-slider-handle-background-color)}.tox input:checked+.tox-toggle__slider{--tox-private-slider-background-color:#006ce7;--tox-private-slider-border-color:#006ce7}.tox input:focus+.tox-toggle__slider{box-shadow:0 0 0 1px #fff,0 0 0 2px #006ce7}.tox input:checked+.tox-toggle__slider::before{transform:translateX(12px);--tox-private-slider-handle-background-color:#fff}.tox input:disabled+.tox-toggle__slider::before{opacity:50%}.tox .tox-tbtn{align-items:center;background:#fff;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;justify-content:center;margin:6px 1px 5px 0;outline:0;padding:0;text-transform:none;width:34px}.tox .tox-tbtn .tox-tbtn__icon-wrap{pointer-events:none}@media (forced-colors:active){.tox .tox-tbtn.tox-tbtn:hover,.tox .tox-tbtn:hover{outline:1px dashed currentColor}.tox .tox-tbtn.tox-tbtn--active,.tox .tox-tbtn.tox-tbtn--enabled,.tox .tox-tbtn.tox-tbtn--enabled:focus,.tox .tox-tbtn.tox-tbtn--enabled:hover,.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){outline:1px solid currentColor;position:relative}}.tox .tox-tbtn svg{display:block;fill:#222f3e}@media (forced-colors:active){.tox .tox-tbtn svg{fill:currentColor!important}.tox .tox-tbtn svg.tox-tbtn--enabled,.tox .tox-tbtn svg:focus:not(.tox-tbtn--disabled){fill:currentColor!important}.tox .tox-tbtn svg .tox-tbtn:disabled,.tox .tox-tbtn svg .tox-tbtn:disabled:hover,.tox .tox-tbtn svg.tox-tbtn--disabled,.tox .tox-tbtn svg.tox-tbtn--disabled:hover{filter:contrast(0%)}}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn:focus{background:#fff;border:0;box-shadow:none;position:relative;z-index:1}.tox .tox-tbtn:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-tbtn:focus::after{border:2px solid highlight}}.tox .tox-tbtn:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled .tox-tbtn--enabled svg{fill:rgba(34,47,62,0.5)}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,0.5)}.tox .tox-tbtn--active,.tox .tox-tbtn--enabled,.tox .tox-tbtn--enabled:focus,.tox .tox-tbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e;position:relative}.tox .tox-tbtn--active>*,.tox .tox-tbtn--enabled:focus>*,.tox .tox-tbtn--enabled:hover>*,.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--active svg,.tox .tox-tbtn--enabled svg,.tox .tox-tbtn--enabled:focus svg,.tox .tox-tbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tbtn--active.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:focus.tox-tbtn--disabled svg,.tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg{fill:rgba(34,47,62,0.5)}.tox .tox-tbtn--enabled:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-tbtn--enabled:focus::after{border:2px solid highlight}}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled){color:#222f3e}.tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg{fill:#222f3e}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:42px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:56px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:auto;height:initial;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:auto;width:initial}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-label--context-toolbar{margin:6px 1px 5px 0;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.tox .tox-number-input{background:#f7f7f7;border-radius:3px;display:flex;margin:6px 1px 5px 0;position:relative;width:auto}.tox .tox-number-input:focus{background:#f7f7f7}.tox .tox-number-input:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-number-input:focus::after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper{display:flex;pointer-events:none;position:relative;text-align:center}.tox .tox-number-input .tox-input-wrapper:focus{background-color:#f7f7f7;z-index:1}.tox .tox-number-input .tox-input-wrapper:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-number-input .tox-input-wrapper:focus::after{border:2px solid highlight}}.tox .tox-number-input .tox-input-wrapper:has(input:focus)::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-number-input .tox-input-wrapper:has(input:focus)::after{border:2px solid highlight}}.tox .tox-number-input input{border-radius:3px;color:#222f3e;font-size:14px;margin:2px 0;pointer-events:all;position:relative;width:60px}.tox .tox-number-input input:hover{background:#f0f0f0;color:#222f3e}.tox .tox-number-input input:focus{background-color:#f7f7f7}.tox .tox-number-input input:disabled{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button{color:#222f3e;height:28px;position:relative;text-align:center;width:24px}@media (forced-colors:active){.tox .tox-number-input button:active,.tox .tox-number-input button:focus,.tox .tox-number-input button:hover{outline:1px solid currentColor!important}}.tox .tox-number-input button svg{display:block;fill:#222f3e;margin:0 auto;transform:scale(.67)}@media (forced-colors:active){.tox .tox-number-input button svg,.tox .tox-number-input button svg:active,.tox .tox-number-input button svg:hover{fill:currentColor!important}.tox .tox-number-input button svg:disabled{filter:contrast(0)}}.tox .tox-number-input button:focus{background:#f7f7f7;z-index:1}.tox .tox-number-input button:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0}@media (forced-colors:active){.tox .tox-number-input button:focus::after{border:2px solid highlight}}.tox .tox-number-input button:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:hover svg{fill:#222f3e}.tox .tox-number-input button:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-number-input button:active svg{fill:#222f3e}.tox .tox-number-input button:disabled{background:#fff;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-number-input button:disabled svg{fill:rgba(34,47,62,0.5)}.tox .tox-number-input button.minus{border-radius:3px 0 0 3px}.tox .tox-number-input button.plus{border-radius:0 3px 3px 0}.tox .tox-number-input:focus:not(:active)>.tox-input-wrapper,.tox .tox-number-input:focus:not(:active)>button{background:#f7f7f7}.tox .tox-tbtn--select{margin:6px 1px 5px 0;padding:0 4px;width:auto}.tox .tox-tbtn--bordered,.tox .tox-tbtn--bordered:focus,.tox .tox-tbtn--bordered:hover{border:1px solid #eee}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;height:auto;height:initial;margin:0 4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,0.5)}@media (forced-colors:active){.tox .tox-tbtn__select-chevron svg{fill:currentColor}}.tox .tox-tbtn--bespoke{background:#f7f7f7}.tox .tox-tbtn--bespoke:focus{background:#f7f7f7}.tox .tox-tbtn--bespoke+.tox-tbtn--bespoke{-webkit-margin-start:4px;margin-inline-start:4px}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-tbtn--disabled .tox-tbtn__select-label,.tox .tox-tbtn--select:disabled .tox-tbtn__select-label{cursor:not-allowed}.tox .tox-split-button__main{border-radius:3px 0 0 3px;margin-right:0}.tox .tox-split-button__main:focus{border:0;box-shadow:none;background:#fff;color:#222f3e;position:relative;z-index:1}.tox .tox-split-button__main:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:3px 0 0 3px}@media (forced-colors:active){.tox .tox-split-button__main:focus::after{border:2px solid highlight}}.tox .tox-split-button__chevron{width:16px;border-radius:0 3px 3px 0;margin-left:0}.tox .tox-split-button__chevron:focus{border:0;box-shadow:none;background:#fff;color:#222f3e;position:relative;z-index:1}.tox .tox-split-button__chevron:focus::after{border-radius:3px;bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:0 3px 3px 0}@media (forced-colors:active){.tox .tox-split-button__chevron:focus::after{border:2px solid highlight}}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,0.5)}@media (forced-colors:active){.tox .tox-split-button__chevron svg{fill:currentColor}}.tox.tox-platform-touch .tox-split-button__main{width:30px}.tox.tox-platform-touch .tox-split-button__chevron{width:20px}.tox .tox-split-button__chevron.tox-tbtn--disabled,.tox .tox-split-button__main.tox-tbtn--disabled{background:#fff;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-split-button__chevron.tox-tbtn--disabled:hover,.tox .tox-split-button__main.tox-tbtn--disabled:hover{background:#fff;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-split-button__chevron.tox-tbtn--disabled:focus,.tox .tox-split-button__main.tox-tbtn--disabled:focus{background:#fff;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-split-button__main.tox-tbtn--disabled svg .tox-icon-highlight-bg-color__color,.tox .tox-split-button__main.tox-tbtn--disabled svg .tox-icon-text-color__color{opacity:.3}.tox .tox-toolbar-overlord{background-color:#fff}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background-attachment:local;background-color:#fff;background-image:repeating-linear-gradient(#e3e3e3 0 1px,transparent 1px 39px);background-position:center top 40px;background-repeat:no-repeat;background-size:calc(100% - 11px * 2) calc(100% - 41px);display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;padding:0 0;transform:perspective(1px)}.tox .tox-toolbar-overlord>.tox-toolbar,.tox .tox-toolbar-overlord>.tox-toolbar__overflow,.tox .tox-toolbar-overlord>.tox-toolbar__primary{background-position:center top 0;background-size:calc(100% - 11px * 2) calc(100% - 0px)}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{height:0;opacity:0;padding-bottom:0;padding-top:0;visibility:hidden}.tox .tox-toolbar__overflow--growing{transition:height .3s ease,opacity .2s linear .1s}.tox .tox-toolbar__overflow--shrinking{transition:opacity .3s ease,height .2s linear .1s,visibility 0s linear .3s}.tox .tox-anchorbar,.tox .tox-toolbar-overlord{grid-column:1/-1}.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{border-top:1px solid transparent;margin-top:-1px;padding-bottom:1px;padding-top:1px}@media (forced-colors:active){.tox .tox-menubar+.tox-toolbar,.tox .tox-menubar+.tox-toolbar-overlord{outline:1px solid currentColor}}.tox .tox-toolbar--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,.tox .tox-toolbar-overlord .tox-toolbar__primary{background-position:center top 39px}.tox .tox-editor-header>.tox-toolbar--scrolling,.tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child{background-image:none}.tox .tox-focusable-wrapper{border:1px solid transparent;margin-right:2px;pointer-events:none}.tox .tox-focusable-wrapper .tox-textfield-size{pointer-events:all}.tox .tox-focusable-wrapper:focus{background-color:#f7f7f7;border-radius:6px;border-style:solid;border-width:1px}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;background-position:center top 43px;background-size:calc(100% - 8px * 2) calc(100% - 51px);border:none;border-radius:6px;box-shadow:0 0 2px 0 rgba(34,47,62,.2),0 4px 8px 0 rgba(34,47,62,.15);overscroll-behavior:none;padding:4px 0}@media (forced-colors:active){.tox.tox-tinymce-aux .tox-toolbar__overflow{border:solid}}.tox-pop .tox-pop__dialog .tox-toolbar{background-position:center top 43px;background-size:calc(100% - 11px * 2) calc(100% - 51px);padding:4px 0}.tox-context-form__group{display:flex;align-items:center}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 11px 0 12px}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-toolbar--scrolling .tox-toolbar__group{flex-shrink:0;flex-wrap:nowrap}.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type){border-right:1px solid transparent}.tox[dir=rtl] .tox-toolbar__group:not(:last-of-type){border-left:1px solid transparent}.tox .tox-tooltip{display:inline-block;max-width:min(80%,15em);padding:8px 0 0 0;position:relative;width:-webkit-max-content;width:max-content;z-index:1150}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:6px;box-shadow:none;color:#fff;font-size:12px;font-style:normal;font-weight:600;overflow-wrap:break-word;padding:4px 6px;text-transform:none}@media (forced-colors:active){.tox .tox-tooltip__body{outline:outset 1px}}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-tree{display:flex;flex-direction:column}.tox .tox-tree .tox-trbtn{align-items:center;background:0 0;border:0;border-radius:4px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:28px;margin-bottom:4px;margin-top:4px;outline:0;overflow:hidden;padding:0;padding-left:8px;text-transform:none}.tox .tox-tree .tox-trbtn .tox-tree__label{cursor:default;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-tree .tox-trbtn svg{display:block;fill:#222f3e}.tox .tox-tree .tox-trbtn:focus{background:#f0f0f0;border:0;box-shadow:none}.tox .tox-tree .tox-trbtn:hover{background:#f0f0f0;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn:active svg{fill:#222f3e}.tox .tox-tree .tox-trbtn--disabled,.tox .tox-tree .tox-trbtn--disabled:hover,.tox .tox-tree .tox-trbtn:disabled,.tox .tox-tree .tox-trbtn:disabled:hover{background:0 0;border:0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tree .tox-trbtn--disabled svg,.tox .tox-tree .tox-trbtn--disabled:hover svg,.tox .tox-tree .tox-trbtn:disabled svg,.tox .tox-tree .tox-trbtn:disabled:hover svg{fill:rgba(34,47,62,0.5)}.tox .tox-tree .tox-trbtn--enabled,.tox .tox-tree .tox-trbtn--enabled:hover{background:#a6ccf7;border:0;box-shadow:none;color:#222f3e}.tox .tox-tree .tox-trbtn--enabled:hover>*,.tox .tox-tree .tox-trbtn--enabled>*{transform:none}.tox .tox-tree .tox-trbtn--enabled svg,.tox .tox-tree .tox-trbtn--enabled:hover svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled){color:#222f3e}.tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg{fill:#222f3e}.tox .tox-tree .tox-trbtn:active>*{transform:none}.tox .tox-tree .tox-trbtn--return{align-self:stretch;height:auto;height:initial;width:16px}.tox .tox-tree .tox-trbtn--labeled{padding:0 4px;width:auto;width:initial}.tox .tox-tree .tox-trbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tree .tox-tree--directory{display:flex;flex-direction:column}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label{font-weight:700}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron{margin-right:6px}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--shrinking) .tox-chevron{transition:transform .5s ease-in-out}.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,.tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--open) .tox-chevron{transform:rotate(90deg)}.tox .tox-tree .tox-tree--leaf__label{font-weight:400}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn{margin-left:auto}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg{fill:transparent}.tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,.tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg{fill:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover){background-color:transparent;color:#222f3e}.tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg{fill:#222f3e}.tox .tox-tree .tox-icon-custom-state{flex-grow:1;display:flex;justify-content:flex-end}.tox .tox-tree .tox-tree--directory__children{overflow:hidden;padding-left:16px}.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,.tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking{transition:height .5s ease-in-out}.tox .tox-tree .tox-trbtn.tox-tree--leaf__label{display:flex;justify-content:space-between}[data-mce-name=uploadcare-enhance-filter] .color-swatch-remove-color path{fill:#c00;stroke:#c00}.tox .tox-view-wrap,.tox .tox-view-wrap__slot-container{background-color:#fff;display:flex;flex:1 1;flex-direction:column;height:100%}.tox .tox-view{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden;background-color:#fff}.tox .tox-view__header{align-items:center;display:flex;font-size:16px;justify-content:space-between;padding:10px;position:relative}.tox .tox-view__label{color:#222f3e;font-weight:700;line-height:24px;padding:4px 16px;text-align:center;white-space:nowrap}.tox .tox-view__label--normal{font-size:16px}.tox .tox-view__label--large{font-size:20px}.tox .tox-view--mobile.tox-view__header,.tox .tox-view--mobile.tox-view__toolbar{padding:8px}.tox .tox-view--scrolling{flex-wrap:nowrap;overflow-x:auto}.tox .tox-view__align-right{margin-left:auto}.tox .tox-view__toolbar{display:flex;flex-direction:row;gap:8px;justify-content:space-between;overflow-x:auto;padding:10px}.tox .tox-view__toolbar__group{display:flex;flex-direction:row;gap:12px}.tox .tox-view__header-end,.tox .tox-view__header-start{display:flex}.tox .tox-view__pane{height:100%;padding:8px;position:relative;width:100%}.tox .tox-view__pane_panel{border:1px solid #eee;border-radius:6px}.tox:not([dir=rtl]) .tox-view__header .tox-view__header-end>*,.tox:not([dir=rtl]) .tox-view__header .tox-view__header-start>*{margin-left:8px}.tox[dir=rtl] .tox-view__header .tox-view__header-end>*,.tox[dir=rtl] .tox-view__header .tox-view__header-start>*{margin-right:8px}.tox .tox-well{border:1px solid #eee;border-radius:6px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #eee;border-radius:6px;display:flex;flex:1 1;overflow:hidden;position:relative}.tox .tox-view .tox-revisionhistory__pane{padding:0}.tox .tox-revisionhistory__container{display:flex;flex-direction:column;height:100%}.tox .tox-revisionhistory{background-color:#fff;border-top:1px solid #f0f0f0;display:flex;flex:1 1;height:100%;overflow-x:auto;overflow-y:hidden;position:relative;width:100%}.tox .tox-revisionhistory__iframe{flex:1 1}.tox .tox-revisionhistory__sidebar{display:flex;flex-direction:column;height:100%;min-width:248px;width:316px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__sidebar-title{background-color:#fff;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);color:#222f3e;font-size:20px;font-weight:400;line-height:28px;padding:12px;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions{background-color:#f0f0f0;display:flex;flex:1 1;flex-direction:column;gap:12px;overflow-y:auto;padding:10px 12px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus{height:100%;position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after{bottom:0;box-shadow:0 0 0 2px #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;bottom:1px;left:1px;right:1px;top:1px}@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card{background-color:#fff;border:1px solid #f0f0f0;border-radius:6px;color:#222f3e;cursor:pointer;display:flex;flex-direction:column;font-size:14px;padding:12px;width:100%}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:hover{box-shadow:0 4px 8px 0 rgba(34,47,62,.1)}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus{position:relative;z-index:1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after{bottom:0;box-shadow:0 0 0 2px #006ce7 #006ce7;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;box-shadow:0 0 0 2px #006ce7!important}@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected{background-color:#fff5cc;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);position:relative}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after{bottom:0;box-shadow:0 0 0 2px #006ce7 #e3b82a;content:'';left:0;position:absolute;right:0;top:0;border-radius:6px;box-shadow:0 0 0 2px #e3b82a}@media (forced-colors:active){.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after{border:2px solid highlight}}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-label{display:block;width:-webkit-min-content;width:min-content;padding:4px 8px;margin-bottom:8px;font-size:12px;font-weight:700;border-radius:4px;background:#d3d5d8}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-content{display:flex;flex-direction:row;gap:8px;align-items:center}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-info{display:flex;flex-direction:column;flex:1 1}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-date-label{font-size:14px;font-weight:700;line-height:18px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-author-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px;font-weight:400}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__avatar{border-radius:50%;height:36px;object-fit:cover;vertical-align:middle;width:36px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__norevision{color:rgba(34,47,62,.7);font-size:16px;line-height:24px;padding:5px 5.5px}.tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-check-icon{color:#222f3e;height:24px}.tox [data-mce-name=suggestededits] .tox-icon .tox-icon--badge{fill:#006ce7}.tox .tox-view .tox-suggestededits__pane{padding:0}.tox .tox-suggestededits__sink{position:relative;z-index:1000}.tox .tox-suggestededits__sink .tox-tiered-menu .tox-collection--list{position:absolute}.tox .tox-suggestededits__container{height:100%;display:flex;flex-direction:column}.tox .tox-suggestededits__container .tox-suggestededits{background-color:#fff;border-top:1px solid #eee;display:flex;flex:1 1;height:inherit;overflow-x:auto;overflow-y:hidden;position:relative}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__content{flex:1 1}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__model{height:100%;position:relative}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__model .tox-suggestededits__iframe{height:100%;width:100%;overflow:scroll;background-color:#fff}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar{background-color:#f0f0f0;display:flex;flex-direction:column;flex:0 1 auto;min-width:248px;width:316px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-header{padding:4px 12px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content{display:flex;flex:1 1;flex-direction:column;gap:12px;overflow:auto;padding:6px 12px 12px 12px;position:relative}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card{background-color:#fff;border-radius:6px;padding:6px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--divider{background-color:#f0f0f0;height:1px;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--editor,.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--single{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:6px;padding:6px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header{display:flex;flex:auto;justify-content:space-between;align-items:center;gap:8px;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user{display:flex;align-items:center;flex:1 0;gap:8px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user .tox-suggestededits__card--avatar{height:24px;width:24px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user .tox-suggestededits__card--avatar .tox-skeleton__circle,.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user .tox-suggestededits__card--avatar img{height:24px;width:24px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user .tox-suggestededits__card--details{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--user .tox-suggestededits__card--details .tox-suggestededits__card--name{color:#222f3e}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--feedback-user{display:flex;align-items:center;flex:1 0;gap:8px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--feedback-user .tox-suggestededits__card--avatar{height:36px;width:36px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--feedback-user .tox-suggestededits__card--details{display:flex;flex-direction:column;justify-content:center;align-items:flex-start}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--feedback-user .tox-suggestededits__card--details .tox-suggestededits__card--name{color:#222f3e;font-size:14px;font-weight:700}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__card--feedback-user .tox-suggestededits__card--details .tox-suggestededits__card--timestamp{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__resolution{align-items:center;border:0;border-radius:20px;height:20px;width:20px;display:flex;flex:0 0 auto;justify-content:center;text-align:center}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__resolution.tox-suggestededits__resolution--accepted .tox-icon svg{fill:#78AB46}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--header .tox-suggestededits__resolution.tox-suggestededits__resolution--rejected .tox-icon svg{fill:#c00}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content{display:flex;flex-direction:column;align-self:stretch;flex:auto;gap:6px;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations{display:flex;gap:8px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations .tox-suggestededits__operations-bar{align-items:center;border-radius:6px;display:flex;flex-direction:column;font-size:12px;justify-content:space-between;width:6px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations .tox-suggestededits__operations-bar--insert{background-color:#78ab46;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations .tox-suggestededits__operations-bar--modify{background-color:#006ce7;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations .tox-suggestededits__operations-bar--remove{background-color:#c00;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__operations .tox-suggestededits__operations-text{color:#222f3e;font-weight:700}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__card--feedback{color:#222f3e;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__card--textarea{border:2px solid #eee;border-radius:6px;color:#222f3e;gap:8px;padding:5px 6px;resize:none;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--content .tox-suggestededits__card--textarea:focus{border:2px solid #006ce7}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--footer{display:flex;flex-direction:column;gap:6px;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--footer .tox-suggestededits__card--timestamp{color:#222f3e;font-size:12px;line-height:18px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--footer .tox-suggestededits__card--timestamp .tox-icon svg{fill:#222F3E80;transform:translate(0,8px);margin-top:-10px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--buttons{display:flex;align-items:center;gap:8px;width:100%}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--buttons.tox-suggestededits__card--review-buttons{justify-content:space-between;padding:6px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card .tox-suggestededits__card--buttons.tox-suggestededits__card--feedback-buttons{justify-content:flex-end}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--hidden{opacity:.5}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--resolved{background-color:#d3d5d8}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--active:focus,.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--active:focus-visible{outline:2px solid #006ce7}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--active .tox-suggestededits__card--single{border-radius:6px}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--active .tox-suggestededits__card--single:focus,.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card.tox-suggestededits__card--active .tox-suggestededits__card--single:focus-visible{outline:2px solid #006ce7}.tox .tox-suggestededits__container .tox-suggestededits .tox-suggestededits__sidebar-content .tox-suggestededits__card:hover{box-shadow:0 4px 8px 0 #d3d5d8}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1 1}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1 1}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/*!
 * FilePondPluginImagePreview 4.6.12
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */
.filepond--image-preview-markup {
  position: absolute;
  left: 0;
  top: 0;
}
.filepond--image-preview-wrapper {
  z-index: 2;
}
.filepond--image-preview-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 5rem;
  max-height: 7rem;
  margin: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filepond--image-preview-overlay svg {
  width: 100%;
  height: auto;
  color: inherit;
  max-height: inherit;
}
.filepond--image-preview-overlay-idle {
  mix-blend-mode: multiply;
  color: rgba(40, 40, 40, 0.85);
}
.filepond--image-preview-overlay-success {
  mix-blend-mode: normal;
  color: rgba(54, 151, 99, 1);
}
.filepond--image-preview-overlay-failure {
  mix-blend-mode: normal;
  color: rgba(196, 78, 71, 1);
}
/* disable for Safari as mix-blend-mode causes the overflow:hidden of the parent container to not work */
@supports (-webkit-marquee-repetition: infinite) and
  ((-o-object-fit: fill) or (object-fit: fill)) {
  .filepond--image-preview-overlay-idle {
    mix-blend-mode: normal;
  }
}
.filepond--image-preview-wrapper {
  /* no interaction */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* have preview fill up all available space */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  margin: 0;

  /* radius is .05em less to prevent the panel background color from shining through */
  border-radius: 0.45em;
  overflow: hidden;

  /* this seems to prevent Chrome from redrawing this layer constantly */
  background: rgba(0, 0, 0, 0.01);
}
.filepond--image-preview {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex; /* this aligns the graphic vertically if the panel is higher than the image */
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: #222;

  /* will be animated */
  will-change: transform, opacity;
}
.filepond--image-clip {
  position: relative;
  overflow: hidden;
  margin: 0 auto;

  /* transparency indicator (currently only supports grid or basic color) */
}
.filepond--image-clip[data-transparency-indicator='grid'] img,
.filepond--image-clip[data-transparency-indicator='grid'] canvas {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox=%270 0 100 100%27 xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23eee%27%3E%3Cpath d=%27M0 0 H50 V50 H0%27/%3E%3Cpath d=%27M50 50 H100 V100 H50%27/%3E%3C/svg%3E");
  background-size: 1.25em 1.25em;
}
.filepond--image-bitmap,
.filepond--image-vector {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}
.filepond--root[data-style-panel-layout~='integrated']
  .filepond--image-preview-wrapper {
  border-radius: 0;
}
.filepond--root[data-style-panel-layout~='integrated']
  .filepond--image-preview {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--image-preview-wrapper {
  border-radius: 99999rem;
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--image-preview-overlay {
  top: auto;
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--file
  .filepond--file-action-button[data-align*='bottom']:not([data-align*='center']) {
  margin-bottom: 0.325em;
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--file
  [data-align*='left'] {
  left: calc(50% - 3em);
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--file
  [data-align*='right'] {
  right: calc(50% - 3em);
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--progress-indicator[data-align*='bottom'][data-align*='left'],
.filepond--root[data-style-panel-layout~='circle']
  .filepond--progress-indicator[data-align*='bottom'][data-align*='right'] {
  margin-bottom: calc(0.325em + 0.1875em);
}
.filepond--root[data-style-panel-layout~='circle']
  .filepond--progress-indicator[data-align*='bottom'][data-align*='center'] {
  margin-top: 0;
  margin-bottom: 0.1875em;
  margin-left: 0.1875em;
}

/*!
 * FilePond 4.32.9
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */

/* eslint-disable */
.filepond--assistant{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--browser.filepond--browser{position:absolute;margin:0;padding:0;left:1em;top:1.75em;width:calc(100% - 2em);opacity:0;font-size:0}.filepond--data{position:absolute;width:0;height:0;padding:0;margin:0;border:none;visibility:hidden;pointer-events:none;contain:strict}.filepond--drip{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;opacity:.1;pointer-events:none;border-radius:.5em;background:rgba(0,0,0,.01)}.filepond--drip-blob{-webkit-transform-origin:center center;transform-origin:center center;width:8em;height:8em;margin-left:-4em;margin-top:-4em;background:#292625;border-radius:50%}.filepond--drip-blob,.filepond--drop-label{position:absolute;top:0;left:0;will-change:transform,opacity}.filepond--drop-label{right:0;margin:0;color:#4f4f4f;display:flex;justify-content:center;align-items:center;height:0;-webkit-user-select:none;-ms-user-select:none;user-select:none}.filepond--drop-label.filepond--drop-label label{display:block;margin:0;padding:.5em}.filepond--drop-label label{cursor:default;font-size:.875em;font-weight:400;text-align:center;line-height:1.5}.filepond--label-action{text-decoration:underline;-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;-webkit-text-decoration-color:#a7a4a4;text-decoration-color:#a7a4a4;cursor:pointer}.filepond--root[data-disabled] .filepond--drop-label label{opacity:.5}.filepond--file-action-button.filepond--file-action-button{font-size:1em;width:1.625em;height:1.625em;font-family:inherit;line-height:inherit;margin:0;padding:0;border:none;outline:none;will-change:transform,opacity}.filepond--file-action-button.filepond--file-action-button span{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file-action-button.filepond--file-action-button svg{width:100%;height:100%}.filepond--file-action-button.filepond--file-action-button:after{position:absolute;left:-.75em;right:-.75em;top:-.75em;bottom:-.75em;content:""}.filepond--file-action-button{cursor:auto;color:#fff;border-radius:50%;background-color:rgba(0,0,0,.5);background-image:none;box-shadow:0 0 0 0 hsla(0,0%,100%,0);transition:box-shadow .25s ease-in}.filepond--file-action-button:focus,.filepond--file-action-button:hover{box-shadow:0 0 0 .125em hsla(0,0%,100%,.9)}.filepond--file-action-button[disabled]{color:hsla(0,0%,100%,.5);background-color:rgba(0,0,0,.25)}.filepond--file-action-button[hidden]{display:none}.filepond--action-edit-item.filepond--action-edit-item{width:2em;height:2em;padding:.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=center]{margin-left:-.1875em}.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom]{margin-bottom:-.1875em}.filepond--action-edit-item-alt{border:none;line-height:inherit;background:transparent;font-family:inherit;color:inherit;outline:none;padding:0;margin:0 0 0 .25em;pointer-events:all;position:absolute}.filepond--action-edit-item-alt svg{width:1.3125em;height:1.3125em}.filepond--action-edit-item-alt span{font-size:0;opacity:0}.filepond--file-info{position:static;display:flex;flex-direction:column;align-items:flex-start;flex:1 1;margin:0 .5em 0 0;min-width:0;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-info *{margin:0}.filepond--file-info .filepond--file-info-main{font-size:.75em;line-height:1.2;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:100%}.filepond--file-info .filepond--file-info-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out;white-space:nowrap}.filepond--file-info .filepond--file-info-sub:empty{display:none}.filepond--file-status{position:static;display:flex;flex-direction:column;align-items:flex-end;flex-grow:0;flex-shrink:0;margin:0;min-width:2.25em;text-align:right;will-change:transform,opacity;pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.filepond--file-status *{margin:0;white-space:nowrap}.filepond--file-status .filepond--file-status-main{font-size:.75em;line-height:1.2}.filepond--file-status .filepond--file-status-sub{font-size:.625em;opacity:.5;transition:opacity .25s ease-in-out}.filepond--file-wrapper.filepond--file-wrapper{border:none;margin:0;padding:0;min-width:0;height:100%}.filepond--file-wrapper.filepond--file-wrapper>legend{position:absolute;overflow:hidden;height:1px;width:1px;padding:0;border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);white-space:nowrap}.filepond--file{position:static;display:flex;height:100%;align-items:flex-start;padding:.5625em;color:#fff;border-radius:.5em}.filepond--file .filepond--file-status{margin-left:auto;margin-right:2.25em}.filepond--file .filepond--processing-complete-indicator{pointer-events:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;z-index:3}.filepond--file .filepond--file-action-button,.filepond--file .filepond--processing-complete-indicator,.filepond--file .filepond--progress-indicator{position:absolute}.filepond--file [data-align*=left]{left:.5625em}.filepond--file [data-align*=right]{right:.5625em}.filepond--file [data-align*=center]{left:calc(50% - .8125em)}.filepond--file [data-align*=bottom]{bottom:1.125em}.filepond--file [data-align=center]{top:calc(50% - .8125em)}.filepond--file .filepond--progress-indicator{margin-top:.1875em}.filepond--file .filepond--progress-indicator[data-align*=right]{margin-right:.1875em}.filepond--file .filepond--progress-indicator[data-align*=left]{margin-left:.1875em}[data-filepond-item-state*=error] .filepond--file-info,[data-filepond-item-state*=invalid] .filepond--file-info,[data-filepond-item-state=cancelled] .filepond--file-info{margin-right:2.25em}[data-filepond-item-state~=processing] .filepond--file-status-sub{opacity:0}[data-filepond-item-state~=processing] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-error] .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg{-webkit-animation:fall .5s linear .125s both;animation:fall .5s linear .125s both}[data-filepond-item-state=processing-complete] .filepond--file-status-sub{opacity:.5}[data-filepond-item-state=processing-complete] .filepond--file-info-sub,[data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden])~.filepond--file-status .filepond--file-status-sub{opacity:0}[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub{opacity:.5}[data-filepond-item-state*=error] .filepond--file-wrapper,[data-filepond-item-state*=error] .filepond--panel,[data-filepond-item-state*=invalid] .filepond--file-wrapper,[data-filepond-item-state*=invalid] .filepond--panel{-webkit-animation:shake .65s linear both;animation:shake .65s linear both}[data-filepond-item-state*=busy] .filepond--progress-indicator svg{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@keyframes shake{10%,90%{-webkit-transform:translateX(-.0625em);transform:translateX(-.0625em)}20%,80%{-webkit-transform:translateX(.125em);transform:translateX(.125em)}30%,50%,70%{-webkit-transform:translateX(-.25em);transform:translateX(-.25em)}40%,60%{-webkit-transform:translateX(.25em);transform:translateX(.25em)}}@-webkit-keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes fall{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}70%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}to{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.filepond--hopper[data-hopper-state=drag-over]>*{pointer-events:none}.filepond--hopper[data-hopper-state=drag-over]:after{content:"";position:absolute;left:0;top:0;right:0;bottom:0;z-index:100}.filepond--progress-indicator{z-index:103}.filepond--file-action-button{z-index:102}.filepond--file-status{z-index:101}.filepond--file-info{z-index:100}.filepond--item{position:absolute;top:0;left:0;right:0;z-index:1;padding:0;margin:.25em;will-change:transform,opacity;touch-action:auto}.filepond--item>.filepond--panel{z-index:-1}.filepond--item>.filepond--panel .filepond--panel-bottom{box-shadow:0 .0625em .125em -.0625em rgba(0,0,0,.25)}.filepond--item>.filepond--file-wrapper,.filepond--item>.filepond--panel{transition:opacity .15s ease-out}.filepond--item[data-drag-state]{cursor:-webkit-grab;cursor:grab}.filepond--item[data-drag-state]>.filepond--panel{transition:box-shadow .125s ease-in-out;box-shadow:0 0 0 transparent}.filepond--item[data-drag-state=drag]{cursor:-webkit-grabbing;cursor:grabbing}.filepond--item[data-drag-state=drag]>.filepond--panel{box-shadow:0 .125em .3125em rgba(0,0,0,.325)}.filepond--item[data-drag-state]:not([data-drag-state=idle]){z-index:2}.filepond--item-panel{background-color:#64605e}[data-filepond-item-state=processing-complete] .filepond--item-panel{background-color:#369763}[data-filepond-item-state*=error] .filepond--item-panel,[data-filepond-item-state*=invalid] .filepond--item-panel{background-color:#c44e47}.filepond--item-panel{border-radius:.5em;transition:background-color .25s}.filepond--list-scroller{position:absolute;top:0;left:0;right:0;margin:0;will-change:transform}.filepond--list-scroller[data-state=overflow] .filepond--list{bottom:0;right:0}.filepond--list-scroller[data-state=overflow]{overflow-y:scroll;overflow-x:hidden;-webkit-overflow-scrolling:touch;-webkit-mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent);mask:linear-gradient(180deg,#000 calc(100% - .5em),transparent)}.filepond--list-scroller::-webkit-scrollbar{background:transparent}.filepond--list-scroller::-webkit-scrollbar:vertical{width:1em}.filepond--list-scroller::-webkit-scrollbar:horizontal{height:0}.filepond--list-scroller::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:99999px;border:.3125em solid transparent;background-clip:content-box}.filepond--list.filepond--list{position:absolute;top:0;margin:0;padding:0;list-style-type:none;will-change:transform}.filepond--list{left:.75em;right:.75em}.filepond--root[data-style-panel-layout~=integrated]{width:100%;height:100%;max-width:none;margin:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root{border-radius:0}.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root>*,.filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{bottom:0;height:auto;display:flex;justify-content:center;align-items:center;z-index:7}.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,.filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel{display:none}.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,.filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller{overflow:hidden;height:100%;margin-top:0;margin-bottom:0}.filepond--root[data-style-panel-layout~=compact] .filepond--list,.filepond--root[data-style-panel-layout~=integrated] .filepond--list{left:0;right:0;height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--item,.filepond--root[data-style-panel-layout~=integrated] .filepond--item{margin:0}.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,.filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper{height:100%}.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,.filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label{z-index:7}.filepond--root[data-style-panel-layout~=circle]{border-radius:99999rem;overflow:hidden}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel{border-radius:inherit}.filepond--root[data-style-panel-layout~=circle]>.filepond--panel>*{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--file-info,.filepond--root[data-style-panel-layout~=circle] .filepond--file-status{display:none}.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item{opacity:1!important;visibility:visible!important}@media not all and (-webkit-min-device-pixel-ratio:0), not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none) and (stroke-color:transparent){.filepond--root[data-style-panel-layout~=circle]{will-change:transform}}}.filepond--panel-root{border-radius:.5em;background-color:#f1f0ef}.filepond--panel{position:absolute;left:0;top:0;right:0;margin:0;height:100%!important;pointer-events:none}.filepond-panel:not([data-scalable=false]){height:auto!important}.filepond--panel[data-scalable=false]>div{display:none}.filepond--panel[data-scalable=true]{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;background-color:transparent!important;border:none!important}.filepond--panel-bottom,.filepond--panel-center,.filepond--panel-top{position:absolute;left:0;top:0;right:0;margin:0;padding:0}.filepond--panel-bottom,.filepond--panel-top{height:.5em}.filepond--panel-top{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important;border-bottom:none!important}.filepond--panel-top:after{content:"";position:absolute;height:2px;left:0;right:0;bottom:-1px;background-color:inherit}.filepond--panel-bottom,.filepond--panel-center{will-change:transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translate3d(0,.5em,0);transform:translate3d(0,.5em,0)}.filepond--panel-bottom{border-top-left-radius:0!important;border-top-right-radius:0!important;border-top:none!important}.filepond--panel-bottom:before{content:"";position:absolute;height:2px;left:0;right:0;top:-1px;background-color:inherit}.filepond--panel-center{height:100px!important;border-top:none!important;border-bottom:none!important;border-radius:0!important}.filepond--panel-center:not([style]){visibility:hidden}.filepond--progress-indicator{position:static;width:1.25em;height:1.25em;color:#fff;margin:0;pointer-events:none;will-change:transform,opacity}.filepond--progress-indicator svg{width:100%;height:100%;vertical-align:top;transform-box:fill-box}.filepond--progress-indicator path{fill:none;stroke:currentColor}.filepond--list-scroller{z-index:6}.filepond--drop-label{z-index:5}.filepond--drip{z-index:3}.filepond--root>.filepond--panel{z-index:2}.filepond--browser{z-index:1}.filepond--root{box-sizing:border-box;position:relative;margin-bottom:1em;font-size:1rem;line-height:normal;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-weight:450;text-align:left;text-rendering:optimizeLegibility;direction:ltr;contain:layout style size}.filepond--root *{box-sizing:inherit;line-height:inherit}.filepond--root :not(text){font-size:inherit}.filepond--root[data-disabled]{pointer-events:none}.filepond--root[data-disabled] .filepond--list-scroller{pointer-events:all}.filepond--root[data-disabled] .filepond--list{pointer-events:none}.filepond--root .filepond--drop-label{min-height:4.75em}.filepond--root .filepond--list-scroller{margin-top:1em;margin-bottom:1em}.filepond--root .filepond--credits{position:absolute;right:0;opacity:.4;line-height:.85;font-size:11px;color:inherit;text-decoration:none;z-index:3;bottom:-14px}.filepond--root .filepond--credits[style]{top:0;bottom:auto;margin-top:14px}
.savejsfunction {
    display: flex;
    height: 100%;
    overflow: hidden;
}
.jsfunction-content {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    margin: 10px;
    overflow-y: auto;
    overflow-x: hidden;
}

.jsfunction-content-header {
    margin: 20px 10px;
    display: flex;
    justify-content: space-between;
}

.side-bar {
    width: 250px;
    background-color: #262933;
    color: white;
    flex-shrink: 0;
}
.side-bar nav .ub-algn-itms_center {
    color: white;
    font-size: 2em;
    border-bottom: 0.2px solid white;
    padding: 25px 0;
    border-style: outset;

}

.side-bar nav .ub-algn-itms_center span{
    color: white;
    font-size: 0.7em;
}
.row {
    display: flex;
    width: 100%;
    margin: 15px 0px;
}

.label {
    width: 25%;
    margin-bottom: 0;
    text-align: center;
    line-height: 32px;
}
.field {
    width: 75%;
}

.field .ub-mb_16px {
    margin: 9px 0;
}

.cell-middle-text {
    text-align: center;
}

.last-column-button {
    display: flex;
}

/*setting action template*/
.action-tem-body{
    background: white;
    margin-top: 20px;
    border: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 12px;
    
}

.action-tem-body .left{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.action-tem-body .left span.name {
    margin-left: 20px;
    font-weight: 600;
    margin-right: 5px;
}

.action-tem-body .left span.count-node {
    margin-left: 50px;
    font-weight: inherit;
}

.customize_filter__header{
    padding: 12px 15px;
    background: #2d3748;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.customize_filter__body{
    padding: 15px;
}

.add-filters__wrap .btn-group{
    display: flex;
}

.add-filters__wrap .btn-group button{
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ecf2f6;
    cursor: pointer;
    color: #212529;
    margin-right: -1px;
}

.add-filters__wrap .btn-group button.active{
    border: 1px solid #ecf2f6;
    background-color: #ecf2f6;
    color: #3389ff;
}

.side-bar-float-toggle {
    position: fixed;
    left: 68px;
    bottom: 24px;
    z-index: 1700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #1677ff;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.side-bar-overlay {
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
    .savejsfunction {
        position: relative;
    }

    .jsfunction-content {
        width: calc(100% - 24px);
        margin: 12px;
    }

    .side-bar.mobile {
        position: fixed;
        top: 0;
        left: 56px;
        bottom: 0;
        width: min(250px, calc(100vw - 56px));
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.2s ease-in-out;
        overflow-y: auto;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .side-bar.mobile.open {
        transform: translateX(0);
    }
}

.mde-header {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: 1px solid #c8ccd0;
  border-radius: 2px 2px 0 0;
  background: #f9f9f9; }
  .mde-header .mde-tabs {
    display: flex;
    flex-direction: row; }
    .mde-header .mde-tabs button {
      border-radius: 2px;
      margin: 6px 3px;
      background-color: transparent;
      border: 1px solid transparent;
      cursor: pointer; }
      .mde-header .mde-tabs button:first-child {
        margin-left: 6px; }
      .mde-header .mde-tabs button.selected {
        border: 1px solid #c8ccd0; }
  .mde-header .svg-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: inherit;
    overflow: visible;
    vertical-align: -.125em; }
  .mde-header ul.mde-header-group {
    margin: 0;
    padding: 10px;
    list-style: none;
    display: flex;
    flex-wrap: nowrap; }
    .mde-header ul.mde-header-group.hidden {
      visibility: hidden; }
    .mde-header ul.mde-header-group li.mde-header-item {
      display: inline-block;
      position: relative;
      margin: 0 4px; }
      .mde-header ul.mde-header-group li.mde-header-item button {
        text-align: left;
        cursor: pointer;
        height: 22px;
        padding: 4px;
        margin: 0;
        border: none;
        background: none;
        color: #242729; }

@keyframes tooltip-appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
        .mde-header ul.mde-header-group li.mde-header-item button.tooltipped:hover::before {
          animation-name: tooltip-appear;
          animation-duration: 0.2s;
          animation-delay: 0.5s;
          animation-fill-mode: forwards;
          opacity: 0;
          position: absolute;
          z-index: 1000001;
          width: 0;
          height: 0;
          color: rgba(0, 0, 0, 0.8);
          pointer-events: none;
          content: "";
          border: 5px solid transparent;
          top: -5px;
          right: 50%;
          bottom: auto;
          margin-right: -5px;
          border-top-color: rgba(0, 0, 0, 0.8); }
        .mde-header ul.mde-header-group li.mde-header-item button.tooltipped:hover::after {
          animation-name: tooltip-appear;
          animation-duration: 0.2s;
          animation-delay: 0.5s;
          animation-fill-mode: forwards;
          font-size: 11px;
          opacity: 0;
          position: absolute;
          z-index: 1000000;
          padding: 5px 8px;
          color: #fff;
          pointer-events: none;
          content: attr(aria-label);
          background: rgba(0, 0, 0, 0.8);
          border-radius: 3px;
          right: 50%;
          bottom: 100%;
          transform: translateX(50%);
          margin-bottom: 5px;
          white-space: nowrap; }

.mde-textarea-wrapper {
  position: relative; }
  .mde-textarea-wrapper textarea.mde-text {
    width: 100%;
    border: 0;
    padding: 10px;
    vertical-align: top;
    resize: vertical;
    overflow-y: auto; }

.mde-preview .mde-preview-content {
  padding: 10px; }
  .mde-preview .mde-preview-content p, .mde-preview .mde-preview-content blockquote, .mde-preview .mde-preview-content ul, .mde-preview .mde-preview-content ol, .mde-preview .mde-preview-content dl, .mde-preview .mde-preview-content table, .mde-preview .mde-preview-content pre {
    margin-top: 0;
    margin-bottom: 16px; }
  .mde-preview .mde-preview-content h1, .mde-preview .mde-preview-content h2, .mde-preview .mde-preview-content h3 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3em; }
  .mde-preview .mde-preview-content h1 {
    font-size: 1.6em; }
  .mde-preview .mde-preview-content h2 {
    font-size: 1.4em; }
  .mde-preview .mde-preview-content h3 {
    font-size: 1.2em; }
  .mde-preview .mde-preview-content ul, .mde-preview .mde-preview-content ol {
    padding-left: 2em; }
  .mde-preview .mde-preview-content blockquote {
    margin-left: 0;
    padding: 0 1em;
    color: #777;
    border-left: 0.25em solid #ddd; }
    .mde-preview .mde-preview-content blockquote > :first-child {
      margin-top: 0; }
    .mde-preview .mde-preview-content blockquote > :last-child {
      margin-bottom: 0; }
  .mde-preview .mde-preview-content code {
    padding: 0.2em 0 0.2em 0;
    margin: 0;
    font-size: 90%;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 3px; }
    .mde-preview .mde-preview-content code::before, .mde-preview .mde-preview-content code::after {
      letter-spacing: -0.2em;
      content: "\00a0"; }
  .mde-preview .mde-preview-content pre {
    padding: 16px;
    overflow: auto;
    font-size: 85%;
    line-height: 1.45;
    background-color: #f7f7f7;
    border-radius: 3px; }
    .mde-preview .mde-preview-content pre code {
      display: inline;
      padding: 0;
      margin: 0;
      overflow: visible;
      line-height: inherit;
      word-wrap: normal;
      background-color: transparent;
      border: 0; }
      .mde-preview .mde-preview-content pre code::before, .mde-preview .mde-preview-content pre code::after {
        content: none; }
    .mde-preview .mde-preview-content pre > code {
      padding: 0;
      margin: 0;
      font-size: 100%;
      word-break: normal;
      white-space: pre;
      background: transparent;
      border: 0; }
  .mde-preview .mde-preview-content a {
    color: #4078c0;
    text-decoration: none; }
    .mde-preview .mde-preview-content a:hover {
      text-decoration: underline; }
  .mde-preview .mde-preview-content > *:first-child {
    margin-top: 0 !important; }
  .mde-preview .mde-preview-content > *:last-child {
    margin-bottom: 0 !important; }
  .mde-preview .mde-preview-content::after {
    display: table;
    clear: both;
    content: ""; }
  .mde-preview .mde-preview-content table {
    display: block;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse; }
    .mde-preview .mde-preview-content table thead th {
      font-weight: bold; }
    .mde-preview .mde-preview-content table th, .mde-preview .mde-preview-content table td {
      padding: 6px 13px;
      border: 1px solid #c8ccd0; }

.react-mde {
  border: 1px solid #c8ccd0;
  border-radius: 2px; }
  .react-mde * {
    box-sizing: border-box; }
  .react-mde .invisible {
    display: none; }
  .react-mde .image-tip {
    -webkit-user-select: none;
            user-select: none;
    display: flex !important;
    padding: 7px 10px;
    margin: 0;
    font-size: 13px;
    line-height: 16px;
    color: gray;
    background-color: #f9f9f9;
    border-top: 1px solid #c8ccd0;
    position: relative; }
    .react-mde .image-tip .image-input {
      min-height: 0;
      opacity: .01;
      width: 100% !important;
      position: absolute;
      top: 0;
      left: 0;
      padding: 5px;
      cursor: pointer; }

ul.mde-suggestions {
  position: absolute;
  min-width: 180px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid #c8ccd0;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(27, 31, 35, 0.15); }
  ul.mde-suggestions li {
    padding: 4px 8px;
    border-bottom: 1px solid #e1e4e8; }
    ul.mde-suggestions li:first-child {
      border-top-left-radius: 2px;
      border-top-right-radius: 2px; }
    ul.mde-suggestions li:last-child {
      border-bottom-right-radius: 2px;
      border-bottom-left-radius: 2px; }
    ul.mde-suggestions li:hover, ul.mde-suggestions li[aria-selected=true] {
      color: white;
      background-color: #0366d6; }

/* Theme variables inspired by the grid snap demo */
:root {
  --bg: #0b0f14;
  --panel: #0f141b;
  --text: #e6edf3;
  --muted: #9aa7b3;
  --line: #1b2430;
  --node: #0f1720;
  --code: #0a0f14;
  --pink: #ff2d86;
  --blue: #1f8aff;
  --green: #25c59e;
  --warn: #f59e0b;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --grid: 48px; /* keep in sync with GRID constant */
}

/* Overall container */
.dndflow {
  background: #0f141b;
  background: var(--panel);
  color: #e6edf3;
  color: var(--text);
}

/* ReactFlow canvas wrapper */
.dndflow .reactflow-wrapper {
  background: #0f141b;
  background: var(--panel);
}

/* Ant Design Card base for nodes */
.apicard.ant-card,
.functioncard.ant-card {
  background: #0f1720;
  background: var(--node);
  border-color: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
  border-radius: 16px;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Subtle hover + selected emphasis */
.apicard.ant-card,
.functioncard.ant-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.apicard.ant-card:hover,
.functioncard.ant-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(0,0,0,.55);
}
.apicard.ant-card.selected,
.functioncard.ant-card.selected {
  border-color: rgba(31,138,255,.6);
  box-shadow: 0 0 0 1px rgba(31,138,255,.35), 0 10px 36px rgba(0,0,0,.55);
}

/* Card header styling */
.apicard .ant-card-head,
.functioncard .ant-card-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
}

/* QUERY node header (blue) */
.apicard .ant-card-head {
  background: linear-gradient(180deg, rgba(31, 138, 255, 0.18), rgba(31, 138, 255, 0.04));
}

/* FUNCTION node header (pink) */
.functioncard .ant-card-head {
  background: linear-gradient(180deg, rgba(255, 45, 134, 0.2), rgba(255, 45, 134, 0.05));
}

.apicard .ant-card-head-title,
.functioncard .ant-card-head-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6edf3;
  color: var(--text);
  font-weight: 600;
}

.apicard .ant-card-extra,
.functioncard .ant-card-extra {
  display: flex;
  gap: 6px;
}

.apicard .ant-card-body,
.functioncard .ant-card-body {
  background: #0f1720;
  background: var(--node);
  color: #e6edf3;
  color: var(--text);
}

/* Actions row */
.apicard .ant-card-actions,
.functioncard .ant-card-actions {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid var(--border);
}

/* Chips and meta */
.node-meta {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}
.meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-gap: 10px;
  gap: 10px;
  align-items: start;
}
.meta-label {
  color: #9aa7b3;
  color: var(--muted);
  font-size: 12px;
  padding-top: 4px;
}
.meta-value {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.param-chip,
.schema-chip,
.ns-chip,
.type-chip,
.module-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #0c1218;
  color: #c7d2de;
  font-size: 12px;
}
.param-chip b {
  color: #dbeafe;
}

/* Status chips */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #0c1218;
  color: #c7d2de;
  font-size: 12px;
}
.status-chip .anticon { color: #9fb6d8; font-size: 14px; margin-right: 2px; line-height: 1; }

/* Description clamp for rich text */
.type-chip {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  max-width: 100%;
  line-clamp: 2;
}

/* Title pill on right (apiType) */
.head-tag {
  margin-left: auto;
  font-size: 11px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #c7d2de;
}

/* Buttons in header/foot */
.apicard .ant-btn.ghost,
.functioncard .ant-btn.ghost,
.apicard .ant-btn-background-ghost,
.functioncard .ant-btn-background-ghost {
  border-color: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--border) !important;
  color: #9fb6d8;
}
.apicard .ant-btn:hover,
.functioncard .ant-btn:hover {
  border-color: #36577c !important;
}

/* Sidebar polish */
.schema-sidebar {
  background: #0c1218;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid var(--border);
}
.schema-sidebar .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  color: #cfe1ff;
}
.schema-sidebar .ant-input,
.schema-sidebar .ant-select-selector,
.schema-sidebar .ant-radio-button-wrapper {
  background: #0a1016 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--border) !important;
  color: #e6edf3 !important;
  color: var(--text) !important;
}
.schema-sidebar .ant-tag {
  border-color: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}

/* Mini map tune */
.react-flow__minimap {
  background: #0b1218 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

/* Grid helpers (optional visual reference elements) */
.react-flow__background {
  background: #0f141b;
  background: var(--panel);
}

.dndflow {
    flex-direction: column;
    display: flex;
    height: 100%;
  }
  
  .dndflow aside {
    border-right: 1px solid #eee;
    padding: 15px 10px;
    font-size: 12px;
    background: #fcfcfc;
  }
  
  .dndflow aside > * {
    margin-bottom: 10px;
    cursor: grab;
  }
  
  .dndflow aside .description {
    margin-bottom: 10px;
  }
  
  .dndflow .reactflow-wrapper {
    flex-grow: 1;
    height: 100%;
  }
  
  @media screen and (min-width: 768px) {
    .dndflow {
      flex-direction: row;
    }
  
    .dndflow aside {
      width: 20%;
      max-width: 180px;
    }
  }

/* React Flow Controls dark theme */
.react-flow__controls {
  background: #0d141b !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
}
.react-flow__controls-button {
  background: transparent !important;
  fill: #9fb6d8 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid var(--border) !important;
}
.react-flow__controls-button:hover { background: #0f1720 !important; }

/* Hide RF attribution for a cleaner board */
.react-flow__attribution { display: none !important; }

/* Handles */
.react-flow__handle {
  width: 14px !important;
  height: 14px !important;
  background: #3b4652 !important;
  border: 1px solid #222a33 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
}

/* Ant pills */
.ant-tag {
  border-radius: 999px !important;
}

/* Tooltips tint */
.ant-tooltip-inner {
  background: #0f1720 !important;
  color: #e6edf3 !important;
  color: var(--text) !important;
}
.ant-tooltip-arrow-content { background: #0f1720 !important; }

/* Sidebar header text */
.schema-sidebar .sidebar-header span,
.schema-sidebar .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  letter-spacing: .3px;
}

/* Compact mode tweaks */
.dndflow.compact .apicard .ant-card-head,
.dndflow.compact .functioncard .ant-card-head { padding: 6px 10px; }
.dndflow.compact .apicard .ant-card-head .ant-card-head-title,
.dndflow.compact .functioncard .ant-card-head .ant-card-head-title { gap: 6px; font-size: 13px; }
.dndflow.compact .head-tag { font-size: 10px; padding: 2px 6px; }
.dndflow.compact .apicard .ant-card-body,
.dndflow.compact .functioncard .ant-card-body { padding: 10px 12px; }
.dndflow.compact .apicard .ant-card-actions,
.dndflow.compact .functioncard .ant-card-actions { padding: 0 8px; }
.dndflow.compact .node-meta { gap: 4px; }
.dndflow.compact .meta-row { grid-template-columns: 96px 1fr; gap: 6px; }
.dndflow.compact .meta-label { font-size: 11px; padding-top: 2px; }
.dndflow.compact .meta-value { gap: 4px; }
.dndflow.compact .param-chip,
.dndflow.compact .schema-chip,
.dndflow.compact .ns-chip,
.dndflow.compact .module-chip { padding: 2px 6px; font-size: 11px; gap: 4px; }
.dndflow.compact .status-chip { padding: 2px 6px; font-size: 11px; }
.dndflow.compact .status-chip .anticon { font-size: 12px; }
.dndflow.compact .type-chip {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

.schema-container{
    height: 100%;
    display: flex;
    /* Anchor for the hover-preview sidebar overlay so it positions inside
       the schema route, not over the global navigation menu on the left. */
    position: relative;
}

.schema-sidebar{
    /*flex-basis: 26%;*/
    min-width: 360px;
    position: relative;
    z-index: 10000;
}

.sidebar-header{
    font-size: 24px;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.schema_wrapper{
    background: #273039;
    height: 100%;
}

.schema-group{
    margin-bottom: 0; /* Remove margin to avoid gaps in virtualized list */
}

.schema-group .schema-group__header{
    font-size: 14px;
    color: #8c9197;
    cursor: pointer;
    margin-bottom: 0;
    padding: 16px 16px 8px 30px; /* Top padding for separation from previous group */
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    background: #273039; /* Match sidebar background */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator */
    transition: all 0.2s ease;
}

.schema-group .schema-group__header:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #c5c6cb;
}

/* Sticky Header Overlay - Custom implementation for react-window */
.sticky-group-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    z-index: 10;
    background: linear-gradient(180deg, #273039 0%, #273039 85%, rgba(39, 48, 57, 0.95) 100%);
    border-bottom: 1px solid rgba(24, 144, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 16px 8px 30px;
    display: flex;
    align-items: center;
    pointer-events: auto; /* Enable clicks for collapse/expand */
    cursor: pointer; /* Show it's clickable */
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.sticky-group-header-overlay:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, #273039 85%, rgba(39, 48, 57, 0.95) 100%);
    border-bottom-color: rgba(24, 144, 255, 0.3);
}

.sticky-group-header-overlay:active {
    transform: scale(0.99);
}

/* New: style the header action button to blend with theme */
.schema-group__header-action.ant-btn-link {
    color: #9EA1A9; /* fuseDark[200] */
    padding: 0 4px;
}
.schema-group__header-action.ant-btn-link:hover,
.schema-group__header-action.ant-btn-link:focus {
    color: #C5C6CB; /* fuseDark[100] */
}

.schema-group__header-action .anticon {
    vertical-align: middle;
}

/* Simplified structure: .schema-group > .schema-item (removed ul>li) */
.schema-group .schema-item{
    color: #fff;
    min-height: 68px; /* Maintain minimum height for 2-line items */
    height: 100%; /* Fill the virtual row container height */
    display: flex;
    align-items: center; /* Center content vertically within the item */
    padding: 10px 16px; /* Slightly reduced padding to handle 3 lines better within row height */
    justify-content: space-between;
    transition: all ease .27s;
    cursor: pointer;
    font-size: 12px;
    margin: 0;
    box-sizing: border-box;
    /* Use box-shadow for separator to avoid height calculation issues */
    box-shadow: 0 1px 0 0 rgba(66, 76, 86, 0.5);
}

.schema-group .schema-item.active{
    background: #1f272e; /* Darker active state */
    border-left: 3px solid #1890ff; /* Blue accent for active */
    padding-left: 13px; /* 16px - 3px border = maintain alignment */
    box-shadow: 0 1px 0 0 rgba(24, 144, 255, 0.3); /* Blue accent separator */
}

.schema-group .schema-item:hover{
    background: rgba(24, 144, 255, 0.08); /* More visible blue tint hover */
    border-left: 3px solid rgba(24, 144, 255, 0.4); /* Subtle blue accent on hover */
    padding-left: 13px; /* 16px - 3px border = maintain alignment */
}

.schema-group .schema-item:hover .time{
    color: #fff;
    transition: all ease .27s;
}

.schema-group .schema-item .left{
    display: flex;
    align-items: center;
}

.schema-group .schema-item .time{
    font-size: 12px;
    color: #6a7681;
    font-weight: 600;
}

.schema-group .schema-item .schema_text{
    margin-left: 0; /* Remove extra margin - padding handled by parent */
}

.fixed{
    overflow: hidden;
    position: relative;
}

.schema-content__wrapper{
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

/* Cải thiện responsive: khi màn hình nhỏ, cho phép vùng nội dung dùng toàn bộ chiều rộng */
@media (max-width: 1024px){
    .schema-container{flex-wrap:wrap;}
    .schema-sidebar{min-width:100%;}
    .schema-content__wrapper{flex-basis:100%; width:100%;}
}
@media (max-width: 768px){
    /* Giữ layout dạng hàng, sidebar phụ chuyển thành lớp phủ cố định để nội dung vẫn đủ rộng */
    .schema-container{flex-direction:row; height:100%; overflow:hidden;}

    /* Sidebar phụ nằm trong vùng nội dung đã chừa compact menu chính và chừa dải đóng ở cạnh phải */
    .schema-sidebar{
        position:fixed;
        top:0;
        left:0;
        height:100%;
        width:min(380px, calc(100vw - 104px));
        max-width:380px;
        min-width:0 !important; /* Ghi đè rule 1024px */
        z-index:9999;
        overflow-y:auto;
        overflow-x:hidden;
        box-shadow:4px 0 16px rgba(0,0,0,0.4);
    }

    /* Nội dung luôn chiếm toàn bộ vùng còn lại vì sidebar phụ đang phủ lên trên */
    .schema-content__wrapper{
        flex:1 1 auto;
        width:100%;
        min-height:0;
        position:relative;
    }

    .properties-container{position:absolute; left:-1500px; top:0; width:100%; height:100%;}
    .properties-container.show{left:0;}
}

/* Dải đóng sidebar phụ trên mobile */
.schema-sidebar-close-strip {
    display: none;
}
@media (max-width: 768px) {
    .schema-sidebar-close-strip {
        display: flex;
        position: fixed;
        top: 0;
        left: min(436px, calc(100vw - 48px));
        right: auto;
        width: 48px;
        height: 100%;
        z-index: 10000; /* Nằm trên sidebar phụ */
        cursor: pointer;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.18);
    }
    .schema-sidebar-close-strip::after {
        content: '‹';
        font-size: 28px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1;
        font-weight: 300;
        pointer-events: none;
    }
}

/* When sidebar is collapsed (inline button only) ensure content stretches full width */
.schema-container > .absolute + .schema-content__wrapper,
.schema-container > .absolute ~ .schema-content__wrapper{
    flex-basis:100%;
    width:100%;
}

/* Collapsed sidebar toggle button */
.schema-sidebar-collapsed-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #273039;
    /* Desktop (row flex): narrow vertical strip */
    width: 48px;
    align-self: stretch;
}

/* Desktop: when toggle is alone (sidebar collapsed, no inline pin),
   content wrapper fills remaining width. When sidebar is pinned open
   the toggle gets the --inline modifier and we let flex distribute naturally. */
.schema-sidebar-collapsed-toggle:not(.schema-sidebar-collapsed-toggle--inline) ~ .schema-content__wrapper {
    flex-basis: calc(100% - 48px);
    width: calc(100% - 48px);
}

/* Hover-preview: sidebar floats over content WITHIN the schema route container.
   Using `position: absolute` (anchored to .schema-container) avoids overlap with
   the global vertical navigation menu rendered outside the schema container. */
.schema-sidebar.schema-sidebar--hover-preview {
    position: absolute;
    left: 48px; /* Skip the toggle rail which is the first flex child */
    top: 0;
    bottom: 0;
    width: 360px;
    min-width: 360px;
    height: 100%;
    z-index: 10001;
    box-shadow: 8px 0 24px rgba(0, 0, 0, .35);
    animation: schema-sidebar-slide-in .18s ease-out;
}

@keyframes schema-sidebar-slide-in {
    from { transform: translateX(-12px); opacity: .85; }
    to   { transform: translateX(0); opacity: 1; }
}

/* Mobile: dải mở lại nằm ngay sau compact menu chính để không bị che */
@media (max-width: 768px) {
    .schema-sidebar-collapsed-toggle {
        width: 48px;
        height: 100%;
        align-self: stretch;
        justify-content: center;
        padding-left: 0;
    }
    .schema-sidebar-collapsed-toggle:not(.schema-sidebar-collapsed-toggle--inline) ~ .schema-content__wrapper {
        flex-basis: calc(100% - 48px);
        width: calc(100% - 48px);
    }
    /* On mobile, hover-preview behaves like the existing slide-over panel */
    .schema-sidebar.schema-sidebar--hover-preview {
        position: absolute;
        left: 48px;
        width: min(360px, calc(100vw - 96px));
        min-width: 0;
    }
}

.toolbar_wrap{
    /*position: absolute;*/
    top: 15px;
    left: 25px;
}

.toolbar_wrap .btn-add{
    background: #4bb958;
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.toolbar_wrap .btn-add span{
    color: #fff;
}

.form-rows{
    display: flex;
}
.form-rows input{
    width: 100% !important;
}

.form-rows .left{
    flex-basis: 30%;
    font-size: 16px;
    font-weight: 600;
}


.form-rows .right{
    flex-basis: 70%;
}

.form-actions{
    display: flex;
    justify-content: space-between;
}

.input-desc{
    font-size: 11px;
    margin-top: 7px;
    color: #000000ad;
    font-weight: 600;
    line-height: 1;
}

.add-fields{
    background: #4bb958;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 20px;
}

.add-fields span {
    color: #fff;
    margin-right: 5px;
}

.property-rows{
    display: flex;
}
.property-rows .property-col{
    flex-basis: 33.33%;
}

.property-rows .property-col input{
    padding: 11px !important;
    width: 100% !important;
}

.property-container{
    position: relative;
}

.property-rows .actions-col{
    display: flex;
    align-items: flex-end;
}

.property-rows .actions-col .delete{
    margin-left: 5px;
    margin-right: 5px;
}

.property-rows .actions-col span{
    cursor: pointer;
}

.setting-rows{
    display: flex;
    margin-bottom: 15px;
}

.setting-rows:last-child{
    margin-bottom: 0;
}

.setting-rows .left{
    width: 135px;
    font-weight: 600;
}

.setting-rows .right input{
    width: 100%;
}

.setting-rows .right{
    flex-basis: calc(100% - 135px);
}

.setting-wrap{
    /*padding: 0 20px;*/
    padding: 0px 5px;
    margin-top: 20px;
}

.checkbox-rows{
    display: flex;
}

.checkbox-rows .checkbox-col{
    width: 120px;
}

.checkbox-rows label{
    margin-top: 0;
    margin-bottom: 12px;
}

.checkbox-rows .checkbox-col label{
    margin-top: 0;
    margin-bottom: 12px;
}

.row-50{
    display: flex;
}

.row-50 .row-50__col{
    flex-basis: 50%;
}

.row-50 .row-50__col:first-child{
    margin-right: 16px;
}

.text-controls{
    display: flex;
    flex-wrap: wrap;
}

.text-controls .control-item{
    padding: 10px;
    border: 1px solid #e4e7e9;
    margin-right: 10px;
    width: 62px;
    height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease .3s;
}

.text-controls .control-item .control-text{
    margin-top: 5px;
    font-size: 9px;
    color: #8091a5;
    font-weight: bold;

}

.text-controls .control-item.active{
    border: 1px solid #3389ff;
}

.text-controls .control-item.active .control-text{
    color: #3389ff;
}

.properties-container{
    height: 100%;
    position: absolute;
    width:100%;
    left: -1500px;
    top: 0;
    transition: all ease .3s;
    background: #eef1f4;
    border-right: 1px solid #e4e7e9;
    overflow-y: hidden;
    z-index: 20;
}

.properties-container.show{
    left: 0;
}

.properties-container__inner{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.properties-container .properties__header{
    position: relative;
    min-height: 48px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fff;
    flex-wrap: nowrap;
}

.properties-container .properties__header .icon{
    position: absolute;
    right: 10px;
    top: 21px;
    cursor: pointer;
}

.properties-header__title{
    font-weight: 700;
    font-size: 15px;
    flex: 1 1;
    min-width: 0;
}

.properties__content{
    /*position: relative;*/
    overflow-y: auto;
    flex: 1 1;
    min-height: 0;
}

.button-add-property{
    z-index: 1001;
    display: flex;
    position: absolute;
    right: 20px;
    bottom: 0;
    background:#4bb958 ;
    color: #fff;
    height: 35px;
    width: 150px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.button-add-property span{
    font-size: 15px;
    margin-left: 6px;
    font-weight: 500;
}

.properties-item{
    border-radius: 3px;
    cursor: pointer;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #e4e7e9;

}

.properties-item_body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 12px 0;
    margin-bottom: 12px;
}

.properties-item_body .left{
    display: flex;
    align-items: center;
}

.properties-item_body .left span.name{
    
    font-weight: 600;
    margin-right: 5px;
}

.properties-item_body .button-setting{
    margin-right: 12px;
    width: 35px;
    height: 35px;
    background: #ecf2f6;
    transition: all ease .3s;
}
.properties-item_body .button-setting:hover{
    background: #d2e0ea;
}

.property-setting{
    padding-bottom: 12px;
}
.property-setting__header{
    position: relative;
    display: flex;
    width: 100%;
    background: #ecf2f6;
}

/* Sticky Tab Header chỉ cho Level 1 */
.property-setting__header--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.property-setting__header .ant-tabs.ant-tabs-top{
    width: 100%;
}

.property-setting__header .ant-tabs-nav-wrap{
    padding: 10px 40px 0;
}

.property-setting__header .ant-tabs-content-holder{
    background: #fff;
    padding: 10px;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.property-setting__header .property-save{
    position: absolute;
    right: 15px;
    top: 20px;
    color: #fff;
    transition: all ease .3s;
    /* width: 65px;
    height: 35px;
    border-radius: 6px; */
    /* background: #0d73ff; */
    z-index: 1000;
}

.properties-list{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.property-setting__header .css-nil.ub-box-szg_border-box{
    display: flex;
    align-items: center;
}

.property-setting__header .css-nil.ub-box-szg_border-box label{
    margin-right: 12px;
}

.rw-popup-container {
    z-index: 100000;
}

.sidebar-list__item{
    max-height: 100%;
}

.header__fixed{
    z-index: 10000;
}

.sidebar---content{
    height: calc(100% - 220px); /* Fixed height for AutoSizer */
    overflow: hidden; /* Let react-window handle scroll */
    position: relative;
}

/* Remove any scrollbar from parent container */
.sidebar---content,
.sidebar---content * {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.sidebar---content::-webkit-scrollbar,
.sidebar---content *::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

/* Mobile touch optimization for virtualized list */
.sidebar---content .sidebar-list__item {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overflow: visible; /* Prevent double scrollbar */
}

/* Grouping Mode Selector - Custom styling to override AntD defaults */
.grouping-mode-selector .ant-radio-group {
    display: flex !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

.grouping-mode-selector .ant-radio-button-wrapper {
    flex: 1 1 !important;
    text-align: center !important;
    font-size: 12px !important;
    height: 36px !important;
    line-height: 36px !important;
    transition: all 0.2s ease !important;
    border: 1px solid #323d47 !important;
    border-right: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #8c9197 !important;
    font-weight: 400 !important;
}

.grouping-mode-selector .ant-radio-button-wrapper:last-child {
    border-right: 1px solid #323d47 !important;
}

.grouping-mode-selector .ant-radio-button-wrapper-checked {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
    color: #ffffff !important;
    border-color: #40a9ff !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    z-index: 1;
}

.grouping-mode-selector .ant-radio-button-wrapper-checked:last-child {
    border-right: 1px solid #40a9ff !important;
}

.grouping-mode-selector .ant-radio-button-wrapper:hover:not(.ant-radio-button-wrapper-checked) {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #c5c6cb !important;
}

.grouping-mode-selector .ant-radio-button-wrapper::before {
    display: none !important;
}

.grouping-mode-selector .ant-radio-button-wrapper:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

.tagInput input{
    width: auto !important;
    width: initial !important;
}

/* Fix CSS for Antd Input in SchemaSearch */
.schema-search-input .ant-input-affix-wrapper,
.schema-search-input .ant-input,
.schema-search-input .ant-input-clear-icon {
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
}

.child-tab-properties{
    margin-left: -60px;
}

.child-tab-properties .ant-tabs-nav-wrap{
    padding: 0;
}

.child-tab-properties .ant-tabs-tab{
    padding-top: 0;
}

.child-tab-properties .ant-tabs-content-holder{
    padding: 0;
}

.child-properties-row-setting{
    position: relative;
}

.child-tab-properties{
    position: relative;
}

/* Old addProperty CSS - deprecated, giữ lại cho backward compatibility */
.child-tab-properties .addProperty{
    position: absolute;
    right: -28px;
    top: 7px;
    color: #0d73ff;
}

/* FloatButton trong nested properties - luôn ở TOP RIGHT */
.ant-float-btn {
    z-index: 10 !important;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3) !important;
}

.ant-float-btn:hover {
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.5) !important;
}

/* Container cho nested properties với FloatButton */
.nested-properties-container {
    position: relative;
    min-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-setting__header--sticky {
        position: relative; /* Tắt sticky trên mobile để tránh chiếm quá nhiều space */
    }

    .property-setting__header .ant-tabs-content-holder {
        max-height: none; /* Full height trên mobile */
    }

    .ant-float-btn {
        width: 44px !important;
        height: 44px !important;
    }

    /* Mobile header: single row, title truncates if needed */
    .properties-container .properties__header {
        flex-wrap: nowrap;
        padding: 6px 10px;
        gap: 6px;
    }

    .properties-header__title {
        flex: 1 1;
        min-width: 0;
        overflow: hidden;
    }

    /* Title ellipsis: handled in SchemaPropertiesContainer (name + label flex + nowrap); avoid .ant-tooltip-open-only rules */

    /* Display mode row: wrap buttons and search on small screens */
    .properties__filters .display-mode-row {
        flex-wrap: wrap !important;
        row-gap: 8px !important;
    }

    .properties__filters .display-mode-row .ant-input-search {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .property-setting__header .ant-tabs-nav-wrap {
        padding: 5px 10px 0; /* Thu nhỏ padding trên mobile */
    }
    
    .property-setting__header .property-save {
        position: relative;
        right: auto;
        top: auto;
        margin-bottom: 10px;
    }
    
    .ant-float-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

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

/* Mobile action row: Schema▼ + ⋮▼ on same line, hidden on desktop */
.mobile-action-row {
    display: none;
}
@media (max-width: 768px) {
    .mobile-action-row {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 8px;
        padding-top: 4px;
    }
}

.properties__header button{
    margin-right: 15px;
    background: #fce0e3;
    border: 1px solid #eb3142;
    color: #eb3142;
    padding: 5px 12px;
}

.child-setting{
    padding-bottom: 20px;
}

.child-setting .tagInput input{
width: auto !important;
width: initial !important;
}

.tagInput input{
    width: auto !important;
    width: initial !important;
}

.setting.child-setting{
    padding: 15px 15px;
    border: 1px solid #22292f1a;
    margin-bottom: 15px;
    border-radius: 4px;
    margin-top: -10px;
    padding-right: 30px;
}

.radio-group{
    display: flex;
    justify-content: space-between;
}

.recursive-properties{
    position: relative;
    margin-left: 0px;
}

.ant-tabs{
 overflow: visible !important;
 overflow: initial !important;
}

.property-actions span{
    cursor: pointer;
}

.child-tab-properties span{
    cursor: pointer;
}

.cms-input{
    padding: 11px !important;
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: white;
    height: 32px;
    font-size: 12px;
}

.diagramWrap{
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
}

.edit-schema{
    margin-left: 7px;
    cursor: pointer;
    margin-bottom: 5px;
}

.check-rows{
    margin-bottom: 0;
}

.diagram-preview{
    width: 100%;
    height: 100%;
    /* min-height: 800px; */
}

.react-flow__nodes{
    position: relative;
}

.diagram-table{
    display: inline-block;
    border: 1px solid orange;
    min-width: 150px;
}

.diagram-table__title{
    padding: 2px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1;
    border-bottom: 1px solid orange;
    background-color: wheat;
}


.diagram-table .table-name{
    font-size: 12px;
    font-weight: 700;
}

.diagram-table .table-collection{
    font-size: 9px;
}

.diagram-table__fields{
    padding-top: 5px;
    max-height: 130px;
    overflow: scroll;
}

.diagram-table__fields .fieldWrap{
    font-size: 10px;
    padding-left: 5px;
}

.table-header {
    fill: #316896;
    cursor: grab;
}
.table-header text.table-name{
    fill: #fff;
    font-weight: 600;
}

svg#chart{
    width: 100%;
    height: 100%;
    white-space: pre;
    display: block;
    vertical-align: middle;
    min-height: 1000px;
}

#chart g{
    width: 100%;
    height: 100%;
    white-space: pre;
    display: flex;
}

.diagram-component {
    width: 100%;
    height: 100%;
    min-height: 100px;
    border: solid 1px black;
    background-color: white;
    overflow: hidden;
}

.diagramWrap{
    overflow: hidden;
}

.schema-container{
    height: 100%;
    display: flex;
}

.schema-sidebar{
    /*flex-basis: 26%;*/
    min-width: 360px;
    position: relative;
    z-index: 10000;
}

.sidebar-header{
    font-size: 24px;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.schema_wrapper{
    background: #273039;
    height: 100%;
}

.schema-group{
    margin-bottom: 10px;
}

.schema-group .schema-group__header{
    font-size: 16px;
    color: #6a7681;
    cursor: pointer;
    margin-bottom: 7px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 30px;
}

.schema-group .schema-group__header .icon{
    position: absolute;
    left: 0;
    transition: all ease .27s;
    display: flex;
}

.schema-group .schema-group__header .icon.rotate{
    transform: rotate(-90deg);
}

.schema-group ul{
    list-style-type: none;
    padding: 0;
}

.schema-group ul li{
    border-top: 1px solid #2e3842;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 8px;
    justify-content: space-between;
    transition: all ease .27s;
    cursor: pointer;
    font-size: 12px;
}

.schema-group ul li.active{
    background: #222931;
    border-top: 1px solid #2e3842;
}

.schema-group ul li:hover .time{
    color: #fff;
    transition: all ease .27s;
}

.schema-group ul li .left{
    display: flex;
    align-items: center;
}

.schema-group ul li .time{
    font-size: 12px;
    color: #6a7681;
    font-weight: 600;
}


.schema-group ul li:first-child{
    border-top: 0;
}

.schema-group li .schema_text{
    margin-left: 15px;
}
.schema-group ul li:hover .schema_text{
    color: lime;
    font-size: larger;
    transition: all ease .27s;
}
.fixed{
    overflow: hidden;
    position: relative;
}

.schema-content__wrapper{
    position: relative;
    flex-basis: calc(100% - 300px);
}

/* Responsive: full width content on small devices or when sidebar hidden */
@media (max-width: 1024px){
    .schema-container{flex-wrap:wrap;}
    .schema-sidebar{min-width:100%;}
    .schema-content__wrapper{flex-basis:100%; width:100%;}
}
@media (max-width: 768px){
    .schema-container{flex-direction:column;}
    .schema-content__wrapper{flex:1 1 auto; width:100%;}
    .properties-container{position:fixed; left:0; top:0; width:100%; height:100%;}
}

.schema-container > .absolute + .schema-content__wrapper,
.schema-container > .absolute ~ .schema-content__wrapper{
    flex-basis:100%;
    width:100%;
}

@media (max-width: 768px){
    .api-sidebar-collapsed-toggle{
        position: fixed !important;
        left: 56px;
        z-index: 10001 !important;
    }
}

.toolbar_wrap{
    /*position: absolute;*/
    top: 15px;
    left: 25px;
}

.toolbar_wrap .btn-add{
    background: #4bb958;
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.toolbar_wrap .btn-add span{
    color: #fff;
}

.form-rows{
    display: flex;
}
.form-rows input{
    width: 100% !important;
}

.form-rows .left{
    flex-basis: 30%;
    font-size: 16px;
    font-weight: 600;
}


.form-rows .right{
    flex-basis: 70%;
}

.form-actions{
    display: flex;
    justify-content: space-between;
}

.input-desc{
    font-size: 11px;
    margin-top: 7px;
    color: #000000ad;
    font-weight: 600;
    line-height: 1;
}

.add-fields{
    background: #4bb958;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 20px;
}

.add-fields span {
    color: #fff;
    margin-right: 5px;
}

.property-rows{
    display: flex;
}
.property-rows .property-col{
    flex-basis: 33.33%;
}

.property-rows .property-col input{
    padding: 11px !important;
    width: 100% !important;
}

.property-container{
    position: relative;
}

.property-rows .actions-col{
    display: flex;
    align-items: flex-end;
}

.property-rows .actions-col .delete{
    margin-left: 5px;
    margin-right: 5px;
}

.property-rows .actions-col span{
    cursor: pointer;
}

.setting-rows{
    display: flex;
    margin-bottom: 15px;
}

.setting-rows:last-child{
    margin-bottom: 0;
}

.setting-rows .left{
    width: 135px;
    font-weight: 600;
}

.setting-rows .right input{
    width: 100%;
}

.setting-rows .right{
    flex-basis: calc(100% - 135px);
}

.setting-wrap{
    /*padding: 0 20px;*/
    padding: 0px 5px;
    margin-top: 20px;
}

.checkbox-rows{
    display: flex;
}

.checkbox-rows .checkbox-col{
    width: 120px;
}

.checkbox-rows label{
    margin-top: 0;
    margin-bottom: 12px;
}

.checkbox-rows .checkbox-col label{
    margin-top: 0;
    margin-bottom: 12px;
}

.row-50{
    display: flex;
}

.row-50 .row-50__col{
    flex-basis: 50%;
}

.row-50 .row-50__col:first-child{
    margin-right: 16px;
}

.text-controls{
    display: flex;
    flex-wrap: wrap;
}

.text-controls .control-item{
    padding: 10px;
    border: 1px solid #e4e7e9;
    margin-right: 10px;
    width: 62px;
    height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease .3s;
}

.text-controls .control-item .control-text{
    margin-top: 5px;
    font-size: 9px;
    color: #8091a5;
    font-weight: bold;

}

.text-controls .control-item.active{
    border: 1px solid #3389ff;
}

.text-controls .control-item.active .control-text{
    color: #3389ff;
}

.properties-container{
    height: 100%;
    position: absolute;
    width:100%;
    left: -1500px;
    top: 0;
    transition: all ease .3s;
    background: #eef1f4;
    border-right: 1px solid #e4e7e9;
    overflow-y: hidden;
    z-index: 20;
}

.properties-container.show{
    left: 0;
}

.properties-container__inner{
    position: relative;
    height: calc(100% - 10px);
}

.properties-container .properties__header{
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #fff;
}

.properties-container .properties__header .icon{
    position: absolute;
    right: 10px;
    top: 21px;
    cursor: pointer;
}

.properties-header__title{
    font-weight: 700;
    font-size: 15px;
}

.properties__content{
    /*position: relative;*/
    overflow-y: scroll;
    height: calc(100%);
}

.button-add-property{
    z-index: 1001;
    display: flex;
    position: absolute;
    right: 20px;
    bottom: 0;
    background:#4bb958 ;
    color: #fff;
    height: 35px;
    width: 150px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.button-add-property span{
    font-size: 15px;
    margin-left: 6px;
    font-weight: 500;
}

.properties-item{
    border-radius: 3px;
    cursor: pointer;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #e4e7e9;

}

.properties-item_body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 12px 0;
    margin-bottom: 12px;
}

.properties-item_body .left{
    display: flex;
    align-items: center;
}

.properties-item_body .left span.name{
   
    font-weight: 600;
    margin-right: 5px;
}

.properties-item_body .button-setting{
    margin-right: 12px;
    width: 35px;
    height: 35px;
    background: #ecf2f6;
    transition: all ease .3s;
}
.properties-item_body .button-setting:hover{
    background: #d2e0ea;
}

.property-setting{
    padding-bottom: 12px;
}
.property-setting__header{
    position: relative;
    display: flex;
    width: 100%;
    background: #ecf2f6;
}

.property-setting__header .ant-tabs.ant-tabs-top{
    width: 100%;
}

.property-setting__header .ant-tabs-nav-wrap{
    padding: 10px 40px 0;
}

.property-setting__header .ant-tabs-content-holder{
    background: #fff;
    padding: 10px;
}

.property-setting__header .property-save{
    position: absolute;
    right: 15px;
    top: 20px;
    color: #fff;
    transition: all ease .3s;
    /* width: 65px;
    height: 35px; */
    border-radius: 6px;
    /* background: #0d73ff; */
    z-index: 1000;
}

.properties-list{
    height: 100%;
}

.property-setting__header .css-nil.ub-box-szg_border-box{
    display: flex;
    align-items: center;
}

.property-setting__header .css-nil.ub-box-szg_border-box label{
    margin-right: 12px;
}

.rw-popup-container {
    z-index: 100000;
}

.sidebar-list__item{
    max-height: 100%;
}

.header__fixed{
    z-index: 10000;
}

.sidebar---content{
    max-height: calc(100% - 150px);
    overflow-y: scroll;
}

.tagInput input{
    width: auto !important;
    width: initial !important;
}

.child-tab-properties{
    margin-left: -60px;
}

.child-tab-properties .ant-tabs-nav-wrap{
    padding: 0;
}

.child-tab-properties .ant-tabs-tab{
    padding-top: 0;
}

.child-tab-properties .ant-tabs-content-holder{
    padding: 0;
}

.child-properties-row-setting{
    position: relative;
}

.child-tab-properties{
    position: relative;
}

.child-tab-properties .addProperty{
    position: absolute;
    right: -28px;
    top: 7px;
    color: #0d73ff;
}

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

.properties__header button{
    margin-right: 15px;
    background: #fce0e3;
    border: 1px solid #eb3142;
    color: #eb3142;
    padding: 5px 12px;
}

.child-setting{
    padding-bottom: 20px;
}

.child-setting .tagInput input{
width: auto !important;
width: initial !important;
}

.tagInput input{
    width: auto !important;
    width: initial !important;
}

.setting.child-setting{
    padding: 15px 15px;
    border: 1px solid #22292f1a;
    margin-bottom: 15px;
    border-radius: 4px;
    margin-top: -10px;
    padding-right: 30px;
}

.radio-group{
    display: flex;
    justify-content: space-between;
}

.recursive-properties{
    position: relative;
    margin-left: 0px;
}

.ant-tabs{
 overflow: visible !important;
 overflow: initial !important;
}

.property-actions span{
    cursor: pointer;
}

.child-tab-properties span{
    cursor: pointer;
}

.cms-input{
    padding: 11px !important;
    width: 100% !important;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: white;
    height: 32px;
    font-size: 12px;
}

.diagramWrap{
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
}

.edit-schema{
    margin-left: 7px;
    cursor: pointer;
    margin-bottom: 5px;
}

.check-rows{
    margin-bottom: 0;
}

.diagram-preview{
    width: 100%;
    height: 100%;
    /* min-height: 800px; */
}

.react-flow__nodes{
    position: relative;
}

.diagram-table{
    display: inline-block;
    border: 1px solid orange;
    min-width: 150px;
}

.diagram-table__title{
    padding: 2px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1 1;
    border-bottom: 1px solid orange;
    background-color: wheat;
}


.diagram-table .table-name{
    font-size: 12px;
    font-weight: 700;
}

.diagram-table .table-collection{
    font-size: 9px;
}

.diagram-table__fields{
    padding-top: 5px;
    max-height: 130px;
    overflow: scroll;
}

.diagram-table__fields .fieldWrap{
    font-size: 10px;
    padding-left: 5px;
}

.table-header {
    fill: #316896;
    cursor: grab;
}
.table-header text.table-name{
    fill: #fff;
    font-weight: 600;
}

svg#chart{
    width: 100%;
    height: 100%;
    white-space: pre;
    display: block;
    vertical-align: middle;
    min-height: 1000px;
}

#chart g{
    width: 100%;
    height: 100%;
    white-space: pre;
    display: flex;
}

.diagram-component {
    width: 100%;
    height: 100%;
    min-height: 100px;
    border: solid 1px black;
    background-color: white;
    overflow: hidden;
}

.diagramWrap{
    overflow: hidden;
}

/* CSS cho trang Code Generation */
/* IMPORTANT: Scope monaco-editor overrides only inside the CodeGeneration view to avoid
   affecting other small inline Monaco usages (e.g. PropertyCommonEditorSetting). */
.code-generation-container .monaco-editor {
    min-height: 300px;
    border-radius: 4px;
}

/* Tùy chỉnh thanh cuộn */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Style cho message */
.message-success {
    border-left: 3px solid #4caf50;
}

.message-error {
    border-left: 3px solid #f44336;
}

.message-info {
    border-left: 3px solid #2196f3;
}

.message-system {
    border-left: 3px solid #ff9800;
}

/* Style cho animation loading */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.loading-pulse {
    animation: pulse 1.5s infinite ease-in-out;
}

/* Mobile responsive */
@media (max-width: 960px) {
    .code-generation-container {
        flex-direction: column;
    }
} 
/* Schema Studio V2 v4 — V1 toolbar (sticky/shared) + 2-panel body (tree + detail).
   All rules scoped under .schema-v2. V2 mounts V1's <SchemaPropertiesContainer>
   with bodyOverride={<V2DetailBody/>}, so we override V1's container CSS to make
   the toolbar a fixed-height row and the body fill the remainder with two
   independently-scrolling columns. */

.schema-v2 {
    --v2-text: #172033;
    --v2-muted: #667085;
    --v2-line: #e5e9f2;
    --v2-line2: #d6deea;
    --v2-blue: #1769ff;
}

/* Override V1 .properties-container (absolute, off-screen by default for mobile slide) */
.schema-v2.properties-container {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    height: 100% !important;
    min-height: 100%;
    width: 100% !important;
    overflow: hidden !important;
    background: #f5f7fb !important;
    border-right: 0 !important;
}

.schema-v2 .properties-container__inner {
    height: 100% !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* V1 toolbar header: keep at the top, do not let it shrink/scroll */
.schema-v2 .properties__header {
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid var(--v2-line);
    z-index: 5;
}

/* Body slot — V1 puts bodyOverride inside .properties__content. Reshape it.
   Force height: 100% so the 2-column flex children below stretch full height
   even when their content is shorter than the viewport. */
.schema-v2 .properties__content {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow: hidden !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

/* Ensure the schema-content wrapper around V2 spans full available height.
   :has() is widely supported in modern Chromium/Safari/Firefox. */
.schema-content__wrapper:has(.schema-v2),
.schema-content__wrapper:has(> .schema-v2) {
    height: 100%;
    min-height: 100%;
}

/* Hidden scrollbar utility */
.schema-v2__no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.schema-v2__no-scrollbar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* The V2 body itself (rendered as bodyOverride) — 2 columns */
.schema-v2__body {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.schema-v2__nav {
    flex: 0 0 280px;
    min-width: 0;
    height: 100%;
    background: #fff;
    border-right: 1px solid var(--v2-line);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px;
    transition: flex-basis .18s ease;
}

.schema-v2--tree-collapsed .schema-v2__nav {
    flex: 0 0 56px;
    padding: 8px 0;
}

.schema-v2__detail {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 20px;
    background: #f5f7fb;
}

/* Inside the detail panel, the V1 SchemaPropertySetting renders.
   Make its sticky tabs header stick relative to the scrolling .schema-v2__detail. */
.schema-v2__detail .property-setting__header--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: -16px;
    z-index: 4;
    background: #f5f7fb;
}

/* Empty state */
.schema-v2__empty {
    text-align: center;
    padding: 60px 16px;
    color: var(--v2-muted);
}

.schema-v2__empty-title {
    font-weight: 800;
    color: var(--v2-text);
    margin-bottom: 6px;
}

.schema-v2__muted {
    color: var(--v2-muted);
}

/* ===== Tree ===== */
.schema-v2__tree {
    display: flex;
    flex-direction: column;
}

.schema-v2__left-tools {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.schema-v2__left-tools input {
    flex: 1 1;
    min-width: 0;
}

.schema-v2__seg {
    display: flex;
    gap: 3px;
    background: #f3f6fb;
    border-radius: 12px;
    padding: 4px;
}

.schema-v2__seg button {
    border: 0;
    background: transparent;
    border-radius: 9px;
    padding: 7px 9px;
    color: #667085;
    font: inherit;
}

.schema-v2__seg button.active {
    background: #fff;
    color: #155eef;
    box-shadow: 0 1px 7px rgba(16, 24, 40, .08);
}

.schema-v2__group-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #667085;
    margin: 14px 0 7px;
    font-weight: 800;
}

.schema-v2__node {
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 7px 9px 7px 0;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    grid-gap: 6px;
    gap: 6px;
    align-items: center;
    margin-bottom: 2px;
}

.schema-v2__node:hover {
    background: #f8fbff;
    border-color: #d9e7ff;
}

.schema-v2__node.active {
    background: #edf4ff;
    border-color: #9ab8ff;
}

.schema-v2__node-chev {
    width: 18px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1;
    -webkit-user-select: none;
            user-select: none;
    border-radius: 5px;
}

.schema-v2__node-chev[role="button"] {
    cursor: pointer;
    color: #475467;
}

.schema-v2__node-chev[role="button"]:hover {
    background: #e0ecff;
    color: #155eef;
}

.schema-v2__node-info {
    min-width: 0;
    cursor: pointer;
}

.schema-v2__node-name {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schema-v2__node-path {
    font-size: 11px;
    color: #667085;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pills (used by tree type badges) */
.schema-v2__pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 12px;
    border: 1px solid var(--v2-line2);
    background: #fff;
    color: #475467;
    white-space: nowrap;
}

.schema-v2__pill.blue { background: #edf4ff; color: #155eef; border-color: #b9ceff; }
.schema-v2__pill.green { background: #eafaf3; color: #087443; border-color: #b7efce; }
.schema-v2__pill.purple { background: #f4f0ff; color: #6941c6; border-color: #d8c9ff; }
.schema-v2__pill.red { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.schema-v2__pill.gray { background: #f8fafc; color: #475467; }

/* Tree collapse rail */
.schema-v2__tree-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.schema-v2__rail-toggle {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid var(--v2-line2);
    background: #fff;
    color: #475467;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.schema-v2__rail-toggle:hover {
    background: #f8fbff;
    color: #155eef;
    border-color: #b9ceff;
}

.schema-v2__rail-toggle--inline { flex-shrink: 0; }

.schema-v2__rail-meta {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--v2-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Responsive: stack on narrow viewports */
@media (max-width: 900px) {
    .schema-v2__body {
        flex-direction: column;
        overflow: auto;
    }

    .schema-v2__nav,
    .schema-v2--tree-collapsed .schema-v2__nav {
        flex: 0 0 auto;
        max-height: 40vh;
        border-right: 0;
        border-bottom: 1px solid var(--v2-line);
        padding: 12px;
    }

    .schema-v2__detail {
        min-height: 60vh;
    }
}

/* muli-200normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 200;
  src:
    local('Muli Extra Light '),
    local('Muli-Extra Light'),
    url(/static/media/muli-latin-200.87bbae4fab50f7b6f3ea.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-200.96a5d2418cde30e2866b.woff) format('woff'); /* Modern Browsers */
}

/* muli-200italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 200;
  src:
    local('Muli Extra Light italic'),
    local('Muli-Extra Lightitalic'),
    url(/static/media/muli-latin-200italic.2313bc1aa306b199111d.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-200italic.827acc324ce70da53b67.woff) format('woff'); /* Modern Browsers */
}

/* muli-300normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src:
    local('Muli Light '),
    local('Muli-Light'),
    url(/static/media/muli-latin-300.24bbae033cc62394d05a.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-300.3a89611444f6b0495679.woff) format('woff'); /* Modern Browsers */
}

/* muli-300italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 300;
  src:
    local('Muli Light italic'),
    local('Muli-Lightitalic'),
    url(/static/media/muli-latin-300italic.e6aa625b3aaa3f3de2b1.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-300italic.ecd1fed8fe9e971cd173.woff) format('woff'); /* Modern Browsers */
}

/* muli-400normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src:
    local('Muli Regular '),
    local('Muli-Regular'),
    url(/static/media/muli-latin-400.a923120e456c4eb918f2.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-400.b8a62ca1a4fbc85bfb98.woff) format('woff'); /* Modern Browsers */
}

/* muli-400italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src:
    local('Muli Regular italic'),
    local('Muli-Regularitalic'),
    url(/static/media/muli-latin-400italic.ebf41e060530e9939089.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-400italic.674178c9766381a213d4.woff) format('woff'); /* Modern Browsers */
}

/* muli-600normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src:
    local('Muli SemiBold '),
    local('Muli-SemiBold'),
    url(/static/media/muli-latin-600.02346114659f73dc73f5.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-600.f8105bbc8f8d55b9f6d3.woff) format('woff'); /* Modern Browsers */
}

/* muli-600italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 600;
  src:
    local('Muli SemiBold italic'),
    local('Muli-SemiBolditalic'),
    url(/static/media/muli-latin-600italic.7d1dc4bb073ad3516c2d.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-600italic.20188ab68c2bb1e9b7ed.woff) format('woff'); /* Modern Browsers */
}

/* muli-700normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    local('Muli Bold '),
    local('Muli-Bold'),
    url(/static/media/muli-latin-700.89b53a126d9665ab93bc.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-700.a59ae30baea7a5d10bfb.woff) format('woff'); /* Modern Browsers */
}

/* muli-700italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 700;
  src:
    local('Muli Bold italic'),
    local('Muli-Bolditalic'),
    url(/static/media/muli-latin-700italic.af17e1e6b5cb614370f7.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-700italic.9d2c5e1fdc1d9c09cfe3.woff) format('woff'); /* Modern Browsers */
}

/* muli-800normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src:
    local('Muli ExtraBold '),
    local('Muli-ExtraBold'),
    url(/static/media/muli-latin-800.18cd86ff33942ce2d7fc.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-800.1fe339f2a5d1803150f5.woff) format('woff'); /* Modern Browsers */
}

/* muli-800italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 800;
  src:
    local('Muli ExtraBold italic'),
    local('Muli-ExtraBolditalic'),
    url(/static/media/muli-latin-800italic.b547e54fcf37cdd537bf.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-800italic.31cbd2cd620cb15b06ca.woff) format('woff'); /* Modern Browsers */
}

/* muli-900normal - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-display: swap;
  font-weight: 900;
  src:
    local('Muli Black '),
    local('Muli-Black'),
    url(/static/media/muli-latin-900.c640772cd6b9af4cf464.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-900.83de99d859f348dd16d2.woff) format('woff'); /* Modern Browsers */
}

/* muli-900italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-display: swap;
  font-weight: 900;
  src:
    local('Muli Black italic'),
    local('Muli-Blackitalic'),
    url(/static/media/muli-latin-900italic.4a102edc458796414fd7.woff2) format('woff2'), /* Super Modern Browsers */
    url(/static/media/muli-latin-900italic.328bf1e2ef6e130546ce.woff) format('woff'); /* Modern Browsers */
}


/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
    margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
    display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
    margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
    background-color: transparent; /* 1 */
    -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
    font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
    font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
    background-color: #FF0;
    color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
    text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
    -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-sbottom-0utton,
[type="number"]::-webkit-outer-sbottom-0utton {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
    display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
    display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * 1. Prevent padding and border from affecting element width
 * https://goo.gl/pYtbK7
 * 2. Change the default font family in all browsers (opinionated)
 */

html {
    box-sizing: border-box; /* 1 */
    font-family: sans-serif; /* 2 */
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
    margin: 0;
}

button {
    background: transparent;
    padding: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
    margin: 0;
    padding: 0;
}

ol,
ul {
    margin: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */

[tabindex="-1"]:focus {
    outline: none !important;
}

/**
 * Tailwind custom reset styles
 */

/**
 * Allow adding a border to an element by just adding a border-width.
 *
 * By default, the way the browser specifies that an element should have no
 * border is by setting it's border-style to `none` in the user-agent
 * stylesheet.
 *
 * In order to easily add borders to elements by just setting the `border-width`
 * property, we change the default border-style for all elements to `solid`, and
 * use border-width to hide them instead. This way our `border` utilities only
 * need to set the `border-width` property instead of the entire `border`
 * shorthand, making our border utilities much more straightforward to compose.
 *
 * https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
*::before,
*::after {
    border-width: 0;
    border-style: solid;
    /*border-color: config('borderColors.default', currentColor);*/
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
    border-style: solid;
}

/**
 * Temporary reset for a change introduced in Chrome 62 but now reverted.
 *
 * We can remove this when the reversion is in a normal Chrome release.
 */
/*button,
[type="button"],
[type="reset"],
[type="submit"] {
    border-radius: 0;
}*/

textarea {
    resize: vertical;
}

img {
    max-width: 100%;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
}

input::placeholder, textarea::placeholder {
    color: inherit;
    opacity: .5;
}

button, [role=button] {
    cursor: pointer;
}

/*----------------------------------------------------------------*/
/*  Print
/*----------------------------------------------------------------*/
@media all {
    /* Never show page breaks in normal view */
    .page-break-after,
    .page-break-before {
        display: none;
    }
}

@media print {
    /* html and body tweaks */
    html, body {
        height: auto !important;
        overflow: visible !important;
        overflow: initial !important;
        background: none
    }

    /* Page breaks */
    .page-break-after {
        display: block;
        page-break-after: always;
        position: relative;
    }

    .page-break-before {
        display: block;
        page-break-before: always;
        position: relative;
    }

    /* General styles */
    #fuse-toolbar,
    #fuse-footer,
    #fuse-navbar,
    #fuse-settings,
    #fuse-layout .ps > .ps__rail-x,
    #fuse-layout .ps > .ps__rail-y {
        display: none !important;
    }

    #fuse-layout .ps {
        overflow: visible !important;
    }
}

/**
Basic Table Styles
 */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

table.simple {
    width: 100%;
    border: none;
    border-spacing: 0;
    text-align: left;
}

table.simple thead tr th {
    padding: 16px 8px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

table.simple thead tr th:first-child {
    padding-left: 24px;
}

table.simple thead tr th:last-child {
    padding-right: 24px;
}

table.simple tbody tr td {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

table.simple tbody tr td:first-child {
    padding-left: 24px;
}

table.simple tbody tr td:last-child {
    padding-right: 24px;
}

table.simple tbody tr:last-child td {
    border-bottom: none;
}

table.simple.clickable tbody tr {
    cursor: pointer;
}

table.simple.clickable tbody tr:hover {
    background: rgba(0, 0, 0, 0.03);
}

/**
 * Prism base code highlighter theme using Sass
 *
 * @author @MoOx
 * https://github.com/MoOx/sass-prism-theme-base/blob/master/_prism.scss
 * slightly adapted by me, Bram de Haan
 */
code[class*="language-"], pre[class*="language-"] {
    tab-size: 4;
    -webkit-hyphens: none;
    hyphens: none;
    white-space: pre;
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    background: #EEE;
}

pre[class*="language-"], :not(pre) > code[class*="language-"] {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

pre[class*="language-"] {
    padding: 12px;
}

:not(pre) > code[class*="language-"] {
    padding: 2px 6px;
}

code[class*="language-"] .namespace, pre[class*="language-"] .namespace {
    opacity: .7;
}

code[class*="language-"] .token.comment, code[class*="language-"] .token.prolog, code[class*="language-"] .token.doctype, code[class*="language-"] .token.cdata, pre[class*="language-"] .token.comment, pre[class*="language-"] .token.prolog, pre[class*="language-"] .token.doctype, pre[class*="language-"] .token.cdata {
    color: #62727A;
}

code[class*="language-"] .token.null, code[class*="language-"] .token.operator, code[class*="language-"] .token.boolean, code[class*="language-"] .token.number, pre[class*="language-"] .token.null, pre[class*="language-"] .token.operator, pre[class*="language-"] .token.boolean, pre[class*="language-"] .token.number {
    color: #F78C6C;
}

code[class*="language-"] .token.string, pre[class*="language-"] .token.string {
    color: #89DDFF;
}

code[class*="language-"] .token.attr-name, pre[class*="language-"] .token.attr-name {
    color: #F78C6C;
}

code[class*="language-"] .token.entity, code[class*="language-"] .token.url, .language-css code[class*="language-"] .token.string, .style code[class*="language-"] .token.string, pre[class*="language-"] .token.entity, pre[class*="language-"] .token.url, .language-css pre[class*="language-"] .token.string, .style pre[class*="language-"] .token.string {
    color: #89DDFF;
}

code[class*="language-"] .token.selector, pre[class*="language-"] .token.selector {
    color: #C792EA;
}

code[class*="language-"] .token.attr-value, code[class*="language-"] .token.keyword, code[class*="language-"] .token.control, code[class*="language-"] .token.directive, code[class*="language-"] .token.unit, pre[class*="language-"] .token.attr-value, pre[class*="language-"] .token.keyword, pre[class*="language-"] .token.control, pre[class*="language-"] .token.directive, pre[class*="language-"] .token.unit {
    color: #C3E88D;
}

code[class*="language-"] .token.important, pre[class*="language-"] .token.important {
    color: #F07178;
}

code[class*="language-"] .token.atrule, pre[class*="language-"] .token.atrule {
    color: #89DDFF;
}

code[class*="language-"] .token.regex, code[class*="language-"] .token.statement, pre[class*="language-"] .token.regex, pre[class*="language-"] .token.statement {
    color: #89DDFF;
}

code[class*="language-"] .token.placeholder, code[class*="language-"] .token.variable, pre[class*="language-"] .token.placeholder, pre[class*="language-"] .token.variable {
    color: #82AAFF;
}

code[class*="language-"] .token.property, pre[class*="language-"] .token.property {
    color: #FFCB6B;
}

code[class*="language-"] .token.tag, pre[class*="language-"] .token.tag {
    color: #82AAFF;
}

code[class*="language-"] .token.important, code[class*="language-"] .token.statement, pre[class*="language-"] .token.important, pre[class*="language-"] .token.statement {
    font-weight: bold;
}

code[class*="language-"] .token.punctuation, pre[class*="language-"] .token.punctuation {
    color: #EEFFFF;
}

code[class*="language-"] .token.entity, pre[class*="language-"] .token.entity {
    cursor: help;
}

code[class*="language-"] .token.debug, pre[class*="language-"] .token.debug {
    color: red;
}

/*@tailwind preflight;*/

.appearance-none {
    -webkit-appearance: none;
            appearance: none
  }
  
  .bg-fixed {
    background-attachment: fixed
  }
  
  .bg-local {
    background-attachment: local
  }
  
  .bg-scroll {
    background-attachment: scroll
  }
  
  .bg-transparent {
    background-color: transparent
  }
  
  .bg-black {
    background-color: #22292F
  }
  
  .bg-white {
    background-color: #FFFFFF
  }
  
  .bg-gray-100 {
    background-color: #f7fafc
  }
  
  .bg-gray-200 {
    background-color: #edf2f7
  }
  
  .bg-gray-300 {
    background-color: #e2e8f0
  }
  
  .bg-gray-400 {
    background-color: #cbd5e0
  }
  
  .bg-gray-500 {
    background-color: #a0aec0
  }
  
  .bg-gray-600 {
    background-color: #718096
  }
  
  .bg-gray-700 {
    background-color: #4a5568
  }
  
  .bg-gray-800 {
    background-color: #2d3748
  }
  
  .bg-gray-900 {
    background-color: #1a202c
  }
  
  .bg-red {
    background-color: #E3342F
  }
  
  .bg-orange {
    background-color: #F6993F
  }
  
  .bg-yellow {
    background-color: #FFED4A
  }
  
  .bg-green {
    background-color: #38C172
  }
  
  .bg-teal {
    background-color: #4DC0B5
  }
  
  .bg-blue {
    background-color: #3490DC
  }
  
  .bg-indigo {
    background-color: #6574CD
  }
  
  .bg-purple {
    background-color: #9561E2
  }
  
  .bg-pink {
    background-color: #F66D9B
  }
  
  .bg-grey-darkest {
    background-color: #3D4852
  }
  
  .bg-grey-darker {
    background-color: #606F7B
  }
  
  .bg-grey-dark {
    background-color: #8795A1
  }
  
  .bg-grey {
    background-color: #B8C2CC
  }
  
  .bg-grey-light {
    background-color: #DAE1E7
  }
  
  .bg-grey-lighter {
    background-color: #F1F5F8
  }
  
  .bg-grey-lightest {
    background-color: #F8FAFC
  }
  
  .bg-red-darkest {
    background-color: #3B0D0C
  }
  
  .bg-red-darker {
    background-color: #621B18
  }
  
  .bg-red-dark {
    background-color: #CC1F1A
  }
  
  .bg-red-light {
    background-color: #EF5753
  }
  
  .bg-red-lighter {
    background-color: #F9ACAA
  }
  
  .bg-red-lightest {
    background-color: #FCEBEA
  }
  
  .bg-orange-darkest {
    background-color: #462A16
  }
  
  .bg-orange-darker {
    background-color: #613B1F
  }
  
  .bg-orange-dark {
    background-color: #DE751F
  }
  
  .bg-orange-light {
    background-color: #FAAD63
  }
  
  .bg-orange-lighter {
    background-color: #FCD9B6
  }
  
  .bg-orange-lightest {
    background-color: #FFF5EB
  }
  
  .bg-yellow-darkest {
    background-color: #453411
  }
  
  .bg-yellow-darker {
    background-color: #684F1D
  }
  
  .bg-yellow-dark {
    background-color: #F2D024
  }
  
  .bg-yellow-light {
    background-color: #FFF382
  }
  
  .bg-yellow-lighter {
    background-color: #FFF9C2
  }
  
  .bg-yellow-lightest {
    background-color: #FCFBEB
  }
  
  .bg-green-darkest {
    background-color: #0F2F21
  }
  
  .bg-green-darker {
    background-color: #1A4731
  }
  
  .bg-green-dark {
    background-color: #1F9D55
  }
  
  .bg-green-light {
    background-color: #51D88A
  }
  
  .bg-green-lighter {
    background-color: #A2F5BF
  }
  
  .bg-green-lightest {
    background-color: #E3FCEC
  }
  
  .bg-teal-darkest {
    background-color: #0D3331
  }
  
  .bg-teal-darker {
    background-color: #20504F
  }
  
  .bg-teal-dark {
    background-color: #38A89D
  }
  
  .bg-teal-light {
    background-color: #64D5CA
  }
  
  .bg-teal-lighter {
    background-color: #A0F0ED
  }
  
  .bg-teal-lightest {
    background-color: #E8FFFE
  }
  
  .bg-blue-darkest {
    background-color: #12283A
  }
  
  .bg-blue-darker {
    background-color: #1C3D5A
  }
  
  .bg-blue-dark {
    background-color: #2779BD
  }
  
  .bg-blue-light {
    background-color: #6CB2EB
  }
  
  .bg-blue-lighter {
    background-color: #BCDEFA
  }
  
  .bg-blue-lightest {
    background-color: #EFF8FF
  }
  
  .bg-indigo-darkest {
    background-color: #191E38
  }
  
  .bg-indigo-darker {
    background-color: #2F365F
  }
  
  .bg-indigo-dark {
    background-color: #5661B3
  }
  
  .bg-indigo-light {
    background-color: #7886D7
  }
  
  .bg-indigo-lighter {
    background-color: #B2B7FF
  }
  
  .bg-indigo-lightest {
    background-color: #E6E8FF
  }
  
  .bg-purple-darkest {
    background-color: #21183C
  }
  
  .bg-purple-darker {
    background-color: #382B5F
  }
  
  .bg-purple-dark {
    background-color: #794ACF
  }
  
  .bg-purple-light {
    background-color: #A779E9
  }
  
  .bg-purple-lighter {
    background-color: #D6BBFC
  }
  
  .bg-purple-lightest {
    background-color: #F3EBFF
  }
  
  .bg-pink-darkest {
    background-color: #451225
  }
  
  .bg-pink-darker {
    background-color: #6F213F
  }
  
  .bg-pink-dark {
    background-color: #EB5286
  }
  
  .bg-pink-light {
    background-color: #FA7EA8
  }
  
  .bg-pink-lighter {
    background-color: #FFBBCA
  }
  
  .bg-pink-lightest {
    background-color: #FFEBEF
  }
  
  .hover\:bg-transparent:hover {
    background-color: transparent
  }
  
  .hover\:bg-black:hover {
    background-color: #22292F
  }
  
  .hover\:bg-white:hover {
    background-color: #FFFFFF
  }
  
  .hover\:bg-gray-100:hover {
    background-color: #f7fafc
  }
  
  .hover\:bg-gray-200:hover {
    background-color: #edf2f7
  }
  
  .hover\:bg-gray-300:hover {
    background-color: #e2e8f0
  }
  
  .hover\:bg-gray-400:hover {
    background-color: #cbd5e0
  }
  
  .hover\:bg-gray-500:hover {
    background-color: #a0aec0
  }
  
  .hover\:bg-gray-600:hover {
    background-color: #718096
  }
  
  .hover\:bg-gray-700:hover {
    background-color: #4a5568
  }
  
  .hover\:bg-gray-800:hover {
    background-color: #2d3748
  }
  
  .hover\:bg-gray-900:hover {
    background-color: #1a202c
  }
  
  .hover\:bg-red:hover {
    background-color: #E3342F
  }
  
  .hover\:bg-orange:hover {
    background-color: #F6993F
  }
  
  .hover\:bg-yellow:hover {
    background-color: #FFED4A
  }
  
  .hover\:bg-green:hover {
    background-color: #38C172
  }
  
  .hover\:bg-teal:hover {
    background-color: #4DC0B5
  }
  
  .hover\:bg-blue:hover {
    background-color: #3490DC
  }
  
  .hover\:bg-indigo:hover {
    background-color: #6574CD
  }
  
  .hover\:bg-purple:hover {
    background-color: #9561E2
  }
  
  .hover\:bg-pink:hover {
    background-color: #F66D9B
  }
  
  .hover\:bg-grey-darkest:hover {
    background-color: #3D4852
  }
  
  .hover\:bg-grey-darker:hover {
    background-color: #606F7B
  }
  
  .hover\:bg-grey-dark:hover {
    background-color: #8795A1
  }
  
  .hover\:bg-grey:hover {
    background-color: #B8C2CC
  }
  
  .hover\:bg-grey-light:hover {
    background-color: #DAE1E7
  }
  
  .hover\:bg-grey-lighter:hover {
    background-color: #F1F5F8
  }
  
  .hover\:bg-grey-lightest:hover {
    background-color: #F8FAFC
  }
  
  .hover\:bg-red-darkest:hover {
    background-color: #3B0D0C
  }
  
  .hover\:bg-red-darker:hover {
    background-color: #621B18
  }
  
  .hover\:bg-red-dark:hover {
    background-color: #CC1F1A
  }
  
  .hover\:bg-red-light:hover {
    background-color: #EF5753
  }
  
  .hover\:bg-red-lighter:hover {
    background-color: #F9ACAA
  }
  
  .hover\:bg-red-lightest:hover {
    background-color: #FCEBEA
  }
  
  .hover\:bg-orange-darkest:hover {
    background-color: #462A16
  }
  
  .hover\:bg-orange-darker:hover {
    background-color: #613B1F
  }
  
  .hover\:bg-orange-dark:hover {
    background-color: #DE751F
  }
  
  .hover\:bg-orange-light:hover {
    background-color: #FAAD63
  }
  
  .hover\:bg-orange-lighter:hover {
    background-color: #FCD9B6
  }
  
  .hover\:bg-orange-lightest:hover {
    background-color: #FFF5EB
  }
  
  .hover\:bg-yellow-darkest:hover {
    background-color: #453411
  }
  
  .hover\:bg-yellow-darker:hover {
    background-color: #684F1D
  }
  
  .hover\:bg-yellow-dark:hover {
    background-color: #F2D024
  }
  
  .hover\:bg-yellow-light:hover {
    background-color: #FFF382
  }
  
  .hover\:bg-yellow-lighter:hover {
    background-color: #FFF9C2
  }
  
  .hover\:bg-yellow-lightest:hover {
    background-color: #FCFBEB
  }
  
  .hover\:bg-green-darkest:hover {
    background-color: #0F2F21
  }
  
  .hover\:bg-green-darker:hover {
    background-color: #1A4731
  }
  
  .hover\:bg-green-dark:hover {
    background-color: #1F9D55
  }
  
  .hover\:bg-green-light:hover {
    background-color: #51D88A
  }
  
  .hover\:bg-green-lighter:hover {
    background-color: #A2F5BF
  }
  
  .hover\:bg-green-lightest:hover {
    background-color: #E3FCEC
  }
  
  .hover\:bg-teal-darkest:hover {
    background-color: #0D3331
  }
  
  .hover\:bg-teal-darker:hover {
    background-color: #20504F
  }
  
  .hover\:bg-teal-dark:hover {
    background-color: #38A89D
  }
  
  .hover\:bg-teal-light:hover {
    background-color: #64D5CA
  }
  
  .hover\:bg-teal-lighter:hover {
    background-color: #A0F0ED
  }
  
  .hover\:bg-teal-lightest:hover {
    background-color: #E8FFFE
  }
  
  .hover\:bg-blue-darkest:hover {
    background-color: #12283A
  }
  
  .hover\:bg-blue-darker:hover {
    background-color: #1C3D5A
  }
  
  .hover\:bg-blue-dark:hover {
    background-color: #2779BD
  }
  
  .hover\:bg-blue-light:hover {
    background-color: #6CB2EB
  }
  
  .hover\:bg-blue-lighter:hover {
    background-color: #BCDEFA
  }
  
  .hover\:bg-blue-lightest:hover {
    background-color: #EFF8FF
  }
  
  .hover\:bg-indigo-darkest:hover {
    background-color: #191E38
  }
  
  .hover\:bg-indigo-darker:hover {
    background-color: #2F365F
  }
  
  .hover\:bg-indigo-dark:hover {
    background-color: #5661B3
  }
  
  .hover\:bg-indigo-light:hover {
    background-color: #7886D7
  }
  
  .hover\:bg-indigo-lighter:hover {
    background-color: #B2B7FF
  }
  
  .hover\:bg-indigo-lightest:hover {
    background-color: #E6E8FF
  }
  
  .hover\:bg-purple-darkest:hover {
    background-color: #21183C
  }
  
  .hover\:bg-purple-darker:hover {
    background-color: #382B5F
  }
  
  .hover\:bg-purple-dark:hover {
    background-color: #794ACF
  }
  
  .hover\:bg-purple-light:hover {
    background-color: #A779E9
  }
  
  .hover\:bg-purple-lighter:hover {
    background-color: #D6BBFC
  }
  
  .hover\:bg-purple-lightest:hover {
    background-color: #F3EBFF
  }
  
  .hover\:bg-pink-darkest:hover {
    background-color: #451225
  }
  
  .hover\:bg-pink-darker:hover {
    background-color: #6F213F
  }
  
  .hover\:bg-pink-dark:hover {
    background-color: #EB5286
  }
  
  .hover\:bg-pink-light:hover {
    background-color: #FA7EA8
  }
  
  .hover\:bg-pink-lighter:hover {
    background-color: #FFBBCA
  }
  
  .hover\:bg-pink-lightest:hover {
    background-color: #FFEBEF
  }
  
  .focus\:bg-transparent:focus {
    background-color: transparent
  }
  
  .focus\:bg-black:focus {
    background-color: #22292F
  }
  
  .focus\:bg-white:focus {
    background-color: #FFFFFF
  }
  
  .focus\:bg-gray-100:focus {
    background-color: #f7fafc
  }
  
  .focus\:bg-gray-200:focus {
    background-color: #edf2f7
  }
  
  .focus\:bg-gray-300:focus {
    background-color: #e2e8f0
  }
  
  .focus\:bg-gray-400:focus {
    background-color: #cbd5e0
  }
  
  .focus\:bg-gray-500:focus {
    background-color: #a0aec0
  }
  
  .focus\:bg-gray-600:focus {
    background-color: #718096
  }
  
  .focus\:bg-gray-700:focus {
    background-color: #4a5568
  }
  
  .focus\:bg-gray-800:focus {
    background-color: #2d3748
  }
  
  .focus\:bg-gray-900:focus {
    background-color: #1a202c
  }
  
  .focus\:bg-red:focus {
    background-color: #E3342F
  }
  
  .focus\:bg-orange:focus {
    background-color: #F6993F
  }
  
  .focus\:bg-yellow:focus {
    background-color: #FFED4A
  }
  
  .focus\:bg-green:focus {
    background-color: #38C172
  }
  
  .focus\:bg-teal:focus {
    background-color: #4DC0B5
  }
  
  .focus\:bg-blue:focus {
    background-color: #3490DC
  }
  
  .focus\:bg-indigo:focus {
    background-color: #6574CD
  }
  
  .focus\:bg-purple:focus {
    background-color: #9561E2
  }
  
  .focus\:bg-pink:focus {
    background-color: #F66D9B
  }
  
  .focus\:bg-grey-darkest:focus {
    background-color: #3D4852
  }
  
  .focus\:bg-grey-darker:focus {
    background-color: #606F7B
  }
  
  .focus\:bg-grey-dark:focus {
    background-color: #8795A1
  }
  
  .focus\:bg-grey:focus {
    background-color: #B8C2CC
  }
  
  .focus\:bg-grey-light:focus {
    background-color: #DAE1E7
  }
  
  .focus\:bg-grey-lighter:focus {
    background-color: #F1F5F8
  }
  
  .focus\:bg-grey-lightest:focus {
    background-color: #F8FAFC
  }
  
  .focus\:bg-red-darkest:focus {
    background-color: #3B0D0C
  }
  
  .focus\:bg-red-darker:focus {
    background-color: #621B18
  }
  
  .focus\:bg-red-dark:focus {
    background-color: #CC1F1A
  }
  
  .focus\:bg-red-light:focus {
    background-color: #EF5753
  }
  
  .focus\:bg-red-lighter:focus {
    background-color: #F9ACAA
  }
  
  .focus\:bg-red-lightest:focus {
    background-color: #FCEBEA
  }
  
  .focus\:bg-orange-darkest:focus {
    background-color: #462A16
  }
  
  .focus\:bg-orange-darker:focus {
    background-color: #613B1F
  }
  
  .focus\:bg-orange-dark:focus {
    background-color: #DE751F
  }
  
  .focus\:bg-orange-light:focus {
    background-color: #FAAD63
  }
  
  .focus\:bg-orange-lighter:focus {
    background-color: #FCD9B6
  }
  
  .focus\:bg-orange-lightest:focus {
    background-color: #FFF5EB
  }
  
  .focus\:bg-yellow-darkest:focus {
    background-color: #453411
  }
  
  .focus\:bg-yellow-darker:focus {
    background-color: #684F1D
  }
  
  .focus\:bg-yellow-dark:focus {
    background-color: #F2D024
  }
  
  .focus\:bg-yellow-light:focus {
    background-color: #FFF382
  }
  
  .focus\:bg-yellow-lighter:focus {
    background-color: #FFF9C2
  }
  
  .focus\:bg-yellow-lightest:focus {
    background-color: #FCFBEB
  }
  
  .focus\:bg-green-darkest:focus {
    background-color: #0F2F21
  }
  
  .focus\:bg-green-darker:focus {
    background-color: #1A4731
  }
  
  .focus\:bg-green-dark:focus {
    background-color: #1F9D55
  }
  
  .focus\:bg-green-light:focus {
    background-color: #51D88A
  }
  
  .focus\:bg-green-lighter:focus {
    background-color: #A2F5BF
  }
  
  .focus\:bg-green-lightest:focus {
    background-color: #E3FCEC
  }
  
  .focus\:bg-teal-darkest:focus {
    background-color: #0D3331
  }
  
  .focus\:bg-teal-darker:focus {
    background-color: #20504F
  }
  
  .focus\:bg-teal-dark:focus {
    background-color: #38A89D
  }
  
  .focus\:bg-teal-light:focus {
    background-color: #64D5CA
  }
  
  .focus\:bg-teal-lighter:focus {
    background-color: #A0F0ED
  }
  
  .focus\:bg-teal-lightest:focus {
    background-color: #E8FFFE
  }
  
  .focus\:bg-blue-darkest:focus {
    background-color: #12283A
  }
  
  .focus\:bg-blue-darker:focus {
    background-color: #1C3D5A
  }
  
  .focus\:bg-blue-dark:focus {
    background-color: #2779BD
  }
  
  .focus\:bg-blue-light:focus {
    background-color: #6CB2EB
  }
  
  .focus\:bg-blue-lighter:focus {
    background-color: #BCDEFA
  }
  
  .focus\:bg-blue-lightest:focus {
    background-color: #EFF8FF
  }
  
  .focus\:bg-indigo-darkest:focus {
    background-color: #191E38
  }
  
  .focus\:bg-indigo-darker:focus {
    background-color: #2F365F
  }
  
  .focus\:bg-indigo-dark:focus {
    background-color: #5661B3
  }
  
  .focus\:bg-indigo-light:focus {
    background-color: #7886D7
  }
  
  .focus\:bg-indigo-lighter:focus {
    background-color: #B2B7FF
  }
  
  .focus\:bg-indigo-lightest:focus {
    background-color: #E6E8FF
  }
  
  .focus\:bg-purple-darkest:focus {
    background-color: #21183C
  }
  
  .focus\:bg-purple-darker:focus {
    background-color: #382B5F
  }
  
  .focus\:bg-purple-dark:focus {
    background-color: #794ACF
  }
  
  .focus\:bg-purple-light:focus {
    background-color: #A779E9
  }
  
  .focus\:bg-purple-lighter:focus {
    background-color: #D6BBFC
  }
  
  .focus\:bg-purple-lightest:focus {
    background-color: #F3EBFF
  }
  
  .focus\:bg-pink-darkest:focus {
    background-color: #451225
  }
  
  .focus\:bg-pink-darker:focus {
    background-color: #6F213F
  }
  
  .focus\:bg-pink-dark:focus {
    background-color: #EB5286
  }
  
  .focus\:bg-pink-light:focus {
    background-color: #FA7EA8
  }
  
  .focus\:bg-pink-lighter:focus {
    background-color: #FFBBCA
  }
  
  .focus\:bg-pink-lightest:focus {
    background-color: #FFEBEF
  }
  
  .bg-bottom {
    background-position: bottom
  }
  
  .bg-center {
    background-position: center
  }
  
  .bg-left {
    background-position: left
  }
  
  .bg-left-bottom {
    background-position: left bottom
  }
  
  .bg-left-top {
    background-position: left top
  }
  
  .bg-right {
    background-position: right
  }
  
  .bg-right-bottom {
    background-position: right bottom
  }
  
  .bg-right-top {
    background-position: right top
  }
  
  .bg-top {
    background-position: top
  }
  
  .bg-repeat {
    background-repeat: repeat
  }
  
  .bg-no-repeat {
    background-repeat: no-repeat
  }
  
  .bg-repeat-x {
    background-repeat: repeat-x
  }
  
  .bg-repeat-y {
    background-repeat: repeat-y
  }
  
  .bg-repeat-round {
    background-repeat: round
  }
  
  .bg-repeat-space {
    background-repeat: space
  }
  
  .bg-auto {
    background-size: auto
  }
  
  .bg-cover {
    background-size: cover
  }
  
  .bg-contain {
    background-size: contain
  }
  
  .border-collapse {
    border-collapse: collapse
  }
  
  .border-separate {
    border-collapse: separate
  }
  
  .border-transparent {
    border-color: transparent
  }
  
  .border-black {
    border-color: #22292F
  }
  
  .border-white {
    border-color: #FFFFFF
  }
  
  .border-gray-100 {
    border-color: #f7fafc
  }
  
  .border-gray-200 {
    border-color: #edf2f7
  }
  
  .border-gray-300 {
    border-color: #e2e8f0
  }
  
  .border-gray-400 {
    border-color: #cbd5e0
  }
  
  .border-gray-500 {
    border-color: #a0aec0
  }
  
  .border-gray-600 {
    border-color: #718096
  }
  
  .border-gray-700 {
    border-color: #4a5568
  }
  
  .border-gray-800 {
    border-color: #2d3748
  }
  
  .border-gray-900 {
    border-color: #1a202c
  }
  
  .border-red {
    border-color: #E3342F
  }
  
  .border-orange {
    border-color: #F6993F
  }
  
  .border-yellow {
    border-color: #FFED4A
  }
  
  .border-green {
    border-color: #38C172
  }
  
  .border-teal {
    border-color: #4DC0B5
  }
  
  .border-blue {
    border-color: #3490DC
  }
  
  .border-indigo {
    border-color: #6574CD
  }
  
  .border-purple {
    border-color: #9561E2
  }
  
  .border-pink {
    border-color: #F66D9B
  }
  
  .border-grey-darkest {
    border-color: #3D4852
  }
  
  .border-grey-darker {
    border-color: #606F7B
  }
  
  .border-grey-dark {
    border-color: #8795A1
  }
  
  .border-grey {
    border-color: #B8C2CC
  }
  
  .border-grey-light {
    border-color: #DAE1E7
  }
  
  .border-grey-lighter {
    border-color: #F1F5F8
  }
  
  .border-grey-lightest {
    border-color: #F8FAFC
  }
  
  .border-red-darkest {
    border-color: #3B0D0C
  }
  
  .border-red-darker {
    border-color: #621B18
  }
  
  .border-red-dark {
    border-color: #CC1F1A
  }
  
  .border-red-light {
    border-color: #EF5753
  }
  
  .border-red-lighter {
    border-color: #F9ACAA
  }
  
  .border-red-lightest {
    border-color: #FCEBEA
  }
  
  .border-orange-darkest {
    border-color: #462A16
  }
  
  .border-orange-darker {
    border-color: #613B1F
  }
  
  .border-orange-dark {
    border-color: #DE751F
  }
  
  .border-orange-light {
    border-color: #FAAD63
  }
  
  .border-orange-lighter {
    border-color: #FCD9B6
  }
  
  .border-orange-lightest {
    border-color: #FFF5EB
  }
  
  .border-yellow-darkest {
    border-color: #453411
  }
  
  .border-yellow-darker {
    border-color: #684F1D
  }
  
  .border-yellow-dark {
    border-color: #F2D024
  }
  
  .border-yellow-light {
    border-color: #FFF382
  }
  
  .border-yellow-lighter {
    border-color: #FFF9C2
  }
  
  .border-yellow-lightest {
    border-color: #FCFBEB
  }
  
  .border-green-darkest {
    border-color: #0F2F21
  }
  
  .border-green-darker {
    border-color: #1A4731
  }
  
  .border-green-dark {
    border-color: #1F9D55
  }
  
  .border-green-light {
    border-color: #51D88A
  }
  
  .border-green-lighter {
    border-color: #A2F5BF
  }
  
  .border-green-lightest {
    border-color: #E3FCEC
  }
  
  .border-teal-darkest {
    border-color: #0D3331
  }
  
  .border-teal-darker {
    border-color: #20504F
  }
  
  .border-teal-dark {
    border-color: #38A89D
  }
  
  .border-teal-light {
    border-color: #64D5CA
  }
  
  .border-teal-lighter {
    border-color: #A0F0ED
  }
  
  .border-teal-lightest {
    border-color: #E8FFFE
  }
  
  .border-blue-darkest {
    border-color: #12283A
  }
  
  .border-blue-darker {
    border-color: #1C3D5A
  }
  
  .border-blue-dark {
    border-color: #2779BD
  }
  
  .border-blue-light {
    border-color: #6CB2EB
  }
  
  .border-blue-lighter {
    border-color: #BCDEFA
  }
  
  .border-blue-lightest {
    border-color: #EFF8FF
  }
  
  .border-indigo-darkest {
    border-color: #191E38
  }
  
  .border-indigo-darker {
    border-color: #2F365F
  }
  
  .border-indigo-dark {
    border-color: #5661B3
  }
  
  .border-indigo-light {
    border-color: #7886D7
  }
  
  .border-indigo-lighter {
    border-color: #B2B7FF
  }
  
  .border-indigo-lightest {
    border-color: #E6E8FF
  }
  
  .border-purple-darkest {
    border-color: #21183C
  }
  
  .border-purple-darker {
    border-color: #382B5F
  }
  
  .border-purple-dark {
    border-color: #794ACF
  }
  
  .border-purple-light {
    border-color: #A779E9
  }
  
  .border-purple-lighter {
    border-color: #D6BBFC
  }
  
  .border-purple-lightest {
    border-color: #F3EBFF
  }
  
  .border-pink-darkest {
    border-color: #451225
  }
  
  .border-pink-darker {
    border-color: #6F213F
  }
  
  .border-pink-dark {
    border-color: #EB5286
  }
  
  .border-pink-light {
    border-color: #FA7EA8
  }
  
  .border-pink-lighter {
    border-color: #FFBBCA
  }
  
  .border-pink-lightest {
    border-color: #FFEBEF
  }
  
  .hover\:border-transparent:hover {
    border-color: transparent
  }
  
  .hover\:border-black:hover {
    border-color: #22292F
  }
  
  .hover\:border-white:hover {
    border-color: #FFFFFF
  }
  
  .hover\:border-gray-100:hover {
    border-color: #f7fafc
  }
  
  .hover\:border-gray-200:hover {
    border-color: #edf2f7
  }
  
  .hover\:border-gray-300:hover {
    border-color: #e2e8f0
  }
  
  .hover\:border-gray-400:hover {
    border-color: #cbd5e0
  }
  
  .hover\:border-gray-500:hover {
    border-color: #a0aec0
  }
  
  .hover\:border-gray-600:hover {
    border-color: #718096
  }
  
  .hover\:border-gray-700:hover {
    border-color: #4a5568
  }
  
  .hover\:border-gray-800:hover {
    border-color: #2d3748
  }
  
  .hover\:border-gray-900:hover {
    border-color: #1a202c
  }
  
  .hover\:border-red:hover {
    border-color: #E3342F
  }
  
  .hover\:border-orange:hover {
    border-color: #F6993F
  }
  
  .hover\:border-yellow:hover {
    border-color: #FFED4A
  }
  
  .hover\:border-green:hover {
    border-color: #38C172
  }
  
  .hover\:border-teal:hover {
    border-color: #4DC0B5
  }
  
  .hover\:border-blue:hover {
    border-color: #3490DC
  }
  
  .hover\:border-indigo:hover {
    border-color: #6574CD
  }
  
  .hover\:border-purple:hover {
    border-color: #9561E2
  }
  
  .hover\:border-pink:hover {
    border-color: #F66D9B
  }
  
  .hover\:border-grey-darkest:hover {
    border-color: #3D4852
  }
  
  .hover\:border-grey-darker:hover {
    border-color: #606F7B
  }
  
  .hover\:border-grey-dark:hover {
    border-color: #8795A1
  }
  
  .hover\:border-grey:hover {
    border-color: #B8C2CC
  }
  
  .hover\:border-grey-light:hover {
    border-color: #DAE1E7
  }
  
  .hover\:border-grey-lighter:hover {
    border-color: #F1F5F8
  }
  
  .hover\:border-grey-lightest:hover {
    border-color: #F8FAFC
  }
  
  .hover\:border-red-darkest:hover {
    border-color: #3B0D0C
  }
  
  .hover\:border-red-darker:hover {
    border-color: #621B18
  }
  
  .hover\:border-red-dark:hover {
    border-color: #CC1F1A
  }
  
  .hover\:border-red-light:hover {
    border-color: #EF5753
  }
  
  .hover\:border-red-lighter:hover {
    border-color: #F9ACAA
  }
  
  .hover\:border-red-lightest:hover {
    border-color: #FCEBEA
  }
  
  .hover\:border-orange-darkest:hover {
    border-color: #462A16
  }
  
  .hover\:border-orange-darker:hover {
    border-color: #613B1F
  }
  
  .hover\:border-orange-dark:hover {
    border-color: #DE751F
  }
  
  .hover\:border-orange-light:hover {
    border-color: #FAAD63
  }
  
  .hover\:border-orange-lighter:hover {
    border-color: #FCD9B6
  }
  
  .hover\:border-orange-lightest:hover {
    border-color: #FFF5EB
  }
  
  .hover\:border-yellow-darkest:hover {
    border-color: #453411
  }
  
  .hover\:border-yellow-darker:hover {
    border-color: #684F1D
  }
  
  .hover\:border-yellow-dark:hover {
    border-color: #F2D024
  }
  
  .hover\:border-yellow-light:hover {
    border-color: #FFF382
  }
  
  .hover\:border-yellow-lighter:hover {
    border-color: #FFF9C2
  }
  
  .hover\:border-yellow-lightest:hover {
    border-color: #FCFBEB
  }
  
  .hover\:border-green-darkest:hover {
    border-color: #0F2F21
  }
  
  .hover\:border-green-darker:hover {
    border-color: #1A4731
  }
  
  .hover\:border-green-dark:hover {
    border-color: #1F9D55
  }
  
  .hover\:border-green-light:hover {
    border-color: #51D88A
  }
  
  .hover\:border-green-lighter:hover {
    border-color: #A2F5BF
  }
  
  .hover\:border-green-lightest:hover {
    border-color: #E3FCEC
  }
  
  .hover\:border-teal-darkest:hover {
    border-color: #0D3331
  }
  
  .hover\:border-teal-darker:hover {
    border-color: #20504F
  }
  
  .hover\:border-teal-dark:hover {
    border-color: #38A89D
  }
  
  .hover\:border-teal-light:hover {
    border-color: #64D5CA
  }
  
  .hover\:border-teal-lighter:hover {
    border-color: #A0F0ED
  }
  
  .hover\:border-teal-lightest:hover {
    border-color: #E8FFFE
  }
  
  .hover\:border-blue-darkest:hover {
    border-color: #12283A
  }
  
  .hover\:border-blue-darker:hover {
    border-color: #1C3D5A
  }
  
  .hover\:border-blue-dark:hover {
    border-color: #2779BD
  }
  
  .hover\:border-blue-light:hover {
    border-color: #6CB2EB
  }
  
  .hover\:border-blue-lighter:hover {
    border-color: #BCDEFA
  }
  
  .hover\:border-blue-lightest:hover {
    border-color: #EFF8FF
  }
  
  .hover\:border-indigo-darkest:hover {
    border-color: #191E38
  }
  
  .hover\:border-indigo-darker:hover {
    border-color: #2F365F
  }
  
  .hover\:border-indigo-dark:hover {
    border-color: #5661B3
  }
  
  .hover\:border-indigo-light:hover {
    border-color: #7886D7
  }
  
  .hover\:border-indigo-lighter:hover {
    border-color: #B2B7FF
  }
  
  .hover\:border-indigo-lightest:hover {
    border-color: #E6E8FF
  }
  
  .hover\:border-purple-darkest:hover {
    border-color: #21183C
  }
  
  .hover\:border-purple-darker:hover {
    border-color: #382B5F
  }
  
  .hover\:border-purple-dark:hover {
    border-color: #794ACF
  }
  
  .hover\:border-purple-light:hover {
    border-color: #A779E9
  }
  
  .hover\:border-purple-lighter:hover {
    border-color: #D6BBFC
  }
  
  .hover\:border-purple-lightest:hover {
    border-color: #F3EBFF
  }
  
  .hover\:border-pink-darkest:hover {
    border-color: #451225
  }
  
  .hover\:border-pink-darker:hover {
    border-color: #6F213F
  }
  
  .hover\:border-pink-dark:hover {
    border-color: #EB5286
  }
  
  .hover\:border-pink-light:hover {
    border-color: #FA7EA8
  }
  
  .hover\:border-pink-lighter:hover {
    border-color: #FFBBCA
  }
  
  .hover\:border-pink-lightest:hover {
    border-color: #FFEBEF
  }
  
  .focus\:border-transparent:focus {
    border-color: transparent
  }
  
  .focus\:border-black:focus {
    border-color: #22292F
  }
  
  .focus\:border-white:focus {
    border-color: #FFFFFF
  }
  
  .focus\:border-gray-100:focus {
    border-color: #f7fafc
  }
  
  .focus\:border-gray-200:focus {
    border-color: #edf2f7
  }
  
  .focus\:border-gray-300:focus {
    border-color: #e2e8f0
  }
  
  .focus\:border-gray-400:focus {
    border-color: #cbd5e0
  }
  
  .focus\:border-gray-500:focus {
    border-color: #a0aec0
  }
  
  .focus\:border-gray-600:focus {
    border-color: #718096
  }
  
  .focus\:border-gray-700:focus {
    border-color: #4a5568
  }
  
  .focus\:border-gray-800:focus {
    border-color: #2d3748
  }
  
  .focus\:border-gray-900:focus {
    border-color: #1a202c
  }
  
  .focus\:border-red:focus {
    border-color: #E3342F
  }
  
  .focus\:border-orange:focus {
    border-color: #F6993F
  }
  
  .focus\:border-yellow:focus {
    border-color: #FFED4A
  }
  
  .focus\:border-green:focus {
    border-color: #38C172
  }
  
  .focus\:border-teal:focus {
    border-color: #4DC0B5
  }
  
  .focus\:border-blue:focus {
    border-color: #3490DC
  }
  
  .focus\:border-indigo:focus {
    border-color: #6574CD
  }
  
  .focus\:border-purple:focus {
    border-color: #9561E2
  }
  
  .focus\:border-pink:focus {
    border-color: #F66D9B
  }
  
  .focus\:border-grey-darkest:focus {
    border-color: #3D4852
  }
  
  .focus\:border-grey-darker:focus {
    border-color: #606F7B
  }
  
  .focus\:border-grey-dark:focus {
    border-color: #8795A1
  }
  
  .focus\:border-grey:focus {
    border-color: #B8C2CC
  }
  
  .focus\:border-grey-light:focus {
    border-color: #DAE1E7
  }
  
  .focus\:border-grey-lighter:focus {
    border-color: #F1F5F8
  }
  
  .focus\:border-grey-lightest:focus {
    border-color: #F8FAFC
  }
  
  .focus\:border-red-darkest:focus {
    border-color: #3B0D0C
  }
  
  .focus\:border-red-darker:focus {
    border-color: #621B18
  }
  
  .focus\:border-red-dark:focus {
    border-color: #CC1F1A
  }
  
  .focus\:border-red-light:focus {
    border-color: #EF5753
  }
  
  .focus\:border-red-lighter:focus {
    border-color: #F9ACAA
  }
  
  .focus\:border-red-lightest:focus {
    border-color: #FCEBEA
  }
  
  .focus\:border-orange-darkest:focus {
    border-color: #462A16
  }
  
  .focus\:border-orange-darker:focus {
    border-color: #613B1F
  }
  
  .focus\:border-orange-dark:focus {
    border-color: #DE751F
  }
  
  .focus\:border-orange-light:focus {
    border-color: #FAAD63
  }
  
  .focus\:border-orange-lighter:focus {
    border-color: #FCD9B6
  }
  
  .focus\:border-orange-lightest:focus {
    border-color: #FFF5EB
  }
  
  .focus\:border-yellow-darkest:focus {
    border-color: #453411
  }
  
  .focus\:border-yellow-darker:focus {
    border-color: #684F1D
  }
  
  .focus\:border-yellow-dark:focus {
    border-color: #F2D024
  }
  
  .focus\:border-yellow-light:focus {
    border-color: #FFF382
  }
  
  .focus\:border-yellow-lighter:focus {
    border-color: #FFF9C2
  }
  
  .focus\:border-yellow-lightest:focus {
    border-color: #FCFBEB
  }
  
  .focus\:border-green-darkest:focus {
    border-color: #0F2F21
  }
  
  .focus\:border-green-darker:focus {
    border-color: #1A4731
  }
  
  .focus\:border-green-dark:focus {
    border-color: #1F9D55
  }
  
  .focus\:border-green-light:focus {
    border-color: #51D88A
  }
  
  .focus\:border-green-lighter:focus {
    border-color: #A2F5BF
  }
  
  .focus\:border-green-lightest:focus {
    border-color: #E3FCEC
  }
  
  .focus\:border-teal-darkest:focus {
    border-color: #0D3331
  }
  
  .focus\:border-teal-darker:focus {
    border-color: #20504F
  }
  
  .focus\:border-teal-dark:focus {
    border-color: #38A89D
  }
  
  .focus\:border-teal-light:focus {
    border-color: #64D5CA
  }
  
  .focus\:border-teal-lighter:focus {
    border-color: #A0F0ED
  }
  
  .focus\:border-teal-lightest:focus {
    border-color: #E8FFFE
  }
  
  .focus\:border-blue-darkest:focus {
    border-color: #12283A
  }
  
  .focus\:border-blue-darker:focus {
    border-color: #1C3D5A
  }
  
  .focus\:border-blue-dark:focus {
    border-color: #2779BD
  }
  
  .focus\:border-blue-light:focus {
    border-color: #6CB2EB
  }
  
  .focus\:border-blue-lighter:focus {
    border-color: #BCDEFA
  }
  
  .focus\:border-blue-lightest:focus {
    border-color: #EFF8FF
  }
  
  .focus\:border-indigo-darkest:focus {
    border-color: #191E38
  }
  
  .focus\:border-indigo-darker:focus {
    border-color: #2F365F
  }
  
  .focus\:border-indigo-dark:focus {
    border-color: #5661B3
  }
  
  .focus\:border-indigo-light:focus {
    border-color: #7886D7
  }
  
  .focus\:border-indigo-lighter:focus {
    border-color: #B2B7FF
  }
  
  .focus\:border-indigo-lightest:focus {
    border-color: #E6E8FF
  }
  
  .focus\:border-purple-darkest:focus {
    border-color: #21183C
  }
  
  .focus\:border-purple-darker:focus {
    border-color: #382B5F
  }
  
  .focus\:border-purple-dark:focus {
    border-color: #794ACF
  }
  
  .focus\:border-purple-light:focus {
    border-color: #A779E9
  }
  
  .focus\:border-purple-lighter:focus {
    border-color: #D6BBFC
  }
  
  .focus\:border-purple-lightest:focus {
    border-color: #F3EBFF
  }
  
  .focus\:border-pink-darkest:focus {
    border-color: #451225
  }
  
  .focus\:border-pink-darker:focus {
    border-color: #6F213F
  }
  
  .focus\:border-pink-dark:focus {
    border-color: #EB5286
  }
  
  .focus\:border-pink-light:focus {
    border-color: #FA7EA8
  }
  
  .focus\:border-pink-lighter:focus {
    border-color: #FFBBCA
  }
  
  .focus\:border-pink-lightest:focus {
    border-color: #FFEBEF
  }
  
  .rounded-2 {
    border-radius: .2rem
  }
  
  .rounded-4 {
    border-radius: .4rem
  }
  
  .rounded-6 {
    border-radius: .6rem
  }
  
  .rounded-8 {
    border-radius: .8rem
  }
  
  .rounded-12 {
    border-radius: 1.2rem
  }
  
  .rounded-16 {
    border-radius: 1.6rem
  }
  
  .rounded-20 {
    border-radius: 2rem
  }
  
  .rounded-24 {
    border-radius: 2.4rem
  }
  
  .rounded-28 {
    border-radius: 2.8rem
  }
  
  .rounded-32 {
    border-radius: 3.2rem
  }
  
  .rounded-none {
    border-radius: 0
  }
  
  .rounded-sm {
    border-radius: .2rem
  }
  
  .rounded {
    border-radius: .4rem
  }
  
  .rounded-lg {
    border-radius: .8rem
  }
  
  .rounded-full {
    border-radius: 9999px
  }
  
  .rounded-t-2 {
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem
  }
  
  .rounded-r-2 {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
  }
  
  .rounded-b-2 {
    border-bottom-right-radius: .2rem;
    border-bottom-left-radius: .2rem
  }
  
  .rounded-l-2 {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
  }
  
  .rounded-t-4 {
    border-top-left-radius: .4rem;
    border-top-right-radius: .4rem
  }
  
  .rounded-r-4 {
    border-top-right-radius: .4rem;
    border-bottom-right-radius: .4rem
  }
  
  .rounded-b-4 {
    border-bottom-right-radius: .4rem;
    border-bottom-left-radius: .4rem
  }
  
  .rounded-l-4 {
    border-top-left-radius: .4rem;
    border-bottom-left-radius: .4rem
  }
  
  .rounded-t-6 {
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem
  }
  
  .rounded-r-6 {
    border-top-right-radius: .6rem;
    border-bottom-right-radius: .6rem
  }
  
  .rounded-b-6 {
    border-bottom-right-radius: .6rem;
    border-bottom-left-radius: .6rem
  }
  
  .rounded-l-6 {
    border-top-left-radius: .6rem;
    border-bottom-left-radius: .6rem
  }
  
  .rounded-t-8 {
    border-top-left-radius: .8rem;
    border-top-right-radius: .8rem
  }
  
  .rounded-r-8 {
    border-top-right-radius: .8rem;
    border-bottom-right-radius: .8rem
  }
  
  .rounded-b-8 {
    border-bottom-right-radius: .8rem;
    border-bottom-left-radius: .8rem
  }
  
  .rounded-l-8 {
    border-top-left-radius: .8rem;
    border-bottom-left-radius: .8rem
  }
  
  .rounded-t-12 {
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem
  }
  
  .rounded-r-12 {
    border-top-right-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem
  }
  
  .rounded-b-12 {
    border-bottom-right-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem
  }
  
  .rounded-l-12 {
    border-top-left-radius: 1.2rem;
    border-bottom-left-radius: 1.2rem
  }
  
  .rounded-t-16 {
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem
  }
  
  .rounded-r-16 {
    border-top-right-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem
  }
  
  .rounded-b-16 {
    border-bottom-right-radius: 1.6rem;
    border-bottom-left-radius: 1.6rem
  }
  
  .rounded-l-16 {
    border-top-left-radius: 1.6rem;
    border-bottom-left-radius: 1.6rem
  }
  
  .rounded-t-20 {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem
  }
  
  .rounded-r-20 {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem
  }
  
  .rounded-b-20 {
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem
  }
  
  .rounded-l-20 {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem
  }
  
  .rounded-t-24 {
    border-top-left-radius: 2.4rem;
    border-top-right-radius: 2.4rem
  }
  
  .rounded-r-24 {
    border-top-right-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem
  }
  
  .rounded-b-24 {
    border-bottom-right-radius: 2.4rem;
    border-bottom-left-radius: 2.4rem
  }
  
  .rounded-l-24 {
    border-top-left-radius: 2.4rem;
    border-bottom-left-radius: 2.4rem
  }
  
  .rounded-t-28 {
    border-top-left-radius: 2.8rem;
    border-top-right-radius: 2.8rem
  }
  
  .rounded-r-28 {
    border-top-right-radius: 2.8rem;
    border-bottom-right-radius: 2.8rem
  }
  
  .rounded-b-28 {
    border-bottom-right-radius: 2.8rem;
    border-bottom-left-radius: 2.8rem
  }
  
  .rounded-l-28 {
    border-top-left-radius: 2.8rem;
    border-bottom-left-radius: 2.8rem
  }
  
  .rounded-t-32 {
    border-top-left-radius: 3.2rem;
    border-top-right-radius: 3.2rem
  }
  
  .rounded-r-32 {
    border-top-right-radius: 3.2rem;
    border-bottom-right-radius: 3.2rem
  }
  
  .rounded-b-32 {
    border-bottom-right-radius: 3.2rem;
    border-bottom-left-radius: 3.2rem
  }
  
  .rounded-l-32 {
    border-top-left-radius: 3.2rem;
    border-bottom-left-radius: 3.2rem
  }
  
  .rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0
  }
  
  .rounded-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
  }
  
  .rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
  }
  
  .rounded-l-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
  }
  
  .rounded-t-sm {
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem
  }
  
  .rounded-r-sm {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
  }
  
  .rounded-b-sm {
    border-bottom-right-radius: .2rem;
    border-bottom-left-radius: .2rem
  }
  
  .rounded-l-sm {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
  }
  
  .rounded-t {
    border-top-left-radius: .4rem;
    border-top-right-radius: .4rem
  }
  
  .rounded-r {
    border-top-right-radius: .4rem;
    border-bottom-right-radius: .4rem
  }
  
  .rounded-b {
    border-bottom-right-radius: .4rem;
    border-bottom-left-radius: .4rem
  }
  
  .rounded-l {
    border-top-left-radius: .4rem;
    border-bottom-left-radius: .4rem
  }
  
  .rounded-t-lg {
    border-top-left-radius: .8rem;
    border-top-right-radius: .8rem
  }
  
  .rounded-r-lg {
    border-top-right-radius: .8rem;
    border-bottom-right-radius: .8rem
  }
  
  .rounded-b-lg {
    border-bottom-right-radius: .8rem;
    border-bottom-left-radius: .8rem
  }
  
  .rounded-l-lg {
    border-top-left-radius: .8rem;
    border-bottom-left-radius: .8rem
  }
  
  .rounded-t-full {
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px
  }
  
  .rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px
  }
  
  .rounded-b-full {
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px
  }
  
  .rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px
  }
  
  .rounded-tl-2 {
    border-top-left-radius: .2rem
  }
  
  .rounded-tr-2 {
    border-top-right-radius: .2rem
  }
  
  .rounded-br-2 {
    border-bottom-right-radius: .2rem
  }
  
  .rounded-bl-2 {
    border-bottom-left-radius: .2rem
  }
  
  .rounded-tl-4 {
    border-top-left-radius: .4rem
  }
  
  .rounded-tr-4 {
    border-top-right-radius: .4rem
  }
  
  .rounded-br-4 {
    border-bottom-right-radius: .4rem
  }
  
  .rounded-bl-4 {
    border-bottom-left-radius: .4rem
  }
  
  .rounded-tl-6 {
    border-top-left-radius: .6rem
  }
  
  .rounded-tr-6 {
    border-top-right-radius: .6rem
  }
  
  .rounded-br-6 {
    border-bottom-right-radius: .6rem
  }
  
  .rounded-bl-6 {
    border-bottom-left-radius: .6rem
  }
  
  .rounded-tl-8 {
    border-top-left-radius: .8rem
  }
  
  .rounded-tr-8 {
    border-top-right-radius: .8rem
  }
  
  .rounded-br-8 {
    border-bottom-right-radius: .8rem
  }
  
  .rounded-bl-8 {
    border-bottom-left-radius: .8rem
  }
  
  .rounded-tl-12 {
    border-top-left-radius: 1.2rem
  }
  
  .rounded-tr-12 {
    border-top-right-radius: 1.2rem
  }
  
  .rounded-br-12 {
    border-bottom-right-radius: 1.2rem
  }
  
  .rounded-bl-12 {
    border-bottom-left-radius: 1.2rem
  }
  
  .rounded-tl-16 {
    border-top-left-radius: 1.6rem
  }
  
  .rounded-tr-16 {
    border-top-right-radius: 1.6rem
  }
  
  .rounded-br-16 {
    border-bottom-right-radius: 1.6rem
  }
  
  .rounded-bl-16 {
    border-bottom-left-radius: 1.6rem
  }
  
  .rounded-tl-20 {
    border-top-left-radius: 2rem
  }
  
  .rounded-tr-20 {
    border-top-right-radius: 2rem
  }
  
  .rounded-br-20 {
    border-bottom-right-radius: 2rem
  }
  
  .rounded-bl-20 {
    border-bottom-left-radius: 2rem
  }
  
  .rounded-tl-24 {
    border-top-left-radius: 2.4rem
  }
  
  .rounded-tr-24 {
    border-top-right-radius: 2.4rem
  }
  
  .rounded-br-24 {
    border-bottom-right-radius: 2.4rem
  }
  
  .rounded-bl-24 {
    border-bottom-left-radius: 2.4rem
  }
  
  .rounded-tl-28 {
    border-top-left-radius: 2.8rem
  }
  
  .rounded-tr-28 {
    border-top-right-radius: 2.8rem
  }
  
  .rounded-br-28 {
    border-bottom-right-radius: 2.8rem
  }
  
  .rounded-bl-28 {
    border-bottom-left-radius: 2.8rem
  }
  
  .rounded-tl-32 {
    border-top-left-radius: 3.2rem
  }
  
  .rounded-tr-32 {
    border-top-right-radius: 3.2rem
  }
  
  .rounded-br-32 {
    border-bottom-right-radius: 3.2rem
  }
  
  .rounded-bl-32 {
    border-bottom-left-radius: 3.2rem
  }
  
  .rounded-tl-none {
    border-top-left-radius: 0
  }
  
  .rounded-tr-none {
    border-top-right-radius: 0
  }
  
  .rounded-br-none {
    border-bottom-right-radius: 0
  }
  
  .rounded-bl-none {
    border-bottom-left-radius: 0
  }
  
  .rounded-tl-sm {
    border-top-left-radius: .2rem
  }
  
  .rounded-tr-sm {
    border-top-right-radius: .2rem
  }
  
  .rounded-br-sm {
    border-bottom-right-radius: .2rem
  }
  
  .rounded-bl-sm {
    border-bottom-left-radius: .2rem
  }
  
  .rounded-tl {
    border-top-left-radius: .4rem
  }
  
  .rounded-tr {
    border-top-right-radius: .4rem
  }
  
  .rounded-br {
    border-bottom-right-radius: .4rem
  }
  
  .rounded-bl {
    border-bottom-left-radius: .4rem
  }
  
  .rounded-tl-lg {
    border-top-left-radius: .8rem
  }
  
  .rounded-tr-lg {
    border-top-right-radius: .8rem
  }
  
  .rounded-br-lg {
    border-bottom-right-radius: .8rem
  }
  
  .rounded-bl-lg {
    border-bottom-left-radius: .8rem
  }
  
  .rounded-tl-full {
    border-top-left-radius: 9999px
  }
  
  .rounded-tr-full {
    border-top-right-radius: 9999px
  }
  
  .rounded-br-full {
    border-bottom-right-radius: 9999px
  }
  
  .rounded-bl-full {
    border-bottom-left-radius: 9999px
  }
  
  .border-solid {
    border-style: solid
  }
  
  .border-dashed {
    border-style: dashed
  }
  
  .border-dotted {
    border-style: dotted
  }
  
  .border-none {
    border-style: none
  }
  
  .border-0 {
    border-width: 0
  }
  
  .border-1 {
    border-width: 1px
  }
  
  .border-2 {
    border-width: 2px
  }
  
  .border-3 {
    border-width: 3px
  }
  
  .border-4 {
    border-width: 4px
  }
  
  .border-8 {
    border-width: 8px
  }
  
  .border {
    border-width: 1px
  }
  
  .border-t-0 {
    border-top-width: 0
  }
  
  .border-r-0 {
    border-right-width: 0
  }
  
  .border-b-0 {
    border-bottom-width: 0
  }
  
  .border-l-0 {
    border-left-width: 0
  }
  
  .border-t-1 {
    border-top-width: 1px
  }
  
  .border-r-1 {
    border-right-width: 1px
  }
  
  .border-b-1 {
    border-bottom-width: 1px
  }
  
  .border-l-1 {
    border-left-width: 1px
  }
  
  .border-t-2 {
    border-top-width: 2px
  }
  
  .border-r-2 {
    border-right-width: 2px
  }
  
  .border-b-2 {
    border-bottom-width: 2px
  }
  
  .border-l-2 {
    border-left-width: 2px
  }
  
  .border-t-3 {
    border-top-width: 3px
  }
  
  .border-r-3 {
    border-right-width: 3px
  }
  
  .border-b-3 {
    border-bottom-width: 3px
  }
  
  .border-l-3 {
    border-left-width: 3px
  }
  
  .border-t-4 {
    border-top-width: 4px
  }
  
  .border-r-4 {
    border-right-width: 4px
  }
  
  .border-b-4 {
    border-bottom-width: 4px
  }
  
  .border-l-4 {
    border-left-width: 4px
  }
  
  .border-t-8 {
    border-top-width: 8px
  }
  
  .border-r-8 {
    border-right-width: 8px
  }
  
  .border-b-8 {
    border-bottom-width: 8px
  }
  
  .border-l-8 {
    border-left-width: 8px
  }
  
  .border-t {
    border-top-width: 1px
  }
  
  .border-r {
    border-right-width: 1px
  }
  
  .border-b {
    border-bottom-width: 1px
  }
  
  .border-l {
    border-left-width: 1px
  }
  
  .cursor-auto {
    cursor: auto
  }
  
  .cursor-default {
    cursor: default
  }
  
  .cursor-pointer {
    cursor: pointer
  }
  
  .cursor-wait {
    cursor: wait
  }
  
  .cursor-text {
    cursor: text
  }
  
  .cursor-move {
    cursor: move
  }
  
  .cursor-not-allowed {
    cursor: not-allowed
  }
  
  .block {
    display: block
  }
  
  .inline-block {
    display: inline-block
  }
  
  .inline {
    display: inline
  }
  
  .flex {
    display: flex
  }
  
  .inline-flex {
    display: inline-flex
  }
  
  .table {
    display: table
  }
  
  .table-row {
    display: table-row
  }
  
  .table-cell {
    display: table-cell
  }
  
  .hidden {
    display: none
  }
  
  .hover\:block:hover {
    display: block
  }
  
  .hover\:inline-block:hover {
    display: inline-block
  }
  
  .hover\:inline:hover {
    display: inline
  }
  
  .hover\:flex:hover {
    display: flex
  }
  
  .hover\:inline-flex:hover {
    display: inline-flex
  }
  
  .hover\:table:hover {
    display: table
  }
  
  .hover\:table-row:hover {
    display: table-row
  }
  
  .hover\:table-cell:hover {
    display: table-cell
  }
  
  .hover\:hidden:hover {
    display: none
  }
  
  .focus\:block:focus {
    display: block
  }
  
  .focus\:inline-block:focus {
    display: inline-block
  }
  
  .focus\:inline:focus {
    display: inline
  }
  
  .focus\:flex:focus {
    display: flex
  }
  
  .focus\:inline-flex:focus {
    display: inline-flex
  }
  
  .focus\:table:focus {
    display: table
  }
  
  .focus\:table-row:focus {
    display: table-row
  }
  
  .focus\:table-cell:focus {
    display: table-cell
  }
  
  .focus\:hidden:focus {
    display: none
  }
  
  .flex-row {
    flex-direction: row
  }
  
  .flex-row-reverse {
    flex-direction: row-reverse
  }
  
  .flex-col {
    flex-direction: column
  }
  
  .flex-col-reverse {
    flex-direction: column-reverse
  }
  
  .flex-wrap {
    flex-wrap: wrap
  }
  
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse
  }
  
  .flex-no-wrap {
    flex-wrap: nowrap
  }
  
  .items-start {
    align-items: flex-start
  }
  
  .items-end {
    align-items: flex-end
  }
  
  .items-center {
    align-items: center
  }
  
  .items-baseline {
    align-items: baseline
  }
  
  .items-stretch {
    align-items: stretch
  }
  
  .self-auto {
    align-self: auto
  }
  
  .self-start {
    align-self: flex-start
  }
  
  .self-end {
    align-self: flex-end
  }
  
  .self-center {
    align-self: center
  }
  
  .self-stretch {
    align-self: stretch
  }
  
  .justify-start {
    justify-content: flex-start
  }
  
  .justify-end {
    justify-content: flex-end
  }
  
  .justify-center {
    justify-content: center
  }
  
  .justify-between {
    justify-content: space-between
  }
  
  .justify-around {
    justify-content: space-around
  }
  
  .content-center {
    align-content: center
  }
  
  .content-start {
    align-content: flex-start
  }
  
  .content-end {
    align-content: flex-end
  }
  
  .content-between {
    align-content: space-between
  }
  
  .content-around {
    align-content: space-around
  }
  
  .flex-1 {
    flex: 1 1
  }
  
  .flex-auto {
    flex: 1 1 auto
  }
  
  .flex-initial {
    flex: 0 1 auto
  }
  
  .flex-none {
    flex: none
  }
  
  .flex-grow-0 {
    flex-grow: 0
  }
  
  .flex-grow {
    flex-grow: 1
  }
  
  .flex-shrink-0 {
    flex-shrink: 0
  }
  
  .flex-shrink {
    flex-shrink: 1
  }
  
  .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-first {
    order: -9999
  }
  
  .order-last {
    order: 9999
  }
  
  .order-none {
    order: 0
  }
  
  .float-right {
    float: right
  }
  
  .float-left {
    float: left
  }
  
  .float-none {
    float: none
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both
  }
  
  .font-sans {
    font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
  }
  
  .font-serif {
    font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
  }
  
  .font-mono {
    font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
  }
  
  .font-100 {
    font-weight: 100
  }
  
  .font-200 {
    font-weight: 200
  }
  
  .font-300 {
    font-weight: 300
  }
  
  .font-400 {
    font-weight: 400
  }
  
  .font-500 {
    font-weight: 500
  }
  
  .font-600 {
    font-weight: 600
  }
  
  .font-700 {
    font-weight: 700
  }
  
  .font-800 {
    font-weight: 800
  }
  
  .font-900 {
    font-weight: 900
  }
  
  .font-hairline {
    font-weight: 100
  }
  
  .font-thin {
    font-weight: 200
  }
  
  .font-light {
    font-weight: 300
  }
  
  .font-normal {
    font-weight: 400
  }
  
  .font-medium {
    font-weight: 500
  }
  
  .font-semibold {
    font-weight: 600
  }
  
  .font-bold {
    font-weight: 700
  }
  
  .font-extrabold {
    font-weight: 800
  }
  
  .font-black {
    font-weight: 900
  }
  
  .hover\:font-100:hover {
    font-weight: 100
  }
  
  .hover\:font-200:hover {
    font-weight: 200
  }
  
  .hover\:font-300:hover {
    font-weight: 300
  }
  
  .hover\:font-400:hover {
    font-weight: 400
  }
  
  .hover\:font-500:hover {
    font-weight: 500
  }
  
  .hover\:font-600:hover {
    font-weight: 600
  }
  
  .hover\:font-700:hover {
    font-weight: 700
  }
  
  .hover\:font-800:hover {
    font-weight: 800
  }
  
  .hover\:font-900:hover {
    font-weight: 900
  }
  
  .hover\:font-hairline:hover {
    font-weight: 100
  }
  
  .hover\:font-thin:hover {
    font-weight: 200
  }
  
  .hover\:font-light:hover {
    font-weight: 300
  }
  
  .hover\:font-normal:hover {
    font-weight: 400
  }
  
  .hover\:font-medium:hover {
    font-weight: 500
  }
  
  .hover\:font-semibold:hover {
    font-weight: 600
  }
  
  .hover\:font-bold:hover {
    font-weight: 700
  }
  
  .hover\:font-extrabold:hover {
    font-weight: 800
  }
  
  .hover\:font-black:hover {
    font-weight: 900
  }
  
  .focus\:font-100:focus {
    font-weight: 100
  }
  
  .focus\:font-200:focus {
    font-weight: 200
  }
  
  .focus\:font-300:focus {
    font-weight: 300
  }
  
  .focus\:font-400:focus {
    font-weight: 400
  }
  
  .focus\:font-500:focus {
    font-weight: 500
  }
  
  .focus\:font-600:focus {
    font-weight: 600
  }
  
  .focus\:font-700:focus {
    font-weight: 700
  }
  
  .focus\:font-800:focus {
    font-weight: 800
  }
  
  .focus\:font-900:focus {
    font-weight: 900
  }
  
  .focus\:font-hairline:focus {
    font-weight: 100
  }
  
  .focus\:font-thin:focus {
    font-weight: 200
  }
  
  .focus\:font-light:focus {
    font-weight: 300
  }
  
  .focus\:font-normal:focus {
    font-weight: 400
  }
  
  .focus\:font-medium:focus {
    font-weight: 500
  }
  
  .focus\:font-semibold:focus {
    font-weight: 600
  }
  
  .focus\:font-bold:focus {
    font-weight: 700
  }
  
  .focus\:font-extrabold:focus {
    font-weight: 800
  }
  
  .focus\:font-black:focus {
    font-weight: 900
  }
  
  .h-0 {
    height: 0
  }
  
  .h-1 {
    height: 0.25rem
  }
  
  .h-2 {
    height: 0.5rem
  }
  
  .h-3 {
    height: 0.75rem
  }
  
  .h-4 {
    height: 0.4rem
  }
  
  .h-5 {
    height: 1.25rem
  }
  
  .h-6 {
    height: 0.6rem
  }
  
  .h-8 {
    height: 0.8rem
  }
  
  .h-10 {
    height: 2.5rem
  }
  
  .h-12 {
    height: 1.2rem
  }
  
  .h-16 {
    height: 1.6rem
  }
  
  .h-20 {
    height: 2rem
  }
  
  .h-24 {
    height: 2.4rem
  }
  
  .h-28 {
    height: 2.8rem
  }
  
  .h-32 {
    height: 3.2rem
  }
  
  .h-36 {
    height: 3.6rem
  }
  
  .h-40 {
    height: 4rem
  }
  
  .h-44 {
    height: 4.4rem
  }
  
  .h-48 {
    height: 4.8rem
  }
  
  .h-52 {
    height: 5.2rem
  }
  
  .h-56 {
    height: 5.6rem
  }
  
  .h-60 {
    height: 6rem
  }
  
  .h-64 {
    height: 6.4rem
  }
  
  .h-68 {
    height: 6.8rem
  }
  
  .h-72 {
    height: 7.2rem
  }
  
  .h-76 {
    height: 7.6rem
  }
  
  .h-80 {
    height: 8rem
  }
  
  .h-84 {
    height: 8.4rem
  }
  
  .h-88 {
    height: 8.8rem
  }
  
  .h-92 {
    height: 9.2rem
  }
  
  .h-96 {
    height: 9.6rem
  }
  
  .h-128 {
    height: 12.8rem
  }
  
  .h-136 {
    height: 13.6rem
  }
  
  .h-160 {
    height: 16rem
  }
  
  .h-192 {
    height: 19.2rem
  }
  
  .h-200 {
    height: 20rem
  }
  
  .h-208 {
    height: 20.8rem
  }
  
  .h-216 {
    height: 21.6rem
  }
  
  .h-224 {
    height: 22.4rem
  }
  
  .h-256 {
    height: 25.6rem
  }
  
  .h-288 {
    height: 28.8rem
  }
  
  .h-320 {
    height: 32rem
  }
  
  .h-360 {
    height: 36rem
  }
  
  .h-384 {
    height: 38.4rem
  }
  
  .h-400 {
    height: 40rem
  }
  
  .h-512 {
    height: 51.2rem
  }
  
  .h-640 {
    height: 64rem
  }
  
  .h-auto {
    height: auto
  }
  
  .h-px {
    height: 1px
  }
  
  .h-xs {
    height: 32rem
  }
  
  .h-sm {
    height: 48rem
  }
  
  .h-md {
    height: 64rem
  }
  
  .h-lg {
    height: 80rem
  }
  
  .h-xl {
    height: 96rem
  }
  
  .h-2xl {
    height: 112rem
  }
  
  .h-3xl {
    height: 128rem
  }
  
  .h-4xl {
    height: 144rem
  }
  
  .h-5xl {
    height: 160rem
  }
  
  .h-full {
    height: 100%
  }
  
  .h-screen {
    height: 100vh
  }
  
  .leading-none {
    line-height: 1
  }
  
  .leading-tight {
    line-height: 1.25
  }
  
  .leading-snug {
    line-height: 1.375
  }
  
  .leading-normal {
    line-height: 1.5
  }
  
  .leading-relaxed {
    line-height: 1.625
  }
  
  .leading-loose {
    line-height: 2
  }
  
  .list-inside {
    list-style-position: inside
  }
  
  .list-outside {
    list-style-position: outside
  }
  
  .list-none {
    list-style-type: none
  }
  
  .list-disc {
    list-style-type: disc
  }
  
  .list-decimal {
    list-style-type: decimal
  }
  
  .m-0 {
    margin: 0
  }
  
  .m-1 {
    margin: 0.25rem
  }
  
  .m-2 {
    margin: 0.5rem
  }
  
  .m-3 {
    margin: 0.75rem
  }
  
  .m-4 {
    margin: 0.4rem
  }
  
  .m-5 {
    margin: 1.25rem
  }
  
  .m-6 {
    margin: 0.6rem
  }
  
  .m-8 {
    margin: 0.8rem
  }
  
  .m-10 {
    margin: 2.5rem
  }
  
  .m-12 {
    margin: 1.2rem
  }
  
  .m-16 {
    margin: 1.6rem
  }
  
  .m-20 {
    margin: 2rem
  }
  
  .m-24 {
    margin: 2.4rem
  }
  
  .m-28 {
    margin: 2.8rem
  }
  
  .m-32 {
    margin: 3.2rem
  }
  
  .m-36 {
    margin: 3.6rem
  }
  
  .m-40 {
    margin: 4rem
  }
  
  .m-44 {
    margin: 4.4rem
  }
  
  .m-48 {
    margin: 4.8rem
  }
  
  .m-52 {
    margin: 5.2rem
  }
  
  .m-56 {
    margin: 5.6rem
  }
  
  .m-60 {
    margin: 6rem
  }
  
  .m-64 {
    margin: 6.4rem
  }
  
  .m-68 {
    margin: 6.8rem
  }
  
  .m-72 {
    margin: 7.2rem
  }
  
  .m-76 {
    margin: 7.6rem
  }
  
  .m-80 {
    margin: 8rem
  }
  
  .m-84 {
    margin: 8.4rem
  }
  
  .m-88 {
    margin: 8.8rem
  }
  
  .m-92 {
    margin: 9.2rem
  }
  
  .m-96 {
    margin: 9.6rem
  }
  
  .m-128 {
    margin: 12.8rem
  }
  
  .m-136 {
    margin: 13.6rem
  }
  
  .m-160 {
    margin: 16rem
  }
  
  .m-192 {
    margin: 19.2rem
  }
  
  .m-200 {
    margin: 20rem
  }
  
  .m-208 {
    margin: 20.8rem
  }
  
  .m-216 {
    margin: 21.6rem
  }
  
  .m-224 {
    margin: 22.4rem
  }
  
  .m-256 {
    margin: 25.6rem
  }
  
  .m-288 {
    margin: 28.8rem
  }
  
  .m-320 {
    margin: 32rem
  }
  
  .m-360 {
    margin: 36rem
  }
  
  .m-384 {
    margin: 38.4rem
  }
  
  .m-400 {
    margin: 40rem
  }
  
  .m-512 {
    margin: 51.2rem
  }
  
  .m-640 {
    margin: 64rem
  }
  
  .m-auto {
    margin: auto
  }
  
  .m-px {
    margin: 1px
  }
  
  .m-xs {
    margin: 32rem
  }
  
  .m-sm {
    margin: 48rem
  }
  
  .m-md {
    margin: 64rem
  }
  
  .m-lg {
    margin: 80rem
  }
  
  .m-xl {
    margin: 96rem
  }
  
  .m-2xl {
    margin: 112rem
  }
  
  .m-3xl {
    margin: 128rem
  }
  
  .m-4xl {
    margin: 144rem
  }
  
  .m-5xl {
    margin: 160rem
  }
  
  .-m-1 {
    margin: -0.25rem
  }
  
  .-m-2 {
    margin: -0.5rem
  }
  
  .-m-3 {
    margin: -0.75rem
  }
  
  .-m-4 {
    margin: -0.4rem
  }
  
  .-m-5 {
    margin: -1.25rem
  }
  
  .-m-6 {
    margin: -0.6rem
  }
  
  .-m-8 {
    margin: -0.8rem
  }
  
  .-m-10 {
    margin: -2.5rem
  }
  
  .-m-12 {
    margin: -1.2rem
  }
  
  .-m-16 {
    margin: -1.6rem
  }
  
  .-m-20 {
    margin: -2rem
  }
  
  .-m-24 {
    margin: -2.4rem
  }
  
  .-m-28 {
    margin: -2.8rem
  }
  
  .-m-32 {
    margin: -3.2rem
  }
  
  .-m-36 {
    margin: -3.6rem
  }
  
  .-m-40 {
    margin: -4rem
  }
  
  .-m-44 {
    margin: -4.4rem
  }
  
  .-m-48 {
    margin: -4.8rem
  }
  
  .-m-52 {
    margin: -5.2rem
  }
  
  .-m-56 {
    margin: -5.6rem
  }
  
  .-m-60 {
    margin: -6rem
  }
  
  .-m-64 {
    margin: -6.4rem
  }
  
  .-m-68 {
    margin: -6.8rem
  }
  
  .-m-72 {
    margin: -7.2rem
  }
  
  .-m-76 {
    margin: -7.6rem
  }
  
  .-m-80 {
    margin: -8rem
  }
  
  .-m-84 {
    margin: -8.4rem
  }
  
  .-m-88 {
    margin: -8.8rem
  }
  
  .-m-92 {
    margin: -9.2rem
  }
  
  .-m-96 {
    margin: -9.6rem
  }
  
  .-m-128 {
    margin: -12.8rem
  }
  
  .-m-136 {
    margin: -13.6rem
  }
  
  .-m-160 {
    margin: -16rem
  }
  
  .-m-192 {
    margin: -19.2rem
  }
  
  .-m-200 {
    margin: -20rem
  }
  
  .-m-208 {
    margin: -20.8rem
  }
  
  .-m-216 {
    margin: -21.6rem
  }
  
  .-m-224 {
    margin: -22.4rem
  }
  
  .-m-256 {
    margin: -25.6rem
  }
  
  .-m-288 {
    margin: -28.8rem
  }
  
  .-m-320 {
    margin: -32rem
  }
  
  .-m-360 {
    margin: -36rem
  }
  
  .-m-384 {
    margin: -38.4rem
  }
  
  .-m-400 {
    margin: -40rem
  }
  
  .-m-512 {
    margin: -51.2rem
  }
  
  .-m-640 {
    margin: -64rem
  }
  
  .-m-px {
    margin: -1px
  }
  
  .-m-xs {
    margin: -32rem
  }
  
  .-m-sm {
    margin: -48rem
  }
  
  .-m-md {
    margin: -64rem
  }
  
  .-m-lg {
    margin: -80rem
  }
  
  .-m-xl {
    margin: -96rem
  }
  
  .-m-2xl {
    margin: -112rem
  }
  
  .-m-3xl {
    margin: -128rem
  }
  
  .-m-4xl {
    margin: -144rem
  }
  
  .-m-5xl {
    margin: -160rem
  }
  
  .-m-auto {
    margin: -auto
  }
  
  .my-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  
  .mx-0 {
    margin-left: 0;
    margin-right: 0
  }
  
  .my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
  }
  
  .mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
  }
  
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
  }
  
  .mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
  }
  
  .my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
  }
  
  .mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem
  }
  
  .my-4 {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem
  }
  
  .mx-4 {
    margin-left: 0.4rem;
    margin-right: 0.4rem
  }
  
  .my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }
  
  .mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
  }
  
  .my-6 {
    margin-top: 0.6rem;
    margin-bottom: 0.6rem
  }
  
  .mx-6 {
    margin-left: 0.6rem;
    margin-right: 0.6rem
  }
  
  .my-8 {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem
  }
  
  .mx-8 {
    margin-left: 0.8rem;
    margin-right: 0.8rem
  }
  
  .my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }
  
  .mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem
  }
  
  .my-12 {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem
  }
  
  .mx-12 {
    margin-left: 1.2rem;
    margin-right: 1.2rem
  }
  
  .my-16 {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem
  }
  
  .mx-16 {
    margin-left: 1.6rem;
    margin-right: 1.6rem
  }
  
  .my-20 {
    margin-top: 2rem;
    margin-bottom: 2rem
  }
  
  .mx-20 {
    margin-left: 2rem;
    margin-right: 2rem
  }
  
  .my-24 {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem
  }
  
  .mx-24 {
    margin-left: 2.4rem;
    margin-right: 2.4rem
  }
  
  .my-28 {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem
  }
  
  .mx-28 {
    margin-left: 2.8rem;
    margin-right: 2.8rem
  }
  
  .my-32 {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem
  }
  
  .mx-32 {
    margin-left: 3.2rem;
    margin-right: 3.2rem
  }
  
  .my-36 {
    margin-top: 3.6rem;
    margin-bottom: 3.6rem
  }
  
  .mx-36 {
    margin-left: 3.6rem;
    margin-right: 3.6rem
  }
  
  .my-40 {
    margin-top: 4rem;
    margin-bottom: 4rem
  }
  
  .mx-40 {
    margin-left: 4rem;
    margin-right: 4rem
  }
  
  .my-44 {
    margin-top: 4.4rem;
    margin-bottom: 4.4rem
  }
  
  .mx-44 {
    margin-left: 4.4rem;
    margin-right: 4.4rem
  }
  
  .my-48 {
    margin-top: 4.8rem;
    margin-bottom: 4.8rem
  }
  
  .mx-48 {
    margin-left: 4.8rem;
    margin-right: 4.8rem
  }
  
  .my-52 {
    margin-top: 5.2rem;
    margin-bottom: 5.2rem
  }
  
  .mx-52 {
    margin-left: 5.2rem;
    margin-right: 5.2rem
  }
  
  .my-56 {
    margin-top: 5.6rem;
    margin-bottom: 5.6rem
  }
  
  .mx-56 {
    margin-left: 5.6rem;
    margin-right: 5.6rem
  }
  
  .my-60 {
    margin-top: 6rem;
    margin-bottom: 6rem
  }
  
  .mx-60 {
    margin-left: 6rem;
    margin-right: 6rem
  }
  
  .my-64 {
    margin-top: 6.4rem;
    margin-bottom: 6.4rem
  }
  
  .mx-64 {
    margin-left: 6.4rem;
    margin-right: 6.4rem
  }
  
  .my-68 {
    margin-top: 6.8rem;
    margin-bottom: 6.8rem
  }
  
  .mx-68 {
    margin-left: 6.8rem;
    margin-right: 6.8rem
  }
  
  .my-72 {
    margin-top: 7.2rem;
    margin-bottom: 7.2rem
  }
  
  .mx-72 {
    margin-left: 7.2rem;
    margin-right: 7.2rem
  }
  
  .my-76 {
    margin-top: 7.6rem;
    margin-bottom: 7.6rem
  }
  
  .mx-76 {
    margin-left: 7.6rem;
    margin-right: 7.6rem
  }
  
  .my-80 {
    margin-top: 8rem;
    margin-bottom: 8rem
  }
  
  .mx-80 {
    margin-left: 8rem;
    margin-right: 8rem
  }
  
  .my-84 {
    margin-top: 8.4rem;
    margin-bottom: 8.4rem
  }
  
  .mx-84 {
    margin-left: 8.4rem;
    margin-right: 8.4rem
  }
  
  .my-88 {
    margin-top: 8.8rem;
    margin-bottom: 8.8rem
  }
  
  .mx-88 {
    margin-left: 8.8rem;
    margin-right: 8.8rem
  }
  
  .my-92 {
    margin-top: 9.2rem;
    margin-bottom: 9.2rem
  }
  
  .mx-92 {
    margin-left: 9.2rem;
    margin-right: 9.2rem
  }
  
  .my-96 {
    margin-top: 9.6rem;
    margin-bottom: 9.6rem
  }
  
  .mx-96 {
    margin-left: 9.6rem;
    margin-right: 9.6rem
  }
  
  .my-128 {
    margin-top: 12.8rem;
    margin-bottom: 12.8rem
  }
  
  .mx-128 {
    margin-left: 12.8rem;
    margin-right: 12.8rem
  }
  
  .my-136 {
    margin-top: 13.6rem;
    margin-bottom: 13.6rem
  }
  
  .mx-136 {
    margin-left: 13.6rem;
    margin-right: 13.6rem
  }
  
  .my-160 {
    margin-top: 16rem;
    margin-bottom: 16rem
  }
  
  .mx-160 {
    margin-left: 16rem;
    margin-right: 16rem
  }
  
  .my-192 {
    margin-top: 19.2rem;
    margin-bottom: 19.2rem
  }
  
  .mx-192 {
    margin-left: 19.2rem;
    margin-right: 19.2rem
  }
  
  .my-200 {
    margin-top: 20rem;
    margin-bottom: 20rem
  }
  
  .mx-200 {
    margin-left: 20rem;
    margin-right: 20rem
  }
  
  .my-208 {
    margin-top: 20.8rem;
    margin-bottom: 20.8rem
  }
  
  .mx-208 {
    margin-left: 20.8rem;
    margin-right: 20.8rem
  }
  
  .my-216 {
    margin-top: 21.6rem;
    margin-bottom: 21.6rem
  }
  
  .mx-216 {
    margin-left: 21.6rem;
    margin-right: 21.6rem
  }
  
  .my-224 {
    margin-top: 22.4rem;
    margin-bottom: 22.4rem
  }
  
  .mx-224 {
    margin-left: 22.4rem;
    margin-right: 22.4rem
  }
  
  .my-256 {
    margin-top: 25.6rem;
    margin-bottom: 25.6rem
  }
  
  .mx-256 {
    margin-left: 25.6rem;
    margin-right: 25.6rem
  }
  
  .my-288 {
    margin-top: 28.8rem;
    margin-bottom: 28.8rem
  }
  
  .mx-288 {
    margin-left: 28.8rem;
    margin-right: 28.8rem
  }
  
  .my-320 {
    margin-top: 32rem;
    margin-bottom: 32rem
  }
  
  .mx-320 {
    margin-left: 32rem;
    margin-right: 32rem
  }
  
  .my-360 {
    margin-top: 36rem;
    margin-bottom: 36rem
  }
  
  .mx-360 {
    margin-left: 36rem;
    margin-right: 36rem
  }
  
  .my-384 {
    margin-top: 38.4rem;
    margin-bottom: 38.4rem
  }
  
  .mx-384 {
    margin-left: 38.4rem;
    margin-right: 38.4rem
  }
  
  .my-400 {
    margin-top: 40rem;
    margin-bottom: 40rem
  }
  
  .mx-400 {
    margin-left: 40rem;
    margin-right: 40rem
  }
  
  .my-512 {
    margin-top: 51.2rem;
    margin-bottom: 51.2rem
  }
  
  .mx-512 {
    margin-left: 51.2rem;
    margin-right: 51.2rem
  }
  
  .my-640 {
    margin-top: 64rem;
    margin-bottom: 64rem
  }
  
  .mx-640 {
    margin-left: 64rem;
    margin-right: 64rem
  }
  
  .my-auto {
    margin-top: auto;
    margin-bottom: auto
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto
  }
  
  .my-px {
    margin-top: 1px;
    margin-bottom: 1px
  }
  
  .mx-px {
    margin-left: 1px;
    margin-right: 1px
  }
  
  .my-xs {
    margin-top: 32rem;
    margin-bottom: 32rem
  }
  
  .mx-xs {
    margin-left: 32rem;
    margin-right: 32rem
  }
  
  .my-sm {
    margin-top: 48rem;
    margin-bottom: 48rem
  }
  
  .mx-sm {
    margin-left: 48rem;
    margin-right: 48rem
  }
  
  .my-md {
    margin-top: 64rem;
    margin-bottom: 64rem
  }
  
  .mx-md {
    margin-left: 64rem;
    margin-right: 64rem
  }
  
  .my-lg {
    margin-top: 80rem;
    margin-bottom: 80rem
  }
  
  .mx-lg {
    margin-left: 80rem;
    margin-right: 80rem
  }
  
  .my-xl {
    margin-top: 96rem;
    margin-bottom: 96rem
  }
  
  .mx-xl {
    margin-left: 96rem;
    margin-right: 96rem
  }
  
  .my-2xl {
    margin-top: 112rem;
    margin-bottom: 112rem
  }
  
  .mx-2xl {
    margin-left: 112rem;
    margin-right: 112rem
  }
  
  .my-3xl {
    margin-top: 128rem;
    margin-bottom: 128rem
  }
  
  .mx-3xl {
    margin-left: 128rem;
    margin-right: 128rem
  }
  
  .my-4xl {
    margin-top: 144rem;
    margin-bottom: 144rem
  }
  
  .mx-4xl {
    margin-left: 144rem;
    margin-right: 144rem
  }
  
  .my-5xl {
    margin-top: 160rem;
    margin-bottom: 160rem
  }
  
  .mx-5xl {
    margin-left: 160rem;
    margin-right: 160rem
  }
  
  .-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem
  }
  
  .-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem
  }
  
  .-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem
  }
  
  .-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem
  }
  
  .-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem
  }
  
  .-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem
  }
  
  .-my-4 {
    margin-top: -0.4rem;
    margin-bottom: -0.4rem
  }
  
  .-mx-4 {
    margin-left: -0.4rem;
    margin-right: -0.4rem
  }
  
  .-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
  }
  
  .-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
  }
  
  .-my-6 {
    margin-top: -0.6rem;
    margin-bottom: -0.6rem
  }
  
  .-mx-6 {
    margin-left: -0.6rem;
    margin-right: -0.6rem
  }
  
  .-my-8 {
    margin-top: -0.8rem;
    margin-bottom: -0.8rem
  }
  
  .-mx-8 {
    margin-left: -0.8rem;
    margin-right: -0.8rem
  }
  
  .-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem
  }
  
  .-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem
  }
  
  .-my-12 {
    margin-top: -1.2rem;
    margin-bottom: -1.2rem
  }
  
  .-mx-12 {
    margin-left: -1.2rem;
    margin-right: -1.2rem
  }
  
  .-my-16 {
    margin-top: -1.6rem;
    margin-bottom: -1.6rem
  }
  
  .-mx-16 {
    margin-left: -1.6rem;
    margin-right: -1.6rem
  }
  
  .-my-20 {
    margin-top: -2rem;
    margin-bottom: -2rem
  }
  
  .-mx-20 {
    margin-left: -2rem;
    margin-right: -2rem
  }
  
  .-my-24 {
    margin-top: -2.4rem;
    margin-bottom: -2.4rem
  }
  
  .-mx-24 {
    margin-left: -2.4rem;
    margin-right: -2.4rem
  }
  
  .-my-28 {
    margin-top: -2.8rem;
    margin-bottom: -2.8rem
  }
  
  .-mx-28 {
    margin-left: -2.8rem;
    margin-right: -2.8rem
  }
  
  .-my-32 {
    margin-top: -3.2rem;
    margin-bottom: -3.2rem
  }
  
  .-mx-32 {
    margin-left: -3.2rem;
    margin-right: -3.2rem
  }
  
  .-my-36 {
    margin-top: -3.6rem;
    margin-bottom: -3.6rem
  }
  
  .-mx-36 {
    margin-left: -3.6rem;
    margin-right: -3.6rem
  }
  
  .-my-40 {
    margin-top: -4rem;
    margin-bottom: -4rem
  }
  
  .-mx-40 {
    margin-left: -4rem;
    margin-right: -4rem
  }
  
  .-my-44 {
    margin-top: -4.4rem;
    margin-bottom: -4.4rem
  }
  
  .-mx-44 {
    margin-left: -4.4rem;
    margin-right: -4.4rem
  }
  
  .-my-48 {
    margin-top: -4.8rem;
    margin-bottom: -4.8rem
  }
  
  .-mx-48 {
    margin-left: -4.8rem;
    margin-right: -4.8rem
  }
  
  .-my-52 {
    margin-top: -5.2rem;
    margin-bottom: -5.2rem
  }
  
  .-mx-52 {
    margin-left: -5.2rem;
    margin-right: -5.2rem
  }
  
  .-my-56 {
    margin-top: -5.6rem;
    margin-bottom: -5.6rem
  }
  
  .-mx-56 {
    margin-left: -5.6rem;
    margin-right: -5.6rem
  }
  
  .-my-60 {
    margin-top: -6rem;
    margin-bottom: -6rem
  }
  
  .-mx-60 {
    margin-left: -6rem;
    margin-right: -6rem
  }
  
  .-my-64 {
    margin-top: -6.4rem;
    margin-bottom: -6.4rem
  }
  
  .-mx-64 {
    margin-left: -6.4rem;
    margin-right: -6.4rem
  }
  
  .-my-68 {
    margin-top: -6.8rem;
    margin-bottom: -6.8rem
  }
  
  .-mx-68 {
    margin-left: -6.8rem;
    margin-right: -6.8rem
  }
  
  .-my-72 {
    margin-top: -7.2rem;
    margin-bottom: -7.2rem
  }
  
  .-mx-72 {
    margin-left: -7.2rem;
    margin-right: -7.2rem
  }
  
  .-my-76 {
    margin-top: -7.6rem;
    margin-bottom: -7.6rem
  }
  
  .-mx-76 {
    margin-left: -7.6rem;
    margin-right: -7.6rem
  }
  
  .-my-80 {
    margin-top: -8rem;
    margin-bottom: -8rem
  }
  
  .-mx-80 {
    margin-left: -8rem;
    margin-right: -8rem
  }
  
  .-my-84 {
    margin-top: -8.4rem;
    margin-bottom: -8.4rem
  }
  
  .-mx-84 {
    margin-left: -8.4rem;
    margin-right: -8.4rem
  }
  
  .-my-88 {
    margin-top: -8.8rem;
    margin-bottom: -8.8rem
  }
  
  .-mx-88 {
    margin-left: -8.8rem;
    margin-right: -8.8rem
  }
  
  .-my-92 {
    margin-top: -9.2rem;
    margin-bottom: -9.2rem
  }
  
  .-mx-92 {
    margin-left: -9.2rem;
    margin-right: -9.2rem
  }
  
  .-my-96 {
    margin-top: -9.6rem;
    margin-bottom: -9.6rem
  }
  
  .-mx-96 {
    margin-left: -9.6rem;
    margin-right: -9.6rem
  }
  
  .-my-128 {
    margin-top: -12.8rem;
    margin-bottom: -12.8rem
  }
  
  .-mx-128 {
    margin-left: -12.8rem;
    margin-right: -12.8rem
  }
  
  .-my-136 {
    margin-top: -13.6rem;
    margin-bottom: -13.6rem
  }
  
  .-mx-136 {
    margin-left: -13.6rem;
    margin-right: -13.6rem
  }
  
  .-my-160 {
    margin-top: -16rem;
    margin-bottom: -16rem
  }
  
  .-mx-160 {
    margin-left: -16rem;
    margin-right: -16rem
  }
  
  .-my-192 {
    margin-top: -19.2rem;
    margin-bottom: -19.2rem
  }
  
  .-mx-192 {
    margin-left: -19.2rem;
    margin-right: -19.2rem
  }
  
  .-my-200 {
    margin-top: -20rem;
    margin-bottom: -20rem
  }
  
  .-mx-200 {
    margin-left: -20rem;
    margin-right: -20rem
  }
  
  .-my-208 {
    margin-top: -20.8rem;
    margin-bottom: -20.8rem
  }
  
  .-mx-208 {
    margin-left: -20.8rem;
    margin-right: -20.8rem
  }
  
  .-my-216 {
    margin-top: -21.6rem;
    margin-bottom: -21.6rem
  }
  
  .-mx-216 {
    margin-left: -21.6rem;
    margin-right: -21.6rem
  }
  
  .-my-224 {
    margin-top: -22.4rem;
    margin-bottom: -22.4rem
  }
  
  .-mx-224 {
    margin-left: -22.4rem;
    margin-right: -22.4rem
  }
  
  .-my-256 {
    margin-top: -25.6rem;
    margin-bottom: -25.6rem
  }
  
  .-mx-256 {
    margin-left: -25.6rem;
    margin-right: -25.6rem
  }
  
  .-my-288 {
    margin-top: -28.8rem;
    margin-bottom: -28.8rem
  }
  
  .-mx-288 {
    margin-left: -28.8rem;
    margin-right: -28.8rem
  }
  
  .-my-320 {
    margin-top: -32rem;
    margin-bottom: -32rem
  }
  
  .-mx-320 {
    margin-left: -32rem;
    margin-right: -32rem
  }
  
  .-my-360 {
    margin-top: -36rem;
    margin-bottom: -36rem
  }
  
  .-mx-360 {
    margin-left: -36rem;
    margin-right: -36rem
  }
  
  .-my-384 {
    margin-top: -38.4rem;
    margin-bottom: -38.4rem
  }
  
  .-mx-384 {
    margin-left: -38.4rem;
    margin-right: -38.4rem
  }
  
  .-my-400 {
    margin-top: -40rem;
    margin-bottom: -40rem
  }
  
  .-mx-400 {
    margin-left: -40rem;
    margin-right: -40rem
  }
  
  .-my-512 {
    margin-top: -51.2rem;
    margin-bottom: -51.2rem
  }
  
  .-mx-512 {
    margin-left: -51.2rem;
    margin-right: -51.2rem
  }
  
  .-my-640 {
    margin-top: -64rem;
    margin-bottom: -64rem
  }
  
  .-mx-640 {
    margin-left: -64rem;
    margin-right: -64rem
  }
  
  .-my-px {
    margin-top: -1px;
    margin-bottom: -1px
  }
  
  .-mx-px {
    margin-left: -1px;
    margin-right: -1px
  }
  
  .-my-xs {
    margin-top: -32rem;
    margin-bottom: -32rem
  }
  
  .-mx-xs {
    margin-left: -32rem;
    margin-right: -32rem
  }
  
  .-my-sm {
    margin-top: -48rem;
    margin-bottom: -48rem
  }
  
  .-mx-sm {
    margin-left: -48rem;
    margin-right: -48rem
  }
  
  .-my-md {
    margin-top: -64rem;
    margin-bottom: -64rem
  }
  
  .-mx-md {
    margin-left: -64rem;
    margin-right: -64rem
  }
  
  .-my-lg {
    margin-top: -80rem;
    margin-bottom: -80rem
  }
  
  .-mx-lg {
    margin-left: -80rem;
    margin-right: -80rem
  }
  
  .-my-xl {
    margin-top: -96rem;
    margin-bottom: -96rem
  }
  
  .-mx-xl {
    margin-left: -96rem;
    margin-right: -96rem
  }
  
  .-my-2xl {
    margin-top: -112rem;
    margin-bottom: -112rem
  }
  
  .-mx-2xl {
    margin-left: -112rem;
    margin-right: -112rem
  }
  
  .-my-3xl {
    margin-top: -128rem;
    margin-bottom: -128rem
  }
  
  .-mx-3xl {
    margin-left: -128rem;
    margin-right: -128rem
  }
  
  .-my-4xl {
    margin-top: -144rem;
    margin-bottom: -144rem
  }
  
  .-mx-4xl {
    margin-left: -144rem;
    margin-right: -144rem
  }
  
  .-my-5xl {
    margin-top: -160rem;
    margin-bottom: -160rem
  }
  
  .-mx-5xl {
    margin-left: -160rem;
    margin-right: -160rem
  }
  
  .-my-auto {
    margin-top: -auto;
    margin-bottom: -auto
  }
  
  .-mx-auto {
    margin-left: -auto;
    margin-right: -auto
  }
  
  .mt-0 {
    margin-top: 0
  }
  
  .mr-0 {
    margin-right: 0
  }
  
  .mb-0 {
    margin-bottom: 0
  }
  
  .ml-0 {
    margin-left: 0
  }
  
  .mt-1 {
    margin-top: 0.25rem
  }
  
  .mr-1 {
    margin-right: 0.25rem
  }
  
  .mb-1 {
    margin-bottom: 0.25rem
  }
  
  .ml-1 {
    margin-left: 0.25rem
  }
  
  .mt-2 {
    margin-top: 0.5rem
  }
  
  .mr-2 {
    margin-right: 0.5rem
  }
  
  .mb-2 {
    margin-bottom: 0.5rem
  }
  
  .ml-2 {
    margin-left: 0.5rem
  }
  
  .mt-3 {
    margin-top: 0.75rem
  }
  
  .mr-3 {
    margin-right: 0.75rem
  }
  
  .mb-3 {
    margin-bottom: 0.75rem
  }
  
  .ml-3 {
    margin-left: 0.75rem
  }
  
  .mt-4 {
    margin-top: 0.4rem
  }
  
  .mr-4 {
    margin-right: 0.4rem
  }
  
  .mb-4 {
    margin-bottom: 0.4rem
  }
  
  .ml-4 {
    margin-left: 0.4rem
  }
  
  .mt-5 {
    margin-top: 1.25rem
  }
  
  .mr-5 {
    margin-right: 1.25rem
  }
  
  .mb-5 {
    margin-bottom: 1.25rem
  }
  
  .ml-5 {
    margin-left: 1.25rem
  }
  
  .mt-6 {
    margin-top: 0.6rem
  }
  
  .mr-6 {
    margin-right: 0.6rem
  }
  
  .mb-6 {
    margin-bottom: 0.6rem
  }
  
  .ml-6 {
    margin-left: 0.6rem
  }
  
  .mt-8 {
    margin-top: 0.8rem
  }
  
  .mr-8 {
    margin-right: 0.8rem
  }
  
  .mb-8 {
    margin-bottom: 0.8rem
  }
  
  .ml-8 {
    margin-left: 0.8rem
  }
  
  .mt-10 {
    margin-top: 2.5rem
  }
  
  .mr-10 {
    margin-right: 2.5rem
  }
  
  .mb-10 {
    margin-bottom: 2.5rem
  }
  
  .ml-10 {
    margin-left: 2.5rem
  }
  
  .mt-12 {
    margin-top: 1.2rem
  }
  
  .mr-12 {
    margin-right: 1.2rem
  }
  
  .mb-12 {
    margin-bottom: 1.2rem
  }
  
  .ml-12 {
    margin-left: 1.2rem
  }
  
  .mt-16 {
    margin-top: 1.6rem
  }
  
  .mr-16 {
    margin-right: 1.6rem
  }
  
  .mb-16 {
    margin-bottom: 1.6rem
  }
  
  .ml-16 {
    margin-left: 1.6rem
  }
  
  .mt-20 {
    margin-top: 2rem
  }
  
  .mr-20 {
    margin-right: 2rem
  }
  
  .mb-20 {
    margin-bottom: 2rem
  }
  
  .ml-20 {
    margin-left: 2rem
  }
  
  .mt-24 {
    margin-top: 2.4rem
  }
  
  .mr-24 {
    margin-right: 2.4rem
  }
  
  .mb-24 {
    margin-bottom: 2.4rem
  }
  
  .ml-24 {
    margin-left: 2.4rem
  }
  
  .mt-28 {
    margin-top: 2.8rem
  }
  
  .mr-28 {
    margin-right: 2.8rem
  }
  
  .mb-28 {
    margin-bottom: 2.8rem
  }
  
  .ml-28 {
    margin-left: 2.8rem
  }
  
  .mt-32 {
    margin-top: 3.2rem
  }
  
  .mr-32 {
    margin-right: 3.2rem
  }
  
  .mb-32 {
    margin-bottom: 3.2rem
  }
  
  .ml-32 {
    margin-left: 3.2rem
  }
  
  .mt-36 {
    margin-top: 3.6rem
  }
  
  .mr-36 {
    margin-right: 3.6rem
  }
  
  .mb-36 {
    margin-bottom: 3.6rem
  }
  
  .ml-36 {
    margin-left: 3.6rem
  }
  
  .mt-40 {
    margin-top: 4rem
  }
  
  .mr-40 {
    margin-right: 4rem
  }
  
  .mb-40 {
    margin-bottom: 4rem
  }
  
  .ml-40 {
    margin-left: 4rem
  }
  
  .mt-44 {
    margin-top: 4.4rem
  }
  
  .mr-44 {
    margin-right: 4.4rem
  }
  
  .mb-44 {
    margin-bottom: 4.4rem
  }
  
  .ml-44 {
    margin-left: 4.4rem
  }
  
  .mt-48 {
    margin-top: 4.8rem
  }
  
  .mr-48 {
    margin-right: 4.8rem
  }
  
  .mb-48 {
    margin-bottom: 4.8rem
  }
  
  .ml-48 {
    margin-left: 4.8rem
  }
  
  .mt-52 {
    margin-top: 5.2rem
  }
  
  .mr-52 {
    margin-right: 5.2rem
  }
  
  .mb-52 {
    margin-bottom: 5.2rem
  }
  
  .ml-52 {
    margin-left: 5.2rem
  }
  
  .mt-56 {
    margin-top: 5.6rem
  }
  
  .mr-56 {
    margin-right: 5.6rem
  }
  
  .mb-56 {
    margin-bottom: 5.6rem
  }
  
  .ml-56 {
    margin-left: 5.6rem
  }
  
  .mt-60 {
    margin-top: 6rem
  }
  
  .mr-60 {
    margin-right: 6rem
  }
  
  .mb-60 {
    margin-bottom: 6rem
  }
  
  .ml-60 {
    margin-left: 6rem
  }
  
  .mt-64 {
    margin-top: 6.4rem
  }
  
  .mr-64 {
    margin-right: 6.4rem
  }
  
  .mb-64 {
    margin-bottom: 6.4rem
  }
  
  .ml-64 {
    margin-left: 6.4rem
  }
  
  .mt-68 {
    margin-top: 6.8rem
  }
  
  .mr-68 {
    margin-right: 6.8rem
  }
  
  .mb-68 {
    margin-bottom: 6.8rem
  }
  
  .ml-68 {
    margin-left: 6.8rem
  }
  
  .mt-72 {
    margin-top: 7.2rem
  }
  
  .mr-72 {
    margin-right: 7.2rem
  }
  
  .mb-72 {
    margin-bottom: 7.2rem
  }
  
  .ml-72 {
    margin-left: 7.2rem
  }
  
  .mt-76 {
    margin-top: 7.6rem
  }
  
  .mr-76 {
    margin-right: 7.6rem
  }
  
  .mb-76 {
    margin-bottom: 7.6rem
  }
  
  .ml-76 {
    margin-left: 7.6rem
  }
  
  .mt-80 {
    margin-top: 8rem
  }
  
  .mr-80 {
    margin-right: 8rem
  }
  
  .mb-80 {
    margin-bottom: 8rem
  }
  
  .ml-80 {
    margin-left: 8rem
  }
  
  .mt-84 {
    margin-top: 8.4rem
  }
  
  .mr-84 {
    margin-right: 8.4rem
  }
  
  .mb-84 {
    margin-bottom: 8.4rem
  }
  
  .ml-84 {
    margin-left: 8.4rem
  }
  
  .mt-88 {
    margin-top: 8.8rem
  }
  
  .mr-88 {
    margin-right: 8.8rem
  }
  
  .mb-88 {
    margin-bottom: 8.8rem
  }
  
  .ml-88 {
    margin-left: 8.8rem
  }
  
  .mt-92 {
    margin-top: 9.2rem
  }
  
  .mr-92 {
    margin-right: 9.2rem
  }
  
  .mb-92 {
    margin-bottom: 9.2rem
  }
  
  .ml-92 {
    margin-left: 9.2rem
  }
  
  .mt-96 {
    margin-top: 9.6rem
  }
  
  .mr-96 {
    margin-right: 9.6rem
  }
  
  .mb-96 {
    margin-bottom: 9.6rem
  }
  
  .ml-96 {
    margin-left: 9.6rem
  }
  
  .mt-128 {
    margin-top: 12.8rem
  }
  
  .mr-128 {
    margin-right: 12.8rem
  }
  
  .mb-128 {
    margin-bottom: 12.8rem
  }
  
  .ml-128 {
    margin-left: 12.8rem
  }
  
  .mt-136 {
    margin-top: 13.6rem
  }
  
  .mr-136 {
    margin-right: 13.6rem
  }
  
  .mb-136 {
    margin-bottom: 13.6rem
  }
  
  .ml-136 {
    margin-left: 13.6rem
  }
  
  .mt-160 {
    margin-top: 16rem
  }
  
  .mr-160 {
    margin-right: 16rem
  }
  
  .mb-160 {
    margin-bottom: 16rem
  }
  
  .ml-160 {
    margin-left: 16rem
  }
  
  .mt-192 {
    margin-top: 19.2rem
  }
  
  .mr-192 {
    margin-right: 19.2rem
  }
  
  .mb-192 {
    margin-bottom: 19.2rem
  }
  
  .ml-192 {
    margin-left: 19.2rem
  }
  
  .mt-200 {
    margin-top: 20rem
  }
  
  .mr-200 {
    margin-right: 20rem
  }
  
  .mb-200 {
    margin-bottom: 20rem
  }
  
  .ml-200 {
    margin-left: 20rem
  }
  
  .mt-208 {
    margin-top: 20.8rem
  }
  
  .mr-208 {
    margin-right: 20.8rem
  }
  
  .mb-208 {
    margin-bottom: 20.8rem
  }
  
  .ml-208 {
    margin-left: 20.8rem
  }
  
  .mt-216 {
    margin-top: 21.6rem
  }
  
  .mr-216 {
    margin-right: 21.6rem
  }
  
  .mb-216 {
    margin-bottom: 21.6rem
  }
  
  .ml-216 {
    margin-left: 21.6rem
  }
  
  .mt-224 {
    margin-top: 22.4rem
  }
  
  .mr-224 {
    margin-right: 22.4rem
  }
  
  .mb-224 {
    margin-bottom: 22.4rem
  }
  
  .ml-224 {
    margin-left: 22.4rem
  }
  
  .mt-256 {
    margin-top: 25.6rem
  }
  
  .mr-256 {
    margin-right: 25.6rem
  }
  
  .mb-256 {
    margin-bottom: 25.6rem
  }
  
  .ml-256 {
    margin-left: 25.6rem
  }
  
  .mt-288 {
    margin-top: 28.8rem
  }
  
  .mr-288 {
    margin-right: 28.8rem
  }
  
  .mb-288 {
    margin-bottom: 28.8rem
  }
  
  .ml-288 {
    margin-left: 28.8rem
  }
  
  .mt-320 {
    margin-top: 32rem
  }
  
  .mr-320 {
    margin-right: 32rem
  }
  
  .mb-320 {
    margin-bottom: 32rem
  }
  
  .ml-320 {
    margin-left: 32rem
  }
  
  .mt-360 {
    margin-top: 36rem
  }
  
  .mr-360 {
    margin-right: 36rem
  }
  
  .mb-360 {
    margin-bottom: 36rem
  }
  
  .ml-360 {
    margin-left: 36rem
  }
  
  .mt-384 {
    margin-top: 38.4rem
  }
  
  .mr-384 {
    margin-right: 38.4rem
  }
  
  .mb-384 {
    margin-bottom: 38.4rem
  }
  
  .ml-384 {
    margin-left: 38.4rem
  }
  
  .mt-400 {
    margin-top: 40rem
  }
  
  .mr-400 {
    margin-right: 40rem
  }
  
  .mb-400 {
    margin-bottom: 40rem
  }
  
  .ml-400 {
    margin-left: 40rem
  }
  
  .mt-512 {
    margin-top: 51.2rem
  }
  
  .mr-512 {
    margin-right: 51.2rem
  }
  
  .mb-512 {
    margin-bottom: 51.2rem
  }
  
  .ml-512 {
    margin-left: 51.2rem
  }
  
  .mt-640 {
    margin-top: 64rem
  }
  
  .mr-640 {
    margin-right: 64rem
  }
  
  .mb-640 {
    margin-bottom: 64rem
  }
  
  .ml-640 {
    margin-left: 64rem
  }
  
  .mt-auto {
    margin-top: auto
  }
  
  .mr-auto {
    margin-right: auto
  }
  
  .mb-auto {
    margin-bottom: auto
  }
  
  .ml-auto {
    margin-left: auto
  }
  
  .mt-px {
    margin-top: 1px
  }
  
  .mr-px {
    margin-right: 1px
  }
  
  .mb-px {
    margin-bottom: 1px
  }
  
  .ml-px {
    margin-left: 1px
  }
  
  .mt-xs {
    margin-top: 32rem
  }
  
  .mr-xs {
    margin-right: 32rem
  }
  
  .mb-xs {
    margin-bottom: 32rem
  }
  
  .ml-xs {
    margin-left: 32rem
  }
  
  .mt-sm {
    margin-top: 48rem
  }
  
  .mr-sm {
    margin-right: 48rem
  }
  
  .mb-sm {
    margin-bottom: 48rem
  }
  
  .ml-sm {
    margin-left: 48rem
  }
  
  .mt-md {
    margin-top: 64rem
  }
  
  .mr-md {
    margin-right: 64rem
  }
  
  .mb-md {
    margin-bottom: 64rem
  }
  
  .ml-md {
    margin-left: 64rem
  }
  
  .mt-lg {
    margin-top: 80rem
  }
  
  .mr-lg {
    margin-right: 80rem
  }
  
  .mb-lg {
    margin-bottom: 80rem
  }
  
  .ml-lg {
    margin-left: 80rem
  }
  
  .mt-xl {
    margin-top: 96rem
  }
  
  .mr-xl {
    margin-right: 96rem
  }
  
  .mb-xl {
    margin-bottom: 96rem
  }
  
  .ml-xl {
    margin-left: 96rem
  }
  
  .mt-2xl {
    margin-top: 112rem
  }
  
  .mr-2xl {
    margin-right: 112rem
  }
  
  .mb-2xl {
    margin-bottom: 112rem
  }
  
  .ml-2xl {
    margin-left: 112rem
  }
  
  .mt-3xl {
    margin-top: 128rem
  }
  
  .mr-3xl {
    margin-right: 128rem
  }
  
  .mb-3xl {
    margin-bottom: 128rem
  }
  
  .ml-3xl {
    margin-left: 128rem
  }
  
  .mt-4xl {
    margin-top: 144rem
  }
  
  .mr-4xl {
    margin-right: 144rem
  }
  
  .mb-4xl {
    margin-bottom: 144rem
  }
  
  .ml-4xl {
    margin-left: 144rem
  }
  
  .mt-5xl {
    margin-top: 160rem
  }
  
  .mr-5xl {
    margin-right: 160rem
  }
  
  .mb-5xl {
    margin-bottom: 160rem
  }
  
  .ml-5xl {
    margin-left: 160rem
  }
  
  .-mt-1 {
    margin-top: -0.25rem
  }
  
  .-mr-1 {
    margin-right: -0.25rem
  }
  
  .-mb-1 {
    margin-bottom: -0.25rem
  }
  
  .-ml-1 {
    margin-left: -0.25rem
  }
  
  .-mt-2 {
    margin-top: -0.5rem
  }
  
  .-mr-2 {
    margin-right: -0.5rem
  }
  
  .-mb-2 {
    margin-bottom: -0.5rem
  }
  
  .-ml-2 {
    margin-left: -0.5rem
  }
  
  .-mt-3 {
    margin-top: -0.75rem
  }
  
  .-mr-3 {
    margin-right: -0.75rem
  }
  
  .-mb-3 {
    margin-bottom: -0.75rem
  }
  
  .-ml-3 {
    margin-left: -0.75rem
  }
  
  .-mt-4 {
    margin-top: -0.4rem
  }
  
  .-mr-4 {
    margin-right: -0.4rem
  }
  
  .-mb-4 {
    margin-bottom: -0.4rem
  }
  
  .-ml-4 {
    margin-left: -0.4rem
  }
  
  .-mt-5 {
    margin-top: -1.25rem
  }
  
  .-mr-5 {
    margin-right: -1.25rem
  }
  
  .-mb-5 {
    margin-bottom: -1.25rem
  }
  
  .-ml-5 {
    margin-left: -1.25rem
  }
  
  .-mt-6 {
    margin-top: -0.6rem
  }
  
  .-mr-6 {
    margin-right: -0.6rem
  }
  
  .-mb-6 {
    margin-bottom: -0.6rem
  }
  
  .-ml-6 {
    margin-left: -0.6rem
  }
  
  .-mt-8 {
    margin-top: -0.8rem
  }
  
  .-mr-8 {
    margin-right: -0.8rem
  }
  
  .-mb-8 {
    margin-bottom: -0.8rem
  }
  
  .-ml-8 {
    margin-left: -0.8rem
  }
  
  .-mt-10 {
    margin-top: -2.5rem
  }
  
  .-mr-10 {
    margin-right: -2.5rem
  }
  
  .-mb-10 {
    margin-bottom: -2.5rem
  }
  
  .-ml-10 {
    margin-left: -2.5rem
  }
  
  .-mt-12 {
    margin-top: -1.2rem
  }
  
  .-mr-12 {
    margin-right: -1.2rem
  }
  
  .-mb-12 {
    margin-bottom: -1.2rem
  }
  
  .-ml-12 {
    margin-left: -1.2rem
  }
  
  .-mt-16 {
    margin-top: -1.6rem
  }
  
  .-mr-16 {
    margin-right: -1.6rem
  }
  
  .-mb-16 {
    margin-bottom: -1.6rem
  }
  
  .-ml-16 {
    margin-left: -1.6rem
  }
  
  .-mt-20 {
    margin-top: -2rem
  }
  
  .-mr-20 {
    margin-right: -2rem
  }
  
  .-mb-20 {
    margin-bottom: -2rem
  }
  
  .-ml-20 {
    margin-left: -2rem
  }
  
  .-mt-24 {
    margin-top: -2.4rem
  }
  
  .-mr-24 {
    margin-right: -2.4rem
  }
  
  .-mb-24 {
    margin-bottom: -2.4rem
  }
  
  .-ml-24 {
    margin-left: -2.4rem
  }
  
  .-mt-28 {
    margin-top: -2.8rem
  }
  
  .-mr-28 {
    margin-right: -2.8rem
  }
  
  .-mb-28 {
    margin-bottom: -2.8rem
  }
  
  .-ml-28 {
    margin-left: -2.8rem
  }
  
  .-mt-32 {
    margin-top: -3.2rem
  }
  
  .-mr-32 {
    margin-right: -3.2rem
  }
  
  .-mb-32 {
    margin-bottom: -3.2rem
  }
  
  .-ml-32 {
    margin-left: -3.2rem
  }
  
  .-mt-36 {
    margin-top: -3.6rem
  }
  
  .-mr-36 {
    margin-right: -3.6rem
  }
  
  .-mb-36 {
    margin-bottom: -3.6rem
  }
  
  .-ml-36 {
    margin-left: -3.6rem
  }
  
  .-mt-40 {
    margin-top: -4rem
  }
  
  .-mr-40 {
    margin-right: -4rem
  }
  
  .-mb-40 {
    margin-bottom: -4rem
  }
  
  .-ml-40 {
    margin-left: -4rem
  }
  
  .-mt-44 {
    margin-top: -4.4rem
  }
  
  .-mr-44 {
    margin-right: -4.4rem
  }
  
  .-mb-44 {
    margin-bottom: -4.4rem
  }
  
  .-ml-44 {
    margin-left: -4.4rem
  }
  
  .-mt-48 {
    margin-top: -4.8rem
  }
  
  .-mr-48 {
    margin-right: -4.8rem
  }
  
  .-mb-48 {
    margin-bottom: -4.8rem
  }
  
  .-ml-48 {
    margin-left: -4.8rem
  }
  
  .-mt-52 {
    margin-top: -5.2rem
  }
  
  .-mr-52 {
    margin-right: -5.2rem
  }
  
  .-mb-52 {
    margin-bottom: -5.2rem
  }
  
  .-ml-52 {
    margin-left: -5.2rem
  }
  
  .-mt-56 {
    margin-top: -5.6rem
  }
  
  .-mr-56 {
    margin-right: -5.6rem
  }
  
  .-mb-56 {
    margin-bottom: -5.6rem
  }
  
  .-ml-56 {
    margin-left: -5.6rem
  }
  
  .-mt-60 {
    margin-top: -6rem
  }
  
  .-mr-60 {
    margin-right: -6rem
  }
  
  .-mb-60 {
    margin-bottom: -6rem
  }
  
  .-ml-60 {
    margin-left: -6rem
  }
  
  .-mt-64 {
    margin-top: -6.4rem
  }
  
  .-mr-64 {
    margin-right: -6.4rem
  }
  
  .-mb-64 {
    margin-bottom: -6.4rem
  }
  
  .-ml-64 {
    margin-left: -6.4rem
  }
  
  .-mt-68 {
    margin-top: -6.8rem
  }
  
  .-mr-68 {
    margin-right: -6.8rem
  }
  
  .-mb-68 {
    margin-bottom: -6.8rem
  }
  
  .-ml-68 {
    margin-left: -6.8rem
  }
  
  .-mt-72 {
    margin-top: -7.2rem
  }
  
  .-mr-72 {
    margin-right: -7.2rem
  }
  
  .-mb-72 {
    margin-bottom: -7.2rem
  }
  
  .-ml-72 {
    margin-left: -7.2rem
  }
  
  .-mt-76 {
    margin-top: -7.6rem
  }
  
  .-mr-76 {
    margin-right: -7.6rem
  }
  
  .-mb-76 {
    margin-bottom: -7.6rem
  }
  
  .-ml-76 {
    margin-left: -7.6rem
  }
  
  .-mt-80 {
    margin-top: -8rem
  }
  
  .-mr-80 {
    margin-right: -8rem
  }
  
  .-mb-80 {
    margin-bottom: -8rem
  }
  
  .-ml-80 {
    margin-left: -8rem
  }
  
  .-mt-84 {
    margin-top: -8.4rem
  }
  
  .-mr-84 {
    margin-right: -8.4rem
  }
  
  .-mb-84 {
    margin-bottom: -8.4rem
  }
  
  .-ml-84 {
    margin-left: -8.4rem
  }
  
  .-mt-88 {
    margin-top: -8.8rem
  }
  
  .-mr-88 {
    margin-right: -8.8rem
  }
  
  .-mb-88 {
    margin-bottom: -8.8rem
  }
  
  .-ml-88 {
    margin-left: -8.8rem
  }
  
  .-mt-92 {
    margin-top: -9.2rem
  }
  
  .-mr-92 {
    margin-right: -9.2rem
  }
  
  .-mb-92 {
    margin-bottom: -9.2rem
  }
  
  .-ml-92 {
    margin-left: -9.2rem
  }
  
  .-mt-96 {
    margin-top: -9.6rem
  }
  
  .-mr-96 {
    margin-right: -9.6rem
  }
  
  .-mb-96 {
    margin-bottom: -9.6rem
  }
  
  .-ml-96 {
    margin-left: -9.6rem
  }
  
  .-mt-128 {
    margin-top: -12.8rem
  }
  
  .-mr-128 {
    margin-right: -12.8rem
  }
  
  .-mb-128 {
    margin-bottom: -12.8rem
  }
  
  .-ml-128 {
    margin-left: -12.8rem
  }
  
  .-mt-136 {
    margin-top: -13.6rem
  }
  
  .-mr-136 {
    margin-right: -13.6rem
  }
  
  .-mb-136 {
    margin-bottom: -13.6rem
  }
  
  .-ml-136 {
    margin-left: -13.6rem
  }
  
  .-mt-160 {
    margin-top: -16rem
  }
  
  .-mr-160 {
    margin-right: -16rem
  }
  
  .-mb-160 {
    margin-bottom: -16rem
  }
  
  .-ml-160 {
    margin-left: -16rem
  }
  
  .-mt-192 {
    margin-top: -19.2rem
  }
  
  .-mr-192 {
    margin-right: -19.2rem
  }
  
  .-mb-192 {
    margin-bottom: -19.2rem
  }
  
  .-ml-192 {
    margin-left: -19.2rem
  }
  
  .-mt-200 {
    margin-top: -20rem
  }
  
  .-mr-200 {
    margin-right: -20rem
  }
  
  .-mb-200 {
    margin-bottom: -20rem
  }
  
  .-ml-200 {
    margin-left: -20rem
  }
  
  .-mt-208 {
    margin-top: -20.8rem
  }
  
  .-mr-208 {
    margin-right: -20.8rem
  }
  
  .-mb-208 {
    margin-bottom: -20.8rem
  }
  
  .-ml-208 {
    margin-left: -20.8rem
  }
  
  .-mt-216 {
    margin-top: -21.6rem
  }
  
  .-mr-216 {
    margin-right: -21.6rem
  }
  
  .-mb-216 {
    margin-bottom: -21.6rem
  }
  
  .-ml-216 {
    margin-left: -21.6rem
  }
  
  .-mt-224 {
    margin-top: -22.4rem
  }
  
  .-mr-224 {
    margin-right: -22.4rem
  }
  
  .-mb-224 {
    margin-bottom: -22.4rem
  }
  
  .-ml-224 {
    margin-left: -22.4rem
  }
  
  .-mt-256 {
    margin-top: -25.6rem
  }
  
  .-mr-256 {
    margin-right: -25.6rem
  }
  
  .-mb-256 {
    margin-bottom: -25.6rem
  }
  
  .-ml-256 {
    margin-left: -25.6rem
  }
  
  .-mt-288 {
    margin-top: -28.8rem
  }
  
  .-mr-288 {
    margin-right: -28.8rem
  }
  
  .-mb-288 {
    margin-bottom: -28.8rem
  }
  
  .-ml-288 {
    margin-left: -28.8rem
  }
  
  .-mt-320 {
    margin-top: -32rem
  }
  
  .-mr-320 {
    margin-right: -32rem
  }
  
  .-mb-320 {
    margin-bottom: -32rem
  }
  
  .-ml-320 {
    margin-left: -32rem
  }
  
  .-mt-360 {
    margin-top: -36rem
  }
  
  .-mr-360 {
    margin-right: -36rem
  }
  
  .-mb-360 {
    margin-bottom: -36rem
  }
  
  .-ml-360 {
    margin-left: -36rem
  }
  
  .-mt-384 {
    margin-top: -38.4rem
  }
  
  .-mr-384 {
    margin-right: -38.4rem
  }
  
  .-mb-384 {
    margin-bottom: -38.4rem
  }
  
  .-ml-384 {
    margin-left: -38.4rem
  }
  
  .-mt-400 {
    margin-top: -40rem
  }
  
  .-mr-400 {
    margin-right: -40rem
  }
  
  .-mb-400 {
    margin-bottom: -40rem
  }
  
  .-ml-400 {
    margin-left: -40rem
  }
  
  .-mt-512 {
    margin-top: -51.2rem
  }
  
  .-mr-512 {
    margin-right: -51.2rem
  }
  
  .-mb-512 {
    margin-bottom: -51.2rem
  }
  
  .-ml-512 {
    margin-left: -51.2rem
  }
  
  .-mt-640 {
    margin-top: -64rem
  }
  
  .-mr-640 {
    margin-right: -64rem
  }
  
  .-mb-640 {
    margin-bottom: -64rem
  }
  
  .-ml-640 {
    margin-left: -64rem
  }
  
  .-mt-px {
    margin-top: -1px
  }
  
  .-mr-px {
    margin-right: -1px
  }
  
  .-mb-px {
    margin-bottom: -1px
  }
  
  .-ml-px {
    margin-left: -1px
  }
  
  .-mt-xs {
    margin-top: -32rem
  }
  
  .-mr-xs {
    margin-right: -32rem
  }
  
  .-mb-xs {
    margin-bottom: -32rem
  }
  
  .-ml-xs {
    margin-left: -32rem
  }
  
  .-mt-sm {
    margin-top: -48rem
  }
  
  .-mr-sm {
    margin-right: -48rem
  }
  
  .-mb-sm {
    margin-bottom: -48rem
  }
  
  .-ml-sm {
    margin-left: -48rem
  }
  
  .-mt-md {
    margin-top: -64rem
  }
  
  .-mr-md {
    margin-right: -64rem
  }
  
  .-mb-md {
    margin-bottom: -64rem
  }
  
  .-ml-md {
    margin-left: -64rem
  }
  
  .-mt-lg {
    margin-top: -80rem
  }
  
  .-mr-lg {
    margin-right: -80rem
  }
  
  .-mb-lg {
    margin-bottom: -80rem
  }
  
  .-ml-lg {
    margin-left: -80rem
  }
  
  .-mt-xl {
    margin-top: -96rem
  }
  
  .-mr-xl {
    margin-right: -96rem
  }
  
  .-mb-xl {
    margin-bottom: -96rem
  }
  
  .-ml-xl {
    margin-left: -96rem
  }
  
  .-mt-2xl {
    margin-top: -112rem
  }
  
  .-mr-2xl {
    margin-right: -112rem
  }
  
  .-mb-2xl {
    margin-bottom: -112rem
  }
  
  .-ml-2xl {
    margin-left: -112rem
  }
  
  .-mt-3xl {
    margin-top: -128rem
  }
  
  .-mr-3xl {
    margin-right: -128rem
  }
  
  .-mb-3xl {
    margin-bottom: -128rem
  }
  
  .-ml-3xl {
    margin-left: -128rem
  }
  
  .-mt-4xl {
    margin-top: -144rem
  }
  
  .-mr-4xl {
    margin-right: -144rem
  }
  
  .-mb-4xl {
    margin-bottom: -144rem
  }
  
  .-ml-4xl {
    margin-left: -144rem
  }
  
  .-mt-5xl {
    margin-top: -160rem
  }
  
  .-mr-5xl {
    margin-right: -160rem
  }
  
  .-mb-5xl {
    margin-bottom: -160rem
  }
  
  .-ml-5xl {
    margin-left: -160rem
  }
  
  .-mt-auto {
    margin-top: -auto
  }
  
  .-mr-auto {
    margin-right: -auto
  }
  
  .-mb-auto {
    margin-bottom: -auto
  }
  
  .-ml-auto {
    margin-left: -auto
  }
  
  .max-h-0 {
    max-height: 0
  }
  
  .max-h-1 {
    max-height: 0.25rem
  }
  
  .max-h-2 {
    max-height: 0.5rem
  }
  
  .max-h-3 {
    max-height: 0.75rem
  }
  
  .max-h-4 {
    max-height: 0.4rem
  }
  
  .max-h-5 {
    max-height: 1.25rem
  }
  
  .max-h-6 {
    max-height: 0.6rem
  }
  
  .max-h-8 {
    max-height: 0.8rem
  }
  
  .max-h-10 {
    max-height: 2.5rem
  }
  
  .max-h-12 {
    max-height: 1.2rem
  }
  
  .max-h-16 {
    max-height: 1.6rem
  }
  
  .max-h-20 {
    max-height: 2rem
  }
  
  .max-h-24 {
    max-height: 2.4rem
  }
  
  .max-h-28 {
    max-height: 2.8rem
  }
  
  .max-h-32 {
    max-height: 3.2rem
  }
  
  .max-h-36 {
    max-height: 3.6rem
  }
  
  .max-h-40 {
    max-height: 4rem
  }
  
  .max-h-44 {
    max-height: 4.4rem
  }
  
  .max-h-48 {
    max-height: 4.8rem
  }
  
  .max-h-52 {
    max-height: 5.2rem
  }
  
  .max-h-56 {
    max-height: 5.6rem
  }
  
  .max-h-60 {
    max-height: 6rem
  }
  
  .max-h-64 {
    max-height: 6.4rem
  }
  
  .max-h-68 {
    max-height: 6.8rem
  }
  
  .max-h-72 {
    max-height: 7.2rem
  }
  
  .max-h-76 {
    max-height: 7.6rem
  }
  
  .max-h-80 {
    max-height: 8rem
  }
  
  .max-h-84 {
    max-height: 8.4rem
  }
  
  .max-h-88 {
    max-height: 8.8rem
  }
  
  .max-h-92 {
    max-height: 9.2rem
  }
  
  .max-h-96 {
    max-height: 9.6rem
  }
  
  .max-h-128 {
    max-height: 12.8rem
  }
  
  .max-h-136 {
    max-height: 13.6rem
  }
  
  .max-h-160 {
    max-height: 16rem
  }
  
  .max-h-192 {
    max-height: 19.2rem
  }
  
  .max-h-200 {
    max-height: 20rem
  }
  
  .max-h-208 {
    max-height: 20.8rem
  }
  
  .max-h-216 {
    max-height: 21.6rem
  }
  
  .max-h-224 {
    max-height: 22.4rem
  }
  
  .max-h-256 {
    max-height: 25.6rem
  }
  
  .max-h-288 {
    max-height: 28.8rem
  }
  
  .max-h-320 {
    max-height: 32rem
  }
  
  .max-h-360 {
    max-height: 36rem
  }
  
  .max-h-384 {
    max-height: 38.4rem
  }
  
  .max-h-400 {
    max-height: 40rem
  }
  
  .max-h-512 {
    max-height: 51.2rem
  }
  
  .max-h-640 {
    max-height: 64rem
  }
  
  .max-h-full {
    max-height: 100%
  }
  
  .max-h-screen {
    max-height: 100vh
  }
  
  .max-h-auto {
    max-height: auto
  }
  
  .max-h-px {
    max-height: 1px
  }
  
  .max-h-xs {
    max-height: 32rem
  }
  
  .max-h-sm {
    max-height: 48rem
  }
  
  .max-h-md {
    max-height: 64rem
  }
  
  .max-h-lg {
    max-height: 80rem
  }
  
  .max-h-xl {
    max-height: 96rem
  }
  
  .max-h-2xl {
    max-height: 112rem
  }
  
  .max-h-3xl {
    max-height: 128rem
  }
  
  .max-h-4xl {
    max-height: 144rem
  }
  
  .max-h-5xl {
    max-height: 160rem
  }
  
  .max-w-0 {
    max-width: 0
  }
  
  .max-w-1 {
    max-width: 0.25rem
  }
  
  .max-w-2 {
    max-width: 0.5rem
  }
  
  .max-w-3 {
    max-width: 0.75rem
  }
  
  .max-w-4 {
    max-width: 0.4rem
  }
  
  .max-w-5 {
    max-width: 1.25rem
  }
  
  .max-w-6 {
    max-width: 0.6rem
  }
  
  .max-w-8 {
    max-width: 0.8rem
  }
  
  .max-w-10 {
    max-width: 2.5rem
  }
  
  .max-w-12 {
    max-width: 1.2rem
  }
  
  .max-w-16 {
    max-width: 1.6rem
  }
  
  .max-w-20 {
    max-width: 2rem
  }
  
  .max-w-24 {
    max-width: 2.4rem
  }
  
  .max-w-28 {
    max-width: 2.8rem
  }
  
  .max-w-32 {
    max-width: 3.2rem
  }
  
  .max-w-36 {
    max-width: 3.6rem
  }
  
  .max-w-40 {
    max-width: 4rem
  }
  
  .max-w-44 {
    max-width: 4.4rem
  }
  
  .max-w-48 {
    max-width: 4.8rem
  }
  
  .max-w-52 {
    max-width: 5.2rem
  }
  
  .max-w-56 {
    max-width: 5.6rem
  }
  
  .max-w-60 {
    max-width: 6rem
  }
  
  .max-w-64 {
    max-width: 6.4rem
  }
  
  .max-w-68 {
    max-width: 6.8rem
  }
  
  .max-w-72 {
    max-width: 7.2rem
  }
  
  .max-w-76 {
    max-width: 7.6rem
  }
  
  .max-w-80 {
    max-width: 8rem
  }
  
  .max-w-84 {
    max-width: 8.4rem
  }
  
  .max-w-88 {
    max-width: 8.8rem
  }
  
  .max-w-92 {
    max-width: 9.2rem
  }
  
  .max-w-96 {
    max-width: 9.6rem
  }
  
  .max-w-128 {
    max-width: 12.8rem
  }
  
  .max-w-136 {
    max-width: 13.6rem
  }
  
  .max-w-160 {
    max-width: 16rem
  }
  
  .max-w-192 {
    max-width: 19.2rem
  }
  
  .max-w-200 {
    max-width: 20rem
  }
  
  .max-w-208 {
    max-width: 20.8rem
  }
  
  .max-w-216 {
    max-width: 21.6rem
  }
  
  .max-w-224 {
    max-width: 22.4rem
  }
  
  .max-w-256 {
    max-width: 25.6rem
  }
  
  .max-w-288 {
    max-width: 28.8rem
  }
  
  .max-w-320 {
    max-width: 32rem
  }
  
  .max-w-360 {
    max-width: 36rem
  }
  
  .max-w-384 {
    max-width: 38.4rem
  }
  
  .max-w-400 {
    max-width: 40rem
  }
  
  .max-w-512 {
    max-width: 51.2rem
  }
  
  .max-w-640 {
    max-width: 64rem
  }
  
  .max-w-xs {
    max-width: 32rem
  }
  
  .max-w-sm {
    max-width: 48rem
  }
  
  .max-w-md {
    max-width: 64rem
  }
  
  .max-w-lg {
    max-width: 80rem
  }
  
  .max-w-xl {
    max-width: 96rem
  }
  
  .max-w-2xl {
    max-width: 112rem
  }
  
  .max-w-3xl {
    max-width: 128rem
  }
  
  .max-w-4xl {
    max-width: 144rem
  }
  
  .max-w-5xl {
    max-width: 160rem
  }
  
  .max-w-6xl {
    max-width: 72rem
  }
  
  .max-w-full {
    max-width: 100%
  }
  
  .max-w-px {
    max-width: 1px
  }
  
  .max-w-auto {
    max-width: auto
  }
  
  .max-w-screen {
    max-width: 100vw
  }
  
  .min-h-0 {
    min-height: 0
  }
  
  .min-h-1 {
    min-height: 0.25rem
  }
  
  .min-h-2 {
    min-height: 0.5rem
  }
  
  .min-h-3 {
    min-height: 0.75rem
  }
  
  .min-h-4 {
    min-height: 0.4rem
  }
  
  .min-h-5 {
    min-height: 1.25rem
  }
  
  .min-h-6 {
    min-height: 0.6rem
  }
  
  .min-h-8 {
    min-height: 0.8rem
  }
  
  .min-h-10 {
    min-height: 2.5rem
  }
  
  .min-h-12 {
    min-height: 1.2rem
  }
  
  .min-h-16 {
    min-height: 1.6rem
  }
  
  .min-h-20 {
    min-height: 2rem
  }
  
  .min-h-24 {
    min-height: 2.4rem
  }
  
  .min-h-28 {
    min-height: 2.8rem
  }
  
  .min-h-32 {
    min-height: 3.2rem
  }
  
  .min-h-36 {
    min-height: 3.6rem
  }
  
  .min-h-40 {
    min-height: 4rem
  }
  
  .min-h-44 {
    min-height: 4.4rem
  }
  
  .min-h-48 {
    min-height: 4.8rem
  }
  
  .min-h-52 {
    min-height: 5.2rem
  }
  
  .min-h-56 {
    min-height: 5.6rem
  }
  
  .min-h-60 {
    min-height: 6rem
  }
  
  .min-h-64 {
    min-height: 6.4rem
  }
  
  .min-h-68 {
    min-height: 6.8rem
  }
  
  .min-h-72 {
    min-height: 7.2rem
  }
  
  .min-h-76 {
    min-height: 7.6rem
  }
  
  .min-h-80 {
    min-height: 8rem
  }
  
  .min-h-84 {
    min-height: 8.4rem
  }
  
  .min-h-88 {
    min-height: 8.8rem
  }
  
  .min-h-92 {
    min-height: 9.2rem
  }
  
  .min-h-96 {
    min-height: 9.6rem
  }
  
  .min-h-128 {
    min-height: 12.8rem
  }
  
  .min-h-136 {
    min-height: 13.6rem
  }
  
  .min-h-160 {
    min-height: 16rem
  }
  
  .min-h-192 {
    min-height: 19.2rem
  }
  
  .min-h-200 {
    min-height: 20rem
  }
  
  .min-h-208 {
    min-height: 20.8rem
  }
  
  .min-h-216 {
    min-height: 21.6rem
  }
  
  .min-h-224 {
    min-height: 22.4rem
  }
  
  .min-h-256 {
    min-height: 25.6rem
  }
  
  .min-h-288 {
    min-height: 28.8rem
  }
  
  .min-h-320 {
    min-height: 32rem
  }
  
  .min-h-360 {
    min-height: 36rem
  }
  
  .min-h-384 {
    min-height: 38.4rem
  }
  
  .min-h-400 {
    min-height: 40rem
  }
  
  .min-h-512 {
    min-height: 51.2rem
  }
  
  .min-h-640 {
    min-height: 64rem
  }
  
  .min-h-full {
    min-height: 100%
  }
  
  .min-h-screen {
    min-height: 100vh
  }
  
  .min-h-auto {
    min-height: auto
  }
  
  .min-h-px {
    min-height: 1px
  }
  
  .min-h-xs {
    min-height: 32rem
  }
  
  .min-h-sm {
    min-height: 48rem
  }
  
  .min-h-md {
    min-height: 64rem
  }
  
  .min-h-lg {
    min-height: 80rem
  }
  
  .min-h-xl {
    min-height: 96rem
  }
  
  .min-h-2xl {
    min-height: 112rem
  }
  
  .min-h-3xl {
    min-height: 128rem
  }
  
  .min-h-4xl {
    min-height: 144rem
  }
  
  .min-h-5xl {
    min-height: 160rem
  }
  
  .min-w-0 {
    min-width: 0
  }
  
  .min-w-1 {
    min-width: 0.25rem
  }
  
  .min-w-2 {
    min-width: 0.5rem
  }
  
  .min-w-3 {
    min-width: 0.75rem
  }
  
  .min-w-4 {
    min-width: 0.4rem
  }
  
  .min-w-5 {
    min-width: 1.25rem
  }
  
  .min-w-6 {
    min-width: 0.6rem
  }
  
  .min-w-8 {
    min-width: 0.8rem
  }
  
  .min-w-10 {
    min-width: 2.5rem
  }
  
  .min-w-12 {
    min-width: 1.2rem
  }
  
  .min-w-16 {
    min-width: 1.6rem
  }
  
  .min-w-20 {
    min-width: 2rem
  }
  
  .min-w-24 {
    min-width: 2.4rem
  }
  
  .min-w-28 {
    min-width: 2.8rem
  }
  
  .min-w-32 {
    min-width: 3.2rem
  }
  
  .min-w-36 {
    min-width: 3.6rem
  }
  
  .min-w-40 {
    min-width: 4rem
  }
  
  .min-w-44 {
    min-width: 4.4rem
  }
  
  .min-w-48 {
    min-width: 4.8rem
  }
  
  .min-w-52 {
    min-width: 5.2rem
  }
  
  .min-w-56 {
    min-width: 5.6rem
  }
  
  .min-w-60 {
    min-width: 6rem
  }
  
  .min-w-64 {
    min-width: 6.4rem
  }
  
  .min-w-68 {
    min-width: 6.8rem
  }
  
  .min-w-72 {
    min-width: 7.2rem
  }
  
  .min-w-76 {
    min-width: 7.6rem
  }
  
  .min-w-80 {
    min-width: 8rem
  }
  
  .min-w-84 {
    min-width: 8.4rem
  }
  
  .min-w-88 {
    min-width: 8.8rem
  }
  
  .min-w-92 {
    min-width: 9.2rem
  }
  
  .min-w-96 {
    min-width: 9.6rem
  }
  
  .min-w-128 {
    min-width: 12.8rem
  }
  
  .min-w-136 {
    min-width: 13.6rem
  }
  
  .min-w-160 {
    min-width: 16rem
  }
  
  .min-w-192 {
    min-width: 19.2rem
  }
  
  .min-w-200 {
    min-width: 20rem
  }
  
  .min-w-208 {
    min-width: 20.8rem
  }
  
  .min-w-216 {
    min-width: 21.6rem
  }
  
  .min-w-224 {
    min-width: 22.4rem
  }
  
  .min-w-256 {
    min-width: 25.6rem
  }
  
  .min-w-288 {
    min-width: 28.8rem
  }
  
  .min-w-320 {
    min-width: 32rem
  }
  
  .min-w-360 {
    min-width: 36rem
  }
  
  .min-w-384 {
    min-width: 38.4rem
  }
  
  .min-w-400 {
    min-width: 40rem
  }
  
  .min-w-512 {
    min-width: 51.2rem
  }
  
  .min-w-640 {
    min-width: 64rem
  }
  
  .min-w-full {
    min-width: 100%
  }
  
  .min-w-px {
    min-width: 1px
  }
  
  .min-w-xs {
    min-width: 32rem
  }
  
  .min-w-sm {
    min-width: 48rem
  }
  
  .min-w-md {
    min-width: 64rem
  }
  
  .min-w-lg {
    min-width: 80rem
  }
  
  .min-w-xl {
    min-width: 96rem
  }
  
  .min-w-2xl {
    min-width: 112rem
  }
  
  .min-w-3xl {
    min-width: 128rem
  }
  
  .min-w-4xl {
    min-width: 144rem
  }
  
  .min-w-5xl {
    min-width: 160rem
  }
  
  .min-w-auto {
    min-width: auto
  }
  
  .min-w-screen {
    min-width: 100vw
  }
  
  .object-contain {
    object-fit: contain
  }
  
  .object-cover {
    object-fit: cover
  }
  
  .object-fill {
    object-fit: fill
  }
  
  .object-none {
    object-fit: none
  }
  
  .object-scale-down {
    object-fit: scale-down
  }
  
  .object-bottom {
    object-position: bottom
  }
  
  .object-center {
    object-position: center
  }
  
  .object-left {
    object-position: left
  }
  
  .object-left-bottom {
    object-position: left bottom
  }
  
  .object-left-top {
    object-position: left top
  }
  
  .object-right {
    object-position: right
  }
  
  .object-right-bottom {
    object-position: right bottom
  }
  
  .object-right-top {
    object-position: right top
  }
  
  .object-top {
    object-position: top
  }
  
  .opacity-0 {
    opacity: 0
  }
  
  .opacity-25 {
    opacity: 0.25
  }
  
  .opacity-50 {
    opacity: 0.5
  }
  
  .opacity-75 {
    opacity: 0.75
  }
  
  .opacity-100 {
    opacity: 1
  }
  
  .outline-none {
    outline: 0
  }
  
  .focus\:outline-none:focus {
    outline: 0
  }
  
  .overflow-auto {
    overflow: auto
  }
  
  .overflow-hidden {
    overflow: hidden
  }
  
  .overflow-visible {
    overflow: visible
  }
  
  .overflow-scroll {
    overflow: scroll
  }
  
  .overflow-x-auto {
    overflow-x: auto
  }
  
  .overflow-y-auto {
    overflow-y: auto
  }
  
  .overflow-x-hidden {
    overflow-x: hidden
  }
  
  .overflow-y-hidden {
    overflow-y: hidden
  }
  
  .overflow-x-visible {
    overflow-x: visible
  }
  
  .overflow-y-visible {
    overflow-y: visible
  }
  
  .overflow-x-scroll {
    overflow-x: scroll
  }
  
  .overflow-y-scroll {
    overflow-y: scroll
  }
  
  .scrolling-touch {
    -webkit-overflow-scrolling: touch
  }
  
  .scrolling-auto {
    -webkit-overflow-scrolling: auto
  }
  
  .p-0 {
    padding: 0
  }
  
  .p-1 {
    padding: 0.25rem
  }
  
  .p-2 {
    padding: 0.5rem
  }
  
  .p-3 {
    padding: 0.75rem
  }
  
  .p-4 {
    padding: 0.4rem
  }
  
  .p-5 {
    padding: 1.25rem
  }
  
  .p-6 {
    padding: 0.6rem
  }
  
  .p-8 {
    padding: 0.8rem
  }
  
  .p-10 {
    padding: 2.5rem
  }
  
  .p-12 {
    padding: 1.2rem
  }
  
  .p-16 {
    padding: 1.6rem
  }
  
  .p-20 {
    padding: 2rem
  }
  
  .p-24 {
    padding: 2.4rem
  }
  
  .p-28 {
    padding: 2.8rem
  }
  
  .p-32 {
    padding: 3.2rem
  }
  
  .p-36 {
    padding: 3.6rem
  }
  
  .p-40 {
    padding: 4rem
  }
  
  .p-44 {
    padding: 4.4rem
  }
  
  .p-48 {
    padding: 4.8rem
  }
  
  .p-52 {
    padding: 5.2rem
  }
  
  .p-56 {
    padding: 5.6rem
  }
  
  .p-60 {
    padding: 6rem
  }
  
  .p-64 {
    padding: 6.4rem
  }
  
  .p-68 {
    padding: 6.8rem
  }
  
  .p-72 {
    padding: 7.2rem
  }
  
  .p-76 {
    padding: 7.6rem
  }
  
  .p-80 {
    padding: 8rem
  }
  
  .p-84 {
    padding: 8.4rem
  }
  
  .p-88 {
    padding: 8.8rem
  }
  
  .p-92 {
    padding: 9.2rem
  }
  
  .p-96 {
    padding: 9.6rem
  }
  
  .p-128 {
    padding: 12.8rem
  }
  
  .p-136 {
    padding: 13.6rem
  }
  
  .p-160 {
    padding: 16rem
  }
  
  .p-192 {
    padding: 19.2rem
  }
  
  .p-200 {
    padding: 20rem
  }
  
  .p-208 {
    padding: 20.8rem
  }
  
  .p-216 {
    padding: 21.6rem
  }
  
  .p-224 {
    padding: 22.4rem
  }
  
  .p-256 {
    padding: 25.6rem
  }
  
  .p-288 {
    padding: 28.8rem
  }
  
  .p-320 {
    padding: 32rem
  }
  
  .p-360 {
    padding: 36rem
  }
  
  .p-384 {
    padding: 38.4rem
  }
  
  .p-400 {
    padding: 40rem
  }
  
  .p-512 {
    padding: 51.2rem
  }
  
  .p-640 {
    padding: 64rem
  }
  
  .p-px {
    padding: 1px
  }
  
  .p-xs {
    padding: 32rem
  }
  
  .p-sm {
    padding: 48rem
  }
  
  .p-md {
    padding: 64rem
  }
  
  .p-lg {
    padding: 80rem
  }
  
  .p-xl {
    padding: 96rem
  }
  
  .p-2xl {
    padding: 112rem
  }
  
  .p-3xl {
    padding: 128rem
  }
  
  .p-4xl {
    padding: 144rem
  }
  
  .p-5xl {
    padding: 160rem
  }
  
  .p-auto {
    padding: auto
  }
  
  .py-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  
  .px-0 {
    padding-left: 0;
    padding-right: 0
  }
  
  .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
  }
  
  .px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
  }
  
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
  }
  
  .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
  }
  
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
  }
  
  .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
  }
  
  .py-4 {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem
  }
  
  .px-4 {
    padding-left: 0.4rem;
    padding-right: 0.4rem
  }
  
  .py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }
  
  .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }
  
  .py-6 {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem
  }
  
  .px-6 {
    padding-left: 0.6rem;
    padding-right: 0.6rem
  }
  
  .py-8 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem
  }
  
  .px-8 {
    padding-left: 0.8rem;
    padding-right: 0.8rem
  }
  
  .py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
  
  .px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }
  
  .py-12 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem
  }
  
  .px-12 {
    padding-left: 1.2rem;
    padding-right: 1.2rem
  }
  
  .py-16 {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem
  }
  
  .px-16 {
    padding-left: 1.6rem;
    padding-right: 1.6rem
  }
  
  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }
  
  .px-20 {
    padding-left: 2rem;
    padding-right: 2rem
  }
  
  .py-24 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem
  }
  
  .px-24 {
    padding-left: 2.4rem;
    padding-right: 2.4rem
  }
  
  .py-28 {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem
  }
  
  .px-28 {
    padding-left: 2.8rem;
    padding-right: 2.8rem
  }
  
  .py-32 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem
  }
  
  .px-32 {
    padding-left: 3.2rem;
    padding-right: 3.2rem
  }
  
  .py-36 {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem
  }
  
  .px-36 {
    padding-left: 3.6rem;
    padding-right: 3.6rem
  }
  
  .py-40 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }
  
  .px-40 {
    padding-left: 4rem;
    padding-right: 4rem
  }
  
  .py-44 {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem
  }
  
  .px-44 {
    padding-left: 4.4rem;
    padding-right: 4.4rem
  }
  
  .py-48 {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem
  }
  
  .px-48 {
    padding-left: 4.8rem;
    padding-right: 4.8rem
  }
  
  .py-52 {
    padding-top: 5.2rem;
    padding-bottom: 5.2rem
  }
  
  .px-52 {
    padding-left: 5.2rem;
    padding-right: 5.2rem
  }
  
  .py-56 {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem
  }
  
  .px-56 {
    padding-left: 5.6rem;
    padding-right: 5.6rem
  }
  
  .py-60 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }
  
  .px-60 {
    padding-left: 6rem;
    padding-right: 6rem
  }
  
  .py-64 {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem
  }
  
  .px-64 {
    padding-left: 6.4rem;
    padding-right: 6.4rem
  }
  
  .py-68 {
    padding-top: 6.8rem;
    padding-bottom: 6.8rem
  }
  
  .px-68 {
    padding-left: 6.8rem;
    padding-right: 6.8rem
  }
  
  .py-72 {
    padding-top: 7.2rem;
    padding-bottom: 7.2rem
  }
  
  .px-72 {
    padding-left: 7.2rem;
    padding-right: 7.2rem
  }
  
  .py-76 {
    padding-top: 7.6rem;
    padding-bottom: 7.6rem
  }
  
  .px-76 {
    padding-left: 7.6rem;
    padding-right: 7.6rem
  }
  
  .py-80 {
    padding-top: 8rem;
    padding-bottom: 8rem
  }
  
  .px-80 {
    padding-left: 8rem;
    padding-right: 8rem
  }
  
  .py-84 {
    padding-top: 8.4rem;
    padding-bottom: 8.4rem
  }
  
  .px-84 {
    padding-left: 8.4rem;
    padding-right: 8.4rem
  }
  
  .py-88 {
    padding-top: 8.8rem;
    padding-bottom: 8.8rem
  }
  
  .px-88 {
    padding-left: 8.8rem;
    padding-right: 8.8rem
  }
  
  .py-92 {
    padding-top: 9.2rem;
    padding-bottom: 9.2rem
  }
  
  .px-92 {
    padding-left: 9.2rem;
    padding-right: 9.2rem
  }
  
  .py-96 {
    padding-top: 9.6rem;
    padding-bottom: 9.6rem
  }
  
  .px-96 {
    padding-left: 9.6rem;
    padding-right: 9.6rem
  }
  
  .py-128 {
    padding-top: 12.8rem;
    padding-bottom: 12.8rem
  }
  
  .px-128 {
    padding-left: 12.8rem;
    padding-right: 12.8rem
  }
  
  .py-136 {
    padding-top: 13.6rem;
    padding-bottom: 13.6rem
  }
  
  .px-136 {
    padding-left: 13.6rem;
    padding-right: 13.6rem
  }
  
  .py-160 {
    padding-top: 16rem;
    padding-bottom: 16rem
  }
  
  .px-160 {
    padding-left: 16rem;
    padding-right: 16rem
  }
  
  .py-192 {
    padding-top: 19.2rem;
    padding-bottom: 19.2rem
  }
  
  .px-192 {
    padding-left: 19.2rem;
    padding-right: 19.2rem
  }
  
  .py-200 {
    padding-top: 20rem;
    padding-bottom: 20rem
  }
  
  .px-200 {
    padding-left: 20rem;
    padding-right: 20rem
  }
  
  .py-208 {
    padding-top: 20.8rem;
    padding-bottom: 20.8rem
  }
  
  .px-208 {
    padding-left: 20.8rem;
    padding-right: 20.8rem
  }
  
  .py-216 {
    padding-top: 21.6rem;
    padding-bottom: 21.6rem
  }
  
  .px-216 {
    padding-left: 21.6rem;
    padding-right: 21.6rem
  }
  
  .py-224 {
    padding-top: 22.4rem;
    padding-bottom: 22.4rem
  }
  
  .px-224 {
    padding-left: 22.4rem;
    padding-right: 22.4rem
  }
  
  .py-256 {
    padding-top: 25.6rem;
    padding-bottom: 25.6rem
  }
  
  .px-256 {
    padding-left: 25.6rem;
    padding-right: 25.6rem
  }
  
  .py-288 {
    padding-top: 28.8rem;
    padding-bottom: 28.8rem
  }
  
  .px-288 {
    padding-left: 28.8rem;
    padding-right: 28.8rem
  }
  
  .py-320 {
    padding-top: 32rem;
    padding-bottom: 32rem
  }
  
  .px-320 {
    padding-left: 32rem;
    padding-right: 32rem
  }
  
  .py-360 {
    padding-top: 36rem;
    padding-bottom: 36rem
  }
  
  .px-360 {
    padding-left: 36rem;
    padding-right: 36rem
  }
  
  .py-384 {
    padding-top: 38.4rem;
    padding-bottom: 38.4rem
  }
  
  .px-384 {
    padding-left: 38.4rem;
    padding-right: 38.4rem
  }
  
  .py-400 {
    padding-top: 40rem;
    padding-bottom: 40rem
  }
  
  .px-400 {
    padding-left: 40rem;
    padding-right: 40rem
  }
  
  .py-512 {
    padding-top: 51.2rem;
    padding-bottom: 51.2rem
  }
  
  .px-512 {
    padding-left: 51.2rem;
    padding-right: 51.2rem
  }
  
  .py-640 {
    padding-top: 64rem;
    padding-bottom: 64rem
  }
  
  .px-640 {
    padding-left: 64rem;
    padding-right: 64rem
  }
  
  .py-px {
    padding-top: 1px;
    padding-bottom: 1px
  }
  
  .px-px {
    padding-left: 1px;
    padding-right: 1px
  }
  
  .py-xs {
    padding-top: 32rem;
    padding-bottom: 32rem
  }
  
  .px-xs {
    padding-left: 32rem;
    padding-right: 32rem
  }
  
  .py-sm {
    padding-top: 48rem;
    padding-bottom: 48rem
  }
  
  .px-sm {
    padding-left: 48rem;
    padding-right: 48rem
  }
  
  .py-md {
    padding-top: 64rem;
    padding-bottom: 64rem
  }
  
  .px-md {
    padding-left: 64rem;
    padding-right: 64rem
  }
  
  .py-lg {
    padding-top: 80rem;
    padding-bottom: 80rem
  }
  
  .px-lg {
    padding-left: 80rem;
    padding-right: 80rem
  }
  
  .py-xl {
    padding-top: 96rem;
    padding-bottom: 96rem
  }
  
  .px-xl {
    padding-left: 96rem;
    padding-right: 96rem
  }
  
  .py-2xl {
    padding-top: 112rem;
    padding-bottom: 112rem
  }
  
  .px-2xl {
    padding-left: 112rem;
    padding-right: 112rem
  }
  
  .py-3xl {
    padding-top: 128rem;
    padding-bottom: 128rem
  }
  
  .px-3xl {
    padding-left: 128rem;
    padding-right: 128rem
  }
  
  .py-4xl {
    padding-top: 144rem;
    padding-bottom: 144rem
  }
  
  .px-4xl {
    padding-left: 144rem;
    padding-right: 144rem
  }
  
  .py-5xl {
    padding-top: 160rem;
    padding-bottom: 160rem
  }
  
  .px-5xl {
    padding-left: 160rem;
    padding-right: 160rem
  }
  
  .py-auto {
    padding-top: auto;
    padding-bottom: auto
  }
  
  .px-auto {
    padding-left: auto;
    padding-right: auto
  }
  
  .pt-0 {
    padding-top: 0
  }
  
  .pr-0 {
    padding-right: 0
  }
  
  .pb-0 {
    padding-bottom: 0
  }
  
  .pl-0 {
    padding-left: 0
  }
  
  .pt-1 {
    padding-top: 0.25rem
  }
  
  .pr-1 {
    padding-right: 0.25rem
  }
  
  .pb-1 {
    padding-bottom: 0.25rem
  }
  
  .pl-1 {
    padding-left: 0.25rem
  }
  
  .pt-2 {
    padding-top: 0.5rem
  }
  
  .pr-2 {
    padding-right: 0.5rem
  }
  
  .pb-2 {
    padding-bottom: 0.5rem
  }
  
  .pl-2 {
    padding-left: 0.5rem
  }
  
  .pt-3 {
    padding-top: 0.75rem
  }
  
  .pr-3 {
    padding-right: 0.75rem
  }
  
  .pb-3 {
    padding-bottom: 0.75rem
  }
  
  .pl-3 {
    padding-left: 0.75rem
  }
  
  .pt-4 {
    padding-top: 0.4rem
  }
  
  .pr-4 {
    padding-right: 0.4rem
  }
  
  .pb-4 {
    padding-bottom: 0.4rem
  }
  
  .pl-4 {
    padding-left: 0.4rem
  }
  
  .pt-5 {
    padding-top: 1.25rem
  }
  
  .pr-5 {
    padding-right: 1.25rem
  }
  
  .pb-5 {
    padding-bottom: 1.25rem
  }
  
  .pl-5 {
    padding-left: 1.25rem
  }
  
  .pt-6 {
    padding-top: 0.6rem
  }
  
  .pr-6 {
    padding-right: 0.6rem
  }
  
  .pb-6 {
    padding-bottom: 0.6rem
  }
  
  .pl-6 {
    padding-left: 0.6rem
  }
  
  .pt-8 {
    padding-top: 0.8rem
  }
  
  .pr-8 {
    padding-right: 0.8rem
  }
  
  .pb-8 {
    padding-bottom: 0.8rem
  }
  
  .pl-8 {
    padding-left: 0.8rem
  }
  
  .pt-10 {
    padding-top: 2.5rem
  }
  
  .pr-10 {
    padding-right: 2.5rem
  }
  
  .pb-10 {
    padding-bottom: 2.5rem
  }
  
  .pl-10 {
    padding-left: 2.5rem
  }
  
  .pt-12 {
    padding-top: 1.2rem
  }
  
  .pr-12 {
    padding-right: 1.2rem
  }
  
  .pb-12 {
    padding-bottom: 1.2rem
  }
  
  .pl-12 {
    padding-left: 1.2rem
  }
  
  .pt-16 {
    padding-top: 1.6rem
  }
  
  .pr-16 {
    padding-right: 1.6rem
  }
  
  .pb-16 {
    padding-bottom: 1.6rem
  }
  
  .pl-16 {
    padding-left: 1.6rem
  }
  
  .pt-20 {
    padding-top: 2rem
  }
  
  .pr-20 {
    padding-right: 2rem
  }
  
  .pb-20 {
    padding-bottom: 2rem
  }
  
  .pl-20 {
    padding-left: 2rem
  }
  
  .pt-24 {
    padding-top: 2.4rem
  }
  
  .pr-24 {
    padding-right: 2.4rem
  }
  
  .pb-24 {
    padding-bottom: 2.4rem
  }
  
  .pl-24 {
    padding-left: 2.4rem
  }
  
  .pt-28 {
    padding-top: 2.8rem
  }
  
  .pr-28 {
    padding-right: 2.8rem
  }
  
  .pb-28 {
    padding-bottom: 2.8rem
  }
  
  .pl-28 {
    padding-left: 2.8rem
  }
  
  .pt-32 {
    padding-top: 3.2rem
  }
  
  .pr-32 {
    padding-right: 3.2rem
  }
  
  .pb-32 {
    padding-bottom: 3.2rem
  }
  
  .pl-32 {
    padding-left: 3.2rem
  }
  
  .pt-36 {
    padding-top: 3.6rem
  }
  
  .pr-36 {
    padding-right: 3.6rem
  }
  
  .pb-36 {
    padding-bottom: 3.6rem
  }
  
  .pl-36 {
    padding-left: 3.6rem
  }
  
  .pt-40 {
    padding-top: 4rem
  }
  
  .pr-40 {
    padding-right: 4rem
  }
  
  .pb-40 {
    padding-bottom: 4rem
  }
  
  .pl-40 {
    padding-left: 4rem
  }
  
  .pt-44 {
    padding-top: 4.4rem
  }
  
  .pr-44 {
    padding-right: 4.4rem
  }
  
  .pb-44 {
    padding-bottom: 4.4rem
  }
  
  .pl-44 {
    padding-left: 4.4rem
  }
  
  .pt-48 {
    padding-top: 4.8rem
  }
  
  .pr-48 {
    padding-right: 4.8rem
  }
  
  .pb-48 {
    padding-bottom: 4.8rem
  }
  
  .pl-48 {
    padding-left: 4.8rem
  }
  
  .pt-52 {
    padding-top: 5.2rem
  }
  
  .pr-52 {
    padding-right: 5.2rem
  }
  
  .pb-52 {
    padding-bottom: 5.2rem
  }
  
  .pl-52 {
    padding-left: 5.2rem
  }
  
  .pt-56 {
    padding-top: 5.6rem
  }
  
  .pr-56 {
    padding-right: 5.6rem
  }
  
  .pb-56 {
    padding-bottom: 5.6rem
  }
  
  .pl-56 {
    padding-left: 5.6rem
  }
  
  .pt-60 {
    padding-top: 6rem
  }
  
  .pr-60 {
    padding-right: 6rem
  }
  
  .pb-60 {
    padding-bottom: 6rem
  }
  
  .pl-60 {
    padding-left: 6rem
  }
  
  .pt-64 {
    padding-top: 6.4rem
  }
  
  .pr-64 {
    padding-right: 6.4rem
  }
  
  .pb-64 {
    padding-bottom: 6.4rem
  }
  
  .pl-64 {
    padding-left: 6.4rem
  }
  
  .pt-68 {
    padding-top: 6.8rem
  }
  
  .pr-68 {
    padding-right: 6.8rem
  }
  
  .pb-68 {
    padding-bottom: 6.8rem
  }
  
  .pl-68 {
    padding-left: 6.8rem
  }
  
  .pt-72 {
    padding-top: 7.2rem
  }
  
  .pr-72 {
    padding-right: 7.2rem
  }
  
  .pb-72 {
    padding-bottom: 7.2rem
  }
  
  .pl-72 {
    padding-left: 7.2rem
  }
  
  .pt-76 {
    padding-top: 7.6rem
  }
  
  .pr-76 {
    padding-right: 7.6rem
  }
  
  .pb-76 {
    padding-bottom: 7.6rem
  }
  
  .pl-76 {
    padding-left: 7.6rem
  }
  
  .pt-80 {
    padding-top: 8rem
  }
  
  .pr-80 {
    padding-right: 8rem
  }
  
  .pb-80 {
    padding-bottom: 8rem
  }
  
  .pl-80 {
    padding-left: 8rem
  }
  
  .pt-84 {
    padding-top: 8.4rem
  }
  
  .pr-84 {
    padding-right: 8.4rem
  }
  
  .pb-84 {
    padding-bottom: 8.4rem
  }
  
  .pl-84 {
    padding-left: 8.4rem
  }
  
  .pt-88 {
    padding-top: 8.8rem
  }
  
  .pr-88 {
    padding-right: 8.8rem
  }
  
  .pb-88 {
    padding-bottom: 8.8rem
  }
  
  .pl-88 {
    padding-left: 8.8rem
  }
  
  .pt-92 {
    padding-top: 9.2rem
  }
  
  .pr-92 {
    padding-right: 9.2rem
  }
  
  .pb-92 {
    padding-bottom: 9.2rem
  }
  
  .pl-92 {
    padding-left: 9.2rem
  }
  
  .pt-96 {
    padding-top: 9.6rem
  }
  
  .pr-96 {
    padding-right: 9.6rem
  }
  
  .pb-96 {
    padding-bottom: 9.6rem
  }
  
  .pl-96 {
    padding-left: 9.6rem
  }
  
  .pt-128 {
    padding-top: 12.8rem
  }
  
  .pr-128 {
    padding-right: 12.8rem
  }
  
  .pb-128 {
    padding-bottom: 12.8rem
  }
  
  .pl-128 {
    padding-left: 12.8rem
  }
  
  .pt-136 {
    padding-top: 13.6rem
  }
  
  .pr-136 {
    padding-right: 13.6rem
  }
  
  .pb-136 {
    padding-bottom: 13.6rem
  }
  
  .pl-136 {
    padding-left: 13.6rem
  }
  
  .pt-160 {
    padding-top: 16rem
  }
  
  .pr-160 {
    padding-right: 16rem
  }
  
  .pb-160 {
    padding-bottom: 16rem
  }
  
  .pl-160 {
    padding-left: 16rem
  }
  
  .pt-192 {
    padding-top: 19.2rem
  }
  
  .pr-192 {
    padding-right: 19.2rem
  }
  
  .pb-192 {
    padding-bottom: 19.2rem
  }
  
  .pl-192 {
    padding-left: 19.2rem
  }
  
  .pt-200 {
    padding-top: 20rem
  }
  
  .pr-200 {
    padding-right: 20rem
  }
  
  .pb-200 {
    padding-bottom: 20rem
  }
  
  .pl-200 {
    padding-left: 20rem
  }
  
  .pt-208 {
    padding-top: 20.8rem
  }
  
  .pr-208 {
    padding-right: 20.8rem
  }
  
  .pb-208 {
    padding-bottom: 20.8rem
  }
  
  .pl-208 {
    padding-left: 20.8rem
  }
  
  .pt-216 {
    padding-top: 21.6rem
  }
  
  .pr-216 {
    padding-right: 21.6rem
  }
  
  .pb-216 {
    padding-bottom: 21.6rem
  }
  
  .pl-216 {
    padding-left: 21.6rem
  }
  
  .pt-224 {
    padding-top: 22.4rem
  }
  
  .pr-224 {
    padding-right: 22.4rem
  }
  
  .pb-224 {
    padding-bottom: 22.4rem
  }
  
  .pl-224 {
    padding-left: 22.4rem
  }
  
  .pt-256 {
    padding-top: 25.6rem
  }
  
  .pr-256 {
    padding-right: 25.6rem
  }
  
  .pb-256 {
    padding-bottom: 25.6rem
  }
  
  .pl-256 {
    padding-left: 25.6rem
  }
  
  .pt-288 {
    padding-top: 28.8rem
  }
  
  .pr-288 {
    padding-right: 28.8rem
  }
  
  .pb-288 {
    padding-bottom: 28.8rem
  }
  
  .pl-288 {
    padding-left: 28.8rem
  }
  
  .pt-320 {
    padding-top: 32rem
  }
  
  .pr-320 {
    padding-right: 32rem
  }
  
  .pb-320 {
    padding-bottom: 32rem
  }
  
  .pl-320 {
    padding-left: 32rem
  }
  
  .pt-360 {
    padding-top: 36rem
  }
  
  .pr-360 {
    padding-right: 36rem
  }
  
  .pb-360 {
    padding-bottom: 36rem
  }
  
  .pl-360 {
    padding-left: 36rem
  }
  
  .pt-384 {
    padding-top: 38.4rem
  }
  
  .pr-384 {
    padding-right: 38.4rem
  }
  
  .pb-384 {
    padding-bottom: 38.4rem
  }
  
  .pl-384 {
    padding-left: 38.4rem
  }
  
  .pt-400 {
    padding-top: 40rem
  }
  
  .pr-400 {
    padding-right: 40rem
  }
  
  .pb-400 {
    padding-bottom: 40rem
  }
  
  .pl-400 {
    padding-left: 40rem
  }
  
  .pt-512 {
    padding-top: 51.2rem
  }
  
  .pr-512 {
    padding-right: 51.2rem
  }
  
  .pb-512 {
    padding-bottom: 51.2rem
  }
  
  .pl-512 {
    padding-left: 51.2rem
  }
  
  .pt-640 {
    padding-top: 64rem
  }
  
  .pr-640 {
    padding-right: 64rem
  }
  
  .pb-640 {
    padding-bottom: 64rem
  }
  
  .pl-640 {
    padding-left: 64rem
  }
  
  .pt-px {
    padding-top: 1px
  }
  
  .pr-px {
    padding-right: 1px
  }
  
  .pb-px {
    padding-bottom: 1px
  }
  
  .pl-px {
    padding-left: 1px
  }
  
  .pt-xs {
    padding-top: 32rem
  }
  
  .pr-xs {
    padding-right: 32rem
  }
  
  .pb-xs {
    padding-bottom: 32rem
  }
  
  .pl-xs {
    padding-left: 32rem
  }
  
  .pt-sm {
    padding-top: 48rem
  }
  
  .pr-sm {
    padding-right: 48rem
  }
  
  .pb-sm {
    padding-bottom: 48rem
  }
  
  .pl-sm {
    padding-left: 48rem
  }
  
  .pt-md {
    padding-top: 64rem
  }
  
  .pr-md {
    padding-right: 64rem
  }
  
  .pb-md {
    padding-bottom: 64rem
  }
  
  .pl-md {
    padding-left: 64rem
  }
  
  .pt-lg {
    padding-top: 80rem
  }
  
  .pr-lg {
    padding-right: 80rem
  }
  
  .pb-lg {
    padding-bottom: 80rem
  }
  
  .pl-lg {
    padding-left: 80rem
  }
  
  .pt-xl {
    padding-top: 96rem
  }
  
  .pr-xl {
    padding-right: 96rem
  }
  
  .pb-xl {
    padding-bottom: 96rem
  }
  
  .pl-xl {
    padding-left: 96rem
  }
  
  .pt-2xl {
    padding-top: 112rem
  }
  
  .pr-2xl {
    padding-right: 112rem
  }
  
  .pb-2xl {
    padding-bottom: 112rem
  }
  
  .pl-2xl {
    padding-left: 112rem
  }
  
  .pt-3xl {
    padding-top: 128rem
  }
  
  .pr-3xl {
    padding-right: 128rem
  }
  
  .pb-3xl {
    padding-bottom: 128rem
  }
  
  .pl-3xl {
    padding-left: 128rem
  }
  
  .pt-4xl {
    padding-top: 144rem
  }
  
  .pr-4xl {
    padding-right: 144rem
  }
  
  .pb-4xl {
    padding-bottom: 144rem
  }
  
  .pl-4xl {
    padding-left: 144rem
  }
  
  .pt-5xl {
    padding-top: 160rem
  }
  
  .pr-5xl {
    padding-right: 160rem
  }
  
  .pb-5xl {
    padding-bottom: 160rem
  }
  
  .pl-5xl {
    padding-left: 160rem
  }
  
  .pt-auto {
    padding-top: auto
  }
  
  .pr-auto {
    padding-right: auto
  }
  
  .pb-auto {
    padding-bottom: auto
  }
  
  .pl-auto {
    padding-left: auto
  }
  
  .pointer-events-none {
    pointer-events: none
  }
  
  .pointer-events-auto {
    pointer-events: auto
  }
  
  .static {
    position: static
  }
  
  .fixed {
    position: fixed
  }
  
  .absolute {
    position: absolute
  }
  
  .relative {
    position: relative
  }
  
  .sticky {
    position: -webkit-sticky;
    position: sticky
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
  
  .inset-auto {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto
  }
  
  .inset-y-0 {
    top: 0;
    bottom: 0
  }
  
  .inset-x-0 {
    right: 0;
    left: 0
  }
  
  .inset-y-auto {
    top: auto;
    bottom: auto
  }
  
  .inset-x-auto {
    right: auto;
    left: auto
  }
  
  .top-0 {
    top: 0
  }
  
  .right-0 {
    right: 0
  }
  
  .bottom-0 {
    bottom: 0
  }
  
  .left-0 {
    left: 0
  }
  
  .top-auto {
    top: auto
  }
  
  .right-auto {
    right: auto
  }
  
  .bottom-auto {
    bottom: auto
  }
  
  .left-auto {
    left: auto
  }
  
  .resize-none {
    resize: none
  }
  
  .resize-y {
    resize: vertical
  }
  
  .resize-x {
    resize: horizontal
  }
  
  .resize {
    resize: both
  }
  
  .shadow-0 {
    box-shadow: none
  }
  
  .shadow-1 {
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
  }
  
  .shadow-2 {
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
  }
  
  .shadow-3 {
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
  }
  
  .shadow-4 {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
  }
  
  .shadow-5 {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
  }
  
  .shadow-6 {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
  }
  
  .shadow-7 {
    box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
  }
  
  .shadow-8 {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
  }
  
  .shadow-9 {
    box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
  }
  
  .shadow-10 {
    box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
  }
  
  .shadow-11 {
    box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
  }
  
  .shadow-12 {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
  }
  
  .shadow-13 {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
  }
  
  .shadow-14 {
    box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
  }
  
  .shadow-15 {
    box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
  }
  
  .shadow-16 {
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
  }
  
  .shadow-17 {
    box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
  }
  
  .shadow-18 {
    box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
  }
  
  .shadow-19 {
    box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
  }
  
  .shadow-20 {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
  }
  
  .shadow-21 {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
  }
  
  .shadow-22 {
    box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
  }
  
  .shadow-23 {
    box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
  }
  
  .shadow-24 {
    box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
  }
  
  .shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
  }
  
  .shadow-md {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
  }
  
  .shadow-lg {
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
  }
  
  .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
  }
  
  .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
  }
  
  .shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
  }
  
  .shadow-outline {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
  }
  
  .shadow-none {
    box-shadow: none
  }
  
  .hover\:shadow-0:hover {
    box-shadow: none
  }
  
  .hover\:shadow-1:hover {
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-2:hover {
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-3:hover {
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-4:hover {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-5:hover {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-6:hover {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-7:hover {
    box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-8:hover {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-9:hover {
    box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-10:hover {
    box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-11:hover {
    box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-12:hover {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-13:hover {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-14:hover {
    box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-15:hover {
    box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-16:hover {
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-17:hover {
    box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-18:hover {
    box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-19:hover {
    box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-20:hover {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-21:hover {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-22:hover {
    box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-23:hover {
    box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow-24:hover {
    box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
  }
  
  .hover\:shadow:hover {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
  }
  
  .hover\:shadow-md:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
  }
  
  .hover\:shadow-lg:hover {
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
  }
  
  .hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
  }
  
  .hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
  }
  
  .hover\:shadow-inner:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
  }
  
  .hover\:shadow-outline:hover {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
  }
  
  .hover\:shadow-none:hover {
    box-shadow: none
  }
  
  .focus\:shadow-0:focus {
    box-shadow: none
  }
  
  .focus\:shadow-1:focus {
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-2:focus {
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-3:focus {
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-4:focus {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-5:focus {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-6:focus {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-7:focus {
    box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-8:focus {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-9:focus {
    box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-10:focus {
    box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-11:focus {
    box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-12:focus {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-13:focus {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-14:focus {
    box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-15:focus {
    box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-16:focus {
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-17:focus {
    box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-18:focus {
    box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-19:focus {
    box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-20:focus {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-21:focus {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-22:focus {
    box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-23:focus {
    box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow-24:focus {
    box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
  }
  
  .focus\:shadow:focus {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
  }
  
  .focus\:shadow-md:focus {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
  }
  
  .focus\:shadow-lg:focus {
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
  }
  
  .focus\:shadow-xl:focus {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
  }
  
  .focus\:shadow-2xl:focus {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
  }
  
  .focus\:shadow-inner:focus {
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
  }
  
  .focus\:shadow-outline:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
  }
  
  .focus\:shadow-none:focus {
    box-shadow: none
  }
  
  .fill-current {
    fill: currentColor
  }
  
  .stroke-current {
    stroke: currentColor
  }
  
  .table-auto {
    table-layout: auto
  }
  
  .table-fixed {
    table-layout: fixed
  }
  
  .text-left {
    text-align: left
  }
  
  .text-center {
    text-align: center
  }
  
  .text-right {
    text-align: right
  }
  
  .text-justify {
    text-align: justify
  }
  
  .text-transparent {
    color: transparent
  }
  
  .text-black {
    color: #22292F
  }
  
  .text-white {
    color: #FFFFFF
  }
  
  .text-gray-100 {
    color: #f7fafc
  }
  
  .text-gray-200 {
    color: #edf2f7
  }
  
  .text-gray-300 {
    color: #e2e8f0
  }
  
  .text-gray-400 {
    color: #cbd5e0
  }
  
  .text-gray-500 {
    color: #a0aec0
  }
  
  .text-gray-600 {
    color: #718096
  }
  
  .text-gray-700 {
    color: #4a5568
  }
  
  .text-gray-800 {
    color: #2d3748
  }
  
  .text-gray-900 {
    color: #1a202c
  }
  
  .text-red {
    color: #E3342F
  }
  
  .text-orange {
    color: #F6993F
  }
  
  .text-yellow {
    color: #FFED4A
  }
  
  .text-green {
    color: #38C172
  }
  
  .text-teal {
    color: #4DC0B5
  }
  
  .text-blue {
    color: #3490DC
  }
  
  .text-indigo {
    color: #6574CD
  }
  
  .text-purple {
    color: #9561E2
  }
  
  .text-pink {
    color: #F66D9B
  }
  
  .text-grey-darkest {
    color: #3D4852
  }
  
  .text-grey-darker {
    color: #606F7B
  }
  
  .text-grey-dark {
    color: #8795A1
  }
  
  .text-grey {
    color: #B8C2CC
  }
  
  .text-grey-light {
    color: #DAE1E7
  }
  
  .text-grey-lighter {
    color: #F1F5F8
  }
  
  .text-grey-lightest {
    color: #F8FAFC
  }
  
  .text-red-darkest {
    color: #3B0D0C
  }
  
  .text-red-darker {
    color: #621B18
  }
  
  .text-red-dark {
    color: #CC1F1A
  }
  
  .text-red-light {
    color: #EF5753
  }
  
  .text-red-lighter {
    color: #F9ACAA
  }
  
  .text-red-lightest {
    color: #FCEBEA
  }
  
  .text-orange-darkest {
    color: #462A16
  }
  
  .text-orange-darker {
    color: #613B1F
  }
  
  .text-orange-dark {
    color: #DE751F
  }
  
  .text-orange-light {
    color: #FAAD63
  }
  
  .text-orange-lighter {
    color: #FCD9B6
  }
  
  .text-orange-lightest {
    color: #FFF5EB
  }
  
  .text-yellow-darkest {
    color: #453411
  }
  
  .text-yellow-darker {
    color: #684F1D
  }
  
  .text-yellow-dark {
    color: #F2D024
  }
  
  .text-yellow-light {
    color: #FFF382
  }
  
  .text-yellow-lighter {
    color: #FFF9C2
  }
  
  .text-yellow-lightest {
    color: #FCFBEB
  }
  
  .text-green-darkest {
    color: #0F2F21
  }
  
  .text-green-darker {
    color: #1A4731
  }
  
  .text-green-dark {
    color: #1F9D55
  }
  
  .text-green-light {
    color: #51D88A
  }
  
  .text-green-lighter {
    color: #A2F5BF
  }
  
  .text-green-lightest {
    color: #E3FCEC
  }
  
  .text-teal-darkest {
    color: #0D3331
  }
  
  .text-teal-darker {
    color: #20504F
  }
  
  .text-teal-dark {
    color: #38A89D
  }
  
  .text-teal-light {
    color: #64D5CA
  }
  
  .text-teal-lighter {
    color: #A0F0ED
  }
  
  .text-teal-lightest {
    color: #E8FFFE
  }
  
  .text-blue-darkest {
    color: #12283A
  }
  
  .text-blue-darker {
    color: #1C3D5A
  }
  
  .text-blue-dark {
    color: #2779BD
  }
  
  .text-blue-light {
    color: #6CB2EB
  }
  
  .text-blue-lighter {
    color: #BCDEFA
  }
  
  .text-blue-lightest {
    color: #EFF8FF
  }
  
  .text-indigo-darkest {
    color: #191E38
  }
  
  .text-indigo-darker {
    color: #2F365F
  }
  
  .text-indigo-dark {
    color: #5661B3
  }
  
  .text-indigo-light {
    color: #7886D7
  }
  
  .text-indigo-lighter {
    color: #B2B7FF
  }
  
  .text-indigo-lightest {
    color: #E6E8FF
  }
  
  .text-purple-darkest {
    color: #21183C
  }
  
  .text-purple-darker {
    color: #382B5F
  }
  
  .text-purple-dark {
    color: #794ACF
  }
  
  .text-purple-light {
    color: #A779E9
  }
  
  .text-purple-lighter {
    color: #D6BBFC
  }
  
  .text-purple-lightest {
    color: #F3EBFF
  }
  
  .text-pink-darkest {
    color: #451225
  }
  
  .text-pink-darker {
    color: #6F213F
  }
  
  .text-pink-dark {
    color: #EB5286
  }
  
  .text-pink-light {
    color: #FA7EA8
  }
  
  .text-pink-lighter {
    color: #FFBBCA
  }
  
  .text-pink-lightest {
    color: #FFEBEF
  }
  
  .hover\:text-transparent:hover {
    color: transparent
  }
  
  .hover\:text-black:hover {
    color: #22292F
  }
  
  .hover\:text-white:hover {
    color: #FFFFFF
  }
  
  .hover\:text-gray-100:hover {
    color: #f7fafc
  }
  
  .hover\:text-gray-200:hover {
    color: #edf2f7
  }
  
  .hover\:text-gray-300:hover {
    color: #e2e8f0
  }
  
  .hover\:text-gray-400:hover {
    color: #cbd5e0
  }
  
  .hover\:text-gray-500:hover {
    color: #a0aec0
  }
  
  .hover\:text-gray-600:hover {
    color: #718096
  }
  
  .hover\:text-gray-700:hover {
    color: #4a5568
  }
  
  .hover\:text-gray-800:hover {
    color: #2d3748
  }
  
  .hover\:text-gray-900:hover {
    color: #1a202c
  }
  
  .hover\:text-red:hover {
    color: #E3342F
  }
  
  .hover\:text-orange:hover {
    color: #F6993F
  }
  
  .hover\:text-yellow:hover {
    color: #FFED4A
  }
  
  .hover\:text-green:hover {
    color: #38C172
  }
  
  .hover\:text-teal:hover {
    color: #4DC0B5
  }
  
  .hover\:text-blue:hover {
    color: #3490DC
  }
  
  .hover\:text-indigo:hover {
    color: #6574CD
  }
  
  .hover\:text-purple:hover {
    color: #9561E2
  }
  
  .hover\:text-pink:hover {
    color: #F66D9B
  }
  
  .hover\:text-grey-darkest:hover {
    color: #3D4852
  }
  
  .hover\:text-grey-darker:hover {
    color: #606F7B
  }
  
  .hover\:text-grey-dark:hover {
    color: #8795A1
  }
  
  .hover\:text-grey:hover {
    color: #B8C2CC
  }
  
  .hover\:text-grey-light:hover {
    color: #DAE1E7
  }
  
  .hover\:text-grey-lighter:hover {
    color: #F1F5F8
  }
  
  .hover\:text-grey-lightest:hover {
    color: #F8FAFC
  }
  
  .hover\:text-red-darkest:hover {
    color: #3B0D0C
  }
  
  .hover\:text-red-darker:hover {
    color: #621B18
  }
  
  .hover\:text-red-dark:hover {
    color: #CC1F1A
  }
  
  .hover\:text-red-light:hover {
    color: #EF5753
  }
  
  .hover\:text-red-lighter:hover {
    color: #F9ACAA
  }
  
  .hover\:text-red-lightest:hover {
    color: #FCEBEA
  }
  
  .hover\:text-orange-darkest:hover {
    color: #462A16
  }
  
  .hover\:text-orange-darker:hover {
    color: #613B1F
  }
  
  .hover\:text-orange-dark:hover {
    color: #DE751F
  }
  
  .hover\:text-orange-light:hover {
    color: #FAAD63
  }
  
  .hover\:text-orange-lighter:hover {
    color: #FCD9B6
  }
  
  .hover\:text-orange-lightest:hover {
    color: #FFF5EB
  }
  
  .hover\:text-yellow-darkest:hover {
    color: #453411
  }
  
  .hover\:text-yellow-darker:hover {
    color: #684F1D
  }
  
  .hover\:text-yellow-dark:hover {
    color: #F2D024
  }
  
  .hover\:text-yellow-light:hover {
    color: #FFF382
  }
  
  .hover\:text-yellow-lighter:hover {
    color: #FFF9C2
  }
  
  .hover\:text-yellow-lightest:hover {
    color: #FCFBEB
  }
  
  .hover\:text-green-darkest:hover {
    color: #0F2F21
  }
  
  .hover\:text-green-darker:hover {
    color: #1A4731
  }
  
  .hover\:text-green-dark:hover {
    color: #1F9D55
  }
  
  .hover\:text-green-light:hover {
    color: #51D88A
  }
  
  .hover\:text-green-lighter:hover {
    color: #A2F5BF
  }
  
  .hover\:text-green-lightest:hover {
    color: #E3FCEC
  }
  
  .hover\:text-teal-darkest:hover {
    color: #0D3331
  }
  
  .hover\:text-teal-darker:hover {
    color: #20504F
  }
  
  .hover\:text-teal-dark:hover {
    color: #38A89D
  }
  
  .hover\:text-teal-light:hover {
    color: #64D5CA
  }
  
  .hover\:text-teal-lighter:hover {
    color: #A0F0ED
  }
  
  .hover\:text-teal-lightest:hover {
    color: #E8FFFE
  }
  
  .hover\:text-blue-darkest:hover {
    color: #12283A
  }
  
  .hover\:text-blue-darker:hover {
    color: #1C3D5A
  }
  
  .hover\:text-blue-dark:hover {
    color: #2779BD
  }
  
  .hover\:text-blue-light:hover {
    color: #6CB2EB
  }
  
  .hover\:text-blue-lighter:hover {
    color: #BCDEFA
  }
  
  .hover\:text-blue-lightest:hover {
    color: #EFF8FF
  }
  
  .hover\:text-indigo-darkest:hover {
    color: #191E38
  }
  
  .hover\:text-indigo-darker:hover {
    color: #2F365F
  }
  
  .hover\:text-indigo-dark:hover {
    color: #5661B3
  }
  
  .hover\:text-indigo-light:hover {
    color: #7886D7
  }
  
  .hover\:text-indigo-lighter:hover {
    color: #B2B7FF
  }
  
  .hover\:text-indigo-lightest:hover {
    color: #E6E8FF
  }
  
  .hover\:text-purple-darkest:hover {
    color: #21183C
  }
  
  .hover\:text-purple-darker:hover {
    color: #382B5F
  }
  
  .hover\:text-purple-dark:hover {
    color: #794ACF
  }
  
  .hover\:text-purple-light:hover {
    color: #A779E9
  }
  
  .hover\:text-purple-lighter:hover {
    color: #D6BBFC
  }
  
  .hover\:text-purple-lightest:hover {
    color: #F3EBFF
  }
  
  .hover\:text-pink-darkest:hover {
    color: #451225
  }
  
  .hover\:text-pink-darker:hover {
    color: #6F213F
  }
  
  .hover\:text-pink-dark:hover {
    color: #EB5286
  }
  
  .hover\:text-pink-light:hover {
    color: #FA7EA8
  }
  
  .hover\:text-pink-lighter:hover {
    color: #FFBBCA
  }
  
  .hover\:text-pink-lightest:hover {
    color: #FFEBEF
  }
  
  .focus\:text-transparent:focus {
    color: transparent
  }
  
  .focus\:text-black:focus {
    color: #22292F
  }
  
  .focus\:text-white:focus {
    color: #FFFFFF
  }
  
  .focus\:text-gray-100:focus {
    color: #f7fafc
  }
  
  .focus\:text-gray-200:focus {
    color: #edf2f7
  }
  
  .focus\:text-gray-300:focus {
    color: #e2e8f0
  }
  
  .focus\:text-gray-400:focus {
    color: #cbd5e0
  }
  
  .focus\:text-gray-500:focus {
    color: #a0aec0
  }
  
  .focus\:text-gray-600:focus {
    color: #718096
  }
  
  .focus\:text-gray-700:focus {
    color: #4a5568
  }
  
  .focus\:text-gray-800:focus {
    color: #2d3748
  }
  
  .focus\:text-gray-900:focus {
    color: #1a202c
  }
  
  .focus\:text-red:focus {
    color: #E3342F
  }
  
  .focus\:text-orange:focus {
    color: #F6993F
  }
  
  .focus\:text-yellow:focus {
    color: #FFED4A
  }
  
  .focus\:text-green:focus {
    color: #38C172
  }
  
  .focus\:text-teal:focus {
    color: #4DC0B5
  }
  
  .focus\:text-blue:focus {
    color: #3490DC
  }
  
  .focus\:text-indigo:focus {
    color: #6574CD
  }
  
  .focus\:text-purple:focus {
    color: #9561E2
  }
  
  .focus\:text-pink:focus {
    color: #F66D9B
  }
  
  .focus\:text-grey-darkest:focus {
    color: #3D4852
  }
  
  .focus\:text-grey-darker:focus {
    color: #606F7B
  }
  
  .focus\:text-grey-dark:focus {
    color: #8795A1
  }
  
  .focus\:text-grey:focus {
    color: #B8C2CC
  }
  
  .focus\:text-grey-light:focus {
    color: #DAE1E7
  }
  
  .focus\:text-grey-lighter:focus {
    color: #F1F5F8
  }
  
  .focus\:text-grey-lightest:focus {
    color: #F8FAFC
  }
  
  .focus\:text-red-darkest:focus {
    color: #3B0D0C
  }
  
  .focus\:text-red-darker:focus {
    color: #621B18
  }
  
  .focus\:text-red-dark:focus {
    color: #CC1F1A
  }
  
  .focus\:text-red-light:focus {
    color: #EF5753
  }
  
  .focus\:text-red-lighter:focus {
    color: #F9ACAA
  }
  
  .focus\:text-red-lightest:focus {
    color: #FCEBEA
  }
  
  .focus\:text-orange-darkest:focus {
    color: #462A16
  }
  
  .focus\:text-orange-darker:focus {
    color: #613B1F
  }
  
  .focus\:text-orange-dark:focus {
    color: #DE751F
  }
  
  .focus\:text-orange-light:focus {
    color: #FAAD63
  }
  
  .focus\:text-orange-lighter:focus {
    color: #FCD9B6
  }
  
  .focus\:text-orange-lightest:focus {
    color: #FFF5EB
  }
  
  .focus\:text-yellow-darkest:focus {
    color: #453411
  }
  
  .focus\:text-yellow-darker:focus {
    color: #684F1D
  }
  
  .focus\:text-yellow-dark:focus {
    color: #F2D024
  }
  
  .focus\:text-yellow-light:focus {
    color: #FFF382
  }
  
  .focus\:text-yellow-lighter:focus {
    color: #FFF9C2
  }
  
  .focus\:text-yellow-lightest:focus {
    color: #FCFBEB
  }
  
  .focus\:text-green-darkest:focus {
    color: #0F2F21
  }
  
  .focus\:text-green-darker:focus {
    color: #1A4731
  }
  
  .focus\:text-green-dark:focus {
    color: #1F9D55
  }
  
  .focus\:text-green-light:focus {
    color: #51D88A
  }
  
  .focus\:text-green-lighter:focus {
    color: #A2F5BF
  }
  
  .focus\:text-green-lightest:focus {
    color: #E3FCEC
  }
  
  .focus\:text-teal-darkest:focus {
    color: #0D3331
  }
  
  .focus\:text-teal-darker:focus {
    color: #20504F
  }
  
  .focus\:text-teal-dark:focus {
    color: #38A89D
  }
  
  .focus\:text-teal-light:focus {
    color: #64D5CA
  }
  
  .focus\:text-teal-lighter:focus {
    color: #A0F0ED
  }
  
  .focus\:text-teal-lightest:focus {
    color: #E8FFFE
  }
  
  .focus\:text-blue-darkest:focus {
    color: #12283A
  }
  
  .focus\:text-blue-darker:focus {
    color: #1C3D5A
  }
  
  .focus\:text-blue-dark:focus {
    color: #2779BD
  }
  
  .focus\:text-blue-light:focus {
    color: #6CB2EB
  }
  
  .focus\:text-blue-lighter:focus {
    color: #BCDEFA
  }
  
  .focus\:text-blue-lightest:focus {
    color: #EFF8FF
  }
  
  .focus\:text-indigo-darkest:focus {
    color: #191E38
  }
  
  .focus\:text-indigo-darker:focus {
    color: #2F365F
  }
  
  .focus\:text-indigo-dark:focus {
    color: #5661B3
  }
  
  .focus\:text-indigo-light:focus {
    color: #7886D7
  }
  
  .focus\:text-indigo-lighter:focus {
    color: #B2B7FF
  }
  
  .focus\:text-indigo-lightest:focus {
    color: #E6E8FF
  }
  
  .focus\:text-purple-darkest:focus {
    color: #21183C
  }
  
  .focus\:text-purple-darker:focus {
    color: #382B5F
  }
  
  .focus\:text-purple-dark:focus {
    color: #794ACF
  }
  
  .focus\:text-purple-light:focus {
    color: #A779E9
  }
  
  .focus\:text-purple-lighter:focus {
    color: #D6BBFC
  }
  
  .focus\:text-purple-lightest:focus {
    color: #F3EBFF
  }
  
  .focus\:text-pink-darkest:focus {
    color: #451225
  }
  
  .focus\:text-pink-darker:focus {
    color: #6F213F
  }
  
  .focus\:text-pink-dark:focus {
    color: #EB5286
  }
  
  .focus\:text-pink-light:focus {
    color: #FA7EA8
  }
  
  .focus\:text-pink-lighter:focus {
    color: #FFBBCA
  }
  
  .focus\:text-pink-lightest:focus {
    color: #FFEBEF
  }
  
  .text-10 {
    font-size: 1rem
  }
  
  .text-11 {
    font-size: 1.1rem
  }
  
  .text-12 {
    font-size: 1.2rem
  }
  
  .text-13 {
    font-size: 1.3rem
  }
  
  .text-14 {
    font-size: 1.4rem
  }
  
  .text-15 {
    font-size: 1.5rem
  }
  
  .text-16 {
    font-size: 1.6rem
  }
  
  .text-17 {
    font-size: 1.7rem
  }
  
  .text-18 {
    font-size: 1.8rem
  }
  
  .text-19 {
    font-size: 1.9rem
  }
  
  .text-20 {
    font-size: 2rem
  }
  
  .text-24 {
    font-size: 2.4rem
  }
  
  .text-28 {
    font-size: 2.8rem
  }
  
  .text-32 {
    font-size: 3.2rem
  }
  
  .text-36 {
    font-size: 3.6rem
  }
  
  .text-40 {
    font-size: 4rem
  }
  
  .text-44 {
    font-size: 4.4rem
  }
  
  .text-48 {
    font-size: 4.8rem
  }
  
  .text-52 {
    font-size: 5.2rem
  }
  
  .text-56 {
    font-size: 5.6rem
  }
  
  .text-60 {
    font-size: 6rem
  }
  
  .text-64 {
    font-size: 6.4rem
  }
  
  .text-68 {
    font-size: 6.8rem
  }
  
  .text-72 {
    font-size: 7.2rem
  }
  
  .text-96 {
    font-size: 9.6rem
  }
  
  .text-128 {
    font-size: 12.8rem
  }
  
  .text-xs {
    font-size: 1.2rem
  }
  
  .text-sm {
    font-size: 2.4rem
  }
  
  .text-base {
    font-size: 1.6rem
  }
  
  .text-lg {
    font-size: 1.8rem
  }
  
  .text-xl {
    font-size: 2rem
  }
  
  .text-2xl {
    font-size: 2.4rem
  }
  
  .text-3xl {
    font-size: 3rem
  }
  
  .text-4xl {
    font-size: 3.6rem
  }
  
  .text-5xl {
    font-size: 4.8rem
  }
  
  .text-6xl {
    font-size: 4rem
  }
  
  .italic {
    font-style: italic
  }
  
  .not-italic {
    font-style: normal
  }
  
  .hover\:italic:hover {
    font-style: italic
  }
  
  .hover\:not-italic:hover {
    font-style: normal
  }
  
  .focus\:italic:focus {
    font-style: italic
  }
  
  .focus\:not-italic:focus {
    font-style: normal
  }
  
  .uppercase {
    text-transform: uppercase
  }
  
  .lowercase {
    text-transform: lowercase
  }
  
  .capitalize {
    text-transform: capitalize
  }
  
  .normal-case {
    text-transform: none
  }
  
  .underline {
    text-decoration: underline
  }
  
  .line-through {
    text-decoration: line-through
  }
  
  .no-underline {
    text-decoration: none
  }
  
  .hover\:underline:hover {
    text-decoration: underline
  }
  
  .hover\:line-through:hover {
    text-decoration: line-through
  }
  
  .hover\:no-underline:hover {
    text-decoration: none
  }
  
  .focus\:underline:focus {
    text-decoration: underline
  }
  
  .focus\:line-through:focus {
    text-decoration: line-through
  }
  
  .focus\:no-underline:focus {
    text-decoration: none
  }
  
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
  }
  
  .subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
  }
  
  .tracking-tighter {
    letter-spacing: -0.05em
  }
  
  .tracking-tight {
    letter-spacing: -0.025em
  }
  
  .tracking-normal {
    letter-spacing: 0
  }
  
  .tracking-wide {
    letter-spacing: 0.025em
  }
  
  .tracking-wider {
    letter-spacing: 0.05em
  }
  
  .tracking-widest {
    letter-spacing: 0.1em
  }
  
  .select-none {
    -webkit-user-select: none;
            user-select: none
  }
  
  .select-text {
    -webkit-user-select: text;
            user-select: text
  }
  
  .select-all {
    -webkit-user-select: all;
            user-select: all
  }
  
  .select-auto {
    -webkit-user-select: auto;
            user-select: auto
  }
  
  .align-baseline {
    vertical-align: baseline
  }
  
  .align-top {
    vertical-align: top
  }
  
  .align-middle {
    vertical-align: middle
  }
  
  .align-bottom {
    vertical-align: bottom
  }
  
  .align-text-top {
    vertical-align: text-top
  }
  
  .align-text-bottom {
    vertical-align: text-bottom
  }
  
  .visible {
    visibility: visible
  }
  
  .invisible {
    visibility: hidden
  }
  
  .whitespace-normal {
    white-space: normal
  }
  
  .whitespace-no-wrap {
    white-space: nowrap
  }
  
  .whitespace-pre {
    white-space: pre
  }
  
  .whitespace-pre-line {
    white-space: pre-line
  }
  
  .whitespace-pre-wrap {
    white-space: pre-wrap
  }
  
  .break-normal {
    overflow-wrap: normal;
    word-break: normal
  }
  
  .break-words {
    overflow-wrap: break-word
  }
  
  .break-all {
    word-break: break-all
  }
  
  .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  
  .w-0 {
    width: 0
  }
  
  .w-1 {
    width: 0.25rem
  }
  
  .w-2 {
    width: 0.5rem
  }
  
  .w-3 {
    width: 0.75rem
  }
  
  .w-4 {
    width: 0.4rem
  }
  
  .w-5 {
    width: 1.25rem
  }
  
  .w-6 {
    width: 0.6rem
  }
  
  .w-8 {
    width: 0.8rem
  }
  
  .w-10 {
    width: 2.5rem
  }
  
  .w-12 {
    width: 1.2rem
  }
  
  .w-16 {
    width: 1.6rem
  }
  
  .w-20 {
    width: 2rem
  }
  
  .w-24 {
    width: 2.4rem
  }
  
  .w-28 {
    width: 2.8rem
  }
  
  .w-32 {
    width: 3.2rem
  }
  
  .w-36 {
    width: 3.6rem
  }
  
  .w-40 {
    width: 4rem
  }
  
  .w-44 {
    width: 4.4rem
  }
  
  .w-48 {
    width: 4.8rem
  }
  
  .w-52 {
    width: 5.2rem
  }
  
  .w-56 {
    width: 5.6rem
  }
  
  .w-60 {
    width: 6rem
  }
  
  .w-64 {
    width: 6.4rem
  }
  
  .w-68 {
    width: 6.8rem
  }
  
  .w-72 {
    width: 7.2rem
  }
  
  .w-76 {
    width: 7.6rem
  }
  
  .w-80 {
    width: 8rem
  }
  
  .w-84 {
    width: 8.4rem
  }
  
  .w-88 {
    width: 8.8rem
  }
  
  .w-92 {
    width: 9.2rem
  }
  
  .w-96 {
    width: 9.6rem
  }
  
  .w-128 {
    width: 12.8rem
  }
  
  .w-136 {
    width: 13.6rem
  }
  
  .w-160 {
    width: 16rem
  }
  
  .w-192 {
    width: 19.2rem
  }
  
  .w-200 {
    width: 20rem
  }
  
  .w-208 {
    width: 20.8rem
  }
  
  .w-216 {
    width: 21.6rem
  }
  
  .w-224 {
    width: 22.4rem
  }
  
  .w-256 {
    width: 25.6rem
  }
  
  .w-288 {
    width: 28.8rem
  }
  
  .w-320 {
    width: 32rem
  }
  
  .w-360 {
    width: 36rem
  }
  
  .w-384 {
    width: 38.4rem
  }
  
  .w-400 {
    width: 40rem
  }
  
  .w-512 {
    width: 51.2rem
  }
  
  .w-640 {
    width: 64rem
  }
  
  .w-auto {
    width: auto
  }
  
  .w-px {
    width: 1px
  }
  
  .w-xs {
    width: 32rem
  }
  
  .w-sm {
    width: 48rem
  }
  
  .w-md {
    width: 64rem
  }
  
  .w-lg {
    width: 80rem
  }
  
  .w-xl {
    width: 96rem
  }
  
  .w-2xl {
    width: 112rem
  }
  
  .w-3xl {
    width: 128rem
  }
  
  .w-4xl {
    width: 144rem
  }
  
  .w-5xl {
    width: 160rem
  }
  
  .w-1\/2 {
    width: 50%
  }
  
  .w-1\/3 {
    width: 33.33333%
  }
  
  .w-2\/3 {
    width: 66.66667%
  }
  
  .w-1\/4 {
    width: 25%
  }
  
  .w-2\/4 {
    width: 50%
  }
  
  .w-3\/4 {
    width: 75%
  }
  
  .w-1\/5 {
    width: 20%
  }
  
  .w-2\/5 {
    width: 40%
  }
  
  .w-3\/5 {
    width: 60%
  }
  
  .w-4\/5 {
    width: 80%
  }
  
  .w-1\/6 {
    width: 16.66667%
  }
  
  .w-2\/6 {
    width: 33.33333%
  }
  
  .w-3\/6 {
    width: 50%
  }
  
  .w-4\/6 {
    width: 66.66667%
  }
  
  .w-5\/6 {
    width: 83.33333%
  }
  
  .w-1\/12 {
    width: 8.33333%
  }
  
  .w-2\/12 {
    width: 16.66667%
  }
  
  .w-3\/12 {
    width: 25%
  }
  
  .w-4\/12 {
    width: 33.33333%
  }
  
  .w-5\/12 {
    width: 41.66667%
  }
  
  .w-6\/12 {
    width: 50%
  }
  
  .w-7\/12 {
    width: 58.33333%
  }
  
  .w-8\/12 {
    width: 66.66667%
  }
  
  .w-9\/12 {
    width: 75%
  }
  
  .w-10\/12 {
    width: 83.33333%
  }
  
  .w-11\/12 {
    width: 91.66667%
  }
  
  .w-full {
    width: 100%
  }
  
  .w-screen {
    width: 100vw
  }
  
  .z-0 {
    z-index: 0
  }
  
  .z-10 {
    z-index: 10
  }
  
  .z-20 {
    z-index: 20
  }
  
  .z-30 {
    z-index: 30
  }
  
  .z-40 {
    z-index: 40
  }
  
  .z-50 {
    z-index: 50
  }
  
  .z-99 {
    z-index: 99
  }
  
  .z-999 {
    z-index: 999
  }
  
  .z-9999 {
    z-index: 9999
  }
  
  .z-auto {
    z-index: auto
  }
  
  @media (min-width: 600px) {
    .sm\:appearance-none {
      -webkit-appearance: none;
              appearance: none
    }
  
    .sm\:bg-fixed {
      background-attachment: fixed
    }
  
    .sm\:bg-local {
      background-attachment: local
    }
  
    .sm\:bg-scroll {
      background-attachment: scroll
    }
  
    .sm\:bg-transparent {
      background-color: transparent
    }
  
    .sm\:bg-black {
      background-color: #22292F
    }
  
    .sm\:bg-white {
      background-color: #FFFFFF
    }
  
    .sm\:bg-gray-100 {
      background-color: #f7fafc
    }
  
    .sm\:bg-gray-200 {
      background-color: #edf2f7
    }
  
    .sm\:bg-gray-300 {
      background-color: #e2e8f0
    }
  
    .sm\:bg-gray-400 {
      background-color: #cbd5e0
    }
  
    .sm\:bg-gray-500 {
      background-color: #a0aec0
    }
  
    .sm\:bg-gray-600 {
      background-color: #718096
    }
  
    .sm\:bg-gray-700 {
      background-color: #4a5568
    }
  
    .sm\:bg-gray-800 {
      background-color: #2d3748
    }
  
    .sm\:bg-gray-900 {
      background-color: #1a202c
    }
  
    .sm\:bg-red {
      background-color: #E3342F
    }
  
    .sm\:bg-orange {
      background-color: #F6993F
    }
  
    .sm\:bg-yellow {
      background-color: #FFED4A
    }
  
    .sm\:bg-green {
      background-color: #38C172
    }
  
    .sm\:bg-teal {
      background-color: #4DC0B5
    }
  
    .sm\:bg-blue {
      background-color: #3490DC
    }
  
    .sm\:bg-indigo {
      background-color: #6574CD
    }
  
    .sm\:bg-purple {
      background-color: #9561E2
    }
  
    .sm\:bg-pink {
      background-color: #F66D9B
    }
  
    .sm\:bg-grey-darkest {
      background-color: #3D4852
    }
  
    .sm\:bg-grey-darker {
      background-color: #606F7B
    }
  
    .sm\:bg-grey-dark {
      background-color: #8795A1
    }
  
    .sm\:bg-grey {
      background-color: #B8C2CC
    }
  
    .sm\:bg-grey-light {
      background-color: #DAE1E7
    }
  
    .sm\:bg-grey-lighter {
      background-color: #F1F5F8
    }
  
    .sm\:bg-grey-lightest {
      background-color: #F8FAFC
    }
  
    .sm\:bg-red-darkest {
      background-color: #3B0D0C
    }
  
    .sm\:bg-red-darker {
      background-color: #621B18
    }
  
    .sm\:bg-red-dark {
      background-color: #CC1F1A
    }
  
    .sm\:bg-red-light {
      background-color: #EF5753
    }
  
    .sm\:bg-red-lighter {
      background-color: #F9ACAA
    }
  
    .sm\:bg-red-lightest {
      background-color: #FCEBEA
    }
  
    .sm\:bg-orange-darkest {
      background-color: #462A16
    }
  
    .sm\:bg-orange-darker {
      background-color: #613B1F
    }
  
    .sm\:bg-orange-dark {
      background-color: #DE751F
    }
  
    .sm\:bg-orange-light {
      background-color: #FAAD63
    }
  
    .sm\:bg-orange-lighter {
      background-color: #FCD9B6
    }
  
    .sm\:bg-orange-lightest {
      background-color: #FFF5EB
    }
  
    .sm\:bg-yellow-darkest {
      background-color: #453411
    }
  
    .sm\:bg-yellow-darker {
      background-color: #684F1D
    }
  
    .sm\:bg-yellow-dark {
      background-color: #F2D024
    }
  
    .sm\:bg-yellow-light {
      background-color: #FFF382
    }
  
    .sm\:bg-yellow-lighter {
      background-color: #FFF9C2
    }
  
    .sm\:bg-yellow-lightest {
      background-color: #FCFBEB
    }
  
    .sm\:bg-green-darkest {
      background-color: #0F2F21
    }
  
    .sm\:bg-green-darker {
      background-color: #1A4731
    }
  
    .sm\:bg-green-dark {
      background-color: #1F9D55
    }
  
    .sm\:bg-green-light {
      background-color: #51D88A
    }
  
    .sm\:bg-green-lighter {
      background-color: #A2F5BF
    }
  
    .sm\:bg-green-lightest {
      background-color: #E3FCEC
    }
  
    .sm\:bg-teal-darkest {
      background-color: #0D3331
    }
  
    .sm\:bg-teal-darker {
      background-color: #20504F
    }
  
    .sm\:bg-teal-dark {
      background-color: #38A89D
    }
  
    .sm\:bg-teal-light {
      background-color: #64D5CA
    }
  
    .sm\:bg-teal-lighter {
      background-color: #A0F0ED
    }
  
    .sm\:bg-teal-lightest {
      background-color: #E8FFFE
    }
  
    .sm\:bg-blue-darkest {
      background-color: #12283A
    }
  
    .sm\:bg-blue-darker {
      background-color: #1C3D5A
    }
  
    .sm\:bg-blue-dark {
      background-color: #2779BD
    }
  
    .sm\:bg-blue-light {
      background-color: #6CB2EB
    }
  
    .sm\:bg-blue-lighter {
      background-color: #BCDEFA
    }
  
    .sm\:bg-blue-lightest {
      background-color: #EFF8FF
    }
  
    .sm\:bg-indigo-darkest {
      background-color: #191E38
    }
  
    .sm\:bg-indigo-darker {
      background-color: #2F365F
    }
  
    .sm\:bg-indigo-dark {
      background-color: #5661B3
    }
  
    .sm\:bg-indigo-light {
      background-color: #7886D7
    }
  
    .sm\:bg-indigo-lighter {
      background-color: #B2B7FF
    }
  
    .sm\:bg-indigo-lightest {
      background-color: #E6E8FF
    }
  
    .sm\:bg-purple-darkest {
      background-color: #21183C
    }
  
    .sm\:bg-purple-darker {
      background-color: #382B5F
    }
  
    .sm\:bg-purple-dark {
      background-color: #794ACF
    }
  
    .sm\:bg-purple-light {
      background-color: #A779E9
    }
  
    .sm\:bg-purple-lighter {
      background-color: #D6BBFC
    }
  
    .sm\:bg-purple-lightest {
      background-color: #F3EBFF
    }
  
    .sm\:bg-pink-darkest {
      background-color: #451225
    }
  
    .sm\:bg-pink-darker {
      background-color: #6F213F
    }
  
    .sm\:bg-pink-dark {
      background-color: #EB5286
    }
  
    .sm\:bg-pink-light {
      background-color: #FA7EA8
    }
  
    .sm\:bg-pink-lighter {
      background-color: #FFBBCA
    }
  
    .sm\:bg-pink-lightest {
      background-color: #FFEBEF
    }
  
    .sm\:hover\:bg-transparent:hover {
      background-color: transparent
    }
  
    .sm\:hover\:bg-black:hover {
      background-color: #22292F
    }
  
    .sm\:hover\:bg-white:hover {
      background-color: #FFFFFF
    }
  
    .sm\:hover\:bg-gray-100:hover {
      background-color: #f7fafc
    }
  
    .sm\:hover\:bg-gray-200:hover {
      background-color: #edf2f7
    }
  
    .sm\:hover\:bg-gray-300:hover {
      background-color: #e2e8f0
    }
  
    .sm\:hover\:bg-gray-400:hover {
      background-color: #cbd5e0
    }
  
    .sm\:hover\:bg-gray-500:hover {
      background-color: #a0aec0
    }
  
    .sm\:hover\:bg-gray-600:hover {
      background-color: #718096
    }
  
    .sm\:hover\:bg-gray-700:hover {
      background-color: #4a5568
    }
  
    .sm\:hover\:bg-gray-800:hover {
      background-color: #2d3748
    }
  
    .sm\:hover\:bg-gray-900:hover {
      background-color: #1a202c
    }
  
    .sm\:hover\:bg-red:hover {
      background-color: #E3342F
    }
  
    .sm\:hover\:bg-orange:hover {
      background-color: #F6993F
    }
  
    .sm\:hover\:bg-yellow:hover {
      background-color: #FFED4A
    }
  
    .sm\:hover\:bg-green:hover {
      background-color: #38C172
    }
  
    .sm\:hover\:bg-teal:hover {
      background-color: #4DC0B5
    }
  
    .sm\:hover\:bg-blue:hover {
      background-color: #3490DC
    }
  
    .sm\:hover\:bg-indigo:hover {
      background-color: #6574CD
    }
  
    .sm\:hover\:bg-purple:hover {
      background-color: #9561E2
    }
  
    .sm\:hover\:bg-pink:hover {
      background-color: #F66D9B
    }
  
    .sm\:hover\:bg-grey-darkest:hover {
      background-color: #3D4852
    }
  
    .sm\:hover\:bg-grey-darker:hover {
      background-color: #606F7B
    }
  
    .sm\:hover\:bg-grey-dark:hover {
      background-color: #8795A1
    }
  
    .sm\:hover\:bg-grey:hover {
      background-color: #B8C2CC
    }
  
    .sm\:hover\:bg-grey-light:hover {
      background-color: #DAE1E7
    }
  
    .sm\:hover\:bg-grey-lighter:hover {
      background-color: #F1F5F8
    }
  
    .sm\:hover\:bg-grey-lightest:hover {
      background-color: #F8FAFC
    }
  
    .sm\:hover\:bg-red-darkest:hover {
      background-color: #3B0D0C
    }
  
    .sm\:hover\:bg-red-darker:hover {
      background-color: #621B18
    }
  
    .sm\:hover\:bg-red-dark:hover {
      background-color: #CC1F1A
    }
  
    .sm\:hover\:bg-red-light:hover {
      background-color: #EF5753
    }
  
    .sm\:hover\:bg-red-lighter:hover {
      background-color: #F9ACAA
    }
  
    .sm\:hover\:bg-red-lightest:hover {
      background-color: #FCEBEA
    }
  
    .sm\:hover\:bg-orange-darkest:hover {
      background-color: #462A16
    }
  
    .sm\:hover\:bg-orange-darker:hover {
      background-color: #613B1F
    }
  
    .sm\:hover\:bg-orange-dark:hover {
      background-color: #DE751F
    }
  
    .sm\:hover\:bg-orange-light:hover {
      background-color: #FAAD63
    }
  
    .sm\:hover\:bg-orange-lighter:hover {
      background-color: #FCD9B6
    }
  
    .sm\:hover\:bg-orange-lightest:hover {
      background-color: #FFF5EB
    }
  
    .sm\:hover\:bg-yellow-darkest:hover {
      background-color: #453411
    }
  
    .sm\:hover\:bg-yellow-darker:hover {
      background-color: #684F1D
    }
  
    .sm\:hover\:bg-yellow-dark:hover {
      background-color: #F2D024
    }
  
    .sm\:hover\:bg-yellow-light:hover {
      background-color: #FFF382
    }
  
    .sm\:hover\:bg-yellow-lighter:hover {
      background-color: #FFF9C2
    }
  
    .sm\:hover\:bg-yellow-lightest:hover {
      background-color: #FCFBEB
    }
  
    .sm\:hover\:bg-green-darkest:hover {
      background-color: #0F2F21
    }
  
    .sm\:hover\:bg-green-darker:hover {
      background-color: #1A4731
    }
  
    .sm\:hover\:bg-green-dark:hover {
      background-color: #1F9D55
    }
  
    .sm\:hover\:bg-green-light:hover {
      background-color: #51D88A
    }
  
    .sm\:hover\:bg-green-lighter:hover {
      background-color: #A2F5BF
    }
  
    .sm\:hover\:bg-green-lightest:hover {
      background-color: #E3FCEC
    }
  
    .sm\:hover\:bg-teal-darkest:hover {
      background-color: #0D3331
    }
  
    .sm\:hover\:bg-teal-darker:hover {
      background-color: #20504F
    }
  
    .sm\:hover\:bg-teal-dark:hover {
      background-color: #38A89D
    }
  
    .sm\:hover\:bg-teal-light:hover {
      background-color: #64D5CA
    }
  
    .sm\:hover\:bg-teal-lighter:hover {
      background-color: #A0F0ED
    }
  
    .sm\:hover\:bg-teal-lightest:hover {
      background-color: #E8FFFE
    }
  
    .sm\:hover\:bg-blue-darkest:hover {
      background-color: #12283A
    }
  
    .sm\:hover\:bg-blue-darker:hover {
      background-color: #1C3D5A
    }
  
    .sm\:hover\:bg-blue-dark:hover {
      background-color: #2779BD
    }
  
    .sm\:hover\:bg-blue-light:hover {
      background-color: #6CB2EB
    }
  
    .sm\:hover\:bg-blue-lighter:hover {
      background-color: #BCDEFA
    }
  
    .sm\:hover\:bg-blue-lightest:hover {
      background-color: #EFF8FF
    }
  
    .sm\:hover\:bg-indigo-darkest:hover {
      background-color: #191E38
    }
  
    .sm\:hover\:bg-indigo-darker:hover {
      background-color: #2F365F
    }
  
    .sm\:hover\:bg-indigo-dark:hover {
      background-color: #5661B3
    }
  
    .sm\:hover\:bg-indigo-light:hover {
      background-color: #7886D7
    }
  
    .sm\:hover\:bg-indigo-lighter:hover {
      background-color: #B2B7FF
    }
  
    .sm\:hover\:bg-indigo-lightest:hover {
      background-color: #E6E8FF
    }
  
    .sm\:hover\:bg-purple-darkest:hover {
      background-color: #21183C
    }
  
    .sm\:hover\:bg-purple-darker:hover {
      background-color: #382B5F
    }
  
    .sm\:hover\:bg-purple-dark:hover {
      background-color: #794ACF
    }
  
    .sm\:hover\:bg-purple-light:hover {
      background-color: #A779E9
    }
  
    .sm\:hover\:bg-purple-lighter:hover {
      background-color: #D6BBFC
    }
  
    .sm\:hover\:bg-purple-lightest:hover {
      background-color: #F3EBFF
    }
  
    .sm\:hover\:bg-pink-darkest:hover {
      background-color: #451225
    }
  
    .sm\:hover\:bg-pink-darker:hover {
      background-color: #6F213F
    }
  
    .sm\:hover\:bg-pink-dark:hover {
      background-color: #EB5286
    }
  
    .sm\:hover\:bg-pink-light:hover {
      background-color: #FA7EA8
    }
  
    .sm\:hover\:bg-pink-lighter:hover {
      background-color: #FFBBCA
    }
  
    .sm\:hover\:bg-pink-lightest:hover {
      background-color: #FFEBEF
    }
  
    .sm\:focus\:bg-transparent:focus {
      background-color: transparent
    }
  
    .sm\:focus\:bg-black:focus {
      background-color: #22292F
    }
  
    .sm\:focus\:bg-white:focus {
      background-color: #FFFFFF
    }
  
    .sm\:focus\:bg-gray-100:focus {
      background-color: #f7fafc
    }
  
    .sm\:focus\:bg-gray-200:focus {
      background-color: #edf2f7
    }
  
    .sm\:focus\:bg-gray-300:focus {
      background-color: #e2e8f0
    }
  
    .sm\:focus\:bg-gray-400:focus {
      background-color: #cbd5e0
    }
  
    .sm\:focus\:bg-gray-500:focus {
      background-color: #a0aec0
    }
  
    .sm\:focus\:bg-gray-600:focus {
      background-color: #718096
    }
  
    .sm\:focus\:bg-gray-700:focus {
      background-color: #4a5568
    }
  
    .sm\:focus\:bg-gray-800:focus {
      background-color: #2d3748
    }
  
    .sm\:focus\:bg-gray-900:focus {
      background-color: #1a202c
    }
  
    .sm\:focus\:bg-red:focus {
      background-color: #E3342F
    }
  
    .sm\:focus\:bg-orange:focus {
      background-color: #F6993F
    }
  
    .sm\:focus\:bg-yellow:focus {
      background-color: #FFED4A
    }
  
    .sm\:focus\:bg-green:focus {
      background-color: #38C172
    }
  
    .sm\:focus\:bg-teal:focus {
      background-color: #4DC0B5
    }
  
    .sm\:focus\:bg-blue:focus {
      background-color: #3490DC
    }
  
    .sm\:focus\:bg-indigo:focus {
      background-color: #6574CD
    }
  
    .sm\:focus\:bg-purple:focus {
      background-color: #9561E2
    }
  
    .sm\:focus\:bg-pink:focus {
      background-color: #F66D9B
    }
  
    .sm\:focus\:bg-grey-darkest:focus {
      background-color: #3D4852
    }
  
    .sm\:focus\:bg-grey-darker:focus {
      background-color: #606F7B
    }
  
    .sm\:focus\:bg-grey-dark:focus {
      background-color: #8795A1
    }
  
    .sm\:focus\:bg-grey:focus {
      background-color: #B8C2CC
    }
  
    .sm\:focus\:bg-grey-light:focus {
      background-color: #DAE1E7
    }
  
    .sm\:focus\:bg-grey-lighter:focus {
      background-color: #F1F5F8
    }
  
    .sm\:focus\:bg-grey-lightest:focus {
      background-color: #F8FAFC
    }
  
    .sm\:focus\:bg-red-darkest:focus {
      background-color: #3B0D0C
    }
  
    .sm\:focus\:bg-red-darker:focus {
      background-color: #621B18
    }
  
    .sm\:focus\:bg-red-dark:focus {
      background-color: #CC1F1A
    }
  
    .sm\:focus\:bg-red-light:focus {
      background-color: #EF5753
    }
  
    .sm\:focus\:bg-red-lighter:focus {
      background-color: #F9ACAA
    }
  
    .sm\:focus\:bg-red-lightest:focus {
      background-color: #FCEBEA
    }
  
    .sm\:focus\:bg-orange-darkest:focus {
      background-color: #462A16
    }
  
    .sm\:focus\:bg-orange-darker:focus {
      background-color: #613B1F
    }
  
    .sm\:focus\:bg-orange-dark:focus {
      background-color: #DE751F
    }
  
    .sm\:focus\:bg-orange-light:focus {
      background-color: #FAAD63
    }
  
    .sm\:focus\:bg-orange-lighter:focus {
      background-color: #FCD9B6
    }
  
    .sm\:focus\:bg-orange-lightest:focus {
      background-color: #FFF5EB
    }
  
    .sm\:focus\:bg-yellow-darkest:focus {
      background-color: #453411
    }
  
    .sm\:focus\:bg-yellow-darker:focus {
      background-color: #684F1D
    }
  
    .sm\:focus\:bg-yellow-dark:focus {
      background-color: #F2D024
    }
  
    .sm\:focus\:bg-yellow-light:focus {
      background-color: #FFF382
    }
  
    .sm\:focus\:bg-yellow-lighter:focus {
      background-color: #FFF9C2
    }
  
    .sm\:focus\:bg-yellow-lightest:focus {
      background-color: #FCFBEB
    }
  
    .sm\:focus\:bg-green-darkest:focus {
      background-color: #0F2F21
    }
  
    .sm\:focus\:bg-green-darker:focus {
      background-color: #1A4731
    }
  
    .sm\:focus\:bg-green-dark:focus {
      background-color: #1F9D55
    }
  
    .sm\:focus\:bg-green-light:focus {
      background-color: #51D88A
    }
  
    .sm\:focus\:bg-green-lighter:focus {
      background-color: #A2F5BF
    }
  
    .sm\:focus\:bg-green-lightest:focus {
      background-color: #E3FCEC
    }
  
    .sm\:focus\:bg-teal-darkest:focus {
      background-color: #0D3331
    }
  
    .sm\:focus\:bg-teal-darker:focus {
      background-color: #20504F
    }
  
    .sm\:focus\:bg-teal-dark:focus {
      background-color: #38A89D
    }
  
    .sm\:focus\:bg-teal-light:focus {
      background-color: #64D5CA
    }
  
    .sm\:focus\:bg-teal-lighter:focus {
      background-color: #A0F0ED
    }
  
    .sm\:focus\:bg-teal-lightest:focus {
      background-color: #E8FFFE
    }
  
    .sm\:focus\:bg-blue-darkest:focus {
      background-color: #12283A
    }
  
    .sm\:focus\:bg-blue-darker:focus {
      background-color: #1C3D5A
    }
  
    .sm\:focus\:bg-blue-dark:focus {
      background-color: #2779BD
    }
  
    .sm\:focus\:bg-blue-light:focus {
      background-color: #6CB2EB
    }
  
    .sm\:focus\:bg-blue-lighter:focus {
      background-color: #BCDEFA
    }
  
    .sm\:focus\:bg-blue-lightest:focus {
      background-color: #EFF8FF
    }
  
    .sm\:focus\:bg-indigo-darkest:focus {
      background-color: #191E38
    }
  
    .sm\:focus\:bg-indigo-darker:focus {
      background-color: #2F365F
    }
  
    .sm\:focus\:bg-indigo-dark:focus {
      background-color: #5661B3
    }
  
    .sm\:focus\:bg-indigo-light:focus {
      background-color: #7886D7
    }
  
    .sm\:focus\:bg-indigo-lighter:focus {
      background-color: #B2B7FF
    }
  
    .sm\:focus\:bg-indigo-lightest:focus {
      background-color: #E6E8FF
    }
  
    .sm\:focus\:bg-purple-darkest:focus {
      background-color: #21183C
    }
  
    .sm\:focus\:bg-purple-darker:focus {
      background-color: #382B5F
    }
  
    .sm\:focus\:bg-purple-dark:focus {
      background-color: #794ACF
    }
  
    .sm\:focus\:bg-purple-light:focus {
      background-color: #A779E9
    }
  
    .sm\:focus\:bg-purple-lighter:focus {
      background-color: #D6BBFC
    }
  
    .sm\:focus\:bg-purple-lightest:focus {
      background-color: #F3EBFF
    }
  
    .sm\:focus\:bg-pink-darkest:focus {
      background-color: #451225
    }
  
    .sm\:focus\:bg-pink-darker:focus {
      background-color: #6F213F
    }
  
    .sm\:focus\:bg-pink-dark:focus {
      background-color: #EB5286
    }
  
    .sm\:focus\:bg-pink-light:focus {
      background-color: #FA7EA8
    }
  
    .sm\:focus\:bg-pink-lighter:focus {
      background-color: #FFBBCA
    }
  
    .sm\:focus\:bg-pink-lightest:focus {
      background-color: #FFEBEF
    }
  
    .sm\:bg-bottom {
      background-position: bottom
    }
  
    .sm\:bg-center {
      background-position: center
    }
  
    .sm\:bg-left {
      background-position: left
    }
  
    .sm\:bg-left-bottom {
      background-position: left bottom
    }
  
    .sm\:bg-left-top {
      background-position: left top
    }
  
    .sm\:bg-right {
      background-position: right
    }
  
    .sm\:bg-right-bottom {
      background-position: right bottom
    }
  
    .sm\:bg-right-top {
      background-position: right top
    }
  
    .sm\:bg-top {
      background-position: top
    }
  
    .sm\:bg-repeat {
      background-repeat: repeat
    }
  
    .sm\:bg-no-repeat {
      background-repeat: no-repeat
    }
  
    .sm\:bg-repeat-x {
      background-repeat: repeat-x
    }
  
    .sm\:bg-repeat-y {
      background-repeat: repeat-y
    }
  
    .sm\:bg-repeat-round {
      background-repeat: round
    }
  
    .sm\:bg-repeat-space {
      background-repeat: space
    }
  
    .sm\:bg-auto {
      background-size: auto
    }
  
    .sm\:bg-cover {
      background-size: cover
    }
  
    .sm\:bg-contain {
      background-size: contain
    }
  
    .sm\:border-collapse {
      border-collapse: collapse
    }
  
    .sm\:border-separate {
      border-collapse: separate
    }
  
    .sm\:border-transparent {
      border-color: transparent
    }
  
    .sm\:border-black {
      border-color: #22292F
    }
  
    .sm\:border-white {
      border-color: #FFFFFF
    }
  
    .sm\:border-gray-100 {
      border-color: #f7fafc
    }
  
    .sm\:border-gray-200 {
      border-color: #edf2f7
    }
  
    .sm\:border-gray-300 {
      border-color: #e2e8f0
    }
  
    .sm\:border-gray-400 {
      border-color: #cbd5e0
    }
  
    .sm\:border-gray-500 {
      border-color: #a0aec0
    }
  
    .sm\:border-gray-600 {
      border-color: #718096
    }
  
    .sm\:border-gray-700 {
      border-color: #4a5568
    }
  
    .sm\:border-gray-800 {
      border-color: #2d3748
    }
  
    .sm\:border-gray-900 {
      border-color: #1a202c
    }
  
    .sm\:border-red {
      border-color: #E3342F
    }
  
    .sm\:border-orange {
      border-color: #F6993F
    }
  
    .sm\:border-yellow {
      border-color: #FFED4A
    }
  
    .sm\:border-green {
      border-color: #38C172
    }
  
    .sm\:border-teal {
      border-color: #4DC0B5
    }
  
    .sm\:border-blue {
      border-color: #3490DC
    }
  
    .sm\:border-indigo {
      border-color: #6574CD
    }
  
    .sm\:border-purple {
      border-color: #9561E2
    }
  
    .sm\:border-pink {
      border-color: #F66D9B
    }
  
    .sm\:border-grey-darkest {
      border-color: #3D4852
    }
  
    .sm\:border-grey-darker {
      border-color: #606F7B
    }
  
    .sm\:border-grey-dark {
      border-color: #8795A1
    }
  
    .sm\:border-grey {
      border-color: #B8C2CC
    }
  
    .sm\:border-grey-light {
      border-color: #DAE1E7
    }
  
    .sm\:border-grey-lighter {
      border-color: #F1F5F8
    }
  
    .sm\:border-grey-lightest {
      border-color: #F8FAFC
    }
  
    .sm\:border-red-darkest {
      border-color: #3B0D0C
    }
  
    .sm\:border-red-darker {
      border-color: #621B18
    }
  
    .sm\:border-red-dark {
      border-color: #CC1F1A
    }
  
    .sm\:border-red-light {
      border-color: #EF5753
    }
  
    .sm\:border-red-lighter {
      border-color: #F9ACAA
    }
  
    .sm\:border-red-lightest {
      border-color: #FCEBEA
    }
  
    .sm\:border-orange-darkest {
      border-color: #462A16
    }
  
    .sm\:border-orange-darker {
      border-color: #613B1F
    }
  
    .sm\:border-orange-dark {
      border-color: #DE751F
    }
  
    .sm\:border-orange-light {
      border-color: #FAAD63
    }
  
    .sm\:border-orange-lighter {
      border-color: #FCD9B6
    }
  
    .sm\:border-orange-lightest {
      border-color: #FFF5EB
    }
  
    .sm\:border-yellow-darkest {
      border-color: #453411
    }
  
    .sm\:border-yellow-darker {
      border-color: #684F1D
    }
  
    .sm\:border-yellow-dark {
      border-color: #F2D024
    }
  
    .sm\:border-yellow-light {
      border-color: #FFF382
    }
  
    .sm\:border-yellow-lighter {
      border-color: #FFF9C2
    }
  
    .sm\:border-yellow-lightest {
      border-color: #FCFBEB
    }
  
    .sm\:border-green-darkest {
      border-color: #0F2F21
    }
  
    .sm\:border-green-darker {
      border-color: #1A4731
    }
  
    .sm\:border-green-dark {
      border-color: #1F9D55
    }
  
    .sm\:border-green-light {
      border-color: #51D88A
    }
  
    .sm\:border-green-lighter {
      border-color: #A2F5BF
    }
  
    .sm\:border-green-lightest {
      border-color: #E3FCEC
    }
  
    .sm\:border-teal-darkest {
      border-color: #0D3331
    }
  
    .sm\:border-teal-darker {
      border-color: #20504F
    }
  
    .sm\:border-teal-dark {
      border-color: #38A89D
    }
  
    .sm\:border-teal-light {
      border-color: #64D5CA
    }
  
    .sm\:border-teal-lighter {
      border-color: #A0F0ED
    }
  
    .sm\:border-teal-lightest {
      border-color: #E8FFFE
    }
  
    .sm\:border-blue-darkest {
      border-color: #12283A
    }
  
    .sm\:border-blue-darker {
      border-color: #1C3D5A
    }
  
    .sm\:border-blue-dark {
      border-color: #2779BD
    }
  
    .sm\:border-blue-light {
      border-color: #6CB2EB
    }
  
    .sm\:border-blue-lighter {
      border-color: #BCDEFA
    }
  
    .sm\:border-blue-lightest {
      border-color: #EFF8FF
    }
  
    .sm\:border-indigo-darkest {
      border-color: #191E38
    }
  
    .sm\:border-indigo-darker {
      border-color: #2F365F
    }
  
    .sm\:border-indigo-dark {
      border-color: #5661B3
    }
  
    .sm\:border-indigo-light {
      border-color: #7886D7
    }
  
    .sm\:border-indigo-lighter {
      border-color: #B2B7FF
    }
  
    .sm\:border-indigo-lightest {
      border-color: #E6E8FF
    }
  
    .sm\:border-purple-darkest {
      border-color: #21183C
    }
  
    .sm\:border-purple-darker {
      border-color: #382B5F
    }
  
    .sm\:border-purple-dark {
      border-color: #794ACF
    }
  
    .sm\:border-purple-light {
      border-color: #A779E9
    }
  
    .sm\:border-purple-lighter {
      border-color: #D6BBFC
    }
  
    .sm\:border-purple-lightest {
      border-color: #F3EBFF
    }
  
    .sm\:border-pink-darkest {
      border-color: #451225
    }
  
    .sm\:border-pink-darker {
      border-color: #6F213F
    }
  
    .sm\:border-pink-dark {
      border-color: #EB5286
    }
  
    .sm\:border-pink-light {
      border-color: #FA7EA8
    }
  
    .sm\:border-pink-lighter {
      border-color: #FFBBCA
    }
  
    .sm\:border-pink-lightest {
      border-color: #FFEBEF
    }
  
    .sm\:hover\:border-transparent:hover {
      border-color: transparent
    }
  
    .sm\:hover\:border-black:hover {
      border-color: #22292F
    }
  
    .sm\:hover\:border-white:hover {
      border-color: #FFFFFF
    }
  
    .sm\:hover\:border-gray-100:hover {
      border-color: #f7fafc
    }
  
    .sm\:hover\:border-gray-200:hover {
      border-color: #edf2f7
    }
  
    .sm\:hover\:border-gray-300:hover {
      border-color: #e2e8f0
    }
  
    .sm\:hover\:border-gray-400:hover {
      border-color: #cbd5e0
    }
  
    .sm\:hover\:border-gray-500:hover {
      border-color: #a0aec0
    }
  
    .sm\:hover\:border-gray-600:hover {
      border-color: #718096
    }
  
    .sm\:hover\:border-gray-700:hover {
      border-color: #4a5568
    }
  
    .sm\:hover\:border-gray-800:hover {
      border-color: #2d3748
    }
  
    .sm\:hover\:border-gray-900:hover {
      border-color: #1a202c
    }
  
    .sm\:hover\:border-red:hover {
      border-color: #E3342F
    }
  
    .sm\:hover\:border-orange:hover {
      border-color: #F6993F
    }
  
    .sm\:hover\:border-yellow:hover {
      border-color: #FFED4A
    }
  
    .sm\:hover\:border-green:hover {
      border-color: #38C172
    }
  
    .sm\:hover\:border-teal:hover {
      border-color: #4DC0B5
    }
  
    .sm\:hover\:border-blue:hover {
      border-color: #3490DC
    }
  
    .sm\:hover\:border-indigo:hover {
      border-color: #6574CD
    }
  
    .sm\:hover\:border-purple:hover {
      border-color: #9561E2
    }
  
    .sm\:hover\:border-pink:hover {
      border-color: #F66D9B
    }
  
    .sm\:hover\:border-grey-darkest:hover {
      border-color: #3D4852
    }
  
    .sm\:hover\:border-grey-darker:hover {
      border-color: #606F7B
    }
  
    .sm\:hover\:border-grey-dark:hover {
      border-color: #8795A1
    }
  
    .sm\:hover\:border-grey:hover {
      border-color: #B8C2CC
    }
  
    .sm\:hover\:border-grey-light:hover {
      border-color: #DAE1E7
    }
  
    .sm\:hover\:border-grey-lighter:hover {
      border-color: #F1F5F8
    }
  
    .sm\:hover\:border-grey-lightest:hover {
      border-color: #F8FAFC
    }
  
    .sm\:hover\:border-red-darkest:hover {
      border-color: #3B0D0C
    }
  
    .sm\:hover\:border-red-darker:hover {
      border-color: #621B18
    }
  
    .sm\:hover\:border-red-dark:hover {
      border-color: #CC1F1A
    }
  
    .sm\:hover\:border-red-light:hover {
      border-color: #EF5753
    }
  
    .sm\:hover\:border-red-lighter:hover {
      border-color: #F9ACAA
    }
  
    .sm\:hover\:border-red-lightest:hover {
      border-color: #FCEBEA
    }
  
    .sm\:hover\:border-orange-darkest:hover {
      border-color: #462A16
    }
  
    .sm\:hover\:border-orange-darker:hover {
      border-color: #613B1F
    }
  
    .sm\:hover\:border-orange-dark:hover {
      border-color: #DE751F
    }
  
    .sm\:hover\:border-orange-light:hover {
      border-color: #FAAD63
    }
  
    .sm\:hover\:border-orange-lighter:hover {
      border-color: #FCD9B6
    }
  
    .sm\:hover\:border-orange-lightest:hover {
      border-color: #FFF5EB
    }
  
    .sm\:hover\:border-yellow-darkest:hover {
      border-color: #453411
    }
  
    .sm\:hover\:border-yellow-darker:hover {
      border-color: #684F1D
    }
  
    .sm\:hover\:border-yellow-dark:hover {
      border-color: #F2D024
    }
  
    .sm\:hover\:border-yellow-light:hover {
      border-color: #FFF382
    }
  
    .sm\:hover\:border-yellow-lighter:hover {
      border-color: #FFF9C2
    }
  
    .sm\:hover\:border-yellow-lightest:hover {
      border-color: #FCFBEB
    }
  
    .sm\:hover\:border-green-darkest:hover {
      border-color: #0F2F21
    }
  
    .sm\:hover\:border-green-darker:hover {
      border-color: #1A4731
    }
  
    .sm\:hover\:border-green-dark:hover {
      border-color: #1F9D55
    }
  
    .sm\:hover\:border-green-light:hover {
      border-color: #51D88A
    }
  
    .sm\:hover\:border-green-lighter:hover {
      border-color: #A2F5BF
    }
  
    .sm\:hover\:border-green-lightest:hover {
      border-color: #E3FCEC
    }
  
    .sm\:hover\:border-teal-darkest:hover {
      border-color: #0D3331
    }
  
    .sm\:hover\:border-teal-darker:hover {
      border-color: #20504F
    }
  
    .sm\:hover\:border-teal-dark:hover {
      border-color: #38A89D
    }
  
    .sm\:hover\:border-teal-light:hover {
      border-color: #64D5CA
    }
  
    .sm\:hover\:border-teal-lighter:hover {
      border-color: #A0F0ED
    }
  
    .sm\:hover\:border-teal-lightest:hover {
      border-color: #E8FFFE
    }
  
    .sm\:hover\:border-blue-darkest:hover {
      border-color: #12283A
    }
  
    .sm\:hover\:border-blue-darker:hover {
      border-color: #1C3D5A
    }
  
    .sm\:hover\:border-blue-dark:hover {
      border-color: #2779BD
    }
  
    .sm\:hover\:border-blue-light:hover {
      border-color: #6CB2EB
    }
  
    .sm\:hover\:border-blue-lighter:hover {
      border-color: #BCDEFA
    }
  
    .sm\:hover\:border-blue-lightest:hover {
      border-color: #EFF8FF
    }
  
    .sm\:hover\:border-indigo-darkest:hover {
      border-color: #191E38
    }
  
    .sm\:hover\:border-indigo-darker:hover {
      border-color: #2F365F
    }
  
    .sm\:hover\:border-indigo-dark:hover {
      border-color: #5661B3
    }
  
    .sm\:hover\:border-indigo-light:hover {
      border-color: #7886D7
    }
  
    .sm\:hover\:border-indigo-lighter:hover {
      border-color: #B2B7FF
    }
  
    .sm\:hover\:border-indigo-lightest:hover {
      border-color: #E6E8FF
    }
  
    .sm\:hover\:border-purple-darkest:hover {
      border-color: #21183C
    }
  
    .sm\:hover\:border-purple-darker:hover {
      border-color: #382B5F
    }
  
    .sm\:hover\:border-purple-dark:hover {
      border-color: #794ACF
    }
  
    .sm\:hover\:border-purple-light:hover {
      border-color: #A779E9
    }
  
    .sm\:hover\:border-purple-lighter:hover {
      border-color: #D6BBFC
    }
  
    .sm\:hover\:border-purple-lightest:hover {
      border-color: #F3EBFF
    }
  
    .sm\:hover\:border-pink-darkest:hover {
      border-color: #451225
    }
  
    .sm\:hover\:border-pink-darker:hover {
      border-color: #6F213F
    }
  
    .sm\:hover\:border-pink-dark:hover {
      border-color: #EB5286
    }
  
    .sm\:hover\:border-pink-light:hover {
      border-color: #FA7EA8
    }
  
    .sm\:hover\:border-pink-lighter:hover {
      border-color: #FFBBCA
    }
  
    .sm\:hover\:border-pink-lightest:hover {
      border-color: #FFEBEF
    }
  
    .sm\:focus\:border-transparent:focus {
      border-color: transparent
    }
  
    .sm\:focus\:border-black:focus {
      border-color: #22292F
    }
  
    .sm\:focus\:border-white:focus {
      border-color: #FFFFFF
    }
  
    .sm\:focus\:border-gray-100:focus {
      border-color: #f7fafc
    }
  
    .sm\:focus\:border-gray-200:focus {
      border-color: #edf2f7
    }
  
    .sm\:focus\:border-gray-300:focus {
      border-color: #e2e8f0
    }
  
    .sm\:focus\:border-gray-400:focus {
      border-color: #cbd5e0
    }
  
    .sm\:focus\:border-gray-500:focus {
      border-color: #a0aec0
    }
  
    .sm\:focus\:border-gray-600:focus {
      border-color: #718096
    }
  
    .sm\:focus\:border-gray-700:focus {
      border-color: #4a5568
    }
  
    .sm\:focus\:border-gray-800:focus {
      border-color: #2d3748
    }
  
    .sm\:focus\:border-gray-900:focus {
      border-color: #1a202c
    }
  
    .sm\:focus\:border-red:focus {
      border-color: #E3342F
    }
  
    .sm\:focus\:border-orange:focus {
      border-color: #F6993F
    }
  
    .sm\:focus\:border-yellow:focus {
      border-color: #FFED4A
    }
  
    .sm\:focus\:border-green:focus {
      border-color: #38C172
    }
  
    .sm\:focus\:border-teal:focus {
      border-color: #4DC0B5
    }
  
    .sm\:focus\:border-blue:focus {
      border-color: #3490DC
    }
  
    .sm\:focus\:border-indigo:focus {
      border-color: #6574CD
    }
  
    .sm\:focus\:border-purple:focus {
      border-color: #9561E2
    }
  
    .sm\:focus\:border-pink:focus {
      border-color: #F66D9B
    }
  
    .sm\:focus\:border-grey-darkest:focus {
      border-color: #3D4852
    }
  
    .sm\:focus\:border-grey-darker:focus {
      border-color: #606F7B
    }
  
    .sm\:focus\:border-grey-dark:focus {
      border-color: #8795A1
    }
  
    .sm\:focus\:border-grey:focus {
      border-color: #B8C2CC
    }
  
    .sm\:focus\:border-grey-light:focus {
      border-color: #DAE1E7
    }
  
    .sm\:focus\:border-grey-lighter:focus {
      border-color: #F1F5F8
    }
  
    .sm\:focus\:border-grey-lightest:focus {
      border-color: #F8FAFC
    }
  
    .sm\:focus\:border-red-darkest:focus {
      border-color: #3B0D0C
    }
  
    .sm\:focus\:border-red-darker:focus {
      border-color: #621B18
    }
  
    .sm\:focus\:border-red-dark:focus {
      border-color: #CC1F1A
    }
  
    .sm\:focus\:border-red-light:focus {
      border-color: #EF5753
    }
  
    .sm\:focus\:border-red-lighter:focus {
      border-color: #F9ACAA
    }
  
    .sm\:focus\:border-red-lightest:focus {
      border-color: #FCEBEA
    }
  
    .sm\:focus\:border-orange-darkest:focus {
      border-color: #462A16
    }
  
    .sm\:focus\:border-orange-darker:focus {
      border-color: #613B1F
    }
  
    .sm\:focus\:border-orange-dark:focus {
      border-color: #DE751F
    }
  
    .sm\:focus\:border-orange-light:focus {
      border-color: #FAAD63
    }
  
    .sm\:focus\:border-orange-lighter:focus {
      border-color: #FCD9B6
    }
  
    .sm\:focus\:border-orange-lightest:focus {
      border-color: #FFF5EB
    }
  
    .sm\:focus\:border-yellow-darkest:focus {
      border-color: #453411
    }
  
    .sm\:focus\:border-yellow-darker:focus {
      border-color: #684F1D
    }
  
    .sm\:focus\:border-yellow-dark:focus {
      border-color: #F2D024
    }
  
    .sm\:focus\:border-yellow-light:focus {
      border-color: #FFF382
    }
  
    .sm\:focus\:border-yellow-lighter:focus {
      border-color: #FFF9C2
    }
  
    .sm\:focus\:border-yellow-lightest:focus {
      border-color: #FCFBEB
    }
  
    .sm\:focus\:border-green-darkest:focus {
      border-color: #0F2F21
    }
  
    .sm\:focus\:border-green-darker:focus {
      border-color: #1A4731
    }
  
    .sm\:focus\:border-green-dark:focus {
      border-color: #1F9D55
    }
  
    .sm\:focus\:border-green-light:focus {
      border-color: #51D88A
    }
  
    .sm\:focus\:border-green-lighter:focus {
      border-color: #A2F5BF
    }
  
    .sm\:focus\:border-green-lightest:focus {
      border-color: #E3FCEC
    }
  
    .sm\:focus\:border-teal-darkest:focus {
      border-color: #0D3331
    }
  
    .sm\:focus\:border-teal-darker:focus {
      border-color: #20504F
    }
  
    .sm\:focus\:border-teal-dark:focus {
      border-color: #38A89D
    }
  
    .sm\:focus\:border-teal-light:focus {
      border-color: #64D5CA
    }
  
    .sm\:focus\:border-teal-lighter:focus {
      border-color: #A0F0ED
    }
  
    .sm\:focus\:border-teal-lightest:focus {
      border-color: #E8FFFE
    }
  
    .sm\:focus\:border-blue-darkest:focus {
      border-color: #12283A
    }
  
    .sm\:focus\:border-blue-darker:focus {
      border-color: #1C3D5A
    }
  
    .sm\:focus\:border-blue-dark:focus {
      border-color: #2779BD
    }
  
    .sm\:focus\:border-blue-light:focus {
      border-color: #6CB2EB
    }
  
    .sm\:focus\:border-blue-lighter:focus {
      border-color: #BCDEFA
    }
  
    .sm\:focus\:border-blue-lightest:focus {
      border-color: #EFF8FF
    }
  
    .sm\:focus\:border-indigo-darkest:focus {
      border-color: #191E38
    }
  
    .sm\:focus\:border-indigo-darker:focus {
      border-color: #2F365F
    }
  
    .sm\:focus\:border-indigo-dark:focus {
      border-color: #5661B3
    }
  
    .sm\:focus\:border-indigo-light:focus {
      border-color: #7886D7
    }
  
    .sm\:focus\:border-indigo-lighter:focus {
      border-color: #B2B7FF
    }
  
    .sm\:focus\:border-indigo-lightest:focus {
      border-color: #E6E8FF
    }
  
    .sm\:focus\:border-purple-darkest:focus {
      border-color: #21183C
    }
  
    .sm\:focus\:border-purple-darker:focus {
      border-color: #382B5F
    }
  
    .sm\:focus\:border-purple-dark:focus {
      border-color: #794ACF
    }
  
    .sm\:focus\:border-purple-light:focus {
      border-color: #A779E9
    }
  
    .sm\:focus\:border-purple-lighter:focus {
      border-color: #D6BBFC
    }
  
    .sm\:focus\:border-purple-lightest:focus {
      border-color: #F3EBFF
    }
  
    .sm\:focus\:border-pink-darkest:focus {
      border-color: #451225
    }
  
    .sm\:focus\:border-pink-darker:focus {
      border-color: #6F213F
    }
  
    .sm\:focus\:border-pink-dark:focus {
      border-color: #EB5286
    }
  
    .sm\:focus\:border-pink-light:focus {
      border-color: #FA7EA8
    }
  
    .sm\:focus\:border-pink-lighter:focus {
      border-color: #FFBBCA
    }
  
    .sm\:focus\:border-pink-lightest:focus {
      border-color: #FFEBEF
    }
  
    .sm\:rounded-2 {
      border-radius: .2rem
    }
  
    .sm\:rounded-4 {
      border-radius: .4rem
    }
  
    .sm\:rounded-6 {
      border-radius: .6rem
    }
  
    .sm\:rounded-8 {
      border-radius: .8rem
    }
  
    .sm\:rounded-12 {
      border-radius: 1.2rem
    }
  
    .sm\:rounded-16 {
      border-radius: 1.6rem
    }
  
    .sm\:rounded-20 {
      border-radius: 2rem
    }
  
    .sm\:rounded-24 {
      border-radius: 2.4rem
    }
  
    .sm\:rounded-28 {
      border-radius: 2.8rem
    }
  
    .sm\:rounded-32 {
      border-radius: 3.2rem
    }
  
    .sm\:rounded-none {
      border-radius: 0
    }
  
    .sm\:rounded-sm {
      border-radius: .2rem
    }
  
    .sm\:rounded {
      border-radius: .4rem
    }
  
    .sm\:rounded-lg {
      border-radius: .8rem
    }
  
    .sm\:rounded-full {
      border-radius: 9999px
    }
  
    .sm\:rounded-t-2 {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .sm\:rounded-r-2 {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .sm\:rounded-b-2 {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-l-2 {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-t-4 {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .sm\:rounded-r-4 {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .sm\:rounded-b-4 {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-l-4 {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-t-6 {
      border-top-left-radius: .6rem;
      border-top-right-radius: .6rem
    }
  
    .sm\:rounded-r-6 {
      border-top-right-radius: .6rem;
      border-bottom-right-radius: .6rem
    }
  
    .sm\:rounded-b-6 {
      border-bottom-right-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .sm\:rounded-l-6 {
      border-top-left-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .sm\:rounded-t-8 {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .sm\:rounded-r-8 {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .sm\:rounded-b-8 {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-l-8 {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-t-12 {
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem
    }
  
    .sm\:rounded-r-12 {
      border-top-right-radius: 1.2rem;
      border-bottom-right-radius: 1.2rem
    }
  
    .sm\:rounded-b-12 {
      border-bottom-right-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .sm\:rounded-l-12 {
      border-top-left-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .sm\:rounded-t-16 {
      border-top-left-radius: 1.6rem;
      border-top-right-radius: 1.6rem
    }
  
    .sm\:rounded-r-16 {
      border-top-right-radius: 1.6rem;
      border-bottom-right-radius: 1.6rem
    }
  
    .sm\:rounded-b-16 {
      border-bottom-right-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .sm\:rounded-l-16 {
      border-top-left-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .sm\:rounded-t-20 {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem
    }
  
    .sm\:rounded-r-20 {
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem
    }
  
    .sm\:rounded-b-20 {
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .sm\:rounded-l-20 {
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .sm\:rounded-t-24 {
      border-top-left-radius: 2.4rem;
      border-top-right-radius: 2.4rem
    }
  
    .sm\:rounded-r-24 {
      border-top-right-radius: 2.4rem;
      border-bottom-right-radius: 2.4rem
    }
  
    .sm\:rounded-b-24 {
      border-bottom-right-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .sm\:rounded-l-24 {
      border-top-left-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .sm\:rounded-t-28 {
      border-top-left-radius: 2.8rem;
      border-top-right-radius: 2.8rem
    }
  
    .sm\:rounded-r-28 {
      border-top-right-radius: 2.8rem;
      border-bottom-right-radius: 2.8rem
    }
  
    .sm\:rounded-b-28 {
      border-bottom-right-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .sm\:rounded-l-28 {
      border-top-left-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .sm\:rounded-t-32 {
      border-top-left-radius: 3.2rem;
      border-top-right-radius: 3.2rem
    }
  
    .sm\:rounded-r-32 {
      border-top-right-radius: 3.2rem;
      border-bottom-right-radius: 3.2rem
    }
  
    .sm\:rounded-b-32 {
      border-bottom-right-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .sm\:rounded-l-32 {
      border-top-left-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .sm\:rounded-t-none {
      border-top-left-radius: 0;
      border-top-right-radius: 0
    }
  
    .sm\:rounded-r-none {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0
    }
  
    .sm\:rounded-b-none {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .sm\:rounded-l-none {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .sm\:rounded-t-sm {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .sm\:rounded-r-sm {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .sm\:rounded-b-sm {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-l-sm {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-t {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .sm\:rounded-r {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .sm\:rounded-b {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-l {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-t-lg {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .sm\:rounded-r-lg {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .sm\:rounded-b-lg {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-l-lg {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-t-full {
      border-top-left-radius: 9999px;
      border-top-right-radius: 9999px
    }
  
    .sm\:rounded-r-full {
      border-top-right-radius: 9999px;
      border-bottom-right-radius: 9999px
    }
  
    .sm\:rounded-b-full {
      border-bottom-right-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .sm\:rounded-l-full {
      border-top-left-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .sm\:rounded-tl-2 {
      border-top-left-radius: .2rem
    }
  
    .sm\:rounded-tr-2 {
      border-top-right-radius: .2rem
    }
  
    .sm\:rounded-br-2 {
      border-bottom-right-radius: .2rem
    }
  
    .sm\:rounded-bl-2 {
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-tl-4 {
      border-top-left-radius: .4rem
    }
  
    .sm\:rounded-tr-4 {
      border-top-right-radius: .4rem
    }
  
    .sm\:rounded-br-4 {
      border-bottom-right-radius: .4rem
    }
  
    .sm\:rounded-bl-4 {
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-tl-6 {
      border-top-left-radius: .6rem
    }
  
    .sm\:rounded-tr-6 {
      border-top-right-radius: .6rem
    }
  
    .sm\:rounded-br-6 {
      border-bottom-right-radius: .6rem
    }
  
    .sm\:rounded-bl-6 {
      border-bottom-left-radius: .6rem
    }
  
    .sm\:rounded-tl-8 {
      border-top-left-radius: .8rem
    }
  
    .sm\:rounded-tr-8 {
      border-top-right-radius: .8rem
    }
  
    .sm\:rounded-br-8 {
      border-bottom-right-radius: .8rem
    }
  
    .sm\:rounded-bl-8 {
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-tl-12 {
      border-top-left-radius: 1.2rem
    }
  
    .sm\:rounded-tr-12 {
      border-top-right-radius: 1.2rem
    }
  
    .sm\:rounded-br-12 {
      border-bottom-right-radius: 1.2rem
    }
  
    .sm\:rounded-bl-12 {
      border-bottom-left-radius: 1.2rem
    }
  
    .sm\:rounded-tl-16 {
      border-top-left-radius: 1.6rem
    }
  
    .sm\:rounded-tr-16 {
      border-top-right-radius: 1.6rem
    }
  
    .sm\:rounded-br-16 {
      border-bottom-right-radius: 1.6rem
    }
  
    .sm\:rounded-bl-16 {
      border-bottom-left-radius: 1.6rem
    }
  
    .sm\:rounded-tl-20 {
      border-top-left-radius: 2rem
    }
  
    .sm\:rounded-tr-20 {
      border-top-right-radius: 2rem
    }
  
    .sm\:rounded-br-20 {
      border-bottom-right-radius: 2rem
    }
  
    .sm\:rounded-bl-20 {
      border-bottom-left-radius: 2rem
    }
  
    .sm\:rounded-tl-24 {
      border-top-left-radius: 2.4rem
    }
  
    .sm\:rounded-tr-24 {
      border-top-right-radius: 2.4rem
    }
  
    .sm\:rounded-br-24 {
      border-bottom-right-radius: 2.4rem
    }
  
    .sm\:rounded-bl-24 {
      border-bottom-left-radius: 2.4rem
    }
  
    .sm\:rounded-tl-28 {
      border-top-left-radius: 2.8rem
    }
  
    .sm\:rounded-tr-28 {
      border-top-right-radius: 2.8rem
    }
  
    .sm\:rounded-br-28 {
      border-bottom-right-radius: 2.8rem
    }
  
    .sm\:rounded-bl-28 {
      border-bottom-left-radius: 2.8rem
    }
  
    .sm\:rounded-tl-32 {
      border-top-left-radius: 3.2rem
    }
  
    .sm\:rounded-tr-32 {
      border-top-right-radius: 3.2rem
    }
  
    .sm\:rounded-br-32 {
      border-bottom-right-radius: 3.2rem
    }
  
    .sm\:rounded-bl-32 {
      border-bottom-left-radius: 3.2rem
    }
  
    .sm\:rounded-tl-none {
      border-top-left-radius: 0
    }
  
    .sm\:rounded-tr-none {
      border-top-right-radius: 0
    }
  
    .sm\:rounded-br-none {
      border-bottom-right-radius: 0
    }
  
    .sm\:rounded-bl-none {
      border-bottom-left-radius: 0
    }
  
    .sm\:rounded-tl-sm {
      border-top-left-radius: .2rem
    }
  
    .sm\:rounded-tr-sm {
      border-top-right-radius: .2rem
    }
  
    .sm\:rounded-br-sm {
      border-bottom-right-radius: .2rem
    }
  
    .sm\:rounded-bl-sm {
      border-bottom-left-radius: .2rem
    }
  
    .sm\:rounded-tl {
      border-top-left-radius: .4rem
    }
  
    .sm\:rounded-tr {
      border-top-right-radius: .4rem
    }
  
    .sm\:rounded-br {
      border-bottom-right-radius: .4rem
    }
  
    .sm\:rounded-bl {
      border-bottom-left-radius: .4rem
    }
  
    .sm\:rounded-tl-lg {
      border-top-left-radius: .8rem
    }
  
    .sm\:rounded-tr-lg {
      border-top-right-radius: .8rem
    }
  
    .sm\:rounded-br-lg {
      border-bottom-right-radius: .8rem
    }
  
    .sm\:rounded-bl-lg {
      border-bottom-left-radius: .8rem
    }
  
    .sm\:rounded-tl-full {
      border-top-left-radius: 9999px
    }
  
    .sm\:rounded-tr-full {
      border-top-right-radius: 9999px
    }
  
    .sm\:rounded-br-full {
      border-bottom-right-radius: 9999px
    }
  
    .sm\:rounded-bl-full {
      border-bottom-left-radius: 9999px
    }
  
    .sm\:border-solid {
      border-style: solid
    }
  
    .sm\:border-dashed {
      border-style: dashed
    }
  
    .sm\:border-dotted {
      border-style: dotted
    }
  
    .sm\:border-none {
      border-style: none
    }
  
    .sm\:border-0 {
      border-width: 0
    }
  
    .sm\:border-1 {
      border-width: 1px
    }
  
    .sm\:border-2 {
      border-width: 2px
    }
  
    .sm\:border-3 {
      border-width: 3px
    }
  
    .sm\:border-4 {
      border-width: 4px
    }
  
    .sm\:border-8 {
      border-width: 8px
    }
  
    .sm\:border {
      border-width: 1px
    }
  
    .sm\:border-t-0 {
      border-top-width: 0
    }
  
    .sm\:border-r-0 {
      border-right-width: 0
    }
  
    .sm\:border-b-0 {
      border-bottom-width: 0
    }
  
    .sm\:border-l-0 {
      border-left-width: 0
    }
  
    .sm\:border-t-1 {
      border-top-width: 1px
    }
  
    .sm\:border-r-1 {
      border-right-width: 1px
    }
  
    .sm\:border-b-1 {
      border-bottom-width: 1px
    }
  
    .sm\:border-l-1 {
      border-left-width: 1px
    }
  
    .sm\:border-t-2 {
      border-top-width: 2px
    }
  
    .sm\:border-r-2 {
      border-right-width: 2px
    }
  
    .sm\:border-b-2 {
      border-bottom-width: 2px
    }
  
    .sm\:border-l-2 {
      border-left-width: 2px
    }
  
    .sm\:border-t-3 {
      border-top-width: 3px
    }
  
    .sm\:border-r-3 {
      border-right-width: 3px
    }
  
    .sm\:border-b-3 {
      border-bottom-width: 3px
    }
  
    .sm\:border-l-3 {
      border-left-width: 3px
    }
  
    .sm\:border-t-4 {
      border-top-width: 4px
    }
  
    .sm\:border-r-4 {
      border-right-width: 4px
    }
  
    .sm\:border-b-4 {
      border-bottom-width: 4px
    }
  
    .sm\:border-l-4 {
      border-left-width: 4px
    }
  
    .sm\:border-t-8 {
      border-top-width: 8px
    }
  
    .sm\:border-r-8 {
      border-right-width: 8px
    }
  
    .sm\:border-b-8 {
      border-bottom-width: 8px
    }
  
    .sm\:border-l-8 {
      border-left-width: 8px
    }
  
    .sm\:border-t {
      border-top-width: 1px
    }
  
    .sm\:border-r {
      border-right-width: 1px
    }
  
    .sm\:border-b {
      border-bottom-width: 1px
    }
  
    .sm\:border-l {
      border-left-width: 1px
    }
  
    .sm\:cursor-auto {
      cursor: auto
    }
  
    .sm\:cursor-default {
      cursor: default
    }
  
    .sm\:cursor-pointer {
      cursor: pointer
    }
  
    .sm\:cursor-wait {
      cursor: wait
    }
  
    .sm\:cursor-text {
      cursor: text
    }
  
    .sm\:cursor-move {
      cursor: move
    }
  
    .sm\:cursor-not-allowed {
      cursor: not-allowed
    }
  
    .sm\:block {
      display: block
    }
  
    .sm\:inline-block {
      display: inline-block
    }
  
    .sm\:inline {
      display: inline
    }
  
    .sm\:flex {
      display: flex
    }
  
    .sm\:inline-flex {
      display: inline-flex
    }
  
    .sm\:table {
      display: table
    }
  
    .sm\:table-row {
      display: table-row
    }
  
    .sm\:table-cell {
      display: table-cell
    }
  
    .sm\:hidden {
      display: none
    }
  
    .sm\:hover\:block:hover {
      display: block
    }
  
    .sm\:hover\:inline-block:hover {
      display: inline-block
    }
  
    .sm\:hover\:inline:hover {
      display: inline
    }
  
    .sm\:hover\:flex:hover {
      display: flex
    }
  
    .sm\:hover\:inline-flex:hover {
      display: inline-flex
    }
  
    .sm\:hover\:table:hover {
      display: table
    }
  
    .sm\:hover\:table-row:hover {
      display: table-row
    }
  
    .sm\:hover\:table-cell:hover {
      display: table-cell
    }
  
    .sm\:hover\:hidden:hover {
      display: none
    }
  
    .sm\:focus\:block:focus {
      display: block
    }
  
    .sm\:focus\:inline-block:focus {
      display: inline-block
    }
  
    .sm\:focus\:inline:focus {
      display: inline
    }
  
    .sm\:focus\:flex:focus {
      display: flex
    }
  
    .sm\:focus\:inline-flex:focus {
      display: inline-flex
    }
  
    .sm\:focus\:table:focus {
      display: table
    }
  
    .sm\:focus\:table-row:focus {
      display: table-row
    }
  
    .sm\:focus\:table-cell:focus {
      display: table-cell
    }
  
    .sm\:focus\:hidden:focus {
      display: none
    }
  
    .sm\:flex-row {
      flex-direction: row
    }
  
    .sm\:flex-row-reverse {
      flex-direction: row-reverse
    }
  
    .sm\:flex-col {
      flex-direction: column
    }
  
    .sm\:flex-col-reverse {
      flex-direction: column-reverse
    }
  
    .sm\:flex-wrap {
      flex-wrap: wrap
    }
  
    .sm\:flex-wrap-reverse {
      flex-wrap: wrap-reverse
    }
  
    .sm\:flex-no-wrap {
      flex-wrap: nowrap
    }
  
    .sm\:items-start {
      align-items: flex-start
    }
  
    .sm\:items-end {
      align-items: flex-end
    }
  
    .sm\:items-center {
      align-items: center
    }
  
    .sm\:items-baseline {
      align-items: baseline
    }
  
    .sm\:items-stretch {
      align-items: stretch
    }
  
    .sm\:self-auto {
      align-self: auto
    }
  
    .sm\:self-start {
      align-self: flex-start
    }
  
    .sm\:self-end {
      align-self: flex-end
    }
  
    .sm\:self-center {
      align-self: center
    }
  
    .sm\:self-stretch {
      align-self: stretch
    }
  
    .sm\:justify-start {
      justify-content: flex-start
    }
  
    .sm\:justify-end {
      justify-content: flex-end
    }
  
    .sm\:justify-center {
      justify-content: center
    }
  
    .sm\:justify-between {
      justify-content: space-between
    }
  
    .sm\:justify-around {
      justify-content: space-around
    }
  
    .sm\:content-center {
      align-content: center
    }
  
    .sm\:content-start {
      align-content: flex-start
    }
  
    .sm\:content-end {
      align-content: flex-end
    }
  
    .sm\:content-between {
      align-content: space-between
    }
  
    .sm\:content-around {
      align-content: space-around
    }
  
    .sm\:flex-1 {
      flex: 1 1
    }
  
    .sm\:flex-auto {
      flex: 1 1 auto
    }
  
    .sm\:flex-initial {
      flex: 0 1 auto
    }
  
    .sm\:flex-none {
      flex: none
    }
  
    .sm\:flex-grow-0 {
      flex-grow: 0
    }
  
    .sm\:flex-grow {
      flex-grow: 1
    }
  
    .sm\:flex-shrink-0 {
      flex-shrink: 0
    }
  
    .sm\:flex-shrink {
      flex-shrink: 1
    }
  
    .sm\:order-1 {
      order: 1
    }
  
    .sm\:order-2 {
      order: 2
    }
  
    .sm\:order-3 {
      order: 3
    }
  
    .sm\:order-4 {
      order: 4
    }
  
    .sm\:order-5 {
      order: 5
    }
  
    .sm\:order-6 {
      order: 6
    }
  
    .sm\:order-7 {
      order: 7
    }
  
    .sm\:order-8 {
      order: 8
    }
  
    .sm\:order-9 {
      order: 9
    }
  
    .sm\:order-10 {
      order: 10
    }
  
    .sm\:order-11 {
      order: 11
    }
  
    .sm\:order-12 {
      order: 12
    }
  
    .sm\:order-first {
      order: -9999
    }
  
    .sm\:order-last {
      order: 9999
    }
  
    .sm\:order-none {
      order: 0
    }
  
    .sm\:float-right {
      float: right
    }
  
    .sm\:float-left {
      float: left
    }
  
    .sm\:float-none {
      float: none
    }
  
    .sm\:clearfix:after {
      content: "";
      display: table;
      clear: both
    }
  
    .sm\:font-sans {
      font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
    }
  
    .sm\:font-serif {
      font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
    }
  
    .sm\:font-mono {
      font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
    }
  
    .sm\:font-100 {
      font-weight: 100
    }
  
    .sm\:font-200 {
      font-weight: 200
    }
  
    .sm\:font-300 {
      font-weight: 300
    }
  
    .sm\:font-400 {
      font-weight: 400
    }
  
    .sm\:font-500 {
      font-weight: 500
    }
  
    .sm\:font-600 {
      font-weight: 600
    }
  
    .sm\:font-700 {
      font-weight: 700
    }
  
    .sm\:font-800 {
      font-weight: 800
    }
  
    .sm\:font-900 {
      font-weight: 900
    }
  
    .sm\:font-hairline {
      font-weight: 100
    }
  
    .sm\:font-thin {
      font-weight: 200
    }
  
    .sm\:font-light {
      font-weight: 300
    }
  
    .sm\:font-normal {
      font-weight: 400
    }
  
    .sm\:font-medium {
      font-weight: 500
    }
  
    .sm\:font-semibold {
      font-weight: 600
    }
  
    .sm\:font-bold {
      font-weight: 700
    }
  
    .sm\:font-extrabold {
      font-weight: 800
    }
  
    .sm\:font-black {
      font-weight: 900
    }
  
    .sm\:hover\:font-100:hover {
      font-weight: 100
    }
  
    .sm\:hover\:font-200:hover {
      font-weight: 200
    }
  
    .sm\:hover\:font-300:hover {
      font-weight: 300
    }
  
    .sm\:hover\:font-400:hover {
      font-weight: 400
    }
  
    .sm\:hover\:font-500:hover {
      font-weight: 500
    }
  
    .sm\:hover\:font-600:hover {
      font-weight: 600
    }
  
    .sm\:hover\:font-700:hover {
      font-weight: 700
    }
  
    .sm\:hover\:font-800:hover {
      font-weight: 800
    }
  
    .sm\:hover\:font-900:hover {
      font-weight: 900
    }
  
    .sm\:hover\:font-hairline:hover {
      font-weight: 100
    }
  
    .sm\:hover\:font-thin:hover {
      font-weight: 200
    }
  
    .sm\:hover\:font-light:hover {
      font-weight: 300
    }
  
    .sm\:hover\:font-normal:hover {
      font-weight: 400
    }
  
    .sm\:hover\:font-medium:hover {
      font-weight: 500
    }
  
    .sm\:hover\:font-semibold:hover {
      font-weight: 600
    }
  
    .sm\:hover\:font-bold:hover {
      font-weight: 700
    }
  
    .sm\:hover\:font-extrabold:hover {
      font-weight: 800
    }
  
    .sm\:hover\:font-black:hover {
      font-weight: 900
    }
  
    .sm\:focus\:font-100:focus {
      font-weight: 100
    }
  
    .sm\:focus\:font-200:focus {
      font-weight: 200
    }
  
    .sm\:focus\:font-300:focus {
      font-weight: 300
    }
  
    .sm\:focus\:font-400:focus {
      font-weight: 400
    }
  
    .sm\:focus\:font-500:focus {
      font-weight: 500
    }
  
    .sm\:focus\:font-600:focus {
      font-weight: 600
    }
  
    .sm\:focus\:font-700:focus {
      font-weight: 700
    }
  
    .sm\:focus\:font-800:focus {
      font-weight: 800
    }
  
    .sm\:focus\:font-900:focus {
      font-weight: 900
    }
  
    .sm\:focus\:font-hairline:focus {
      font-weight: 100
    }
  
    .sm\:focus\:font-thin:focus {
      font-weight: 200
    }
  
    .sm\:focus\:font-light:focus {
      font-weight: 300
    }
  
    .sm\:focus\:font-normal:focus {
      font-weight: 400
    }
  
    .sm\:focus\:font-medium:focus {
      font-weight: 500
    }
  
    .sm\:focus\:font-semibold:focus {
      font-weight: 600
    }
  
    .sm\:focus\:font-bold:focus {
      font-weight: 700
    }
  
    .sm\:focus\:font-extrabold:focus {
      font-weight: 800
    }
  
    .sm\:focus\:font-black:focus {
      font-weight: 900
    }
  
    .sm\:h-0 {
      height: 0
    }
  
    .sm\:h-1 {
      height: 0.25rem
    }
  
    .sm\:h-2 {
      height: 0.5rem
    }
  
    .sm\:h-3 {
      height: 0.75rem
    }
  
    .sm\:h-4 {
      height: 0.4rem
    }
  
    .sm\:h-5 {
      height: 1.25rem
    }
  
    .sm\:h-6 {
      height: 0.6rem
    }
  
    .sm\:h-8 {
      height: 0.8rem
    }
  
    .sm\:h-10 {
      height: 2.5rem
    }
  
    .sm\:h-12 {
      height: 1.2rem
    }
  
    .sm\:h-16 {
      height: 1.6rem
    }
  
    .sm\:h-20 {
      height: 2rem
    }
  
    .sm\:h-24 {
      height: 2.4rem
    }
  
    .sm\:h-28 {
      height: 2.8rem
    }
  
    .sm\:h-32 {
      height: 3.2rem
    }
  
    .sm\:h-36 {
      height: 3.6rem
    }
  
    .sm\:h-40 {
      height: 4rem
    }
  
    .sm\:h-44 {
      height: 4.4rem
    }
  
    .sm\:h-48 {
      height: 4.8rem
    }
  
    .sm\:h-52 {
      height: 5.2rem
    }
  
    .sm\:h-56 {
      height: 5.6rem
    }
  
    .sm\:h-60 {
      height: 6rem
    }
  
    .sm\:h-64 {
      height: 6.4rem
    }
  
    .sm\:h-68 {
      height: 6.8rem
    }
  
    .sm\:h-72 {
      height: 7.2rem
    }
  
    .sm\:h-76 {
      height: 7.6rem
    }
  
    .sm\:h-80 {
      height: 8rem
    }
  
    .sm\:h-84 {
      height: 8.4rem
    }
  
    .sm\:h-88 {
      height: 8.8rem
    }
  
    .sm\:h-92 {
      height: 9.2rem
    }
  
    .sm\:h-96 {
      height: 9.6rem
    }
  
    .sm\:h-128 {
      height: 12.8rem
    }
  
    .sm\:h-136 {
      height: 13.6rem
    }
  
    .sm\:h-160 {
      height: 16rem
    }
  
    .sm\:h-192 {
      height: 19.2rem
    }
  
    .sm\:h-200 {
      height: 20rem
    }
  
    .sm\:h-208 {
      height: 20.8rem
    }
  
    .sm\:h-216 {
      height: 21.6rem
    }
  
    .sm\:h-224 {
      height: 22.4rem
    }
  
    .sm\:h-256 {
      height: 25.6rem
    }
  
    .sm\:h-288 {
      height: 28.8rem
    }
  
    .sm\:h-320 {
      height: 32rem
    }
  
    .sm\:h-360 {
      height: 36rem
    }
  
    .sm\:h-384 {
      height: 38.4rem
    }
  
    .sm\:h-400 {
      height: 40rem
    }
  
    .sm\:h-512 {
      height: 51.2rem
    }
  
    .sm\:h-640 {
      height: 64rem
    }
  
    .sm\:h-auto {
      height: auto
    }
  
    .sm\:h-px {
      height: 1px
    }
  
    .sm\:h-xs {
      height: 32rem
    }
  
    .sm\:h-sm {
      height: 48rem
    }
  
    .sm\:h-md {
      height: 64rem
    }
  
    .sm\:h-lg {
      height: 80rem
    }
  
    .sm\:h-xl {
      height: 96rem
    }
  
    .sm\:h-2xl {
      height: 112rem
    }
  
    .sm\:h-3xl {
      height: 128rem
    }
  
    .sm\:h-4xl {
      height: 144rem
    }
  
    .sm\:h-5xl {
      height: 160rem
    }
  
    .sm\:h-full {
      height: 100%
    }
  
    .sm\:h-screen {
      height: 100vh
    }
  
    .sm\:leading-none {
      line-height: 1
    }
  
    .sm\:leading-tight {
      line-height: 1.25
    }
  
    .sm\:leading-snug {
      line-height: 1.375
    }
  
    .sm\:leading-normal {
      line-height: 1.5
    }
  
    .sm\:leading-relaxed {
      line-height: 1.625
    }
  
    .sm\:leading-loose {
      line-height: 2
    }
  
    .sm\:list-inside {
      list-style-position: inside
    }
  
    .sm\:list-outside {
      list-style-position: outside
    }
  
    .sm\:list-none {
      list-style-type: none
    }
  
    .sm\:list-disc {
      list-style-type: disc
    }
  
    .sm\:list-decimal {
      list-style-type: decimal
    }
  
    .sm\:m-0 {
      margin: 0
    }
  
    .sm\:m-1 {
      margin: 0.25rem
    }
  
    .sm\:m-2 {
      margin: 0.5rem
    }
  
    .sm\:m-3 {
      margin: 0.75rem
    }
  
    .sm\:m-4 {
      margin: 0.4rem
    }
  
    .sm\:m-5 {
      margin: 1.25rem
    }
  
    .sm\:m-6 {
      margin: 0.6rem
    }
  
    .sm\:m-8 {
      margin: 0.8rem
    }
  
    .sm\:m-10 {
      margin: 2.5rem
    }
  
    .sm\:m-12 {
      margin: 1.2rem
    }
  
    .sm\:m-16 {
      margin: 1.6rem
    }
  
    .sm\:m-20 {
      margin: 2rem
    }
  
    .sm\:m-24 {
      margin: 2.4rem
    }
  
    .sm\:m-28 {
      margin: 2.8rem
    }
  
    .sm\:m-32 {
      margin: 3.2rem
    }
  
    .sm\:m-36 {
      margin: 3.6rem
    }
  
    .sm\:m-40 {
      margin: 4rem
    }
  
    .sm\:m-44 {
      margin: 4.4rem
    }
  
    .sm\:m-48 {
      margin: 4.8rem
    }
  
    .sm\:m-52 {
      margin: 5.2rem
    }
  
    .sm\:m-56 {
      margin: 5.6rem
    }
  
    .sm\:m-60 {
      margin: 6rem
    }
  
    .sm\:m-64 {
      margin: 6.4rem
    }
  
    .sm\:m-68 {
      margin: 6.8rem
    }
  
    .sm\:m-72 {
      margin: 7.2rem
    }
  
    .sm\:m-76 {
      margin: 7.6rem
    }
  
    .sm\:m-80 {
      margin: 8rem
    }
  
    .sm\:m-84 {
      margin: 8.4rem
    }
  
    .sm\:m-88 {
      margin: 8.8rem
    }
  
    .sm\:m-92 {
      margin: 9.2rem
    }
  
    .sm\:m-96 {
      margin: 9.6rem
    }
  
    .sm\:m-128 {
      margin: 12.8rem
    }
  
    .sm\:m-136 {
      margin: 13.6rem
    }
  
    .sm\:m-160 {
      margin: 16rem
    }
  
    .sm\:m-192 {
      margin: 19.2rem
    }
  
    .sm\:m-200 {
      margin: 20rem
    }
  
    .sm\:m-208 {
      margin: 20.8rem
    }
  
    .sm\:m-216 {
      margin: 21.6rem
    }
  
    .sm\:m-224 {
      margin: 22.4rem
    }
  
    .sm\:m-256 {
      margin: 25.6rem
    }
  
    .sm\:m-288 {
      margin: 28.8rem
    }
  
    .sm\:m-320 {
      margin: 32rem
    }
  
    .sm\:m-360 {
      margin: 36rem
    }
  
    .sm\:m-384 {
      margin: 38.4rem
    }
  
    .sm\:m-400 {
      margin: 40rem
    }
  
    .sm\:m-512 {
      margin: 51.2rem
    }
  
    .sm\:m-640 {
      margin: 64rem
    }
  
    .sm\:m-auto {
      margin: auto
    }
  
    .sm\:m-px {
      margin: 1px
    }
  
    .sm\:m-xs {
      margin: 32rem
    }
  
    .sm\:m-sm {
      margin: 48rem
    }
  
    .sm\:m-md {
      margin: 64rem
    }
  
    .sm\:m-lg {
      margin: 80rem
    }
  
    .sm\:m-xl {
      margin: 96rem
    }
  
    .sm\:m-2xl {
      margin: 112rem
    }
  
    .sm\:m-3xl {
      margin: 128rem
    }
  
    .sm\:m-4xl {
      margin: 144rem
    }
  
    .sm\:m-5xl {
      margin: 160rem
    }
  
    .sm\:-m-1 {
      margin: -0.25rem
    }
  
    .sm\:-m-2 {
      margin: -0.5rem
    }
  
    .sm\:-m-3 {
      margin: -0.75rem
    }
  
    .sm\:-m-4 {
      margin: -0.4rem
    }
  
    .sm\:-m-5 {
      margin: -1.25rem
    }
  
    .sm\:-m-6 {
      margin: -0.6rem
    }
  
    .sm\:-m-8 {
      margin: -0.8rem
    }
  
    .sm\:-m-10 {
      margin: -2.5rem
    }
  
    .sm\:-m-12 {
      margin: -1.2rem
    }
  
    .sm\:-m-16 {
      margin: -1.6rem
    }
  
    .sm\:-m-20 {
      margin: -2rem
    }
  
    .sm\:-m-24 {
      margin: -2.4rem
    }
  
    .sm\:-m-28 {
      margin: -2.8rem
    }
  
    .sm\:-m-32 {
      margin: -3.2rem
    }
  
    .sm\:-m-36 {
      margin: -3.6rem
    }
  
    .sm\:-m-40 {
      margin: -4rem
    }
  
    .sm\:-m-44 {
      margin: -4.4rem
    }
  
    .sm\:-m-48 {
      margin: -4.8rem
    }
  
    .sm\:-m-52 {
      margin: -5.2rem
    }
  
    .sm\:-m-56 {
      margin: -5.6rem
    }
  
    .sm\:-m-60 {
      margin: -6rem
    }
  
    .sm\:-m-64 {
      margin: -6.4rem
    }
  
    .sm\:-m-68 {
      margin: -6.8rem
    }
  
    .sm\:-m-72 {
      margin: -7.2rem
    }
  
    .sm\:-m-76 {
      margin: -7.6rem
    }
  
    .sm\:-m-80 {
      margin: -8rem
    }
  
    .sm\:-m-84 {
      margin: -8.4rem
    }
  
    .sm\:-m-88 {
      margin: -8.8rem
    }
  
    .sm\:-m-92 {
      margin: -9.2rem
    }
  
    .sm\:-m-96 {
      margin: -9.6rem
    }
  
    .sm\:-m-128 {
      margin: -12.8rem
    }
  
    .sm\:-m-136 {
      margin: -13.6rem
    }
  
    .sm\:-m-160 {
      margin: -16rem
    }
  
    .sm\:-m-192 {
      margin: -19.2rem
    }
  
    .sm\:-m-200 {
      margin: -20rem
    }
  
    .sm\:-m-208 {
      margin: -20.8rem
    }
  
    .sm\:-m-216 {
      margin: -21.6rem
    }
  
    .sm\:-m-224 {
      margin: -22.4rem
    }
  
    .sm\:-m-256 {
      margin: -25.6rem
    }
  
    .sm\:-m-288 {
      margin: -28.8rem
    }
  
    .sm\:-m-320 {
      margin: -32rem
    }
  
    .sm\:-m-360 {
      margin: -36rem
    }
  
    .sm\:-m-384 {
      margin: -38.4rem
    }
  
    .sm\:-m-400 {
      margin: -40rem
    }
  
    .sm\:-m-512 {
      margin: -51.2rem
    }
  
    .sm\:-m-640 {
      margin: -64rem
    }
  
    .sm\:-m-px {
      margin: -1px
    }
  
    .sm\:-m-xs {
      margin: -32rem
    }
  
    .sm\:-m-sm {
      margin: -48rem
    }
  
    .sm\:-m-md {
      margin: -64rem
    }
  
    .sm\:-m-lg {
      margin: -80rem
    }
  
    .sm\:-m-xl {
      margin: -96rem
    }
  
    .sm\:-m-2xl {
      margin: -112rem
    }
  
    .sm\:-m-3xl {
      margin: -128rem
    }
  
    .sm\:-m-4xl {
      margin: -144rem
    }
  
    .sm\:-m-5xl {
      margin: -160rem
    }
  
    .sm\:-m-auto {
      margin: -auto
    }
  
    .sm\:my-0 {
      margin-top: 0;
      margin-bottom: 0
    }
  
    .sm\:mx-0 {
      margin-left: 0;
      margin-right: 0
    }
  
    .sm\:my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem
    }
  
    .sm\:mx-1 {
      margin-left: 0.25rem;
      margin-right: 0.25rem
    }
  
    .sm\:my-2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem
    }
  
    .sm\:mx-2 {
      margin-left: 0.5rem;
      margin-right: 0.5rem
    }
  
    .sm\:my-3 {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem
    }
  
    .sm\:mx-3 {
      margin-left: 0.75rem;
      margin-right: 0.75rem
    }
  
    .sm\:my-4 {
      margin-top: 0.4rem;
      margin-bottom: 0.4rem
    }
  
    .sm\:mx-4 {
      margin-left: 0.4rem;
      margin-right: 0.4rem
    }
  
    .sm\:my-5 {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem
    }
  
    .sm\:mx-5 {
      margin-left: 1.25rem;
      margin-right: 1.25rem
    }
  
    .sm\:my-6 {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem
    }
  
    .sm\:mx-6 {
      margin-left: 0.6rem;
      margin-right: 0.6rem
    }
  
    .sm\:my-8 {
      margin-top: 0.8rem;
      margin-bottom: 0.8rem
    }
  
    .sm\:mx-8 {
      margin-left: 0.8rem;
      margin-right: 0.8rem
    }
  
    .sm\:my-10 {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem
    }
  
    .sm\:mx-10 {
      margin-left: 2.5rem;
      margin-right: 2.5rem
    }
  
    .sm\:my-12 {
      margin-top: 1.2rem;
      margin-bottom: 1.2rem
    }
  
    .sm\:mx-12 {
      margin-left: 1.2rem;
      margin-right: 1.2rem
    }
  
    .sm\:my-16 {
      margin-top: 1.6rem;
      margin-bottom: 1.6rem
    }
  
    .sm\:mx-16 {
      margin-left: 1.6rem;
      margin-right: 1.6rem
    }
  
    .sm\:my-20 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
  
    .sm\:mx-20 {
      margin-left: 2rem;
      margin-right: 2rem
    }
  
    .sm\:my-24 {
      margin-top: 2.4rem;
      margin-bottom: 2.4rem
    }
  
    .sm\:mx-24 {
      margin-left: 2.4rem;
      margin-right: 2.4rem
    }
  
    .sm\:my-28 {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem
    }
  
    .sm\:mx-28 {
      margin-left: 2.8rem;
      margin-right: 2.8rem
    }
  
    .sm\:my-32 {
      margin-top: 3.2rem;
      margin-bottom: 3.2rem
    }
  
    .sm\:mx-32 {
      margin-left: 3.2rem;
      margin-right: 3.2rem
    }
  
    .sm\:my-36 {
      margin-top: 3.6rem;
      margin-bottom: 3.6rem
    }
  
    .sm\:mx-36 {
      margin-left: 3.6rem;
      margin-right: 3.6rem
    }
  
    .sm\:my-40 {
      margin-top: 4rem;
      margin-bottom: 4rem
    }
  
    .sm\:mx-40 {
      margin-left: 4rem;
      margin-right: 4rem
    }
  
    .sm\:my-44 {
      margin-top: 4.4rem;
      margin-bottom: 4.4rem
    }
  
    .sm\:mx-44 {
      margin-left: 4.4rem;
      margin-right: 4.4rem
    }
  
    .sm\:my-48 {
      margin-top: 4.8rem;
      margin-bottom: 4.8rem
    }
  
    .sm\:mx-48 {
      margin-left: 4.8rem;
      margin-right: 4.8rem
    }
  
    .sm\:my-52 {
      margin-top: 5.2rem;
      margin-bottom: 5.2rem
    }
  
    .sm\:mx-52 {
      margin-left: 5.2rem;
      margin-right: 5.2rem
    }
  
    .sm\:my-56 {
      margin-top: 5.6rem;
      margin-bottom: 5.6rem
    }
  
    .sm\:mx-56 {
      margin-left: 5.6rem;
      margin-right: 5.6rem
    }
  
    .sm\:my-60 {
      margin-top: 6rem;
      margin-bottom: 6rem
    }
  
    .sm\:mx-60 {
      margin-left: 6rem;
      margin-right: 6rem
    }
  
    .sm\:my-64 {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem
    }
  
    .sm\:mx-64 {
      margin-left: 6.4rem;
      margin-right: 6.4rem
    }
  
    .sm\:my-68 {
      margin-top: 6.8rem;
      margin-bottom: 6.8rem
    }
  
    .sm\:mx-68 {
      margin-left: 6.8rem;
      margin-right: 6.8rem
    }
  
    .sm\:my-72 {
      margin-top: 7.2rem;
      margin-bottom: 7.2rem
    }
  
    .sm\:mx-72 {
      margin-left: 7.2rem;
      margin-right: 7.2rem
    }
  
    .sm\:my-76 {
      margin-top: 7.6rem;
      margin-bottom: 7.6rem
    }
  
    .sm\:mx-76 {
      margin-left: 7.6rem;
      margin-right: 7.6rem
    }
  
    .sm\:my-80 {
      margin-top: 8rem;
      margin-bottom: 8rem
    }
  
    .sm\:mx-80 {
      margin-left: 8rem;
      margin-right: 8rem
    }
  
    .sm\:my-84 {
      margin-top: 8.4rem;
      margin-bottom: 8.4rem
    }
  
    .sm\:mx-84 {
      margin-left: 8.4rem;
      margin-right: 8.4rem
    }
  
    .sm\:my-88 {
      margin-top: 8.8rem;
      margin-bottom: 8.8rem
    }
  
    .sm\:mx-88 {
      margin-left: 8.8rem;
      margin-right: 8.8rem
    }
  
    .sm\:my-92 {
      margin-top: 9.2rem;
      margin-bottom: 9.2rem
    }
  
    .sm\:mx-92 {
      margin-left: 9.2rem;
      margin-right: 9.2rem
    }
  
    .sm\:my-96 {
      margin-top: 9.6rem;
      margin-bottom: 9.6rem
    }
  
    .sm\:mx-96 {
      margin-left: 9.6rem;
      margin-right: 9.6rem
    }
  
    .sm\:my-128 {
      margin-top: 12.8rem;
      margin-bottom: 12.8rem
    }
  
    .sm\:mx-128 {
      margin-left: 12.8rem;
      margin-right: 12.8rem
    }
  
    .sm\:my-136 {
      margin-top: 13.6rem;
      margin-bottom: 13.6rem
    }
  
    .sm\:mx-136 {
      margin-left: 13.6rem;
      margin-right: 13.6rem
    }
  
    .sm\:my-160 {
      margin-top: 16rem;
      margin-bottom: 16rem
    }
  
    .sm\:mx-160 {
      margin-left: 16rem;
      margin-right: 16rem
    }
  
    .sm\:my-192 {
      margin-top: 19.2rem;
      margin-bottom: 19.2rem
    }
  
    .sm\:mx-192 {
      margin-left: 19.2rem;
      margin-right: 19.2rem
    }
  
    .sm\:my-200 {
      margin-top: 20rem;
      margin-bottom: 20rem
    }
  
    .sm\:mx-200 {
      margin-left: 20rem;
      margin-right: 20rem
    }
  
    .sm\:my-208 {
      margin-top: 20.8rem;
      margin-bottom: 20.8rem
    }
  
    .sm\:mx-208 {
      margin-left: 20.8rem;
      margin-right: 20.8rem
    }
  
    .sm\:my-216 {
      margin-top: 21.6rem;
      margin-bottom: 21.6rem
    }
  
    .sm\:mx-216 {
      margin-left: 21.6rem;
      margin-right: 21.6rem
    }
  
    .sm\:my-224 {
      margin-top: 22.4rem;
      margin-bottom: 22.4rem
    }
  
    .sm\:mx-224 {
      margin-left: 22.4rem;
      margin-right: 22.4rem
    }
  
    .sm\:my-256 {
      margin-top: 25.6rem;
      margin-bottom: 25.6rem
    }
  
    .sm\:mx-256 {
      margin-left: 25.6rem;
      margin-right: 25.6rem
    }
  
    .sm\:my-288 {
      margin-top: 28.8rem;
      margin-bottom: 28.8rem
    }
  
    .sm\:mx-288 {
      margin-left: 28.8rem;
      margin-right: 28.8rem
    }
  
    .sm\:my-320 {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .sm\:mx-320 {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .sm\:my-360 {
      margin-top: 36rem;
      margin-bottom: 36rem
    }
  
    .sm\:mx-360 {
      margin-left: 36rem;
      margin-right: 36rem
    }
  
    .sm\:my-384 {
      margin-top: 38.4rem;
      margin-bottom: 38.4rem
    }
  
    .sm\:mx-384 {
      margin-left: 38.4rem;
      margin-right: 38.4rem
    }
  
    .sm\:my-400 {
      margin-top: 40rem;
      margin-bottom: 40rem
    }
  
    .sm\:mx-400 {
      margin-left: 40rem;
      margin-right: 40rem
    }
  
    .sm\:my-512 {
      margin-top: 51.2rem;
      margin-bottom: 51.2rem
    }
  
    .sm\:mx-512 {
      margin-left: 51.2rem;
      margin-right: 51.2rem
    }
  
    .sm\:my-640 {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .sm\:mx-640 {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .sm\:my-auto {
      margin-top: auto;
      margin-bottom: auto
    }
  
    .sm\:mx-auto {
      margin-left: auto;
      margin-right: auto
    }
  
    .sm\:my-px {
      margin-top: 1px;
      margin-bottom: 1px
    }
  
    .sm\:mx-px {
      margin-left: 1px;
      margin-right: 1px
    }
  
    .sm\:my-xs {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .sm\:mx-xs {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .sm\:my-sm {
      margin-top: 48rem;
      margin-bottom: 48rem
    }
  
    .sm\:mx-sm {
      margin-left: 48rem;
      margin-right: 48rem
    }
  
    .sm\:my-md {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .sm\:mx-md {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .sm\:my-lg {
      margin-top: 80rem;
      margin-bottom: 80rem
    }
  
    .sm\:mx-lg {
      margin-left: 80rem;
      margin-right: 80rem
    }
  
    .sm\:my-xl {
      margin-top: 96rem;
      margin-bottom: 96rem
    }
  
    .sm\:mx-xl {
      margin-left: 96rem;
      margin-right: 96rem
    }
  
    .sm\:my-2xl {
      margin-top: 112rem;
      margin-bottom: 112rem
    }
  
    .sm\:mx-2xl {
      margin-left: 112rem;
      margin-right: 112rem
    }
  
    .sm\:my-3xl {
      margin-top: 128rem;
      margin-bottom: 128rem
    }
  
    .sm\:mx-3xl {
      margin-left: 128rem;
      margin-right: 128rem
    }
  
    .sm\:my-4xl {
      margin-top: 144rem;
      margin-bottom: 144rem
    }
  
    .sm\:mx-4xl {
      margin-left: 144rem;
      margin-right: 144rem
    }
  
    .sm\:my-5xl {
      margin-top: 160rem;
      margin-bottom: 160rem
    }
  
    .sm\:mx-5xl {
      margin-left: 160rem;
      margin-right: 160rem
    }
  
    .sm\:-my-1 {
      margin-top: -0.25rem;
      margin-bottom: -0.25rem
    }
  
    .sm\:-mx-1 {
      margin-left: -0.25rem;
      margin-right: -0.25rem
    }
  
    .sm\:-my-2 {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem
    }
  
    .sm\:-mx-2 {
      margin-left: -0.5rem;
      margin-right: -0.5rem
    }
  
    .sm\:-my-3 {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem
    }
  
    .sm\:-mx-3 {
      margin-left: -0.75rem;
      margin-right: -0.75rem
    }
  
    .sm\:-my-4 {
      margin-top: -0.4rem;
      margin-bottom: -0.4rem
    }
  
    .sm\:-mx-4 {
      margin-left: -0.4rem;
      margin-right: -0.4rem
    }
  
    .sm\:-my-5 {
      margin-top: -1.25rem;
      margin-bottom: -1.25rem
    }
  
    .sm\:-mx-5 {
      margin-left: -1.25rem;
      margin-right: -1.25rem
    }
  
    .sm\:-my-6 {
      margin-top: -0.6rem;
      margin-bottom: -0.6rem
    }
  
    .sm\:-mx-6 {
      margin-left: -0.6rem;
      margin-right: -0.6rem
    }
  
    .sm\:-my-8 {
      margin-top: -0.8rem;
      margin-bottom: -0.8rem
    }
  
    .sm\:-mx-8 {
      margin-left: -0.8rem;
      margin-right: -0.8rem
    }
  
    .sm\:-my-10 {
      margin-top: -2.5rem;
      margin-bottom: -2.5rem
    }
  
    .sm\:-mx-10 {
      margin-left: -2.5rem;
      margin-right: -2.5rem
    }
  
    .sm\:-my-12 {
      margin-top: -1.2rem;
      margin-bottom: -1.2rem
    }
  
    .sm\:-mx-12 {
      margin-left: -1.2rem;
      margin-right: -1.2rem
    }
  
    .sm\:-my-16 {
      margin-top: -1.6rem;
      margin-bottom: -1.6rem
    }
  
    .sm\:-mx-16 {
      margin-left: -1.6rem;
      margin-right: -1.6rem
    }
  
    .sm\:-my-20 {
      margin-top: -2rem;
      margin-bottom: -2rem
    }
  
    .sm\:-mx-20 {
      margin-left: -2rem;
      margin-right: -2rem
    }
  
    .sm\:-my-24 {
      margin-top: -2.4rem;
      margin-bottom: -2.4rem
    }
  
    .sm\:-mx-24 {
      margin-left: -2.4rem;
      margin-right: -2.4rem
    }
  
    .sm\:-my-28 {
      margin-top: -2.8rem;
      margin-bottom: -2.8rem
    }
  
    .sm\:-mx-28 {
      margin-left: -2.8rem;
      margin-right: -2.8rem
    }
  
    .sm\:-my-32 {
      margin-top: -3.2rem;
      margin-bottom: -3.2rem
    }
  
    .sm\:-mx-32 {
      margin-left: -3.2rem;
      margin-right: -3.2rem
    }
  
    .sm\:-my-36 {
      margin-top: -3.6rem;
      margin-bottom: -3.6rem
    }
  
    .sm\:-mx-36 {
      margin-left: -3.6rem;
      margin-right: -3.6rem
    }
  
    .sm\:-my-40 {
      margin-top: -4rem;
      margin-bottom: -4rem
    }
  
    .sm\:-mx-40 {
      margin-left: -4rem;
      margin-right: -4rem
    }
  
    .sm\:-my-44 {
      margin-top: -4.4rem;
      margin-bottom: -4.4rem
    }
  
    .sm\:-mx-44 {
      margin-left: -4.4rem;
      margin-right: -4.4rem
    }
  
    .sm\:-my-48 {
      margin-top: -4.8rem;
      margin-bottom: -4.8rem
    }
  
    .sm\:-mx-48 {
      margin-left: -4.8rem;
      margin-right: -4.8rem
    }
  
    .sm\:-my-52 {
      margin-top: -5.2rem;
      margin-bottom: -5.2rem
    }
  
    .sm\:-mx-52 {
      margin-left: -5.2rem;
      margin-right: -5.2rem
    }
  
    .sm\:-my-56 {
      margin-top: -5.6rem;
      margin-bottom: -5.6rem
    }
  
    .sm\:-mx-56 {
      margin-left: -5.6rem;
      margin-right: -5.6rem
    }
  
    .sm\:-my-60 {
      margin-top: -6rem;
      margin-bottom: -6rem
    }
  
    .sm\:-mx-60 {
      margin-left: -6rem;
      margin-right: -6rem
    }
  
    .sm\:-my-64 {
      margin-top: -6.4rem;
      margin-bottom: -6.4rem
    }
  
    .sm\:-mx-64 {
      margin-left: -6.4rem;
      margin-right: -6.4rem
    }
  
    .sm\:-my-68 {
      margin-top: -6.8rem;
      margin-bottom: -6.8rem
    }
  
    .sm\:-mx-68 {
      margin-left: -6.8rem;
      margin-right: -6.8rem
    }
  
    .sm\:-my-72 {
      margin-top: -7.2rem;
      margin-bottom: -7.2rem
    }
  
    .sm\:-mx-72 {
      margin-left: -7.2rem;
      margin-right: -7.2rem
    }
  
    .sm\:-my-76 {
      margin-top: -7.6rem;
      margin-bottom: -7.6rem
    }
  
    .sm\:-mx-76 {
      margin-left: -7.6rem;
      margin-right: -7.6rem
    }
  
    .sm\:-my-80 {
      margin-top: -8rem;
      margin-bottom: -8rem
    }
  
    .sm\:-mx-80 {
      margin-left: -8rem;
      margin-right: -8rem
    }
  
    .sm\:-my-84 {
      margin-top: -8.4rem;
      margin-bottom: -8.4rem
    }
  
    .sm\:-mx-84 {
      margin-left: -8.4rem;
      margin-right: -8.4rem
    }
  
    .sm\:-my-88 {
      margin-top: -8.8rem;
      margin-bottom: -8.8rem
    }
  
    .sm\:-mx-88 {
      margin-left: -8.8rem;
      margin-right: -8.8rem
    }
  
    .sm\:-my-92 {
      margin-top: -9.2rem;
      margin-bottom: -9.2rem
    }
  
    .sm\:-mx-92 {
      margin-left: -9.2rem;
      margin-right: -9.2rem
    }
  
    .sm\:-my-96 {
      margin-top: -9.6rem;
      margin-bottom: -9.6rem
    }
  
    .sm\:-mx-96 {
      margin-left: -9.6rem;
      margin-right: -9.6rem
    }
  
    .sm\:-my-128 {
      margin-top: -12.8rem;
      margin-bottom: -12.8rem
    }
  
    .sm\:-mx-128 {
      margin-left: -12.8rem;
      margin-right: -12.8rem
    }
  
    .sm\:-my-136 {
      margin-top: -13.6rem;
      margin-bottom: -13.6rem
    }
  
    .sm\:-mx-136 {
      margin-left: -13.6rem;
      margin-right: -13.6rem
    }
  
    .sm\:-my-160 {
      margin-top: -16rem;
      margin-bottom: -16rem
    }
  
    .sm\:-mx-160 {
      margin-left: -16rem;
      margin-right: -16rem
    }
  
    .sm\:-my-192 {
      margin-top: -19.2rem;
      margin-bottom: -19.2rem
    }
  
    .sm\:-mx-192 {
      margin-left: -19.2rem;
      margin-right: -19.2rem
    }
  
    .sm\:-my-200 {
      margin-top: -20rem;
      margin-bottom: -20rem
    }
  
    .sm\:-mx-200 {
      margin-left: -20rem;
      margin-right: -20rem
    }
  
    .sm\:-my-208 {
      margin-top: -20.8rem;
      margin-bottom: -20.8rem
    }
  
    .sm\:-mx-208 {
      margin-left: -20.8rem;
      margin-right: -20.8rem
    }
  
    .sm\:-my-216 {
      margin-top: -21.6rem;
      margin-bottom: -21.6rem
    }
  
    .sm\:-mx-216 {
      margin-left: -21.6rem;
      margin-right: -21.6rem
    }
  
    .sm\:-my-224 {
      margin-top: -22.4rem;
      margin-bottom: -22.4rem
    }
  
    .sm\:-mx-224 {
      margin-left: -22.4rem;
      margin-right: -22.4rem
    }
  
    .sm\:-my-256 {
      margin-top: -25.6rem;
      margin-bottom: -25.6rem
    }
  
    .sm\:-mx-256 {
      margin-left: -25.6rem;
      margin-right: -25.6rem
    }
  
    .sm\:-my-288 {
      margin-top: -28.8rem;
      margin-bottom: -28.8rem
    }
  
    .sm\:-mx-288 {
      margin-left: -28.8rem;
      margin-right: -28.8rem
    }
  
    .sm\:-my-320 {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .sm\:-mx-320 {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .sm\:-my-360 {
      margin-top: -36rem;
      margin-bottom: -36rem
    }
  
    .sm\:-mx-360 {
      margin-left: -36rem;
      margin-right: -36rem
    }
  
    .sm\:-my-384 {
      margin-top: -38.4rem;
      margin-bottom: -38.4rem
    }
  
    .sm\:-mx-384 {
      margin-left: -38.4rem;
      margin-right: -38.4rem
    }
  
    .sm\:-my-400 {
      margin-top: -40rem;
      margin-bottom: -40rem
    }
  
    .sm\:-mx-400 {
      margin-left: -40rem;
      margin-right: -40rem
    }
  
    .sm\:-my-512 {
      margin-top: -51.2rem;
      margin-bottom: -51.2rem
    }
  
    .sm\:-mx-512 {
      margin-left: -51.2rem;
      margin-right: -51.2rem
    }
  
    .sm\:-my-640 {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .sm\:-mx-640 {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .sm\:-my-px {
      margin-top: -1px;
      margin-bottom: -1px
    }
  
    .sm\:-mx-px {
      margin-left: -1px;
      margin-right: -1px
    }
  
    .sm\:-my-xs {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .sm\:-mx-xs {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .sm\:-my-sm {
      margin-top: -48rem;
      margin-bottom: -48rem
    }
  
    .sm\:-mx-sm {
      margin-left: -48rem;
      margin-right: -48rem
    }
  
    .sm\:-my-md {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .sm\:-mx-md {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .sm\:-my-lg {
      margin-top: -80rem;
      margin-bottom: -80rem
    }
  
    .sm\:-mx-lg {
      margin-left: -80rem;
      margin-right: -80rem
    }
  
    .sm\:-my-xl {
      margin-top: -96rem;
      margin-bottom: -96rem
    }
  
    .sm\:-mx-xl {
      margin-left: -96rem;
      margin-right: -96rem
    }
  
    .sm\:-my-2xl {
      margin-top: -112rem;
      margin-bottom: -112rem
    }
  
    .sm\:-mx-2xl {
      margin-left: -112rem;
      margin-right: -112rem
    }
  
    .sm\:-my-3xl {
      margin-top: -128rem;
      margin-bottom: -128rem
    }
  
    .sm\:-mx-3xl {
      margin-left: -128rem;
      margin-right: -128rem
    }
  
    .sm\:-my-4xl {
      margin-top: -144rem;
      margin-bottom: -144rem
    }
  
    .sm\:-mx-4xl {
      margin-left: -144rem;
      margin-right: -144rem
    }
  
    .sm\:-my-5xl {
      margin-top: -160rem;
      margin-bottom: -160rem
    }
  
    .sm\:-mx-5xl {
      margin-left: -160rem;
      margin-right: -160rem
    }
  
    .sm\:-my-auto {
      margin-top: -auto;
      margin-bottom: -auto
    }
  
    .sm\:-mx-auto {
      margin-left: -auto;
      margin-right: -auto
    }
  
    .sm\:mt-0 {
      margin-top: 0
    }
  
    .sm\:mr-0 {
      margin-right: 0
    }
  
    .sm\:mb-0 {
      margin-bottom: 0
    }
  
    .sm\:ml-0 {
      margin-left: 0
    }
  
    .sm\:mt-1 {
      margin-top: 0.25rem
    }
  
    .sm\:mr-1 {
      margin-right: 0.25rem
    }
  
    .sm\:mb-1 {
      margin-bottom: 0.25rem
    }
  
    .sm\:ml-1 {
      margin-left: 0.25rem
    }
  
    .sm\:mt-2 {
      margin-top: 0.5rem
    }
  
    .sm\:mr-2 {
      margin-right: 0.5rem
    }
  
    .sm\:mb-2 {
      margin-bottom: 0.5rem
    }
  
    .sm\:ml-2 {
      margin-left: 0.5rem
    }
  
    .sm\:mt-3 {
      margin-top: 0.75rem
    }
  
    .sm\:mr-3 {
      margin-right: 0.75rem
    }
  
    .sm\:mb-3 {
      margin-bottom: 0.75rem
    }
  
    .sm\:ml-3 {
      margin-left: 0.75rem
    }
  
    .sm\:mt-4 {
      margin-top: 0.4rem
    }
  
    .sm\:mr-4 {
      margin-right: 0.4rem
    }
  
    .sm\:mb-4 {
      margin-bottom: 0.4rem
    }
  
    .sm\:ml-4 {
      margin-left: 0.4rem
    }
  
    .sm\:mt-5 {
      margin-top: 1.25rem
    }
  
    .sm\:mr-5 {
      margin-right: 1.25rem
    }
  
    .sm\:mb-5 {
      margin-bottom: 1.25rem
    }
  
    .sm\:ml-5 {
      margin-left: 1.25rem
    }
  
    .sm\:mt-6 {
      margin-top: 0.6rem
    }
  
    .sm\:mr-6 {
      margin-right: 0.6rem
    }
  
    .sm\:mb-6 {
      margin-bottom: 0.6rem
    }
  
    .sm\:ml-6 {
      margin-left: 0.6rem
    }
  
    .sm\:mt-8 {
      margin-top: 0.8rem
    }
  
    .sm\:mr-8 {
      margin-right: 0.8rem
    }
  
    .sm\:mb-8 {
      margin-bottom: 0.8rem
    }
  
    .sm\:ml-8 {
      margin-left: 0.8rem
    }
  
    .sm\:mt-10 {
      margin-top: 2.5rem
    }
  
    .sm\:mr-10 {
      margin-right: 2.5rem
    }
  
    .sm\:mb-10 {
      margin-bottom: 2.5rem
    }
  
    .sm\:ml-10 {
      margin-left: 2.5rem
    }
  
    .sm\:mt-12 {
      margin-top: 1.2rem
    }
  
    .sm\:mr-12 {
      margin-right: 1.2rem
    }
  
    .sm\:mb-12 {
      margin-bottom: 1.2rem
    }
  
    .sm\:ml-12 {
      margin-left: 1.2rem
    }
  
    .sm\:mt-16 {
      margin-top: 1.6rem
    }
  
    .sm\:mr-16 {
      margin-right: 1.6rem
    }
  
    .sm\:mb-16 {
      margin-bottom: 1.6rem
    }
  
    .sm\:ml-16 {
      margin-left: 1.6rem
    }
  
    .sm\:mt-20 {
      margin-top: 2rem
    }
  
    .sm\:mr-20 {
      margin-right: 2rem
    }
  
    .sm\:mb-20 {
      margin-bottom: 2rem
    }
  
    .sm\:ml-20 {
      margin-left: 2rem
    }
  
    .sm\:mt-24 {
      margin-top: 2.4rem
    }
  
    .sm\:mr-24 {
      margin-right: 2.4rem
    }
  
    .sm\:mb-24 {
      margin-bottom: 2.4rem
    }
  
    .sm\:ml-24 {
      margin-left: 2.4rem
    }
  
    .sm\:mt-28 {
      margin-top: 2.8rem
    }
  
    .sm\:mr-28 {
      margin-right: 2.8rem
    }
  
    .sm\:mb-28 {
      margin-bottom: 2.8rem
    }
  
    .sm\:ml-28 {
      margin-left: 2.8rem
    }
  
    .sm\:mt-32 {
      margin-top: 3.2rem
    }
  
    .sm\:mr-32 {
      margin-right: 3.2rem
    }
  
    .sm\:mb-32 {
      margin-bottom: 3.2rem
    }
  
    .sm\:ml-32 {
      margin-left: 3.2rem
    }
  
    .sm\:mt-36 {
      margin-top: 3.6rem
    }
  
    .sm\:mr-36 {
      margin-right: 3.6rem
    }
  
    .sm\:mb-36 {
      margin-bottom: 3.6rem
    }
  
    .sm\:ml-36 {
      margin-left: 3.6rem
    }
  
    .sm\:mt-40 {
      margin-top: 4rem
    }
  
    .sm\:mr-40 {
      margin-right: 4rem
    }
  
    .sm\:mb-40 {
      margin-bottom: 4rem
    }
  
    .sm\:ml-40 {
      margin-left: 4rem
    }
  
    .sm\:mt-44 {
      margin-top: 4.4rem
    }
  
    .sm\:mr-44 {
      margin-right: 4.4rem
    }
  
    .sm\:mb-44 {
      margin-bottom: 4.4rem
    }
  
    .sm\:ml-44 {
      margin-left: 4.4rem
    }
  
    .sm\:mt-48 {
      margin-top: 4.8rem
    }
  
    .sm\:mr-48 {
      margin-right: 4.8rem
    }
  
    .sm\:mb-48 {
      margin-bottom: 4.8rem
    }
  
    .sm\:ml-48 {
      margin-left: 4.8rem
    }
  
    .sm\:mt-52 {
      margin-top: 5.2rem
    }
  
    .sm\:mr-52 {
      margin-right: 5.2rem
    }
  
    .sm\:mb-52 {
      margin-bottom: 5.2rem
    }
  
    .sm\:ml-52 {
      margin-left: 5.2rem
    }
  
    .sm\:mt-56 {
      margin-top: 5.6rem
    }
  
    .sm\:mr-56 {
      margin-right: 5.6rem
    }
  
    .sm\:mb-56 {
      margin-bottom: 5.6rem
    }
  
    .sm\:ml-56 {
      margin-left: 5.6rem
    }
  
    .sm\:mt-60 {
      margin-top: 6rem
    }
  
    .sm\:mr-60 {
      margin-right: 6rem
    }
  
    .sm\:mb-60 {
      margin-bottom: 6rem
    }
  
    .sm\:ml-60 {
      margin-left: 6rem
    }
  
    .sm\:mt-64 {
      margin-top: 6.4rem
    }
  
    .sm\:mr-64 {
      margin-right: 6.4rem
    }
  
    .sm\:mb-64 {
      margin-bottom: 6.4rem
    }
  
    .sm\:ml-64 {
      margin-left: 6.4rem
    }
  
    .sm\:mt-68 {
      margin-top: 6.8rem
    }
  
    .sm\:mr-68 {
      margin-right: 6.8rem
    }
  
    .sm\:mb-68 {
      margin-bottom: 6.8rem
    }
  
    .sm\:ml-68 {
      margin-left: 6.8rem
    }
  
    .sm\:mt-72 {
      margin-top: 7.2rem
    }
  
    .sm\:mr-72 {
      margin-right: 7.2rem
    }
  
    .sm\:mb-72 {
      margin-bottom: 7.2rem
    }
  
    .sm\:ml-72 {
      margin-left: 7.2rem
    }
  
    .sm\:mt-76 {
      margin-top: 7.6rem
    }
  
    .sm\:mr-76 {
      margin-right: 7.6rem
    }
  
    .sm\:mb-76 {
      margin-bottom: 7.6rem
    }
  
    .sm\:ml-76 {
      margin-left: 7.6rem
    }
  
    .sm\:mt-80 {
      margin-top: 8rem
    }
  
    .sm\:mr-80 {
      margin-right: 8rem
    }
  
    .sm\:mb-80 {
      margin-bottom: 8rem
    }
  
    .sm\:ml-80 {
      margin-left: 8rem
    }
  
    .sm\:mt-84 {
      margin-top: 8.4rem
    }
  
    .sm\:mr-84 {
      margin-right: 8.4rem
    }
  
    .sm\:mb-84 {
      margin-bottom: 8.4rem
    }
  
    .sm\:ml-84 {
      margin-left: 8.4rem
    }
  
    .sm\:mt-88 {
      margin-top: 8.8rem
    }
  
    .sm\:mr-88 {
      margin-right: 8.8rem
    }
  
    .sm\:mb-88 {
      margin-bottom: 8.8rem
    }
  
    .sm\:ml-88 {
      margin-left: 8.8rem
    }
  
    .sm\:mt-92 {
      margin-top: 9.2rem
    }
  
    .sm\:mr-92 {
      margin-right: 9.2rem
    }
  
    .sm\:mb-92 {
      margin-bottom: 9.2rem
    }
  
    .sm\:ml-92 {
      margin-left: 9.2rem
    }
  
    .sm\:mt-96 {
      margin-top: 9.6rem
    }
  
    .sm\:mr-96 {
      margin-right: 9.6rem
    }
  
    .sm\:mb-96 {
      margin-bottom: 9.6rem
    }
  
    .sm\:ml-96 {
      margin-left: 9.6rem
    }
  
    .sm\:mt-128 {
      margin-top: 12.8rem
    }
  
    .sm\:mr-128 {
      margin-right: 12.8rem
    }
  
    .sm\:mb-128 {
      margin-bottom: 12.8rem
    }
  
    .sm\:ml-128 {
      margin-left: 12.8rem
    }
  
    .sm\:mt-136 {
      margin-top: 13.6rem
    }
  
    .sm\:mr-136 {
      margin-right: 13.6rem
    }
  
    .sm\:mb-136 {
      margin-bottom: 13.6rem
    }
  
    .sm\:ml-136 {
      margin-left: 13.6rem
    }
  
    .sm\:mt-160 {
      margin-top: 16rem
    }
  
    .sm\:mr-160 {
      margin-right: 16rem
    }
  
    .sm\:mb-160 {
      margin-bottom: 16rem
    }
  
    .sm\:ml-160 {
      margin-left: 16rem
    }
  
    .sm\:mt-192 {
      margin-top: 19.2rem
    }
  
    .sm\:mr-192 {
      margin-right: 19.2rem
    }
  
    .sm\:mb-192 {
      margin-bottom: 19.2rem
    }
  
    .sm\:ml-192 {
      margin-left: 19.2rem
    }
  
    .sm\:mt-200 {
      margin-top: 20rem
    }
  
    .sm\:mr-200 {
      margin-right: 20rem
    }
  
    .sm\:mb-200 {
      margin-bottom: 20rem
    }
  
    .sm\:ml-200 {
      margin-left: 20rem
    }
  
    .sm\:mt-208 {
      margin-top: 20.8rem
    }
  
    .sm\:mr-208 {
      margin-right: 20.8rem
    }
  
    .sm\:mb-208 {
      margin-bottom: 20.8rem
    }
  
    .sm\:ml-208 {
      margin-left: 20.8rem
    }
  
    .sm\:mt-216 {
      margin-top: 21.6rem
    }
  
    .sm\:mr-216 {
      margin-right: 21.6rem
    }
  
    .sm\:mb-216 {
      margin-bottom: 21.6rem
    }
  
    .sm\:ml-216 {
      margin-left: 21.6rem
    }
  
    .sm\:mt-224 {
      margin-top: 22.4rem
    }
  
    .sm\:mr-224 {
      margin-right: 22.4rem
    }
  
    .sm\:mb-224 {
      margin-bottom: 22.4rem
    }
  
    .sm\:ml-224 {
      margin-left: 22.4rem
    }
  
    .sm\:mt-256 {
      margin-top: 25.6rem
    }
  
    .sm\:mr-256 {
      margin-right: 25.6rem
    }
  
    .sm\:mb-256 {
      margin-bottom: 25.6rem
    }
  
    .sm\:ml-256 {
      margin-left: 25.6rem
    }
  
    .sm\:mt-288 {
      margin-top: 28.8rem
    }
  
    .sm\:mr-288 {
      margin-right: 28.8rem
    }
  
    .sm\:mb-288 {
      margin-bottom: 28.8rem
    }
  
    .sm\:ml-288 {
      margin-left: 28.8rem
    }
  
    .sm\:mt-320 {
      margin-top: 32rem
    }
  
    .sm\:mr-320 {
      margin-right: 32rem
    }
  
    .sm\:mb-320 {
      margin-bottom: 32rem
    }
  
    .sm\:ml-320 {
      margin-left: 32rem
    }
  
    .sm\:mt-360 {
      margin-top: 36rem
    }
  
    .sm\:mr-360 {
      margin-right: 36rem
    }
  
    .sm\:mb-360 {
      margin-bottom: 36rem
    }
  
    .sm\:ml-360 {
      margin-left: 36rem
    }
  
    .sm\:mt-384 {
      margin-top: 38.4rem
    }
  
    .sm\:mr-384 {
      margin-right: 38.4rem
    }
  
    .sm\:mb-384 {
      margin-bottom: 38.4rem
    }
  
    .sm\:ml-384 {
      margin-left: 38.4rem
    }
  
    .sm\:mt-400 {
      margin-top: 40rem
    }
  
    .sm\:mr-400 {
      margin-right: 40rem
    }
  
    .sm\:mb-400 {
      margin-bottom: 40rem
    }
  
    .sm\:ml-400 {
      margin-left: 40rem
    }
  
    .sm\:mt-512 {
      margin-top: 51.2rem
    }
  
    .sm\:mr-512 {
      margin-right: 51.2rem
    }
  
    .sm\:mb-512 {
      margin-bottom: 51.2rem
    }
  
    .sm\:ml-512 {
      margin-left: 51.2rem
    }
  
    .sm\:mt-640 {
      margin-top: 64rem
    }
  
    .sm\:mr-640 {
      margin-right: 64rem
    }
  
    .sm\:mb-640 {
      margin-bottom: 64rem
    }
  
    .sm\:ml-640 {
      margin-left: 64rem
    }
  
    .sm\:mt-auto {
      margin-top: auto
    }
  
    .sm\:mr-auto {
      margin-right: auto
    }
  
    .sm\:mb-auto {
      margin-bottom: auto
    }
  
    .sm\:ml-auto {
      margin-left: auto
    }
  
    .sm\:mt-px {
      margin-top: 1px
    }
  
    .sm\:mr-px {
      margin-right: 1px
    }
  
    .sm\:mb-px {
      margin-bottom: 1px
    }
  
    .sm\:ml-px {
      margin-left: 1px
    }
  
    .sm\:mt-xs {
      margin-top: 32rem
    }
  
    .sm\:mr-xs {
      margin-right: 32rem
    }
  
    .sm\:mb-xs {
      margin-bottom: 32rem
    }
  
    .sm\:ml-xs {
      margin-left: 32rem
    }
  
    .sm\:mt-sm {
      margin-top: 48rem
    }
  
    .sm\:mr-sm {
      margin-right: 48rem
    }
  
    .sm\:mb-sm {
      margin-bottom: 48rem
    }
  
    .sm\:ml-sm {
      margin-left: 48rem
    }
  
    .sm\:mt-md {
      margin-top: 64rem
    }
  
    .sm\:mr-md {
      margin-right: 64rem
    }
  
    .sm\:mb-md {
      margin-bottom: 64rem
    }
  
    .sm\:ml-md {
      margin-left: 64rem
    }
  
    .sm\:mt-lg {
      margin-top: 80rem
    }
  
    .sm\:mr-lg {
      margin-right: 80rem
    }
  
    .sm\:mb-lg {
      margin-bottom: 80rem
    }
  
    .sm\:ml-lg {
      margin-left: 80rem
    }
  
    .sm\:mt-xl {
      margin-top: 96rem
    }
  
    .sm\:mr-xl {
      margin-right: 96rem
    }
  
    .sm\:mb-xl {
      margin-bottom: 96rem
    }
  
    .sm\:ml-xl {
      margin-left: 96rem
    }
  
    .sm\:mt-2xl {
      margin-top: 112rem
    }
  
    .sm\:mr-2xl {
      margin-right: 112rem
    }
  
    .sm\:mb-2xl {
      margin-bottom: 112rem
    }
  
    .sm\:ml-2xl {
      margin-left: 112rem
    }
  
    .sm\:mt-3xl {
      margin-top: 128rem
    }
  
    .sm\:mr-3xl {
      margin-right: 128rem
    }
  
    .sm\:mb-3xl {
      margin-bottom: 128rem
    }
  
    .sm\:ml-3xl {
      margin-left: 128rem
    }
  
    .sm\:mt-4xl {
      margin-top: 144rem
    }
  
    .sm\:mr-4xl {
      margin-right: 144rem
    }
  
    .sm\:mb-4xl {
      margin-bottom: 144rem
    }
  
    .sm\:ml-4xl {
      margin-left: 144rem
    }
  
    .sm\:mt-5xl {
      margin-top: 160rem
    }
  
    .sm\:mr-5xl {
      margin-right: 160rem
    }
  
    .sm\:mb-5xl {
      margin-bottom: 160rem
    }
  
    .sm\:ml-5xl {
      margin-left: 160rem
    }
  
    .sm\:-mt-1 {
      margin-top: -0.25rem
    }
  
    .sm\:-mr-1 {
      margin-right: -0.25rem
    }
  
    .sm\:-mb-1 {
      margin-bottom: -0.25rem
    }
  
    .sm\:-ml-1 {
      margin-left: -0.25rem
    }
  
    .sm\:-mt-2 {
      margin-top: -0.5rem
    }
  
    .sm\:-mr-2 {
      margin-right: -0.5rem
    }
  
    .sm\:-mb-2 {
      margin-bottom: -0.5rem
    }
  
    .sm\:-ml-2 {
      margin-left: -0.5rem
    }
  
    .sm\:-mt-3 {
      margin-top: -0.75rem
    }
  
    .sm\:-mr-3 {
      margin-right: -0.75rem
    }
  
    .sm\:-mb-3 {
      margin-bottom: -0.75rem
    }
  
    .sm\:-ml-3 {
      margin-left: -0.75rem
    }
  
    .sm\:-mt-4 {
      margin-top: -0.4rem
    }
  
    .sm\:-mr-4 {
      margin-right: -0.4rem
    }
  
    .sm\:-mb-4 {
      margin-bottom: -0.4rem
    }
  
    .sm\:-ml-4 {
      margin-left: -0.4rem
    }
  
    .sm\:-mt-5 {
      margin-top: -1.25rem
    }
  
    .sm\:-mr-5 {
      margin-right: -1.25rem
    }
  
    .sm\:-mb-5 {
      margin-bottom: -1.25rem
    }
  
    .sm\:-ml-5 {
      margin-left: -1.25rem
    }
  
    .sm\:-mt-6 {
      margin-top: -0.6rem
    }
  
    .sm\:-mr-6 {
      margin-right: -0.6rem
    }
  
    .sm\:-mb-6 {
      margin-bottom: -0.6rem
    }
  
    .sm\:-ml-6 {
      margin-left: -0.6rem
    }
  
    .sm\:-mt-8 {
      margin-top: -0.8rem
    }
  
    .sm\:-mr-8 {
      margin-right: -0.8rem
    }
  
    .sm\:-mb-8 {
      margin-bottom: -0.8rem
    }
  
    .sm\:-ml-8 {
      margin-left: -0.8rem
    }
  
    .sm\:-mt-10 {
      margin-top: -2.5rem
    }
  
    .sm\:-mr-10 {
      margin-right: -2.5rem
    }
  
    .sm\:-mb-10 {
      margin-bottom: -2.5rem
    }
  
    .sm\:-ml-10 {
      margin-left: -2.5rem
    }
  
    .sm\:-mt-12 {
      margin-top: -1.2rem
    }
  
    .sm\:-mr-12 {
      margin-right: -1.2rem
    }
  
    .sm\:-mb-12 {
      margin-bottom: -1.2rem
    }
  
    .sm\:-ml-12 {
      margin-left: -1.2rem
    }
  
    .sm\:-mt-16 {
      margin-top: -1.6rem
    }
  
    .sm\:-mr-16 {
      margin-right: -1.6rem
    }
  
    .sm\:-mb-16 {
      margin-bottom: -1.6rem
    }
  
    .sm\:-ml-16 {
      margin-left: -1.6rem
    }
  
    .sm\:-mt-20 {
      margin-top: -2rem
    }
  
    .sm\:-mr-20 {
      margin-right: -2rem
    }
  
    .sm\:-mb-20 {
      margin-bottom: -2rem
    }
  
    .sm\:-ml-20 {
      margin-left: -2rem
    }
  
    .sm\:-mt-24 {
      margin-top: -2.4rem
    }
  
    .sm\:-mr-24 {
      margin-right: -2.4rem
    }
  
    .sm\:-mb-24 {
      margin-bottom: -2.4rem
    }
  
    .sm\:-ml-24 {
      margin-left: -2.4rem
    }
  
    .sm\:-mt-28 {
      margin-top: -2.8rem
    }
  
    .sm\:-mr-28 {
      margin-right: -2.8rem
    }
  
    .sm\:-mb-28 {
      margin-bottom: -2.8rem
    }
  
    .sm\:-ml-28 {
      margin-left: -2.8rem
    }
  
    .sm\:-mt-32 {
      margin-top: -3.2rem
    }
  
    .sm\:-mr-32 {
      margin-right: -3.2rem
    }
  
    .sm\:-mb-32 {
      margin-bottom: -3.2rem
    }
  
    .sm\:-ml-32 {
      margin-left: -3.2rem
    }
  
    .sm\:-mt-36 {
      margin-top: -3.6rem
    }
  
    .sm\:-mr-36 {
      margin-right: -3.6rem
    }
  
    .sm\:-mb-36 {
      margin-bottom: -3.6rem
    }
  
    .sm\:-ml-36 {
      margin-left: -3.6rem
    }
  
    .sm\:-mt-40 {
      margin-top: -4rem
    }
  
    .sm\:-mr-40 {
      margin-right: -4rem
    }
  
    .sm\:-mb-40 {
      margin-bottom: -4rem
    }
  
    .sm\:-ml-40 {
      margin-left: -4rem
    }
  
    .sm\:-mt-44 {
      margin-top: -4.4rem
    }
  
    .sm\:-mr-44 {
      margin-right: -4.4rem
    }
  
    .sm\:-mb-44 {
      margin-bottom: -4.4rem
    }
  
    .sm\:-ml-44 {
      margin-left: -4.4rem
    }
  
    .sm\:-mt-48 {
      margin-top: -4.8rem
    }
  
    .sm\:-mr-48 {
      margin-right: -4.8rem
    }
  
    .sm\:-mb-48 {
      margin-bottom: -4.8rem
    }
  
    .sm\:-ml-48 {
      margin-left: -4.8rem
    }
  
    .sm\:-mt-52 {
      margin-top: -5.2rem
    }
  
    .sm\:-mr-52 {
      margin-right: -5.2rem
    }
  
    .sm\:-mb-52 {
      margin-bottom: -5.2rem
    }
  
    .sm\:-ml-52 {
      margin-left: -5.2rem
    }
  
    .sm\:-mt-56 {
      margin-top: -5.6rem
    }
  
    .sm\:-mr-56 {
      margin-right: -5.6rem
    }
  
    .sm\:-mb-56 {
      margin-bottom: -5.6rem
    }
  
    .sm\:-ml-56 {
      margin-left: -5.6rem
    }
  
    .sm\:-mt-60 {
      margin-top: -6rem
    }
  
    .sm\:-mr-60 {
      margin-right: -6rem
    }
  
    .sm\:-mb-60 {
      margin-bottom: -6rem
    }
  
    .sm\:-ml-60 {
      margin-left: -6rem
    }
  
    .sm\:-mt-64 {
      margin-top: -6.4rem
    }
  
    .sm\:-mr-64 {
      margin-right: -6.4rem
    }
  
    .sm\:-mb-64 {
      margin-bottom: -6.4rem
    }
  
    .sm\:-ml-64 {
      margin-left: -6.4rem
    }
  
    .sm\:-mt-68 {
      margin-top: -6.8rem
    }
  
    .sm\:-mr-68 {
      margin-right: -6.8rem
    }
  
    .sm\:-mb-68 {
      margin-bottom: -6.8rem
    }
  
    .sm\:-ml-68 {
      margin-left: -6.8rem
    }
  
    .sm\:-mt-72 {
      margin-top: -7.2rem
    }
  
    .sm\:-mr-72 {
      margin-right: -7.2rem
    }
  
    .sm\:-mb-72 {
      margin-bottom: -7.2rem
    }
  
    .sm\:-ml-72 {
      margin-left: -7.2rem
    }
  
    .sm\:-mt-76 {
      margin-top: -7.6rem
    }
  
    .sm\:-mr-76 {
      margin-right: -7.6rem
    }
  
    .sm\:-mb-76 {
      margin-bottom: -7.6rem
    }
  
    .sm\:-ml-76 {
      margin-left: -7.6rem
    }
  
    .sm\:-mt-80 {
      margin-top: -8rem
    }
  
    .sm\:-mr-80 {
      margin-right: -8rem
    }
  
    .sm\:-mb-80 {
      margin-bottom: -8rem
    }
  
    .sm\:-ml-80 {
      margin-left: -8rem
    }
  
    .sm\:-mt-84 {
      margin-top: -8.4rem
    }
  
    .sm\:-mr-84 {
      margin-right: -8.4rem
    }
  
    .sm\:-mb-84 {
      margin-bottom: -8.4rem
    }
  
    .sm\:-ml-84 {
      margin-left: -8.4rem
    }
  
    .sm\:-mt-88 {
      margin-top: -8.8rem
    }
  
    .sm\:-mr-88 {
      margin-right: -8.8rem
    }
  
    .sm\:-mb-88 {
      margin-bottom: -8.8rem
    }
  
    .sm\:-ml-88 {
      margin-left: -8.8rem
    }
  
    .sm\:-mt-92 {
      margin-top: -9.2rem
    }
  
    .sm\:-mr-92 {
      margin-right: -9.2rem
    }
  
    .sm\:-mb-92 {
      margin-bottom: -9.2rem
    }
  
    .sm\:-ml-92 {
      margin-left: -9.2rem
    }
  
    .sm\:-mt-96 {
      margin-top: -9.6rem
    }
  
    .sm\:-mr-96 {
      margin-right: -9.6rem
    }
  
    .sm\:-mb-96 {
      margin-bottom: -9.6rem
    }
  
    .sm\:-ml-96 {
      margin-left: -9.6rem
    }
  
    .sm\:-mt-128 {
      margin-top: -12.8rem
    }
  
    .sm\:-mr-128 {
      margin-right: -12.8rem
    }
  
    .sm\:-mb-128 {
      margin-bottom: -12.8rem
    }
  
    .sm\:-ml-128 {
      margin-left: -12.8rem
    }
  
    .sm\:-mt-136 {
      margin-top: -13.6rem
    }
  
    .sm\:-mr-136 {
      margin-right: -13.6rem
    }
  
    .sm\:-mb-136 {
      margin-bottom: -13.6rem
    }
  
    .sm\:-ml-136 {
      margin-left: -13.6rem
    }
  
    .sm\:-mt-160 {
      margin-top: -16rem
    }
  
    .sm\:-mr-160 {
      margin-right: -16rem
    }
  
    .sm\:-mb-160 {
      margin-bottom: -16rem
    }
  
    .sm\:-ml-160 {
      margin-left: -16rem
    }
  
    .sm\:-mt-192 {
      margin-top: -19.2rem
    }
  
    .sm\:-mr-192 {
      margin-right: -19.2rem
    }
  
    .sm\:-mb-192 {
      margin-bottom: -19.2rem
    }
  
    .sm\:-ml-192 {
      margin-left: -19.2rem
    }
  
    .sm\:-mt-200 {
      margin-top: -20rem
    }
  
    .sm\:-mr-200 {
      margin-right: -20rem
    }
  
    .sm\:-mb-200 {
      margin-bottom: -20rem
    }
  
    .sm\:-ml-200 {
      margin-left: -20rem
    }
  
    .sm\:-mt-208 {
      margin-top: -20.8rem
    }
  
    .sm\:-mr-208 {
      margin-right: -20.8rem
    }
  
    .sm\:-mb-208 {
      margin-bottom: -20.8rem
    }
  
    .sm\:-ml-208 {
      margin-left: -20.8rem
    }
  
    .sm\:-mt-216 {
      margin-top: -21.6rem
    }
  
    .sm\:-mr-216 {
      margin-right: -21.6rem
    }
  
    .sm\:-mb-216 {
      margin-bottom: -21.6rem
    }
  
    .sm\:-ml-216 {
      margin-left: -21.6rem
    }
  
    .sm\:-mt-224 {
      margin-top: -22.4rem
    }
  
    .sm\:-mr-224 {
      margin-right: -22.4rem
    }
  
    .sm\:-mb-224 {
      margin-bottom: -22.4rem
    }
  
    .sm\:-ml-224 {
      margin-left: -22.4rem
    }
  
    .sm\:-mt-256 {
      margin-top: -25.6rem
    }
  
    .sm\:-mr-256 {
      margin-right: -25.6rem
    }
  
    .sm\:-mb-256 {
      margin-bottom: -25.6rem
    }
  
    .sm\:-ml-256 {
      margin-left: -25.6rem
    }
  
    .sm\:-mt-288 {
      margin-top: -28.8rem
    }
  
    .sm\:-mr-288 {
      margin-right: -28.8rem
    }
  
    .sm\:-mb-288 {
      margin-bottom: -28.8rem
    }
  
    .sm\:-ml-288 {
      margin-left: -28.8rem
    }
  
    .sm\:-mt-320 {
      margin-top: -32rem
    }
  
    .sm\:-mr-320 {
      margin-right: -32rem
    }
  
    .sm\:-mb-320 {
      margin-bottom: -32rem
    }
  
    .sm\:-ml-320 {
      margin-left: -32rem
    }
  
    .sm\:-mt-360 {
      margin-top: -36rem
    }
  
    .sm\:-mr-360 {
      margin-right: -36rem
    }
  
    .sm\:-mb-360 {
      margin-bottom: -36rem
    }
  
    .sm\:-ml-360 {
      margin-left: -36rem
    }
  
    .sm\:-mt-384 {
      margin-top: -38.4rem
    }
  
    .sm\:-mr-384 {
      margin-right: -38.4rem
    }
  
    .sm\:-mb-384 {
      margin-bottom: -38.4rem
    }
  
    .sm\:-ml-384 {
      margin-left: -38.4rem
    }
  
    .sm\:-mt-400 {
      margin-top: -40rem
    }
  
    .sm\:-mr-400 {
      margin-right: -40rem
    }
  
    .sm\:-mb-400 {
      margin-bottom: -40rem
    }
  
    .sm\:-ml-400 {
      margin-left: -40rem
    }
  
    .sm\:-mt-512 {
      margin-top: -51.2rem
    }
  
    .sm\:-mr-512 {
      margin-right: -51.2rem
    }
  
    .sm\:-mb-512 {
      margin-bottom: -51.2rem
    }
  
    .sm\:-ml-512 {
      margin-left: -51.2rem
    }
  
    .sm\:-mt-640 {
      margin-top: -64rem
    }
  
    .sm\:-mr-640 {
      margin-right: -64rem
    }
  
    .sm\:-mb-640 {
      margin-bottom: -64rem
    }
  
    .sm\:-ml-640 {
      margin-left: -64rem
    }
  
    .sm\:-mt-px {
      margin-top: -1px
    }
  
    .sm\:-mr-px {
      margin-right: -1px
    }
  
    .sm\:-mb-px {
      margin-bottom: -1px
    }
  
    .sm\:-ml-px {
      margin-left: -1px
    }
  
    .sm\:-mt-xs {
      margin-top: -32rem
    }
  
    .sm\:-mr-xs {
      margin-right: -32rem
    }
  
    .sm\:-mb-xs {
      margin-bottom: -32rem
    }
  
    .sm\:-ml-xs {
      margin-left: -32rem
    }
  
    .sm\:-mt-sm {
      margin-top: -48rem
    }
  
    .sm\:-mr-sm {
      margin-right: -48rem
    }
  
    .sm\:-mb-sm {
      margin-bottom: -48rem
    }
  
    .sm\:-ml-sm {
      margin-left: -48rem
    }
  
    .sm\:-mt-md {
      margin-top: -64rem
    }
  
    .sm\:-mr-md {
      margin-right: -64rem
    }
  
    .sm\:-mb-md {
      margin-bottom: -64rem
    }
  
    .sm\:-ml-md {
      margin-left: -64rem
    }
  
    .sm\:-mt-lg {
      margin-top: -80rem
    }
  
    .sm\:-mr-lg {
      margin-right: -80rem
    }
  
    .sm\:-mb-lg {
      margin-bottom: -80rem
    }
  
    .sm\:-ml-lg {
      margin-left: -80rem
    }
  
    .sm\:-mt-xl {
      margin-top: -96rem
    }
  
    .sm\:-mr-xl {
      margin-right: -96rem
    }
  
    .sm\:-mb-xl {
      margin-bottom: -96rem
    }
  
    .sm\:-ml-xl {
      margin-left: -96rem
    }
  
    .sm\:-mt-2xl {
      margin-top: -112rem
    }
  
    .sm\:-mr-2xl {
      margin-right: -112rem
    }
  
    .sm\:-mb-2xl {
      margin-bottom: -112rem
    }
  
    .sm\:-ml-2xl {
      margin-left: -112rem
    }
  
    .sm\:-mt-3xl {
      margin-top: -128rem
    }
  
    .sm\:-mr-3xl {
      margin-right: -128rem
    }
  
    .sm\:-mb-3xl {
      margin-bottom: -128rem
    }
  
    .sm\:-ml-3xl {
      margin-left: -128rem
    }
  
    .sm\:-mt-4xl {
      margin-top: -144rem
    }
  
    .sm\:-mr-4xl {
      margin-right: -144rem
    }
  
    .sm\:-mb-4xl {
      margin-bottom: -144rem
    }
  
    .sm\:-ml-4xl {
      margin-left: -144rem
    }
  
    .sm\:-mt-5xl {
      margin-top: -160rem
    }
  
    .sm\:-mr-5xl {
      margin-right: -160rem
    }
  
    .sm\:-mb-5xl {
      margin-bottom: -160rem
    }
  
    .sm\:-ml-5xl {
      margin-left: -160rem
    }
  
    .sm\:-mt-auto {
      margin-top: -auto
    }
  
    .sm\:-mr-auto {
      margin-right: -auto
    }
  
    .sm\:-mb-auto {
      margin-bottom: -auto
    }
  
    .sm\:-ml-auto {
      margin-left: -auto
    }
  
    .sm\:max-h-0 {
      max-height: 0
    }
  
    .sm\:max-h-1 {
      max-height: 0.25rem
    }
  
    .sm\:max-h-2 {
      max-height: 0.5rem
    }
  
    .sm\:max-h-3 {
      max-height: 0.75rem
    }
  
    .sm\:max-h-4 {
      max-height: 0.4rem
    }
  
    .sm\:max-h-5 {
      max-height: 1.25rem
    }
  
    .sm\:max-h-6 {
      max-height: 0.6rem
    }
  
    .sm\:max-h-8 {
      max-height: 0.8rem
    }
  
    .sm\:max-h-10 {
      max-height: 2.5rem
    }
  
    .sm\:max-h-12 {
      max-height: 1.2rem
    }
  
    .sm\:max-h-16 {
      max-height: 1.6rem
    }
  
    .sm\:max-h-20 {
      max-height: 2rem
    }
  
    .sm\:max-h-24 {
      max-height: 2.4rem
    }
  
    .sm\:max-h-28 {
      max-height: 2.8rem
    }
  
    .sm\:max-h-32 {
      max-height: 3.2rem
    }
  
    .sm\:max-h-36 {
      max-height: 3.6rem
    }
  
    .sm\:max-h-40 {
      max-height: 4rem
    }
  
    .sm\:max-h-44 {
      max-height: 4.4rem
    }
  
    .sm\:max-h-48 {
      max-height: 4.8rem
    }
  
    .sm\:max-h-52 {
      max-height: 5.2rem
    }
  
    .sm\:max-h-56 {
      max-height: 5.6rem
    }
  
    .sm\:max-h-60 {
      max-height: 6rem
    }
  
    .sm\:max-h-64 {
      max-height: 6.4rem
    }
  
    .sm\:max-h-68 {
      max-height: 6.8rem
    }
  
    .sm\:max-h-72 {
      max-height: 7.2rem
    }
  
    .sm\:max-h-76 {
      max-height: 7.6rem
    }
  
    .sm\:max-h-80 {
      max-height: 8rem
    }
  
    .sm\:max-h-84 {
      max-height: 8.4rem
    }
  
    .sm\:max-h-88 {
      max-height: 8.8rem
    }
  
    .sm\:max-h-92 {
      max-height: 9.2rem
    }
  
    .sm\:max-h-96 {
      max-height: 9.6rem
    }
  
    .sm\:max-h-128 {
      max-height: 12.8rem
    }
  
    .sm\:max-h-136 {
      max-height: 13.6rem
    }
  
    .sm\:max-h-160 {
      max-height: 16rem
    }
  
    .sm\:max-h-192 {
      max-height: 19.2rem
    }
  
    .sm\:max-h-200 {
      max-height: 20rem
    }
  
    .sm\:max-h-208 {
      max-height: 20.8rem
    }
  
    .sm\:max-h-216 {
      max-height: 21.6rem
    }
  
    .sm\:max-h-224 {
      max-height: 22.4rem
    }
  
    .sm\:max-h-256 {
      max-height: 25.6rem
    }
  
    .sm\:max-h-288 {
      max-height: 28.8rem
    }
  
    .sm\:max-h-320 {
      max-height: 32rem
    }
  
    .sm\:max-h-360 {
      max-height: 36rem
    }
  
    .sm\:max-h-384 {
      max-height: 38.4rem
    }
  
    .sm\:max-h-400 {
      max-height: 40rem
    }
  
    .sm\:max-h-512 {
      max-height: 51.2rem
    }
  
    .sm\:max-h-640 {
      max-height: 64rem
    }
  
    .sm\:max-h-full {
      max-height: 100%
    }
  
    .sm\:max-h-screen {
      max-height: 100vh
    }
  
    .sm\:max-h-auto {
      max-height: auto
    }
  
    .sm\:max-h-px {
      max-height: 1px
    }
  
    .sm\:max-h-xs {
      max-height: 32rem
    }
  
    .sm\:max-h-sm {
      max-height: 48rem
    }
  
    .sm\:max-h-md {
      max-height: 64rem
    }
  
    .sm\:max-h-lg {
      max-height: 80rem
    }
  
    .sm\:max-h-xl {
      max-height: 96rem
    }
  
    .sm\:max-h-2xl {
      max-height: 112rem
    }
  
    .sm\:max-h-3xl {
      max-height: 128rem
    }
  
    .sm\:max-h-4xl {
      max-height: 144rem
    }
  
    .sm\:max-h-5xl {
      max-height: 160rem
    }
  
    .sm\:max-w-0 {
      max-width: 0
    }
  
    .sm\:max-w-1 {
      max-width: 0.25rem
    }
  
    .sm\:max-w-2 {
      max-width: 0.5rem
    }
  
    .sm\:max-w-3 {
      max-width: 0.75rem
    }
  
    .sm\:max-w-4 {
      max-width: 0.4rem
    }
  
    .sm\:max-w-5 {
      max-width: 1.25rem
    }
  
    .sm\:max-w-6 {
      max-width: 0.6rem
    }
  
    .sm\:max-w-8 {
      max-width: 0.8rem
    }
  
    .sm\:max-w-10 {
      max-width: 2.5rem
    }
  
    .sm\:max-w-12 {
      max-width: 1.2rem
    }
  
    .sm\:max-w-16 {
      max-width: 1.6rem
    }
  
    .sm\:max-w-20 {
      max-width: 2rem
    }
  
    .sm\:max-w-24 {
      max-width: 2.4rem
    }
  
    .sm\:max-w-28 {
      max-width: 2.8rem
    }
  
    .sm\:max-w-32 {
      max-width: 3.2rem
    }
  
    .sm\:max-w-36 {
      max-width: 3.6rem
    }
  
    .sm\:max-w-40 {
      max-width: 4rem
    }
  
    .sm\:max-w-44 {
      max-width: 4.4rem
    }
  
    .sm\:max-w-48 {
      max-width: 4.8rem
    }
  
    .sm\:max-w-52 {
      max-width: 5.2rem
    }
  
    .sm\:max-w-56 {
      max-width: 5.6rem
    }
  
    .sm\:max-w-60 {
      max-width: 6rem
    }
  
    .sm\:max-w-64 {
      max-width: 6.4rem
    }
  
    .sm\:max-w-68 {
      max-width: 6.8rem
    }
  
    .sm\:max-w-72 {
      max-width: 7.2rem
    }
  
    .sm\:max-w-76 {
      max-width: 7.6rem
    }
  
    .sm\:max-w-80 {
      max-width: 8rem
    }
  
    .sm\:max-w-84 {
      max-width: 8.4rem
    }
  
    .sm\:max-w-88 {
      max-width: 8.8rem
    }
  
    .sm\:max-w-92 {
      max-width: 9.2rem
    }
  
    .sm\:max-w-96 {
      max-width: 9.6rem
    }
  
    .sm\:max-w-128 {
      max-width: 12.8rem
    }
  
    .sm\:max-w-136 {
      max-width: 13.6rem
    }
  
    .sm\:max-w-160 {
      max-width: 16rem
    }
  
    .sm\:max-w-192 {
      max-width: 19.2rem
    }
  
    .sm\:max-w-200 {
      max-width: 20rem
    }
  
    .sm\:max-w-208 {
      max-width: 20.8rem
    }
  
    .sm\:max-w-216 {
      max-width: 21.6rem
    }
  
    .sm\:max-w-224 {
      max-width: 22.4rem
    }
  
    .sm\:max-w-256 {
      max-width: 25.6rem
    }
  
    .sm\:max-w-288 {
      max-width: 28.8rem
    }
  
    .sm\:max-w-320 {
      max-width: 32rem
    }
  
    .sm\:max-w-360 {
      max-width: 36rem
    }
  
    .sm\:max-w-384 {
      max-width: 38.4rem
    }
  
    .sm\:max-w-400 {
      max-width: 40rem
    }
  
    .sm\:max-w-512 {
      max-width: 51.2rem
    }
  
    .sm\:max-w-640 {
      max-width: 64rem
    }
  
    .sm\:max-w-xs {
      max-width: 32rem
    }
  
    .sm\:max-w-sm {
      max-width: 48rem
    }
  
    .sm\:max-w-md {
      max-width: 64rem
    }
  
    .sm\:max-w-lg {
      max-width: 80rem
    }
  
    .sm\:max-w-xl {
      max-width: 96rem
    }
  
    .sm\:max-w-2xl {
      max-width: 112rem
    }
  
    .sm\:max-w-3xl {
      max-width: 128rem
    }
  
    .sm\:max-w-4xl {
      max-width: 144rem
    }
  
    .sm\:max-w-5xl {
      max-width: 160rem
    }
  
    .sm\:max-w-6xl {
      max-width: 72rem
    }
  
    .sm\:max-w-full {
      max-width: 100%
    }
  
    .sm\:max-w-px {
      max-width: 1px
    }
  
    .sm\:max-w-auto {
      max-width: auto
    }
  
    .sm\:max-w-screen {
      max-width: 100vw
    }
  
    .sm\:min-h-0 {
      min-height: 0
    }
  
    .sm\:min-h-1 {
      min-height: 0.25rem
    }
  
    .sm\:min-h-2 {
      min-height: 0.5rem
    }
  
    .sm\:min-h-3 {
      min-height: 0.75rem
    }
  
    .sm\:min-h-4 {
      min-height: 0.4rem
    }
  
    .sm\:min-h-5 {
      min-height: 1.25rem
    }
  
    .sm\:min-h-6 {
      min-height: 0.6rem
    }
  
    .sm\:min-h-8 {
      min-height: 0.8rem
    }
  
    .sm\:min-h-10 {
      min-height: 2.5rem
    }
  
    .sm\:min-h-12 {
      min-height: 1.2rem
    }
  
    .sm\:min-h-16 {
      min-height: 1.6rem
    }
  
    .sm\:min-h-20 {
      min-height: 2rem
    }
  
    .sm\:min-h-24 {
      min-height: 2.4rem
    }
  
    .sm\:min-h-28 {
      min-height: 2.8rem
    }
  
    .sm\:min-h-32 {
      min-height: 3.2rem
    }
  
    .sm\:min-h-36 {
      min-height: 3.6rem
    }
  
    .sm\:min-h-40 {
      min-height: 4rem
    }
  
    .sm\:min-h-44 {
      min-height: 4.4rem
    }
  
    .sm\:min-h-48 {
      min-height: 4.8rem
    }
  
    .sm\:min-h-52 {
      min-height: 5.2rem
    }
  
    .sm\:min-h-56 {
      min-height: 5.6rem
    }
  
    .sm\:min-h-60 {
      min-height: 6rem
    }
  
    .sm\:min-h-64 {
      min-height: 6.4rem
    }
  
    .sm\:min-h-68 {
      min-height: 6.8rem
    }
  
    .sm\:min-h-72 {
      min-height: 7.2rem
    }
  
    .sm\:min-h-76 {
      min-height: 7.6rem
    }
  
    .sm\:min-h-80 {
      min-height: 8rem
    }
  
    .sm\:min-h-84 {
      min-height: 8.4rem
    }
  
    .sm\:min-h-88 {
      min-height: 8.8rem
    }
  
    .sm\:min-h-92 {
      min-height: 9.2rem
    }
  
    .sm\:min-h-96 {
      min-height: 9.6rem
    }
  
    .sm\:min-h-128 {
      min-height: 12.8rem
    }
  
    .sm\:min-h-136 {
      min-height: 13.6rem
    }
  
    .sm\:min-h-160 {
      min-height: 16rem
    }
  
    .sm\:min-h-192 {
      min-height: 19.2rem
    }
  
    .sm\:min-h-200 {
      min-height: 20rem
    }
  
    .sm\:min-h-208 {
      min-height: 20.8rem
    }
  
    .sm\:min-h-216 {
      min-height: 21.6rem
    }
  
    .sm\:min-h-224 {
      min-height: 22.4rem
    }
  
    .sm\:min-h-256 {
      min-height: 25.6rem
    }
  
    .sm\:min-h-288 {
      min-height: 28.8rem
    }
  
    .sm\:min-h-320 {
      min-height: 32rem
    }
  
    .sm\:min-h-360 {
      min-height: 36rem
    }
  
    .sm\:min-h-384 {
      min-height: 38.4rem
    }
  
    .sm\:min-h-400 {
      min-height: 40rem
    }
  
    .sm\:min-h-512 {
      min-height: 51.2rem
    }
  
    .sm\:min-h-640 {
      min-height: 64rem
    }
  
    .sm\:min-h-full {
      min-height: 100%
    }
  
    .sm\:min-h-screen {
      min-height: 100vh
    }
  
    .sm\:min-h-auto {
      min-height: auto
    }
  
    .sm\:min-h-px {
      min-height: 1px
    }
  
    .sm\:min-h-xs {
      min-height: 32rem
    }
  
    .sm\:min-h-sm {
      min-height: 48rem
    }
  
    .sm\:min-h-md {
      min-height: 64rem
    }
  
    .sm\:min-h-lg {
      min-height: 80rem
    }
  
    .sm\:min-h-xl {
      min-height: 96rem
    }
  
    .sm\:min-h-2xl {
      min-height: 112rem
    }
  
    .sm\:min-h-3xl {
      min-height: 128rem
    }
  
    .sm\:min-h-4xl {
      min-height: 144rem
    }
  
    .sm\:min-h-5xl {
      min-height: 160rem
    }
  
    .sm\:min-w-0 {
      min-width: 0
    }
  
    .sm\:min-w-1 {
      min-width: 0.25rem
    }
  
    .sm\:min-w-2 {
      min-width: 0.5rem
    }
  
    .sm\:min-w-3 {
      min-width: 0.75rem
    }
  
    .sm\:min-w-4 {
      min-width: 0.4rem
    }
  
    .sm\:min-w-5 {
      min-width: 1.25rem
    }
  
    .sm\:min-w-6 {
      min-width: 0.6rem
    }
  
    .sm\:min-w-8 {
      min-width: 0.8rem
    }
  
    .sm\:min-w-10 {
      min-width: 2.5rem
    }
  
    .sm\:min-w-12 {
      min-width: 1.2rem
    }
  
    .sm\:min-w-16 {
      min-width: 1.6rem
    }
  
    .sm\:min-w-20 {
      min-width: 2rem
    }
  
    .sm\:min-w-24 {
      min-width: 2.4rem
    }
  
    .sm\:min-w-28 {
      min-width: 2.8rem
    }
  
    .sm\:min-w-32 {
      min-width: 3.2rem
    }
  
    .sm\:min-w-36 {
      min-width: 3.6rem
    }
  
    .sm\:min-w-40 {
      min-width: 4rem
    }
  
    .sm\:min-w-44 {
      min-width: 4.4rem
    }
  
    .sm\:min-w-48 {
      min-width: 4.8rem
    }
  
    .sm\:min-w-52 {
      min-width: 5.2rem
    }
  
    .sm\:min-w-56 {
      min-width: 5.6rem
    }
  
    .sm\:min-w-60 {
      min-width: 6rem
    }
  
    .sm\:min-w-64 {
      min-width: 6.4rem
    }
  
    .sm\:min-w-68 {
      min-width: 6.8rem
    }
  
    .sm\:min-w-72 {
      min-width: 7.2rem
    }
  
    .sm\:min-w-76 {
      min-width: 7.6rem
    }
  
    .sm\:min-w-80 {
      min-width: 8rem
    }
  
    .sm\:min-w-84 {
      min-width: 8.4rem
    }
  
    .sm\:min-w-88 {
      min-width: 8.8rem
    }
  
    .sm\:min-w-92 {
      min-width: 9.2rem
    }
  
    .sm\:min-w-96 {
      min-width: 9.6rem
    }
  
    .sm\:min-w-128 {
      min-width: 12.8rem
    }
  
    .sm\:min-w-136 {
      min-width: 13.6rem
    }
  
    .sm\:min-w-160 {
      min-width: 16rem
    }
  
    .sm\:min-w-192 {
      min-width: 19.2rem
    }
  
    .sm\:min-w-200 {
      min-width: 20rem
    }
  
    .sm\:min-w-208 {
      min-width: 20.8rem
    }
  
    .sm\:min-w-216 {
      min-width: 21.6rem
    }
  
    .sm\:min-w-224 {
      min-width: 22.4rem
    }
  
    .sm\:min-w-256 {
      min-width: 25.6rem
    }
  
    .sm\:min-w-288 {
      min-width: 28.8rem
    }
  
    .sm\:min-w-320 {
      min-width: 32rem
    }
  
    .sm\:min-w-360 {
      min-width: 36rem
    }
  
    .sm\:min-w-384 {
      min-width: 38.4rem
    }
  
    .sm\:min-w-400 {
      min-width: 40rem
    }
  
    .sm\:min-w-512 {
      min-width: 51.2rem
    }
  
    .sm\:min-w-640 {
      min-width: 64rem
    }
  
    .sm\:min-w-full {
      min-width: 100%
    }
  
    .sm\:min-w-px {
      min-width: 1px
    }
  
    .sm\:min-w-xs {
      min-width: 32rem
    }
  
    .sm\:min-w-sm {
      min-width: 48rem
    }
  
    .sm\:min-w-md {
      min-width: 64rem
    }
  
    .sm\:min-w-lg {
      min-width: 80rem
    }
  
    .sm\:min-w-xl {
      min-width: 96rem
    }
  
    .sm\:min-w-2xl {
      min-width: 112rem
    }
  
    .sm\:min-w-3xl {
      min-width: 128rem
    }
  
    .sm\:min-w-4xl {
      min-width: 144rem
    }
  
    .sm\:min-w-5xl {
      min-width: 160rem
    }
  
    .sm\:min-w-auto {
      min-width: auto
    }
  
    .sm\:min-w-screen {
      min-width: 100vw
    }
  
    .sm\:object-contain {
      object-fit: contain
    }
  
    .sm\:object-cover {
      object-fit: cover
    }
  
    .sm\:object-fill {
      object-fit: fill
    }
  
    .sm\:object-none {
      object-fit: none
    }
  
    .sm\:object-scale-down {
      object-fit: scale-down
    }
  
    .sm\:object-bottom {
      object-position: bottom
    }
  
    .sm\:object-center {
      object-position: center
    }
  
    .sm\:object-left {
      object-position: left
    }
  
    .sm\:object-left-bottom {
      object-position: left bottom
    }
  
    .sm\:object-left-top {
      object-position: left top
    }
  
    .sm\:object-right {
      object-position: right
    }
  
    .sm\:object-right-bottom {
      object-position: right bottom
    }
  
    .sm\:object-right-top {
      object-position: right top
    }
  
    .sm\:object-top {
      object-position: top
    }
  
    .sm\:opacity-0 {
      opacity: 0
    }
  
    .sm\:opacity-25 {
      opacity: 0.25
    }
  
    .sm\:opacity-50 {
      opacity: 0.5
    }
  
    .sm\:opacity-75 {
      opacity: 0.75
    }
  
    .sm\:opacity-100 {
      opacity: 1
    }
  
    .sm\:outline-none {
      outline: 0
    }
  
    .sm\:focus\:outline-none:focus {
      outline: 0
    }
  
    .sm\:overflow-auto {
      overflow: auto
    }
  
    .sm\:overflow-hidden {
      overflow: hidden
    }
  
    .sm\:overflow-visible {
      overflow: visible
    }
  
    .sm\:overflow-scroll {
      overflow: scroll
    }
  
    .sm\:overflow-x-auto {
      overflow-x: auto
    }
  
    .sm\:overflow-y-auto {
      overflow-y: auto
    }
  
    .sm\:overflow-x-hidden {
      overflow-x: hidden
    }
  
    .sm\:overflow-y-hidden {
      overflow-y: hidden
    }
  
    .sm\:overflow-x-visible {
      overflow-x: visible
    }
  
    .sm\:overflow-y-visible {
      overflow-y: visible
    }
  
    .sm\:overflow-x-scroll {
      overflow-x: scroll
    }
  
    .sm\:overflow-y-scroll {
      overflow-y: scroll
    }
  
    .sm\:scrolling-touch {
      -webkit-overflow-scrolling: touch
    }
  
    .sm\:scrolling-auto {
      -webkit-overflow-scrolling: auto
    }
  
    .sm\:p-0 {
      padding: 0
    }
  
    .sm\:p-1 {
      padding: 0.25rem
    }
  
    .sm\:p-2 {
      padding: 0.5rem
    }
  
    .sm\:p-3 {
      padding: 0.75rem
    }
  
    .sm\:p-4 {
      padding: 0.4rem
    }
  
    .sm\:p-5 {
      padding: 1.25rem
    }
  
    .sm\:p-6 {
      padding: 0.6rem
    }
  
    .sm\:p-8 {
      padding: 0.8rem
    }
  
    .sm\:p-10 {
      padding: 2.5rem
    }
  
    .sm\:p-12 {
      padding: 1.2rem
    }
  
    .sm\:p-16 {
      padding: 1.6rem
    }
  
    .sm\:p-20 {
      padding: 2rem
    }
  
    .sm\:p-24 {
      padding: 2.4rem
    }
  
    .sm\:p-28 {
      padding: 2.8rem
    }
  
    .sm\:p-32 {
      padding: 3.2rem
    }
  
    .sm\:p-36 {
      padding: 3.6rem
    }
  
    .sm\:p-40 {
      padding: 4rem
    }
  
    .sm\:p-44 {
      padding: 4.4rem
    }
  
    .sm\:p-48 {
      padding: 4.8rem
    }
  
    .sm\:p-52 {
      padding: 5.2rem
    }
  
    .sm\:p-56 {
      padding: 5.6rem
    }
  
    .sm\:p-60 {
      padding: 6rem
    }
  
    .sm\:p-64 {
      padding: 6.4rem
    }
  
    .sm\:p-68 {
      padding: 6.8rem
    }
  
    .sm\:p-72 {
      padding: 7.2rem
    }
  
    .sm\:p-76 {
      padding: 7.6rem
    }
  
    .sm\:p-80 {
      padding: 8rem
    }
  
    .sm\:p-84 {
      padding: 8.4rem
    }
  
    .sm\:p-88 {
      padding: 8.8rem
    }
  
    .sm\:p-92 {
      padding: 9.2rem
    }
  
    .sm\:p-96 {
      padding: 9.6rem
    }
  
    .sm\:p-128 {
      padding: 12.8rem
    }
  
    .sm\:p-136 {
      padding: 13.6rem
    }
  
    .sm\:p-160 {
      padding: 16rem
    }
  
    .sm\:p-192 {
      padding: 19.2rem
    }
  
    .sm\:p-200 {
      padding: 20rem
    }
  
    .sm\:p-208 {
      padding: 20.8rem
    }
  
    .sm\:p-216 {
      padding: 21.6rem
    }
  
    .sm\:p-224 {
      padding: 22.4rem
    }
  
    .sm\:p-256 {
      padding: 25.6rem
    }
  
    .sm\:p-288 {
      padding: 28.8rem
    }
  
    .sm\:p-320 {
      padding: 32rem
    }
  
    .sm\:p-360 {
      padding: 36rem
    }
  
    .sm\:p-384 {
      padding: 38.4rem
    }
  
    .sm\:p-400 {
      padding: 40rem
    }
  
    .sm\:p-512 {
      padding: 51.2rem
    }
  
    .sm\:p-640 {
      padding: 64rem
    }
  
    .sm\:p-px {
      padding: 1px
    }
  
    .sm\:p-xs {
      padding: 32rem
    }
  
    .sm\:p-sm {
      padding: 48rem
    }
  
    .sm\:p-md {
      padding: 64rem
    }
  
    .sm\:p-lg {
      padding: 80rem
    }
  
    .sm\:p-xl {
      padding: 96rem
    }
  
    .sm\:p-2xl {
      padding: 112rem
    }
  
    .sm\:p-3xl {
      padding: 128rem
    }
  
    .sm\:p-4xl {
      padding: 144rem
    }
  
    .sm\:p-5xl {
      padding: 160rem
    }
  
    .sm\:p-auto {
      padding: auto
    }
  
    .sm\:py-0 {
      padding-top: 0;
      padding-bottom: 0
    }
  
    .sm\:px-0 {
      padding-left: 0;
      padding-right: 0
    }
  
    .sm\:py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem
    }
  
    .sm\:px-1 {
      padding-left: 0.25rem;
      padding-right: 0.25rem
    }
  
    .sm\:py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem
    }
  
    .sm\:px-2 {
      padding-left: 0.5rem;
      padding-right: 0.5rem
    }
  
    .sm\:py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem
    }
  
    .sm\:px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem
    }
  
    .sm\:py-4 {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem
    }
  
    .sm\:px-4 {
      padding-left: 0.4rem;
      padding-right: 0.4rem
    }
  
    .sm\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem
    }
  
    .sm\:px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }
  
    .sm\:py-6 {
      padding-top: 0.6rem;
      padding-bottom: 0.6rem
    }
  
    .sm\:px-6 {
      padding-left: 0.6rem;
      padding-right: 0.6rem
    }
  
    .sm\:py-8 {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem
    }
  
    .sm\:px-8 {
      padding-left: 0.8rem;
      padding-right: 0.8rem
    }
  
    .sm\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
    }
  
    .sm\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
    }
  
    .sm\:py-12 {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem
    }
  
    .sm\:px-12 {
      padding-left: 1.2rem;
      padding-right: 1.2rem
    }
  
    .sm\:py-16 {
      padding-top: 1.6rem;
      padding-bottom: 1.6rem
    }
  
    .sm\:px-16 {
      padding-left: 1.6rem;
      padding-right: 1.6rem
    }
  
    .sm\:py-20 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }
  
    .sm\:px-20 {
      padding-left: 2rem;
      padding-right: 2rem
    }
  
    .sm\:py-24 {
      padding-top: 2.4rem;
      padding-bottom: 2.4rem
    }
  
    .sm\:px-24 {
      padding-left: 2.4rem;
      padding-right: 2.4rem
    }
  
    .sm\:py-28 {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem
    }
  
    .sm\:px-28 {
      padding-left: 2.8rem;
      padding-right: 2.8rem
    }
  
    .sm\:py-32 {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem
    }
  
    .sm\:px-32 {
      padding-left: 3.2rem;
      padding-right: 3.2rem
    }
  
    .sm\:py-36 {
      padding-top: 3.6rem;
      padding-bottom: 3.6rem
    }
  
    .sm\:px-36 {
      padding-left: 3.6rem;
      padding-right: 3.6rem
    }
  
    .sm\:py-40 {
      padding-top: 4rem;
      padding-bottom: 4rem
    }
  
    .sm\:px-40 {
      padding-left: 4rem;
      padding-right: 4rem
    }
  
    .sm\:py-44 {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem
    }
  
    .sm\:px-44 {
      padding-left: 4.4rem;
      padding-right: 4.4rem
    }
  
    .sm\:py-48 {
      padding-top: 4.8rem;
      padding-bottom: 4.8rem
    }
  
    .sm\:px-48 {
      padding-left: 4.8rem;
      padding-right: 4.8rem
    }
  
    .sm\:py-52 {
      padding-top: 5.2rem;
      padding-bottom: 5.2rem
    }
  
    .sm\:px-52 {
      padding-left: 5.2rem;
      padding-right: 5.2rem
    }
  
    .sm\:py-56 {
      padding-top: 5.6rem;
      padding-bottom: 5.6rem
    }
  
    .sm\:px-56 {
      padding-left: 5.6rem;
      padding-right: 5.6rem
    }
  
    .sm\:py-60 {
      padding-top: 6rem;
      padding-bottom: 6rem
    }
  
    .sm\:px-60 {
      padding-left: 6rem;
      padding-right: 6rem
    }
  
    .sm\:py-64 {
      padding-top: 6.4rem;
      padding-bottom: 6.4rem
    }
  
    .sm\:px-64 {
      padding-left: 6.4rem;
      padding-right: 6.4rem
    }
  
    .sm\:py-68 {
      padding-top: 6.8rem;
      padding-bottom: 6.8rem
    }
  
    .sm\:px-68 {
      padding-left: 6.8rem;
      padding-right: 6.8rem
    }
  
    .sm\:py-72 {
      padding-top: 7.2rem;
      padding-bottom: 7.2rem
    }
  
    .sm\:px-72 {
      padding-left: 7.2rem;
      padding-right: 7.2rem
    }
  
    .sm\:py-76 {
      padding-top: 7.6rem;
      padding-bottom: 7.6rem
    }
  
    .sm\:px-76 {
      padding-left: 7.6rem;
      padding-right: 7.6rem
    }
  
    .sm\:py-80 {
      padding-top: 8rem;
      padding-bottom: 8rem
    }
  
    .sm\:px-80 {
      padding-left: 8rem;
      padding-right: 8rem
    }
  
    .sm\:py-84 {
      padding-top: 8.4rem;
      padding-bottom: 8.4rem
    }
  
    .sm\:px-84 {
      padding-left: 8.4rem;
      padding-right: 8.4rem
    }
  
    .sm\:py-88 {
      padding-top: 8.8rem;
      padding-bottom: 8.8rem
    }
  
    .sm\:px-88 {
      padding-left: 8.8rem;
      padding-right: 8.8rem
    }
  
    .sm\:py-92 {
      padding-top: 9.2rem;
      padding-bottom: 9.2rem
    }
  
    .sm\:px-92 {
      padding-left: 9.2rem;
      padding-right: 9.2rem
    }
  
    .sm\:py-96 {
      padding-top: 9.6rem;
      padding-bottom: 9.6rem
    }
  
    .sm\:px-96 {
      padding-left: 9.6rem;
      padding-right: 9.6rem
    }
  
    .sm\:py-128 {
      padding-top: 12.8rem;
      padding-bottom: 12.8rem
    }
  
    .sm\:px-128 {
      padding-left: 12.8rem;
      padding-right: 12.8rem
    }
  
    .sm\:py-136 {
      padding-top: 13.6rem;
      padding-bottom: 13.6rem
    }
  
    .sm\:px-136 {
      padding-left: 13.6rem;
      padding-right: 13.6rem
    }
  
    .sm\:py-160 {
      padding-top: 16rem;
      padding-bottom: 16rem
    }
  
    .sm\:px-160 {
      padding-left: 16rem;
      padding-right: 16rem
    }
  
    .sm\:py-192 {
      padding-top: 19.2rem;
      padding-bottom: 19.2rem
    }
  
    .sm\:px-192 {
      padding-left: 19.2rem;
      padding-right: 19.2rem
    }
  
    .sm\:py-200 {
      padding-top: 20rem;
      padding-bottom: 20rem
    }
  
    .sm\:px-200 {
      padding-left: 20rem;
      padding-right: 20rem
    }
  
    .sm\:py-208 {
      padding-top: 20.8rem;
      padding-bottom: 20.8rem
    }
  
    .sm\:px-208 {
      padding-left: 20.8rem;
      padding-right: 20.8rem
    }
  
    .sm\:py-216 {
      padding-top: 21.6rem;
      padding-bottom: 21.6rem
    }
  
    .sm\:px-216 {
      padding-left: 21.6rem;
      padding-right: 21.6rem
    }
  
    .sm\:py-224 {
      padding-top: 22.4rem;
      padding-bottom: 22.4rem
    }
  
    .sm\:px-224 {
      padding-left: 22.4rem;
      padding-right: 22.4rem
    }
  
    .sm\:py-256 {
      padding-top: 25.6rem;
      padding-bottom: 25.6rem
    }
  
    .sm\:px-256 {
      padding-left: 25.6rem;
      padding-right: 25.6rem
    }
  
    .sm\:py-288 {
      padding-top: 28.8rem;
      padding-bottom: 28.8rem
    }
  
    .sm\:px-288 {
      padding-left: 28.8rem;
      padding-right: 28.8rem
    }
  
    .sm\:py-320 {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .sm\:px-320 {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .sm\:py-360 {
      padding-top: 36rem;
      padding-bottom: 36rem
    }
  
    .sm\:px-360 {
      padding-left: 36rem;
      padding-right: 36rem
    }
  
    .sm\:py-384 {
      padding-top: 38.4rem;
      padding-bottom: 38.4rem
    }
  
    .sm\:px-384 {
      padding-left: 38.4rem;
      padding-right: 38.4rem
    }
  
    .sm\:py-400 {
      padding-top: 40rem;
      padding-bottom: 40rem
    }
  
    .sm\:px-400 {
      padding-left: 40rem;
      padding-right: 40rem
    }
  
    .sm\:py-512 {
      padding-top: 51.2rem;
      padding-bottom: 51.2rem
    }
  
    .sm\:px-512 {
      padding-left: 51.2rem;
      padding-right: 51.2rem
    }
  
    .sm\:py-640 {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .sm\:px-640 {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .sm\:py-px {
      padding-top: 1px;
      padding-bottom: 1px
    }
  
    .sm\:px-px {
      padding-left: 1px;
      padding-right: 1px
    }
  
    .sm\:py-xs {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .sm\:px-xs {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .sm\:py-sm {
      padding-top: 48rem;
      padding-bottom: 48rem
    }
  
    .sm\:px-sm {
      padding-left: 48rem;
      padding-right: 48rem
    }
  
    .sm\:py-md {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .sm\:px-md {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .sm\:py-lg {
      padding-top: 80rem;
      padding-bottom: 80rem
    }
  
    .sm\:px-lg {
      padding-left: 80rem;
      padding-right: 80rem
    }
  
    .sm\:py-xl {
      padding-top: 96rem;
      padding-bottom: 96rem
    }
  
    .sm\:px-xl {
      padding-left: 96rem;
      padding-right: 96rem
    }
  
    .sm\:py-2xl {
      padding-top: 112rem;
      padding-bottom: 112rem
    }
  
    .sm\:px-2xl {
      padding-left: 112rem;
      padding-right: 112rem
    }
  
    .sm\:py-3xl {
      padding-top: 128rem;
      padding-bottom: 128rem
    }
  
    .sm\:px-3xl {
      padding-left: 128rem;
      padding-right: 128rem
    }
  
    .sm\:py-4xl {
      padding-top: 144rem;
      padding-bottom: 144rem
    }
  
    .sm\:px-4xl {
      padding-left: 144rem;
      padding-right: 144rem
    }
  
    .sm\:py-5xl {
      padding-top: 160rem;
      padding-bottom: 160rem
    }
  
    .sm\:px-5xl {
      padding-left: 160rem;
      padding-right: 160rem
    }
  
    .sm\:py-auto {
      padding-top: auto;
      padding-bottom: auto
    }
  
    .sm\:px-auto {
      padding-left: auto;
      padding-right: auto
    }
  
    .sm\:pt-0 {
      padding-top: 0
    }
  
    .sm\:pr-0 {
      padding-right: 0
    }
  
    .sm\:pb-0 {
      padding-bottom: 0
    }
  
    .sm\:pl-0 {
      padding-left: 0
    }
  
    .sm\:pt-1 {
      padding-top: 0.25rem
    }
  
    .sm\:pr-1 {
      padding-right: 0.25rem
    }
  
    .sm\:pb-1 {
      padding-bottom: 0.25rem
    }
  
    .sm\:pl-1 {
      padding-left: 0.25rem
    }
  
    .sm\:pt-2 {
      padding-top: 0.5rem
    }
  
    .sm\:pr-2 {
      padding-right: 0.5rem
    }
  
    .sm\:pb-2 {
      padding-bottom: 0.5rem
    }
  
    .sm\:pl-2 {
      padding-left: 0.5rem
    }
  
    .sm\:pt-3 {
      padding-top: 0.75rem
    }
  
    .sm\:pr-3 {
      padding-right: 0.75rem
    }
  
    .sm\:pb-3 {
      padding-bottom: 0.75rem
    }
  
    .sm\:pl-3 {
      padding-left: 0.75rem
    }
  
    .sm\:pt-4 {
      padding-top: 0.4rem
    }
  
    .sm\:pr-4 {
      padding-right: 0.4rem
    }
  
    .sm\:pb-4 {
      padding-bottom: 0.4rem
    }
  
    .sm\:pl-4 {
      padding-left: 0.4rem
    }
  
    .sm\:pt-5 {
      padding-top: 1.25rem
    }
  
    .sm\:pr-5 {
      padding-right: 1.25rem
    }
  
    .sm\:pb-5 {
      padding-bottom: 1.25rem
    }
  
    .sm\:pl-5 {
      padding-left: 1.25rem
    }
  
    .sm\:pt-6 {
      padding-top: 0.6rem
    }
  
    .sm\:pr-6 {
      padding-right: 0.6rem
    }
  
    .sm\:pb-6 {
      padding-bottom: 0.6rem
    }
  
    .sm\:pl-6 {
      padding-left: 0.6rem
    }
  
    .sm\:pt-8 {
      padding-top: 0.8rem
    }
  
    .sm\:pr-8 {
      padding-right: 0.8rem
    }
  
    .sm\:pb-8 {
      padding-bottom: 0.8rem
    }
  
    .sm\:pl-8 {
      padding-left: 0.8rem
    }
  
    .sm\:pt-10 {
      padding-top: 2.5rem
    }
  
    .sm\:pr-10 {
      padding-right: 2.5rem
    }
  
    .sm\:pb-10 {
      padding-bottom: 2.5rem
    }
  
    .sm\:pl-10 {
      padding-left: 2.5rem
    }
  
    .sm\:pt-12 {
      padding-top: 1.2rem
    }
  
    .sm\:pr-12 {
      padding-right: 1.2rem
    }
  
    .sm\:pb-12 {
      padding-bottom: 1.2rem
    }
  
    .sm\:pl-12 {
      padding-left: 1.2rem
    }
  
    .sm\:pt-16 {
      padding-top: 1.6rem
    }
  
    .sm\:pr-16 {
      padding-right: 1.6rem
    }
  
    .sm\:pb-16 {
      padding-bottom: 1.6rem
    }
  
    .sm\:pl-16 {
      padding-left: 1.6rem
    }
  
    .sm\:pt-20 {
      padding-top: 2rem
    }
  
    .sm\:pr-20 {
      padding-right: 2rem
    }
  
    .sm\:pb-20 {
      padding-bottom: 2rem
    }
  
    .sm\:pl-20 {
      padding-left: 2rem
    }
  
    .sm\:pt-24 {
      padding-top: 2.4rem
    }
  
    .sm\:pr-24 {
      padding-right: 2.4rem
    }
  
    .sm\:pb-24 {
      padding-bottom: 2.4rem
    }
  
    .sm\:pl-24 {
      padding-left: 2.4rem
    }
  
    .sm\:pt-28 {
      padding-top: 2.8rem
    }
  
    .sm\:pr-28 {
      padding-right: 2.8rem
    }
  
    .sm\:pb-28 {
      padding-bottom: 2.8rem
    }
  
    .sm\:pl-28 {
      padding-left: 2.8rem
    }
  
    .sm\:pt-32 {
      padding-top: 3.2rem
    }
  
    .sm\:pr-32 {
      padding-right: 3.2rem
    }
  
    .sm\:pb-32 {
      padding-bottom: 3.2rem
    }
  
    .sm\:pl-32 {
      padding-left: 3.2rem
    }
  
    .sm\:pt-36 {
      padding-top: 3.6rem
    }
  
    .sm\:pr-36 {
      padding-right: 3.6rem
    }
  
    .sm\:pb-36 {
      padding-bottom: 3.6rem
    }
  
    .sm\:pl-36 {
      padding-left: 3.6rem
    }
  
    .sm\:pt-40 {
      padding-top: 4rem
    }
  
    .sm\:pr-40 {
      padding-right: 4rem
    }
  
    .sm\:pb-40 {
      padding-bottom: 4rem
    }
  
    .sm\:pl-40 {
      padding-left: 4rem
    }
  
    .sm\:pt-44 {
      padding-top: 4.4rem
    }
  
    .sm\:pr-44 {
      padding-right: 4.4rem
    }
  
    .sm\:pb-44 {
      padding-bottom: 4.4rem
    }
  
    .sm\:pl-44 {
      padding-left: 4.4rem
    }
  
    .sm\:pt-48 {
      padding-top: 4.8rem
    }
  
    .sm\:pr-48 {
      padding-right: 4.8rem
    }
  
    .sm\:pb-48 {
      padding-bottom: 4.8rem
    }
  
    .sm\:pl-48 {
      padding-left: 4.8rem
    }
  
    .sm\:pt-52 {
      padding-top: 5.2rem
    }
  
    .sm\:pr-52 {
      padding-right: 5.2rem
    }
  
    .sm\:pb-52 {
      padding-bottom: 5.2rem
    }
  
    .sm\:pl-52 {
      padding-left: 5.2rem
    }
  
    .sm\:pt-56 {
      padding-top: 5.6rem
    }
  
    .sm\:pr-56 {
      padding-right: 5.6rem
    }
  
    .sm\:pb-56 {
      padding-bottom: 5.6rem
    }
  
    .sm\:pl-56 {
      padding-left: 5.6rem
    }
  
    .sm\:pt-60 {
      padding-top: 6rem
    }
  
    .sm\:pr-60 {
      padding-right: 6rem
    }
  
    .sm\:pb-60 {
      padding-bottom: 6rem
    }
  
    .sm\:pl-60 {
      padding-left: 6rem
    }
  
    .sm\:pt-64 {
      padding-top: 6.4rem
    }
  
    .sm\:pr-64 {
      padding-right: 6.4rem
    }
  
    .sm\:pb-64 {
      padding-bottom: 6.4rem
    }
  
    .sm\:pl-64 {
      padding-left: 6.4rem
    }
  
    .sm\:pt-68 {
      padding-top: 6.8rem
    }
  
    .sm\:pr-68 {
      padding-right: 6.8rem
    }
  
    .sm\:pb-68 {
      padding-bottom: 6.8rem
    }
  
    .sm\:pl-68 {
      padding-left: 6.8rem
    }
  
    .sm\:pt-72 {
      padding-top: 7.2rem
    }
  
    .sm\:pr-72 {
      padding-right: 7.2rem
    }
  
    .sm\:pb-72 {
      padding-bottom: 7.2rem
    }
  
    .sm\:pl-72 {
      padding-left: 7.2rem
    }
  
    .sm\:pt-76 {
      padding-top: 7.6rem
    }
  
    .sm\:pr-76 {
      padding-right: 7.6rem
    }
  
    .sm\:pb-76 {
      padding-bottom: 7.6rem
    }
  
    .sm\:pl-76 {
      padding-left: 7.6rem
    }
  
    .sm\:pt-80 {
      padding-top: 8rem
    }
  
    .sm\:pr-80 {
      padding-right: 8rem
    }
  
    .sm\:pb-80 {
      padding-bottom: 8rem
    }
  
    .sm\:pl-80 {
      padding-left: 8rem
    }
  
    .sm\:pt-84 {
      padding-top: 8.4rem
    }
  
    .sm\:pr-84 {
      padding-right: 8.4rem
    }
  
    .sm\:pb-84 {
      padding-bottom: 8.4rem
    }
  
    .sm\:pl-84 {
      padding-left: 8.4rem
    }
  
    .sm\:pt-88 {
      padding-top: 8.8rem
    }
  
    .sm\:pr-88 {
      padding-right: 8.8rem
    }
  
    .sm\:pb-88 {
      padding-bottom: 8.8rem
    }
  
    .sm\:pl-88 {
      padding-left: 8.8rem
    }
  
    .sm\:pt-92 {
      padding-top: 9.2rem
    }
  
    .sm\:pr-92 {
      padding-right: 9.2rem
    }
  
    .sm\:pb-92 {
      padding-bottom: 9.2rem
    }
  
    .sm\:pl-92 {
      padding-left: 9.2rem
    }
  
    .sm\:pt-96 {
      padding-top: 9.6rem
    }
  
    .sm\:pr-96 {
      padding-right: 9.6rem
    }
  
    .sm\:pb-96 {
      padding-bottom: 9.6rem
    }
  
    .sm\:pl-96 {
      padding-left: 9.6rem
    }
  
    .sm\:pt-128 {
      padding-top: 12.8rem
    }
  
    .sm\:pr-128 {
      padding-right: 12.8rem
    }
  
    .sm\:pb-128 {
      padding-bottom: 12.8rem
    }
  
    .sm\:pl-128 {
      padding-left: 12.8rem
    }
  
    .sm\:pt-136 {
      padding-top: 13.6rem
    }
  
    .sm\:pr-136 {
      padding-right: 13.6rem
    }
  
    .sm\:pb-136 {
      padding-bottom: 13.6rem
    }
  
    .sm\:pl-136 {
      padding-left: 13.6rem
    }
  
    .sm\:pt-160 {
      padding-top: 16rem
    }
  
    .sm\:pr-160 {
      padding-right: 16rem
    }
  
    .sm\:pb-160 {
      padding-bottom: 16rem
    }
  
    .sm\:pl-160 {
      padding-left: 16rem
    }
  
    .sm\:pt-192 {
      padding-top: 19.2rem
    }
  
    .sm\:pr-192 {
      padding-right: 19.2rem
    }
  
    .sm\:pb-192 {
      padding-bottom: 19.2rem
    }
  
    .sm\:pl-192 {
      padding-left: 19.2rem
    }
  
    .sm\:pt-200 {
      padding-top: 20rem
    }
  
    .sm\:pr-200 {
      padding-right: 20rem
    }
  
    .sm\:pb-200 {
      padding-bottom: 20rem
    }
  
    .sm\:pl-200 {
      padding-left: 20rem
    }
  
    .sm\:pt-208 {
      padding-top: 20.8rem
    }
  
    .sm\:pr-208 {
      padding-right: 20.8rem
    }
  
    .sm\:pb-208 {
      padding-bottom: 20.8rem
    }
  
    .sm\:pl-208 {
      padding-left: 20.8rem
    }
  
    .sm\:pt-216 {
      padding-top: 21.6rem
    }
  
    .sm\:pr-216 {
      padding-right: 21.6rem
    }
  
    .sm\:pb-216 {
      padding-bottom: 21.6rem
    }
  
    .sm\:pl-216 {
      padding-left: 21.6rem
    }
  
    .sm\:pt-224 {
      padding-top: 22.4rem
    }
  
    .sm\:pr-224 {
      padding-right: 22.4rem
    }
  
    .sm\:pb-224 {
      padding-bottom: 22.4rem
    }
  
    .sm\:pl-224 {
      padding-left: 22.4rem
    }
  
    .sm\:pt-256 {
      padding-top: 25.6rem
    }
  
    .sm\:pr-256 {
      padding-right: 25.6rem
    }
  
    .sm\:pb-256 {
      padding-bottom: 25.6rem
    }
  
    .sm\:pl-256 {
      padding-left: 25.6rem
    }
  
    .sm\:pt-288 {
      padding-top: 28.8rem
    }
  
    .sm\:pr-288 {
      padding-right: 28.8rem
    }
  
    .sm\:pb-288 {
      padding-bottom: 28.8rem
    }
  
    .sm\:pl-288 {
      padding-left: 28.8rem
    }
  
    .sm\:pt-320 {
      padding-top: 32rem
    }
  
    .sm\:pr-320 {
      padding-right: 32rem
    }
  
    .sm\:pb-320 {
      padding-bottom: 32rem
    }
  
    .sm\:pl-320 {
      padding-left: 32rem
    }
  
    .sm\:pt-360 {
      padding-top: 36rem
    }
  
    .sm\:pr-360 {
      padding-right: 36rem
    }
  
    .sm\:pb-360 {
      padding-bottom: 36rem
    }
  
    .sm\:pl-360 {
      padding-left: 36rem
    }
  
    .sm\:pt-384 {
      padding-top: 38.4rem
    }
  
    .sm\:pr-384 {
      padding-right: 38.4rem
    }
  
    .sm\:pb-384 {
      padding-bottom: 38.4rem
    }
  
    .sm\:pl-384 {
      padding-left: 38.4rem
    }
  
    .sm\:pt-400 {
      padding-top: 40rem
    }
  
    .sm\:pr-400 {
      padding-right: 40rem
    }
  
    .sm\:pb-400 {
      padding-bottom: 40rem
    }
  
    .sm\:pl-400 {
      padding-left: 40rem
    }
  
    .sm\:pt-512 {
      padding-top: 51.2rem
    }
  
    .sm\:pr-512 {
      padding-right: 51.2rem
    }
  
    .sm\:pb-512 {
      padding-bottom: 51.2rem
    }
  
    .sm\:pl-512 {
      padding-left: 51.2rem
    }
  
    .sm\:pt-640 {
      padding-top: 64rem
    }
  
    .sm\:pr-640 {
      padding-right: 64rem
    }
  
    .sm\:pb-640 {
      padding-bottom: 64rem
    }
  
    .sm\:pl-640 {
      padding-left: 64rem
    }
  
    .sm\:pt-px {
      padding-top: 1px
    }
  
    .sm\:pr-px {
      padding-right: 1px
    }
  
    .sm\:pb-px {
      padding-bottom: 1px
    }
  
    .sm\:pl-px {
      padding-left: 1px
    }
  
    .sm\:pt-xs {
      padding-top: 32rem
    }
  
    .sm\:pr-xs {
      padding-right: 32rem
    }
  
    .sm\:pb-xs {
      padding-bottom: 32rem
    }
  
    .sm\:pl-xs {
      padding-left: 32rem
    }
  
    .sm\:pt-sm {
      padding-top: 48rem
    }
  
    .sm\:pr-sm {
      padding-right: 48rem
    }
  
    .sm\:pb-sm {
      padding-bottom: 48rem
    }
  
    .sm\:pl-sm {
      padding-left: 48rem
    }
  
    .sm\:pt-md {
      padding-top: 64rem
    }
  
    .sm\:pr-md {
      padding-right: 64rem
    }
  
    .sm\:pb-md {
      padding-bottom: 64rem
    }
  
    .sm\:pl-md {
      padding-left: 64rem
    }
  
    .sm\:pt-lg {
      padding-top: 80rem
    }
  
    .sm\:pr-lg {
      padding-right: 80rem
    }
  
    .sm\:pb-lg {
      padding-bottom: 80rem
    }
  
    .sm\:pl-lg {
      padding-left: 80rem
    }
  
    .sm\:pt-xl {
      padding-top: 96rem
    }
  
    .sm\:pr-xl {
      padding-right: 96rem
    }
  
    .sm\:pb-xl {
      padding-bottom: 96rem
    }
  
    .sm\:pl-xl {
      padding-left: 96rem
    }
  
    .sm\:pt-2xl {
      padding-top: 112rem
    }
  
    .sm\:pr-2xl {
      padding-right: 112rem
    }
  
    .sm\:pb-2xl {
      padding-bottom: 112rem
    }
  
    .sm\:pl-2xl {
      padding-left: 112rem
    }
  
    .sm\:pt-3xl {
      padding-top: 128rem
    }
  
    .sm\:pr-3xl {
      padding-right: 128rem
    }
  
    .sm\:pb-3xl {
      padding-bottom: 128rem
    }
  
    .sm\:pl-3xl {
      padding-left: 128rem
    }
  
    .sm\:pt-4xl {
      padding-top: 144rem
    }
  
    .sm\:pr-4xl {
      padding-right: 144rem
    }
  
    .sm\:pb-4xl {
      padding-bottom: 144rem
    }
  
    .sm\:pl-4xl {
      padding-left: 144rem
    }
  
    .sm\:pt-5xl {
      padding-top: 160rem
    }
  
    .sm\:pr-5xl {
      padding-right: 160rem
    }
  
    .sm\:pb-5xl {
      padding-bottom: 160rem
    }
  
    .sm\:pl-5xl {
      padding-left: 160rem
    }
  
    .sm\:pt-auto {
      padding-top: auto
    }
  
    .sm\:pr-auto {
      padding-right: auto
    }
  
    .sm\:pb-auto {
      padding-bottom: auto
    }
  
    .sm\:pl-auto {
      padding-left: auto
    }
  
    .sm\:pointer-events-none {
      pointer-events: none
    }
  
    .sm\:pointer-events-auto {
      pointer-events: auto
    }
  
    .sm\:static {
      position: static
    }
  
    .sm\:fixed {
      position: fixed
    }
  
    .sm\:absolute {
      position: absolute
    }
  
    .sm\:relative {
      position: relative
    }
  
    .sm\:sticky {
      position: -webkit-sticky;
      position: sticky
    }
  
    .sm\:inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0
    }
  
    .sm\:inset-auto {
      top: auto;
      right: auto;
      bottom: auto;
      left: auto
    }
  
    .sm\:inset-y-0 {
      top: 0;
      bottom: 0
    }
  
    .sm\:inset-x-0 {
      right: 0;
      left: 0
    }
  
    .sm\:inset-y-auto {
      top: auto;
      bottom: auto
    }
  
    .sm\:inset-x-auto {
      right: auto;
      left: auto
    }
  
    .sm\:top-0 {
      top: 0
    }
  
    .sm\:right-0 {
      right: 0
    }
  
    .sm\:bottom-0 {
      bottom: 0
    }
  
    .sm\:left-0 {
      left: 0
    }
  
    .sm\:top-auto {
      top: auto
    }
  
    .sm\:right-auto {
      right: auto
    }
  
    .sm\:bottom-auto {
      bottom: auto
    }
  
    .sm\:left-auto {
      left: auto
    }
  
    .sm\:resize-none {
      resize: none
    }
  
    .sm\:resize-y {
      resize: vertical
    }
  
    .sm\:resize-x {
      resize: horizontal
    }
  
    .sm\:resize {
      resize: both
    }
  
    .sm\:shadow-0 {
      box-shadow: none
    }
  
    .sm\:shadow-1 {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-2 {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-3 {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-4 {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-5 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-6 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-7 {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-8 {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-9 {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-10 {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-11 {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-12 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-13 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-14 {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-15 {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-16 {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-17 {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-18 {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-19 {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-20 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-21 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-22 {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-23 {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow-24 {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:shadow {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .sm\:shadow-md {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:shadow-lg {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .sm\:shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .sm\:shadow-inner {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .sm\:shadow-outline {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .sm\:shadow-none {
      box-shadow: none
    }
  
    .sm\:hover\:shadow-0:hover {
      box-shadow: none
    }
  
    .sm\:hover\:shadow-1:hover {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-2:hover {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-3:hover {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-4:hover {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-5:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-6:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-7:hover {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-8:hover {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-9:hover {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-10:hover {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-11:hover {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-12:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-13:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-14:hover {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-15:hover {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-16:hover {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-17:hover {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-18:hover {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-19:hover {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-20:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-21:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-22:hover {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-23:hover {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow-24:hover {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:hover\:shadow:hover {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .sm\:hover\:shadow-md:hover {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:hover\:shadow-lg:hover {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:hover\:shadow-xl:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .sm\:hover\:shadow-2xl:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .sm\:hover\:shadow-inner:hover {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .sm\:hover\:shadow-outline:hover {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .sm\:hover\:shadow-none:hover {
      box-shadow: none
    }
  
    .sm\:focus\:shadow-0:focus {
      box-shadow: none
    }
  
    .sm\:focus\:shadow-1:focus {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-2:focus {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-3:focus {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-4:focus {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-5:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-6:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-7:focus {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-8:focus {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-9:focus {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-10:focus {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-11:focus {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-12:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-13:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-14:focus {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-15:focus {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-16:focus {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-17:focus {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-18:focus {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-19:focus {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-20:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-21:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-22:focus {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-23:focus {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow-24:focus {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .sm\:focus\:shadow:focus {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .sm\:focus\:shadow-md:focus {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:focus\:shadow-lg:focus {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .sm\:focus\:shadow-xl:focus {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .sm\:focus\:shadow-2xl:focus {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .sm\:focus\:shadow-inner:focus {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .sm\:focus\:shadow-outline:focus {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .sm\:focus\:shadow-none:focus {
      box-shadow: none
    }
  
    .sm\:fill-current {
      fill: currentColor
    }
  
    .sm\:stroke-current {
      stroke: currentColor
    }
  
    .sm\:table-auto {
      table-layout: auto
    }
  
    .sm\:table-fixed {
      table-layout: fixed
    }
  
    .sm\:text-left {
      text-align: left
    }
  
    .sm\:text-center {
      text-align: center
    }
  
    .sm\:text-right {
      text-align: right
    }
  
    .sm\:text-justify {
      text-align: justify
    }
  
    .sm\:text-transparent {
      color: transparent
    }
  
    .sm\:text-black {
      color: #22292F
    }
  
    .sm\:text-white {
      color: #FFFFFF
    }
  
    .sm\:text-gray-100 {
      color: #f7fafc
    }
  
    .sm\:text-gray-200 {
      color: #edf2f7
    }
  
    .sm\:text-gray-300 {
      color: #e2e8f0
    }
  
    .sm\:text-gray-400 {
      color: #cbd5e0
    }
  
    .sm\:text-gray-500 {
      color: #a0aec0
    }
  
    .sm\:text-gray-600 {
      color: #718096
    }
  
    .sm\:text-gray-700 {
      color: #4a5568
    }
  
    .sm\:text-gray-800 {
      color: #2d3748
    }
  
    .sm\:text-gray-900 {
      color: #1a202c
    }
  
    .sm\:text-red {
      color: #E3342F
    }
  
    .sm\:text-orange {
      color: #F6993F
    }
  
    .sm\:text-yellow {
      color: #FFED4A
    }
  
    .sm\:text-green {
      color: #38C172
    }
  
    .sm\:text-teal {
      color: #4DC0B5
    }
  
    .sm\:text-blue {
      color: #3490DC
    }
  
    .sm\:text-indigo {
      color: #6574CD
    }
  
    .sm\:text-purple {
      color: #9561E2
    }
  
    .sm\:text-pink {
      color: #F66D9B
    }
  
    .sm\:text-grey-darkest {
      color: #3D4852
    }
  
    .sm\:text-grey-darker {
      color: #606F7B
    }
  
    .sm\:text-grey-dark {
      color: #8795A1
    }
  
    .sm\:text-grey {
      color: #B8C2CC
    }
  
    .sm\:text-grey-light {
      color: #DAE1E7
    }
  
    .sm\:text-grey-lighter {
      color: #F1F5F8
    }
  
    .sm\:text-grey-lightest {
      color: #F8FAFC
    }
  
    .sm\:text-red-darkest {
      color: #3B0D0C
    }
  
    .sm\:text-red-darker {
      color: #621B18
    }
  
    .sm\:text-red-dark {
      color: #CC1F1A
    }
  
    .sm\:text-red-light {
      color: #EF5753
    }
  
    .sm\:text-red-lighter {
      color: #F9ACAA
    }
  
    .sm\:text-red-lightest {
      color: #FCEBEA
    }
  
    .sm\:text-orange-darkest {
      color: #462A16
    }
  
    .sm\:text-orange-darker {
      color: #613B1F
    }
  
    .sm\:text-orange-dark {
      color: #DE751F
    }
  
    .sm\:text-orange-light {
      color: #FAAD63
    }
  
    .sm\:text-orange-lighter {
      color: #FCD9B6
    }
  
    .sm\:text-orange-lightest {
      color: #FFF5EB
    }
  
    .sm\:text-yellow-darkest {
      color: #453411
    }
  
    .sm\:text-yellow-darker {
      color: #684F1D
    }
  
    .sm\:text-yellow-dark {
      color: #F2D024
    }
  
    .sm\:text-yellow-light {
      color: #FFF382
    }
  
    .sm\:text-yellow-lighter {
      color: #FFF9C2
    }
  
    .sm\:text-yellow-lightest {
      color: #FCFBEB
    }
  
    .sm\:text-green-darkest {
      color: #0F2F21
    }
  
    .sm\:text-green-darker {
      color: #1A4731
    }
  
    .sm\:text-green-dark {
      color: #1F9D55
    }
  
    .sm\:text-green-light {
      color: #51D88A
    }
  
    .sm\:text-green-lighter {
      color: #A2F5BF
    }
  
    .sm\:text-green-lightest {
      color: #E3FCEC
    }
  
    .sm\:text-teal-darkest {
      color: #0D3331
    }
  
    .sm\:text-teal-darker {
      color: #20504F
    }
  
    .sm\:text-teal-dark {
      color: #38A89D
    }
  
    .sm\:text-teal-light {
      color: #64D5CA
    }
  
    .sm\:text-teal-lighter {
      color: #A0F0ED
    }
  
    .sm\:text-teal-lightest {
      color: #E8FFFE
    }
  
    .sm\:text-blue-darkest {
      color: #12283A
    }
  
    .sm\:text-blue-darker {
      color: #1C3D5A
    }
  
    .sm\:text-blue-dark {
      color: #2779BD
    }
  
    .sm\:text-blue-light {
      color: #6CB2EB
    }
  
    .sm\:text-blue-lighter {
      color: #BCDEFA
    }
  
    .sm\:text-blue-lightest {
      color: #EFF8FF
    }
  
    .sm\:text-indigo-darkest {
      color: #191E38
    }
  
    .sm\:text-indigo-darker {
      color: #2F365F
    }
  
    .sm\:text-indigo-dark {
      color: #5661B3
    }
  
    .sm\:text-indigo-light {
      color: #7886D7
    }
  
    .sm\:text-indigo-lighter {
      color: #B2B7FF
    }
  
    .sm\:text-indigo-lightest {
      color: #E6E8FF
    }
  
    .sm\:text-purple-darkest {
      color: #21183C
    }
  
    .sm\:text-purple-darker {
      color: #382B5F
    }
  
    .sm\:text-purple-dark {
      color: #794ACF
    }
  
    .sm\:text-purple-light {
      color: #A779E9
    }
  
    .sm\:text-purple-lighter {
      color: #D6BBFC
    }
  
    .sm\:text-purple-lightest {
      color: #F3EBFF
    }
  
    .sm\:text-pink-darkest {
      color: #451225
    }
  
    .sm\:text-pink-darker {
      color: #6F213F
    }
  
    .sm\:text-pink-dark {
      color: #EB5286
    }
  
    .sm\:text-pink-light {
      color: #FA7EA8
    }
  
    .sm\:text-pink-lighter {
      color: #FFBBCA
    }
  
    .sm\:text-pink-lightest {
      color: #FFEBEF
    }
  
    .sm\:hover\:text-transparent:hover {
      color: transparent
    }
  
    .sm\:hover\:text-black:hover {
      color: #22292F
    }
  
    .sm\:hover\:text-white:hover {
      color: #FFFFFF
    }
  
    .sm\:hover\:text-gray-100:hover {
      color: #f7fafc
    }
  
    .sm\:hover\:text-gray-200:hover {
      color: #edf2f7
    }
  
    .sm\:hover\:text-gray-300:hover {
      color: #e2e8f0
    }
  
    .sm\:hover\:text-gray-400:hover {
      color: #cbd5e0
    }
  
    .sm\:hover\:text-gray-500:hover {
      color: #a0aec0
    }
  
    .sm\:hover\:text-gray-600:hover {
      color: #718096
    }
  
    .sm\:hover\:text-gray-700:hover {
      color: #4a5568
    }
  
    .sm\:hover\:text-gray-800:hover {
      color: #2d3748
    }
  
    .sm\:hover\:text-gray-900:hover {
      color: #1a202c
    }
  
    .sm\:hover\:text-red:hover {
      color: #E3342F
    }
  
    .sm\:hover\:text-orange:hover {
      color: #F6993F
    }
  
    .sm\:hover\:text-yellow:hover {
      color: #FFED4A
    }
  
    .sm\:hover\:text-green:hover {
      color: #38C172
    }
  
    .sm\:hover\:text-teal:hover {
      color: #4DC0B5
    }
  
    .sm\:hover\:text-blue:hover {
      color: #3490DC
    }
  
    .sm\:hover\:text-indigo:hover {
      color: #6574CD
    }
  
    .sm\:hover\:text-purple:hover {
      color: #9561E2
    }
  
    .sm\:hover\:text-pink:hover {
      color: #F66D9B
    }
  
    .sm\:hover\:text-grey-darkest:hover {
      color: #3D4852
    }
  
    .sm\:hover\:text-grey-darker:hover {
      color: #606F7B
    }
  
    .sm\:hover\:text-grey-dark:hover {
      color: #8795A1
    }
  
    .sm\:hover\:text-grey:hover {
      color: #B8C2CC
    }
  
    .sm\:hover\:text-grey-light:hover {
      color: #DAE1E7
    }
  
    .sm\:hover\:text-grey-lighter:hover {
      color: #F1F5F8
    }
  
    .sm\:hover\:text-grey-lightest:hover {
      color: #F8FAFC
    }
  
    .sm\:hover\:text-red-darkest:hover {
      color: #3B0D0C
    }
  
    .sm\:hover\:text-red-darker:hover {
      color: #621B18
    }
  
    .sm\:hover\:text-red-dark:hover {
      color: #CC1F1A
    }
  
    .sm\:hover\:text-red-light:hover {
      color: #EF5753
    }
  
    .sm\:hover\:text-red-lighter:hover {
      color: #F9ACAA
    }
  
    .sm\:hover\:text-red-lightest:hover {
      color: #FCEBEA
    }
  
    .sm\:hover\:text-orange-darkest:hover {
      color: #462A16
    }
  
    .sm\:hover\:text-orange-darker:hover {
      color: #613B1F
    }
  
    .sm\:hover\:text-orange-dark:hover {
      color: #DE751F
    }
  
    .sm\:hover\:text-orange-light:hover {
      color: #FAAD63
    }
  
    .sm\:hover\:text-orange-lighter:hover {
      color: #FCD9B6
    }
  
    .sm\:hover\:text-orange-lightest:hover {
      color: #FFF5EB
    }
  
    .sm\:hover\:text-yellow-darkest:hover {
      color: #453411
    }
  
    .sm\:hover\:text-yellow-darker:hover {
      color: #684F1D
    }
  
    .sm\:hover\:text-yellow-dark:hover {
      color: #F2D024
    }
  
    .sm\:hover\:text-yellow-light:hover {
      color: #FFF382
    }
  
    .sm\:hover\:text-yellow-lighter:hover {
      color: #FFF9C2
    }
  
    .sm\:hover\:text-yellow-lightest:hover {
      color: #FCFBEB
    }
  
    .sm\:hover\:text-green-darkest:hover {
      color: #0F2F21
    }
  
    .sm\:hover\:text-green-darker:hover {
      color: #1A4731
    }
  
    .sm\:hover\:text-green-dark:hover {
      color: #1F9D55
    }
  
    .sm\:hover\:text-green-light:hover {
      color: #51D88A
    }
  
    .sm\:hover\:text-green-lighter:hover {
      color: #A2F5BF
    }
  
    .sm\:hover\:text-green-lightest:hover {
      color: #E3FCEC
    }
  
    .sm\:hover\:text-teal-darkest:hover {
      color: #0D3331
    }
  
    .sm\:hover\:text-teal-darker:hover {
      color: #20504F
    }
  
    .sm\:hover\:text-teal-dark:hover {
      color: #38A89D
    }
  
    .sm\:hover\:text-teal-light:hover {
      color: #64D5CA
    }
  
    .sm\:hover\:text-teal-lighter:hover {
      color: #A0F0ED
    }
  
    .sm\:hover\:text-teal-lightest:hover {
      color: #E8FFFE
    }
  
    .sm\:hover\:text-blue-darkest:hover {
      color: #12283A
    }
  
    .sm\:hover\:text-blue-darker:hover {
      color: #1C3D5A
    }
  
    .sm\:hover\:text-blue-dark:hover {
      color: #2779BD
    }
  
    .sm\:hover\:text-blue-light:hover {
      color: #6CB2EB
    }
  
    .sm\:hover\:text-blue-lighter:hover {
      color: #BCDEFA
    }
  
    .sm\:hover\:text-blue-lightest:hover {
      color: #EFF8FF
    }
  
    .sm\:hover\:text-indigo-darkest:hover {
      color: #191E38
    }
  
    .sm\:hover\:text-indigo-darker:hover {
      color: #2F365F
    }
  
    .sm\:hover\:text-indigo-dark:hover {
      color: #5661B3
    }
  
    .sm\:hover\:text-indigo-light:hover {
      color: #7886D7
    }
  
    .sm\:hover\:text-indigo-lighter:hover {
      color: #B2B7FF
    }
  
    .sm\:hover\:text-indigo-lightest:hover {
      color: #E6E8FF
    }
  
    .sm\:hover\:text-purple-darkest:hover {
      color: #21183C
    }
  
    .sm\:hover\:text-purple-darker:hover {
      color: #382B5F
    }
  
    .sm\:hover\:text-purple-dark:hover {
      color: #794ACF
    }
  
    .sm\:hover\:text-purple-light:hover {
      color: #A779E9
    }
  
    .sm\:hover\:text-purple-lighter:hover {
      color: #D6BBFC
    }
  
    .sm\:hover\:text-purple-lightest:hover {
      color: #F3EBFF
    }
  
    .sm\:hover\:text-pink-darkest:hover {
      color: #451225
    }
  
    .sm\:hover\:text-pink-darker:hover {
      color: #6F213F
    }
  
    .sm\:hover\:text-pink-dark:hover {
      color: #EB5286
    }
  
    .sm\:hover\:text-pink-light:hover {
      color: #FA7EA8
    }
  
    .sm\:hover\:text-pink-lighter:hover {
      color: #FFBBCA
    }
  
    .sm\:hover\:text-pink-lightest:hover {
      color: #FFEBEF
    }
  
    .sm\:focus\:text-transparent:focus {
      color: transparent
    }
  
    .sm\:focus\:text-black:focus {
      color: #22292F
    }
  
    .sm\:focus\:text-white:focus {
      color: #FFFFFF
    }
  
    .sm\:focus\:text-gray-100:focus {
      color: #f7fafc
    }
  
    .sm\:focus\:text-gray-200:focus {
      color: #edf2f7
    }
  
    .sm\:focus\:text-gray-300:focus {
      color: #e2e8f0
    }
  
    .sm\:focus\:text-gray-400:focus {
      color: #cbd5e0
    }
  
    .sm\:focus\:text-gray-500:focus {
      color: #a0aec0
    }
  
    .sm\:focus\:text-gray-600:focus {
      color: #718096
    }
  
    .sm\:focus\:text-gray-700:focus {
      color: #4a5568
    }
  
    .sm\:focus\:text-gray-800:focus {
      color: #2d3748
    }
  
    .sm\:focus\:text-gray-900:focus {
      color: #1a202c
    }
  
    .sm\:focus\:text-red:focus {
      color: #E3342F
    }
  
    .sm\:focus\:text-orange:focus {
      color: #F6993F
    }
  
    .sm\:focus\:text-yellow:focus {
      color: #FFED4A
    }
  
    .sm\:focus\:text-green:focus {
      color: #38C172
    }
  
    .sm\:focus\:text-teal:focus {
      color: #4DC0B5
    }
  
    .sm\:focus\:text-blue:focus {
      color: #3490DC
    }
  
    .sm\:focus\:text-indigo:focus {
      color: #6574CD
    }
  
    .sm\:focus\:text-purple:focus {
      color: #9561E2
    }
  
    .sm\:focus\:text-pink:focus {
      color: #F66D9B
    }
  
    .sm\:focus\:text-grey-darkest:focus {
      color: #3D4852
    }
  
    .sm\:focus\:text-grey-darker:focus {
      color: #606F7B
    }
  
    .sm\:focus\:text-grey-dark:focus {
      color: #8795A1
    }
  
    .sm\:focus\:text-grey:focus {
      color: #B8C2CC
    }
  
    .sm\:focus\:text-grey-light:focus {
      color: #DAE1E7
    }
  
    .sm\:focus\:text-grey-lighter:focus {
      color: #F1F5F8
    }
  
    .sm\:focus\:text-grey-lightest:focus {
      color: #F8FAFC
    }
  
    .sm\:focus\:text-red-darkest:focus {
      color: #3B0D0C
    }
  
    .sm\:focus\:text-red-darker:focus {
      color: #621B18
    }
  
    .sm\:focus\:text-red-dark:focus {
      color: #CC1F1A
    }
  
    .sm\:focus\:text-red-light:focus {
      color: #EF5753
    }
  
    .sm\:focus\:text-red-lighter:focus {
      color: #F9ACAA
    }
  
    .sm\:focus\:text-red-lightest:focus {
      color: #FCEBEA
    }
  
    .sm\:focus\:text-orange-darkest:focus {
      color: #462A16
    }
  
    .sm\:focus\:text-orange-darker:focus {
      color: #613B1F
    }
  
    .sm\:focus\:text-orange-dark:focus {
      color: #DE751F
    }
  
    .sm\:focus\:text-orange-light:focus {
      color: #FAAD63
    }
  
    .sm\:focus\:text-orange-lighter:focus {
      color: #FCD9B6
    }
  
    .sm\:focus\:text-orange-lightest:focus {
      color: #FFF5EB
    }
  
    .sm\:focus\:text-yellow-darkest:focus {
      color: #453411
    }
  
    .sm\:focus\:text-yellow-darker:focus {
      color: #684F1D
    }
  
    .sm\:focus\:text-yellow-dark:focus {
      color: #F2D024
    }
  
    .sm\:focus\:text-yellow-light:focus {
      color: #FFF382
    }
  
    .sm\:focus\:text-yellow-lighter:focus {
      color: #FFF9C2
    }
  
    .sm\:focus\:text-yellow-lightest:focus {
      color: #FCFBEB
    }
  
    .sm\:focus\:text-green-darkest:focus {
      color: #0F2F21
    }
  
    .sm\:focus\:text-green-darker:focus {
      color: #1A4731
    }
  
    .sm\:focus\:text-green-dark:focus {
      color: #1F9D55
    }
  
    .sm\:focus\:text-green-light:focus {
      color: #51D88A
    }
  
    .sm\:focus\:text-green-lighter:focus {
      color: #A2F5BF
    }
  
    .sm\:focus\:text-green-lightest:focus {
      color: #E3FCEC
    }
  
    .sm\:focus\:text-teal-darkest:focus {
      color: #0D3331
    }
  
    .sm\:focus\:text-teal-darker:focus {
      color: #20504F
    }
  
    .sm\:focus\:text-teal-dark:focus {
      color: #38A89D
    }
  
    .sm\:focus\:text-teal-light:focus {
      color: #64D5CA
    }
  
    .sm\:focus\:text-teal-lighter:focus {
      color: #A0F0ED
    }
  
    .sm\:focus\:text-teal-lightest:focus {
      color: #E8FFFE
    }
  
    .sm\:focus\:text-blue-darkest:focus {
      color: #12283A
    }
  
    .sm\:focus\:text-blue-darker:focus {
      color: #1C3D5A
    }
  
    .sm\:focus\:text-blue-dark:focus {
      color: #2779BD
    }
  
    .sm\:focus\:text-blue-light:focus {
      color: #6CB2EB
    }
  
    .sm\:focus\:text-blue-lighter:focus {
      color: #BCDEFA
    }
  
    .sm\:focus\:text-blue-lightest:focus {
      color: #EFF8FF
    }
  
    .sm\:focus\:text-indigo-darkest:focus {
      color: #191E38
    }
  
    .sm\:focus\:text-indigo-darker:focus {
      color: #2F365F
    }
  
    .sm\:focus\:text-indigo-dark:focus {
      color: #5661B3
    }
  
    .sm\:focus\:text-indigo-light:focus {
      color: #7886D7
    }
  
    .sm\:focus\:text-indigo-lighter:focus {
      color: #B2B7FF
    }
  
    .sm\:focus\:text-indigo-lightest:focus {
      color: #E6E8FF
    }
  
    .sm\:focus\:text-purple-darkest:focus {
      color: #21183C
    }
  
    .sm\:focus\:text-purple-darker:focus {
      color: #382B5F
    }
  
    .sm\:focus\:text-purple-dark:focus {
      color: #794ACF
    }
  
    .sm\:focus\:text-purple-light:focus {
      color: #A779E9
    }
  
    .sm\:focus\:text-purple-lighter:focus {
      color: #D6BBFC
    }
  
    .sm\:focus\:text-purple-lightest:focus {
      color: #F3EBFF
    }
  
    .sm\:focus\:text-pink-darkest:focus {
      color: #451225
    }
  
    .sm\:focus\:text-pink-darker:focus {
      color: #6F213F
    }
  
    .sm\:focus\:text-pink-dark:focus {
      color: #EB5286
    }
  
    .sm\:focus\:text-pink-light:focus {
      color: #FA7EA8
    }
  
    .sm\:focus\:text-pink-lighter:focus {
      color: #FFBBCA
    }
  
    .sm\:focus\:text-pink-lightest:focus {
      color: #FFEBEF
    }
  
    .sm\:text-10 {
      font-size: 1rem
    }
  
    .sm\:text-11 {
      font-size: 1.1rem
    }
  
    .sm\:text-12 {
      font-size: 1.2rem
    }
  
    .sm\:text-13 {
      font-size: 1.3rem
    }
  
    .sm\:text-14 {
      font-size: 1.4rem
    }
  
    .sm\:text-15 {
      font-size: 1.5rem
    }
  
    .sm\:text-16 {
      font-size: 1.6rem
    }
  
    .sm\:text-17 {
      font-size: 1.7rem
    }
  
    .sm\:text-18 {
      font-size: 1.8rem
    }
  
    .sm\:text-19 {
      font-size: 1.9rem
    }
  
    .sm\:text-20 {
      font-size: 2rem
    }
  
    .sm\:text-24 {
      font-size: 2.4rem
    }
  
    .sm\:text-28 {
      font-size: 2.8rem
    }
  
    .sm\:text-32 {
      font-size: 3.2rem
    }
  
    .sm\:text-36 {
      font-size: 3.6rem
    }
  
    .sm\:text-40 {
      font-size: 4rem
    }
  
    .sm\:text-44 {
      font-size: 4.4rem
    }
  
    .sm\:text-48 {
      font-size: 4.8rem
    }
  
    .sm\:text-52 {
      font-size: 5.2rem
    }
  
    .sm\:text-56 {
      font-size: 5.6rem
    }
  
    .sm\:text-60 {
      font-size: 6rem
    }
  
    .sm\:text-64 {
      font-size: 6.4rem
    }
  
    .sm\:text-68 {
      font-size: 6.8rem
    }
  
    .sm\:text-72 {
      font-size: 7.2rem
    }
  
    .sm\:text-96 {
      font-size: 9.6rem
    }
  
    .sm\:text-128 {
      font-size: 12.8rem
    }
  
    .sm\:text-xs {
      font-size: 1.2rem
    }
  
    .sm\:text-sm {
      font-size: 2.4rem
    }
  
    .sm\:text-base {
      font-size: 1.6rem
    }
  
    .sm\:text-lg {
      font-size: 1.8rem
    }
  
    .sm\:text-xl {
      font-size: 2rem
    }
  
    .sm\:text-2xl {
      font-size: 2.4rem
    }
  
    .sm\:text-3xl {
      font-size: 3rem
    }
  
    .sm\:text-4xl {
      font-size: 3.6rem
    }
  
    .sm\:text-5xl {
      font-size: 4.8rem
    }
  
    .sm\:text-6xl {
      font-size: 4rem
    }
  
    .sm\:italic {
      font-style: italic
    }
  
    .sm\:not-italic {
      font-style: normal
    }
  
    .sm\:hover\:italic:hover {
      font-style: italic
    }
  
    .sm\:hover\:not-italic:hover {
      font-style: normal
    }
  
    .sm\:focus\:italic:focus {
      font-style: italic
    }
  
    .sm\:focus\:not-italic:focus {
      font-style: normal
    }
  
    .sm\:uppercase {
      text-transform: uppercase
    }
  
    .sm\:lowercase {
      text-transform: lowercase
    }
  
    .sm\:capitalize {
      text-transform: capitalize
    }
  
    .sm\:normal-case {
      text-transform: none
    }
  
    .sm\:underline {
      text-decoration: underline
    }
  
    .sm\:line-through {
      text-decoration: line-through
    }
  
    .sm\:no-underline {
      text-decoration: none
    }
  
    .sm\:hover\:underline:hover {
      text-decoration: underline
    }
  
    .sm\:hover\:line-through:hover {
      text-decoration: line-through
    }
  
    .sm\:hover\:no-underline:hover {
      text-decoration: none
    }
  
    .sm\:focus\:underline:focus {
      text-decoration: underline
    }
  
    .sm\:focus\:line-through:focus {
      text-decoration: line-through
    }
  
    .sm\:focus\:no-underline:focus {
      text-decoration: none
    }
  
    .sm\:antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }
  
    .sm\:subpixel-antialiased {
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto
    }
  
    .sm\:tracking-tighter {
      letter-spacing: -0.05em
    }
  
    .sm\:tracking-tight {
      letter-spacing: -0.025em
    }
  
    .sm\:tracking-normal {
      letter-spacing: 0
    }
  
    .sm\:tracking-wide {
      letter-spacing: 0.025em
    }
  
    .sm\:tracking-wider {
      letter-spacing: 0.05em
    }
  
    .sm\:tracking-widest {
      letter-spacing: 0.1em
    }
  
    .sm\:select-none {
      -webkit-user-select: none;
              user-select: none
    }
  
    .sm\:select-text {
      -webkit-user-select: text;
              user-select: text
    }
  
    .sm\:select-all {
      -webkit-user-select: all;
              user-select: all
    }
  
    .sm\:select-auto {
      -webkit-user-select: auto;
              user-select: auto
    }
  
    .sm\:align-baseline {
      vertical-align: baseline
    }
  
    .sm\:align-top {
      vertical-align: top
    }
  
    .sm\:align-middle {
      vertical-align: middle
    }
  
    .sm\:align-bottom {
      vertical-align: bottom
    }
  
    .sm\:align-text-top {
      vertical-align: text-top
    }
  
    .sm\:align-text-bottom {
      vertical-align: text-bottom
    }
  
    .sm\:visible {
      visibility: visible
    }
  
    .sm\:invisible {
      visibility: hidden
    }
  
    .sm\:whitespace-normal {
      white-space: normal
    }
  
    .sm\:whitespace-no-wrap {
      white-space: nowrap
    }
  
    .sm\:whitespace-pre {
      white-space: pre
    }
  
    .sm\:whitespace-pre-line {
      white-space: pre-line
    }
  
    .sm\:whitespace-pre-wrap {
      white-space: pre-wrap
    }
  
    .sm\:break-normal {
      overflow-wrap: normal;
      word-break: normal
    }
  
    .sm\:break-words {
      overflow-wrap: break-word
    }
  
    .sm\:break-all {
      word-break: break-all
    }
  
    .sm\:truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
  
    .sm\:w-0 {
      width: 0
    }
  
    .sm\:w-1 {
      width: 0.25rem
    }
  
    .sm\:w-2 {
      width: 0.5rem
    }
  
    .sm\:w-3 {
      width: 0.75rem
    }
  
    .sm\:w-4 {
      width: 0.4rem
    }
  
    .sm\:w-5 {
      width: 1.25rem
    }
  
    .sm\:w-6 {
      width: 0.6rem
    }
  
    .sm\:w-8 {
      width: 0.8rem
    }
  
    .sm\:w-10 {
      width: 2.5rem
    }
  
    .sm\:w-12 {
      width: 1.2rem
    }
  
    .sm\:w-16 {
      width: 1.6rem
    }
  
    .sm\:w-20 {
      width: 2rem
    }
  
    .sm\:w-24 {
      width: 2.4rem
    }
  
    .sm\:w-28 {
      width: 2.8rem
    }
  
    .sm\:w-32 {
      width: 3.2rem
    }
  
    .sm\:w-36 {
      width: 3.6rem
    }
  
    .sm\:w-40 {
      width: 4rem
    }
  
    .sm\:w-44 {
      width: 4.4rem
    }
  
    .sm\:w-48 {
      width: 4.8rem
    }
  
    .sm\:w-52 {
      width: 5.2rem
    }
  
    .sm\:w-56 {
      width: 5.6rem
    }
  
    .sm\:w-60 {
      width: 6rem
    }
  
    .sm\:w-64 {
      width: 6.4rem
    }
  
    .sm\:w-68 {
      width: 6.8rem
    }
  
    .sm\:w-72 {
      width: 7.2rem
    }
  
    .sm\:w-76 {
      width: 7.6rem
    }
  
    .sm\:w-80 {
      width: 8rem
    }
  
    .sm\:w-84 {
      width: 8.4rem
    }
  
    .sm\:w-88 {
      width: 8.8rem
    }
  
    .sm\:w-92 {
      width: 9.2rem
    }
  
    .sm\:w-96 {
      width: 9.6rem
    }
  
    .sm\:w-128 {
      width: 12.8rem
    }
  
    .sm\:w-136 {
      width: 13.6rem
    }
  
    .sm\:w-160 {
      width: 16rem
    }
  
    .sm\:w-192 {
      width: 19.2rem
    }
  
    .sm\:w-200 {
      width: 20rem
    }
  
    .sm\:w-208 {
      width: 20.8rem
    }
  
    .sm\:w-216 {
      width: 21.6rem
    }
  
    .sm\:w-224 {
      width: 22.4rem
    }
  
    .sm\:w-256 {
      width: 25.6rem
    }
  
    .sm\:w-288 {
      width: 28.8rem
    }
  
    .sm\:w-320 {
      width: 32rem
    }
  
    .sm\:w-360 {
      width: 36rem
    }
  
    .sm\:w-384 {
      width: 38.4rem
    }
  
    .sm\:w-400 {
      width: 40rem
    }
  
    .sm\:w-512 {
      width: 51.2rem
    }
  
    .sm\:w-640 {
      width: 64rem
    }
  
    .sm\:w-auto {
      width: auto
    }
  
    .sm\:w-px {
      width: 1px
    }
  
    .sm\:w-xs {
      width: 32rem
    }
  
    .sm\:w-sm {
      width: 48rem
    }
  
    .sm\:w-md {
      width: 64rem
    }
  
    .sm\:w-lg {
      width: 80rem
    }
  
    .sm\:w-xl {
      width: 96rem
    }
  
    .sm\:w-2xl {
      width: 112rem
    }
  
    .sm\:w-3xl {
      width: 128rem
    }
  
    .sm\:w-4xl {
      width: 144rem
    }
  
    .sm\:w-5xl {
      width: 160rem
    }
  
    .sm\:w-1\/2 {
      width: 50%
    }
  
    .sm\:w-1\/3 {
      width: 33.33333%
    }
  
    .sm\:w-2\/3 {
      width: 66.66667%
    }
  
    .sm\:w-1\/4 {
      width: 25%
    }
  
    .sm\:w-2\/4 {
      width: 50%
    }
  
    .sm\:w-3\/4 {
      width: 75%
    }
  
    .sm\:w-1\/5 {
      width: 20%
    }
  
    .sm\:w-2\/5 {
      width: 40%
    }
  
    .sm\:w-3\/5 {
      width: 60%
    }
  
    .sm\:w-4\/5 {
      width: 80%
    }
  
    .sm\:w-1\/6 {
      width: 16.66667%
    }
  
    .sm\:w-2\/6 {
      width: 33.33333%
    }
  
    .sm\:w-3\/6 {
      width: 50%
    }
  
    .sm\:w-4\/6 {
      width: 66.66667%
    }
  
    .sm\:w-5\/6 {
      width: 83.33333%
    }
  
    .sm\:w-1\/12 {
      width: 8.33333%
    }
  
    .sm\:w-2\/12 {
      width: 16.66667%
    }
  
    .sm\:w-3\/12 {
      width: 25%
    }
  
    .sm\:w-4\/12 {
      width: 33.33333%
    }
  
    .sm\:w-5\/12 {
      width: 41.66667%
    }
  
    .sm\:w-6\/12 {
      width: 50%
    }
  
    .sm\:w-7\/12 {
      width: 58.33333%
    }
  
    .sm\:w-8\/12 {
      width: 66.66667%
    }
  
    .sm\:w-9\/12 {
      width: 75%
    }
  
    .sm\:w-10\/12 {
      width: 83.33333%
    }
  
    .sm\:w-11\/12 {
      width: 91.66667%
    }
  
    .sm\:w-full {
      width: 100%
    }
  
    .sm\:w-screen {
      width: 100vw
    }
  
    .sm\:z-0 {
      z-index: 0
    }
  
    .sm\:z-10 {
      z-index: 10
    }
  
    .sm\:z-20 {
      z-index: 20
    }
  
    .sm\:z-30 {
      z-index: 30
    }
  
    .sm\:z-40 {
      z-index: 40
    }
  
    .sm\:z-50 {
      z-index: 50
    }
  
    .sm\:z-99 {
      z-index: 99
    }
  
    .sm\:z-999 {
      z-index: 999
    }
  
    .sm\:z-9999 {
      z-index: 9999
    }
  
    .sm\:z-auto {
      z-index: auto
    }
  }
  
  @media (min-width: 960px) {
    .md\:appearance-none {
      -webkit-appearance: none;
              appearance: none
    }
  
    .md\:bg-fixed {
      background-attachment: fixed
    }
  
    .md\:bg-local {
      background-attachment: local
    }
  
    .md\:bg-scroll {
      background-attachment: scroll
    }
  
    .md\:bg-transparent {
      background-color: transparent
    }
  
    .md\:bg-black {
      background-color: #22292F
    }
  
    .md\:bg-white {
      background-color: #FFFFFF
    }
  
    .md\:bg-gray-100 {
      background-color: #f7fafc
    }
  
    .md\:bg-gray-200 {
      background-color: #edf2f7
    }
  
    .md\:bg-gray-300 {
      background-color: #e2e8f0
    }
  
    .md\:bg-gray-400 {
      background-color: #cbd5e0
    }
  
    .md\:bg-gray-500 {
      background-color: #a0aec0
    }
  
    .md\:bg-gray-600 {
      background-color: #718096
    }
  
    .md\:bg-gray-700 {
      background-color: #4a5568
    }
  
    .md\:bg-gray-800 {
      background-color: #2d3748
    }
  
    .md\:bg-gray-900 {
      background-color: #1a202c
    }
  
    .md\:bg-red {
      background-color: #E3342F
    }
  
    .md\:bg-orange {
      background-color: #F6993F
    }
  
    .md\:bg-yellow {
      background-color: #FFED4A
    }
  
    .md\:bg-green {
      background-color: #38C172
    }
  
    .md\:bg-teal {
      background-color: #4DC0B5
    }
  
    .md\:bg-blue {
      background-color: #3490DC
    }
  
    .md\:bg-indigo {
      background-color: #6574CD
    }
  
    .md\:bg-purple {
      background-color: #9561E2
    }
  
    .md\:bg-pink {
      background-color: #F66D9B
    }
  
    .md\:bg-grey-darkest {
      background-color: #3D4852
    }
  
    .md\:bg-grey-darker {
      background-color: #606F7B
    }
  
    .md\:bg-grey-dark {
      background-color: #8795A1
    }
  
    .md\:bg-grey {
      background-color: #B8C2CC
    }
  
    .md\:bg-grey-light {
      background-color: #DAE1E7
    }
  
    .md\:bg-grey-lighter {
      background-color: #F1F5F8
    }
  
    .md\:bg-grey-lightest {
      background-color: #F8FAFC
    }
  
    .md\:bg-red-darkest {
      background-color: #3B0D0C
    }
  
    .md\:bg-red-darker {
      background-color: #621B18
    }
  
    .md\:bg-red-dark {
      background-color: #CC1F1A
    }
  
    .md\:bg-red-light {
      background-color: #EF5753
    }
  
    .md\:bg-red-lighter {
      background-color: #F9ACAA
    }
  
    .md\:bg-red-lightest {
      background-color: #FCEBEA
    }
  
    .md\:bg-orange-darkest {
      background-color: #462A16
    }
  
    .md\:bg-orange-darker {
      background-color: #613B1F
    }
  
    .md\:bg-orange-dark {
      background-color: #DE751F
    }
  
    .md\:bg-orange-light {
      background-color: #FAAD63
    }
  
    .md\:bg-orange-lighter {
      background-color: #FCD9B6
    }
  
    .md\:bg-orange-lightest {
      background-color: #FFF5EB
    }
  
    .md\:bg-yellow-darkest {
      background-color: #453411
    }
  
    .md\:bg-yellow-darker {
      background-color: #684F1D
    }
  
    .md\:bg-yellow-dark {
      background-color: #F2D024
    }
  
    .md\:bg-yellow-light {
      background-color: #FFF382
    }
  
    .md\:bg-yellow-lighter {
      background-color: #FFF9C2
    }
  
    .md\:bg-yellow-lightest {
      background-color: #FCFBEB
    }
  
    .md\:bg-green-darkest {
      background-color: #0F2F21
    }
  
    .md\:bg-green-darker {
      background-color: #1A4731
    }
  
    .md\:bg-green-dark {
      background-color: #1F9D55
    }
  
    .md\:bg-green-light {
      background-color: #51D88A
    }
  
    .md\:bg-green-lighter {
      background-color: #A2F5BF
    }
  
    .md\:bg-green-lightest {
      background-color: #E3FCEC
    }
  
    .md\:bg-teal-darkest {
      background-color: #0D3331
    }
  
    .md\:bg-teal-darker {
      background-color: #20504F
    }
  
    .md\:bg-teal-dark {
      background-color: #38A89D
    }
  
    .md\:bg-teal-light {
      background-color: #64D5CA
    }
  
    .md\:bg-teal-lighter {
      background-color: #A0F0ED
    }
  
    .md\:bg-teal-lightest {
      background-color: #E8FFFE
    }
  
    .md\:bg-blue-darkest {
      background-color: #12283A
    }
  
    .md\:bg-blue-darker {
      background-color: #1C3D5A
    }
  
    .md\:bg-blue-dark {
      background-color: #2779BD
    }
  
    .md\:bg-blue-light {
      background-color: #6CB2EB
    }
  
    .md\:bg-blue-lighter {
      background-color: #BCDEFA
    }
  
    .md\:bg-blue-lightest {
      background-color: #EFF8FF
    }
  
    .md\:bg-indigo-darkest {
      background-color: #191E38
    }
  
    .md\:bg-indigo-darker {
      background-color: #2F365F
    }
  
    .md\:bg-indigo-dark {
      background-color: #5661B3
    }
  
    .md\:bg-indigo-light {
      background-color: #7886D7
    }
  
    .md\:bg-indigo-lighter {
      background-color: #B2B7FF
    }
  
    .md\:bg-indigo-lightest {
      background-color: #E6E8FF
    }
  
    .md\:bg-purple-darkest {
      background-color: #21183C
    }
  
    .md\:bg-purple-darker {
      background-color: #382B5F
    }
  
    .md\:bg-purple-dark {
      background-color: #794ACF
    }
  
    .md\:bg-purple-light {
      background-color: #A779E9
    }
  
    .md\:bg-purple-lighter {
      background-color: #D6BBFC
    }
  
    .md\:bg-purple-lightest {
      background-color: #F3EBFF
    }
  
    .md\:bg-pink-darkest {
      background-color: #451225
    }
  
    .md\:bg-pink-darker {
      background-color: #6F213F
    }
  
    .md\:bg-pink-dark {
      background-color: #EB5286
    }
  
    .md\:bg-pink-light {
      background-color: #FA7EA8
    }
  
    .md\:bg-pink-lighter {
      background-color: #FFBBCA
    }
  
    .md\:bg-pink-lightest {
      background-color: #FFEBEF
    }
  
    .md\:hover\:bg-transparent:hover {
      background-color: transparent
    }
  
    .md\:hover\:bg-black:hover {
      background-color: #22292F
    }
  
    .md\:hover\:bg-white:hover {
      background-color: #FFFFFF
    }
  
    .md\:hover\:bg-gray-100:hover {
      background-color: #f7fafc
    }
  
    .md\:hover\:bg-gray-200:hover {
      background-color: #edf2f7
    }
  
    .md\:hover\:bg-gray-300:hover {
      background-color: #e2e8f0
    }
  
    .md\:hover\:bg-gray-400:hover {
      background-color: #cbd5e0
    }
  
    .md\:hover\:bg-gray-500:hover {
      background-color: #a0aec0
    }
  
    .md\:hover\:bg-gray-600:hover {
      background-color: #718096
    }
  
    .md\:hover\:bg-gray-700:hover {
      background-color: #4a5568
    }
  
    .md\:hover\:bg-gray-800:hover {
      background-color: #2d3748
    }
  
    .md\:hover\:bg-gray-900:hover {
      background-color: #1a202c
    }
  
    .md\:hover\:bg-red:hover {
      background-color: #E3342F
    }
  
    .md\:hover\:bg-orange:hover {
      background-color: #F6993F
    }
  
    .md\:hover\:bg-yellow:hover {
      background-color: #FFED4A
    }
  
    .md\:hover\:bg-green:hover {
      background-color: #38C172
    }
  
    .md\:hover\:bg-teal:hover {
      background-color: #4DC0B5
    }
  
    .md\:hover\:bg-blue:hover {
      background-color: #3490DC
    }
  
    .md\:hover\:bg-indigo:hover {
      background-color: #6574CD
    }
  
    .md\:hover\:bg-purple:hover {
      background-color: #9561E2
    }
  
    .md\:hover\:bg-pink:hover {
      background-color: #F66D9B
    }
  
    .md\:hover\:bg-grey-darkest:hover {
      background-color: #3D4852
    }
  
    .md\:hover\:bg-grey-darker:hover {
      background-color: #606F7B
    }
  
    .md\:hover\:bg-grey-dark:hover {
      background-color: #8795A1
    }
  
    .md\:hover\:bg-grey:hover {
      background-color: #B8C2CC
    }
  
    .md\:hover\:bg-grey-light:hover {
      background-color: #DAE1E7
    }
  
    .md\:hover\:bg-grey-lighter:hover {
      background-color: #F1F5F8
    }
  
    .md\:hover\:bg-grey-lightest:hover {
      background-color: #F8FAFC
    }
  
    .md\:hover\:bg-red-darkest:hover {
      background-color: #3B0D0C
    }
  
    .md\:hover\:bg-red-darker:hover {
      background-color: #621B18
    }
  
    .md\:hover\:bg-red-dark:hover {
      background-color: #CC1F1A
    }
  
    .md\:hover\:bg-red-light:hover {
      background-color: #EF5753
    }
  
    .md\:hover\:bg-red-lighter:hover {
      background-color: #F9ACAA
    }
  
    .md\:hover\:bg-red-lightest:hover {
      background-color: #FCEBEA
    }
  
    .md\:hover\:bg-orange-darkest:hover {
      background-color: #462A16
    }
  
    .md\:hover\:bg-orange-darker:hover {
      background-color: #613B1F
    }
  
    .md\:hover\:bg-orange-dark:hover {
      background-color: #DE751F
    }
  
    .md\:hover\:bg-orange-light:hover {
      background-color: #FAAD63
    }
  
    .md\:hover\:bg-orange-lighter:hover {
      background-color: #FCD9B6
    }
  
    .md\:hover\:bg-orange-lightest:hover {
      background-color: #FFF5EB
    }
  
    .md\:hover\:bg-yellow-darkest:hover {
      background-color: #453411
    }
  
    .md\:hover\:bg-yellow-darker:hover {
      background-color: #684F1D
    }
  
    .md\:hover\:bg-yellow-dark:hover {
      background-color: #F2D024
    }
  
    .md\:hover\:bg-yellow-light:hover {
      background-color: #FFF382
    }
  
    .md\:hover\:bg-yellow-lighter:hover {
      background-color: #FFF9C2
    }
  
    .md\:hover\:bg-yellow-lightest:hover {
      background-color: #FCFBEB
    }
  
    .md\:hover\:bg-green-darkest:hover {
      background-color: #0F2F21
    }
  
    .md\:hover\:bg-green-darker:hover {
      background-color: #1A4731
    }
  
    .md\:hover\:bg-green-dark:hover {
      background-color: #1F9D55
    }
  
    .md\:hover\:bg-green-light:hover {
      background-color: #51D88A
    }
  
    .md\:hover\:bg-green-lighter:hover {
      background-color: #A2F5BF
    }
  
    .md\:hover\:bg-green-lightest:hover {
      background-color: #E3FCEC
    }
  
    .md\:hover\:bg-teal-darkest:hover {
      background-color: #0D3331
    }
  
    .md\:hover\:bg-teal-darker:hover {
      background-color: #20504F
    }
  
    .md\:hover\:bg-teal-dark:hover {
      background-color: #38A89D
    }
  
    .md\:hover\:bg-teal-light:hover {
      background-color: #64D5CA
    }
  
    .md\:hover\:bg-teal-lighter:hover {
      background-color: #A0F0ED
    }
  
    .md\:hover\:bg-teal-lightest:hover {
      background-color: #E8FFFE
    }
  
    .md\:hover\:bg-blue-darkest:hover {
      background-color: #12283A
    }
  
    .md\:hover\:bg-blue-darker:hover {
      background-color: #1C3D5A
    }
  
    .md\:hover\:bg-blue-dark:hover {
      background-color: #2779BD
    }
  
    .md\:hover\:bg-blue-light:hover {
      background-color: #6CB2EB
    }
  
    .md\:hover\:bg-blue-lighter:hover {
      background-color: #BCDEFA
    }
  
    .md\:hover\:bg-blue-lightest:hover {
      background-color: #EFF8FF
    }
  
    .md\:hover\:bg-indigo-darkest:hover {
      background-color: #191E38
    }
  
    .md\:hover\:bg-indigo-darker:hover {
      background-color: #2F365F
    }
  
    .md\:hover\:bg-indigo-dark:hover {
      background-color: #5661B3
    }
  
    .md\:hover\:bg-indigo-light:hover {
      background-color: #7886D7
    }
  
    .md\:hover\:bg-indigo-lighter:hover {
      background-color: #B2B7FF
    }
  
    .md\:hover\:bg-indigo-lightest:hover {
      background-color: #E6E8FF
    }
  
    .md\:hover\:bg-purple-darkest:hover {
      background-color: #21183C
    }
  
    .md\:hover\:bg-purple-darker:hover {
      background-color: #382B5F
    }
  
    .md\:hover\:bg-purple-dark:hover {
      background-color: #794ACF
    }
  
    .md\:hover\:bg-purple-light:hover {
      background-color: #A779E9
    }
  
    .md\:hover\:bg-purple-lighter:hover {
      background-color: #D6BBFC
    }
  
    .md\:hover\:bg-purple-lightest:hover {
      background-color: #F3EBFF
    }
  
    .md\:hover\:bg-pink-darkest:hover {
      background-color: #451225
    }
  
    .md\:hover\:bg-pink-darker:hover {
      background-color: #6F213F
    }
  
    .md\:hover\:bg-pink-dark:hover {
      background-color: #EB5286
    }
  
    .md\:hover\:bg-pink-light:hover {
      background-color: #FA7EA8
    }
  
    .md\:hover\:bg-pink-lighter:hover {
      background-color: #FFBBCA
    }
  
    .md\:hover\:bg-pink-lightest:hover {
      background-color: #FFEBEF
    }
  
    .md\:focus\:bg-transparent:focus {
      background-color: transparent
    }
  
    .md\:focus\:bg-black:focus {
      background-color: #22292F
    }
  
    .md\:focus\:bg-white:focus {
      background-color: #FFFFFF
    }
  
    .md\:focus\:bg-gray-100:focus {
      background-color: #f7fafc
    }
  
    .md\:focus\:bg-gray-200:focus {
      background-color: #edf2f7
    }
  
    .md\:focus\:bg-gray-300:focus {
      background-color: #e2e8f0
    }
  
    .md\:focus\:bg-gray-400:focus {
      background-color: #cbd5e0
    }
  
    .md\:focus\:bg-gray-500:focus {
      background-color: #a0aec0
    }
  
    .md\:focus\:bg-gray-600:focus {
      background-color: #718096
    }
  
    .md\:focus\:bg-gray-700:focus {
      background-color: #4a5568
    }
  
    .md\:focus\:bg-gray-800:focus {
      background-color: #2d3748
    }
  
    .md\:focus\:bg-gray-900:focus {
      background-color: #1a202c
    }
  
    .md\:focus\:bg-red:focus {
      background-color: #E3342F
    }
  
    .md\:focus\:bg-orange:focus {
      background-color: #F6993F
    }
  
    .md\:focus\:bg-yellow:focus {
      background-color: #FFED4A
    }
  
    .md\:focus\:bg-green:focus {
      background-color: #38C172
    }
  
    .md\:focus\:bg-teal:focus {
      background-color: #4DC0B5
    }
  
    .md\:focus\:bg-blue:focus {
      background-color: #3490DC
    }
  
    .md\:focus\:bg-indigo:focus {
      background-color: #6574CD
    }
  
    .md\:focus\:bg-purple:focus {
      background-color: #9561E2
    }
  
    .md\:focus\:bg-pink:focus {
      background-color: #F66D9B
    }
  
    .md\:focus\:bg-grey-darkest:focus {
      background-color: #3D4852
    }
  
    .md\:focus\:bg-grey-darker:focus {
      background-color: #606F7B
    }
  
    .md\:focus\:bg-grey-dark:focus {
      background-color: #8795A1
    }
  
    .md\:focus\:bg-grey:focus {
      background-color: #B8C2CC
    }
  
    .md\:focus\:bg-grey-light:focus {
      background-color: #DAE1E7
    }
  
    .md\:focus\:bg-grey-lighter:focus {
      background-color: #F1F5F8
    }
  
    .md\:focus\:bg-grey-lightest:focus {
      background-color: #F8FAFC
    }
  
    .md\:focus\:bg-red-darkest:focus {
      background-color: #3B0D0C
    }
  
    .md\:focus\:bg-red-darker:focus {
      background-color: #621B18
    }
  
    .md\:focus\:bg-red-dark:focus {
      background-color: #CC1F1A
    }
  
    .md\:focus\:bg-red-light:focus {
      background-color: #EF5753
    }
  
    .md\:focus\:bg-red-lighter:focus {
      background-color: #F9ACAA
    }
  
    .md\:focus\:bg-red-lightest:focus {
      background-color: #FCEBEA
    }
  
    .md\:focus\:bg-orange-darkest:focus {
      background-color: #462A16
    }
  
    .md\:focus\:bg-orange-darker:focus {
      background-color: #613B1F
    }
  
    .md\:focus\:bg-orange-dark:focus {
      background-color: #DE751F
    }
  
    .md\:focus\:bg-orange-light:focus {
      background-color: #FAAD63
    }
  
    .md\:focus\:bg-orange-lighter:focus {
      background-color: #FCD9B6
    }
  
    .md\:focus\:bg-orange-lightest:focus {
      background-color: #FFF5EB
    }
  
    .md\:focus\:bg-yellow-darkest:focus {
      background-color: #453411
    }
  
    .md\:focus\:bg-yellow-darker:focus {
      background-color: #684F1D
    }
  
    .md\:focus\:bg-yellow-dark:focus {
      background-color: #F2D024
    }
  
    .md\:focus\:bg-yellow-light:focus {
      background-color: #FFF382
    }
  
    .md\:focus\:bg-yellow-lighter:focus {
      background-color: #FFF9C2
    }
  
    .md\:focus\:bg-yellow-lightest:focus {
      background-color: #FCFBEB
    }
  
    .md\:focus\:bg-green-darkest:focus {
      background-color: #0F2F21
    }
  
    .md\:focus\:bg-green-darker:focus {
      background-color: #1A4731
    }
  
    .md\:focus\:bg-green-dark:focus {
      background-color: #1F9D55
    }
  
    .md\:focus\:bg-green-light:focus {
      background-color: #51D88A
    }
  
    .md\:focus\:bg-green-lighter:focus {
      background-color: #A2F5BF
    }
  
    .md\:focus\:bg-green-lightest:focus {
      background-color: #E3FCEC
    }
  
    .md\:focus\:bg-teal-darkest:focus {
      background-color: #0D3331
    }
  
    .md\:focus\:bg-teal-darker:focus {
      background-color: #20504F
    }
  
    .md\:focus\:bg-teal-dark:focus {
      background-color: #38A89D
    }
  
    .md\:focus\:bg-teal-light:focus {
      background-color: #64D5CA
    }
  
    .md\:focus\:bg-teal-lighter:focus {
      background-color: #A0F0ED
    }
  
    .md\:focus\:bg-teal-lightest:focus {
      background-color: #E8FFFE
    }
  
    .md\:focus\:bg-blue-darkest:focus {
      background-color: #12283A
    }
  
    .md\:focus\:bg-blue-darker:focus {
      background-color: #1C3D5A
    }
  
    .md\:focus\:bg-blue-dark:focus {
      background-color: #2779BD
    }
  
    .md\:focus\:bg-blue-light:focus {
      background-color: #6CB2EB
    }
  
    .md\:focus\:bg-blue-lighter:focus {
      background-color: #BCDEFA
    }
  
    .md\:focus\:bg-blue-lightest:focus {
      background-color: #EFF8FF
    }
  
    .md\:focus\:bg-indigo-darkest:focus {
      background-color: #191E38
    }
  
    .md\:focus\:bg-indigo-darker:focus {
      background-color: #2F365F
    }
  
    .md\:focus\:bg-indigo-dark:focus {
      background-color: #5661B3
    }
  
    .md\:focus\:bg-indigo-light:focus {
      background-color: #7886D7
    }
  
    .md\:focus\:bg-indigo-lighter:focus {
      background-color: #B2B7FF
    }
  
    .md\:focus\:bg-indigo-lightest:focus {
      background-color: #E6E8FF
    }
  
    .md\:focus\:bg-purple-darkest:focus {
      background-color: #21183C
    }
  
    .md\:focus\:bg-purple-darker:focus {
      background-color: #382B5F
    }
  
    .md\:focus\:bg-purple-dark:focus {
      background-color: #794ACF
    }
  
    .md\:focus\:bg-purple-light:focus {
      background-color: #A779E9
    }
  
    .md\:focus\:bg-purple-lighter:focus {
      background-color: #D6BBFC
    }
  
    .md\:focus\:bg-purple-lightest:focus {
      background-color: #F3EBFF
    }
  
    .md\:focus\:bg-pink-darkest:focus {
      background-color: #451225
    }
  
    .md\:focus\:bg-pink-darker:focus {
      background-color: #6F213F
    }
  
    .md\:focus\:bg-pink-dark:focus {
      background-color: #EB5286
    }
  
    .md\:focus\:bg-pink-light:focus {
      background-color: #FA7EA8
    }
  
    .md\:focus\:bg-pink-lighter:focus {
      background-color: #FFBBCA
    }
  
    .md\:focus\:bg-pink-lightest:focus {
      background-color: #FFEBEF
    }
  
    .md\:bg-bottom {
      background-position: bottom
    }
  
    .md\:bg-center {
      background-position: center
    }
  
    .md\:bg-left {
      background-position: left
    }
  
    .md\:bg-left-bottom {
      background-position: left bottom
    }
  
    .md\:bg-left-top {
      background-position: left top
    }
  
    .md\:bg-right {
      background-position: right
    }
  
    .md\:bg-right-bottom {
      background-position: right bottom
    }
  
    .md\:bg-right-top {
      background-position: right top
    }
  
    .md\:bg-top {
      background-position: top
    }
  
    .md\:bg-repeat {
      background-repeat: repeat
    }
  
    .md\:bg-no-repeat {
      background-repeat: no-repeat
    }
  
    .md\:bg-repeat-x {
      background-repeat: repeat-x
    }
  
    .md\:bg-repeat-y {
      background-repeat: repeat-y
    }
  
    .md\:bg-repeat-round {
      background-repeat: round
    }
  
    .md\:bg-repeat-space {
      background-repeat: space
    }
  
    .md\:bg-auto {
      background-size: auto
    }
  
    .md\:bg-cover {
      background-size: cover
    }
  
    .md\:bg-contain {
      background-size: contain
    }
  
    .md\:border-collapse {
      border-collapse: collapse
    }
  
    .md\:border-separate {
      border-collapse: separate
    }
  
    .md\:border-transparent {
      border-color: transparent
    }
  
    .md\:border-black {
      border-color: #22292F
    }
  
    .md\:border-white {
      border-color: #FFFFFF
    }
  
    .md\:border-gray-100 {
      border-color: #f7fafc
    }
  
    .md\:border-gray-200 {
      border-color: #edf2f7
    }
  
    .md\:border-gray-300 {
      border-color: #e2e8f0
    }
  
    .md\:border-gray-400 {
      border-color: #cbd5e0
    }
  
    .md\:border-gray-500 {
      border-color: #a0aec0
    }
  
    .md\:border-gray-600 {
      border-color: #718096
    }
  
    .md\:border-gray-700 {
      border-color: #4a5568
    }
  
    .md\:border-gray-800 {
      border-color: #2d3748
    }
  
    .md\:border-gray-900 {
      border-color: #1a202c
    }
  
    .md\:border-red {
      border-color: #E3342F
    }
  
    .md\:border-orange {
      border-color: #F6993F
    }
  
    .md\:border-yellow {
      border-color: #FFED4A
    }
  
    .md\:border-green {
      border-color: #38C172
    }
  
    .md\:border-teal {
      border-color: #4DC0B5
    }
  
    .md\:border-blue {
      border-color: #3490DC
    }
  
    .md\:border-indigo {
      border-color: #6574CD
    }
  
    .md\:border-purple {
      border-color: #9561E2
    }
  
    .md\:border-pink {
      border-color: #F66D9B
    }
  
    .md\:border-grey-darkest {
      border-color: #3D4852
    }
  
    .md\:border-grey-darker {
      border-color: #606F7B
    }
  
    .md\:border-grey-dark {
      border-color: #8795A1
    }
  
    .md\:border-grey {
      border-color: #B8C2CC
    }
  
    .md\:border-grey-light {
      border-color: #DAE1E7
    }
  
    .md\:border-grey-lighter {
      border-color: #F1F5F8
    }
  
    .md\:border-grey-lightest {
      border-color: #F8FAFC
    }
  
    .md\:border-red-darkest {
      border-color: #3B0D0C
    }
  
    .md\:border-red-darker {
      border-color: #621B18
    }
  
    .md\:border-red-dark {
      border-color: #CC1F1A
    }
  
    .md\:border-red-light {
      border-color: #EF5753
    }
  
    .md\:border-red-lighter {
      border-color: #F9ACAA
    }
  
    .md\:border-red-lightest {
      border-color: #FCEBEA
    }
  
    .md\:border-orange-darkest {
      border-color: #462A16
    }
  
    .md\:border-orange-darker {
      border-color: #613B1F
    }
  
    .md\:border-orange-dark {
      border-color: #DE751F
    }
  
    .md\:border-orange-light {
      border-color: #FAAD63
    }
  
    .md\:border-orange-lighter {
      border-color: #FCD9B6
    }
  
    .md\:border-orange-lightest {
      border-color: #FFF5EB
    }
  
    .md\:border-yellow-darkest {
      border-color: #453411
    }
  
    .md\:border-yellow-darker {
      border-color: #684F1D
    }
  
    .md\:border-yellow-dark {
      border-color: #F2D024
    }
  
    .md\:border-yellow-light {
      border-color: #FFF382
    }
  
    .md\:border-yellow-lighter {
      border-color: #FFF9C2
    }
  
    .md\:border-yellow-lightest {
      border-color: #FCFBEB
    }
  
    .md\:border-green-darkest {
      border-color: #0F2F21
    }
  
    .md\:border-green-darker {
      border-color: #1A4731
    }
  
    .md\:border-green-dark {
      border-color: #1F9D55
    }
  
    .md\:border-green-light {
      border-color: #51D88A
    }
  
    .md\:border-green-lighter {
      border-color: #A2F5BF
    }
  
    .md\:border-green-lightest {
      border-color: #E3FCEC
    }
  
    .md\:border-teal-darkest {
      border-color: #0D3331
    }
  
    .md\:border-teal-darker {
      border-color: #20504F
    }
  
    .md\:border-teal-dark {
      border-color: #38A89D
    }
  
    .md\:border-teal-light {
      border-color: #64D5CA
    }
  
    .md\:border-teal-lighter {
      border-color: #A0F0ED
    }
  
    .md\:border-teal-lightest {
      border-color: #E8FFFE
    }
  
    .md\:border-blue-darkest {
      border-color: #12283A
    }
  
    .md\:border-blue-darker {
      border-color: #1C3D5A
    }
  
    .md\:border-blue-dark {
      border-color: #2779BD
    }
  
    .md\:border-blue-light {
      border-color: #6CB2EB
    }
  
    .md\:border-blue-lighter {
      border-color: #BCDEFA
    }
  
    .md\:border-blue-lightest {
      border-color: #EFF8FF
    }
  
    .md\:border-indigo-darkest {
      border-color: #191E38
    }
  
    .md\:border-indigo-darker {
      border-color: #2F365F
    }
  
    .md\:border-indigo-dark {
      border-color: #5661B3
    }
  
    .md\:border-indigo-light {
      border-color: #7886D7
    }
  
    .md\:border-indigo-lighter {
      border-color: #B2B7FF
    }
  
    .md\:border-indigo-lightest {
      border-color: #E6E8FF
    }
  
    .md\:border-purple-darkest {
      border-color: #21183C
    }
  
    .md\:border-purple-darker {
      border-color: #382B5F
    }
  
    .md\:border-purple-dark {
      border-color: #794ACF
    }
  
    .md\:border-purple-light {
      border-color: #A779E9
    }
  
    .md\:border-purple-lighter {
      border-color: #D6BBFC
    }
  
    .md\:border-purple-lightest {
      border-color: #F3EBFF
    }
  
    .md\:border-pink-darkest {
      border-color: #451225
    }
  
    .md\:border-pink-darker {
      border-color: #6F213F
    }
  
    .md\:border-pink-dark {
      border-color: #EB5286
    }
  
    .md\:border-pink-light {
      border-color: #FA7EA8
    }
  
    .md\:border-pink-lighter {
      border-color: #FFBBCA
    }
  
    .md\:border-pink-lightest {
      border-color: #FFEBEF
    }
  
    .md\:hover\:border-transparent:hover {
      border-color: transparent
    }
  
    .md\:hover\:border-black:hover {
      border-color: #22292F
    }
  
    .md\:hover\:border-white:hover {
      border-color: #FFFFFF
    }
  
    .md\:hover\:border-gray-100:hover {
      border-color: #f7fafc
    }
  
    .md\:hover\:border-gray-200:hover {
      border-color: #edf2f7
    }
  
    .md\:hover\:border-gray-300:hover {
      border-color: #e2e8f0
    }
  
    .md\:hover\:border-gray-400:hover {
      border-color: #cbd5e0
    }
  
    .md\:hover\:border-gray-500:hover {
      border-color: #a0aec0
    }
  
    .md\:hover\:border-gray-600:hover {
      border-color: #718096
    }
  
    .md\:hover\:border-gray-700:hover {
      border-color: #4a5568
    }
  
    .md\:hover\:border-gray-800:hover {
      border-color: #2d3748
    }
  
    .md\:hover\:border-gray-900:hover {
      border-color: #1a202c
    }
  
    .md\:hover\:border-red:hover {
      border-color: #E3342F
    }
  
    .md\:hover\:border-orange:hover {
      border-color: #F6993F
    }
  
    .md\:hover\:border-yellow:hover {
      border-color: #FFED4A
    }
  
    .md\:hover\:border-green:hover {
      border-color: #38C172
    }
  
    .md\:hover\:border-teal:hover {
      border-color: #4DC0B5
    }
  
    .md\:hover\:border-blue:hover {
      border-color: #3490DC
    }
  
    .md\:hover\:border-indigo:hover {
      border-color: #6574CD
    }
  
    .md\:hover\:border-purple:hover {
      border-color: #9561E2
    }
  
    .md\:hover\:border-pink:hover {
      border-color: #F66D9B
    }
  
    .md\:hover\:border-grey-darkest:hover {
      border-color: #3D4852
    }
  
    .md\:hover\:border-grey-darker:hover {
      border-color: #606F7B
    }
  
    .md\:hover\:border-grey-dark:hover {
      border-color: #8795A1
    }
  
    .md\:hover\:border-grey:hover {
      border-color: #B8C2CC
    }
  
    .md\:hover\:border-grey-light:hover {
      border-color: #DAE1E7
    }
  
    .md\:hover\:border-grey-lighter:hover {
      border-color: #F1F5F8
    }
  
    .md\:hover\:border-grey-lightest:hover {
      border-color: #F8FAFC
    }
  
    .md\:hover\:border-red-darkest:hover {
      border-color: #3B0D0C
    }
  
    .md\:hover\:border-red-darker:hover {
      border-color: #621B18
    }
  
    .md\:hover\:border-red-dark:hover {
      border-color: #CC1F1A
    }
  
    .md\:hover\:border-red-light:hover {
      border-color: #EF5753
    }
  
    .md\:hover\:border-red-lighter:hover {
      border-color: #F9ACAA
    }
  
    .md\:hover\:border-red-lightest:hover {
      border-color: #FCEBEA
    }
  
    .md\:hover\:border-orange-darkest:hover {
      border-color: #462A16
    }
  
    .md\:hover\:border-orange-darker:hover {
      border-color: #613B1F
    }
  
    .md\:hover\:border-orange-dark:hover {
      border-color: #DE751F
    }
  
    .md\:hover\:border-orange-light:hover {
      border-color: #FAAD63
    }
  
    .md\:hover\:border-orange-lighter:hover {
      border-color: #FCD9B6
    }
  
    .md\:hover\:border-orange-lightest:hover {
      border-color: #FFF5EB
    }
  
    .md\:hover\:border-yellow-darkest:hover {
      border-color: #453411
    }
  
    .md\:hover\:border-yellow-darker:hover {
      border-color: #684F1D
    }
  
    .md\:hover\:border-yellow-dark:hover {
      border-color: #F2D024
    }
  
    .md\:hover\:border-yellow-light:hover {
      border-color: #FFF382
    }
  
    .md\:hover\:border-yellow-lighter:hover {
      border-color: #FFF9C2
    }
  
    .md\:hover\:border-yellow-lightest:hover {
      border-color: #FCFBEB
    }
  
    .md\:hover\:border-green-darkest:hover {
      border-color: #0F2F21
    }
  
    .md\:hover\:border-green-darker:hover {
      border-color: #1A4731
    }
  
    .md\:hover\:border-green-dark:hover {
      border-color: #1F9D55
    }
  
    .md\:hover\:border-green-light:hover {
      border-color: #51D88A
    }
  
    .md\:hover\:border-green-lighter:hover {
      border-color: #A2F5BF
    }
  
    .md\:hover\:border-green-lightest:hover {
      border-color: #E3FCEC
    }
  
    .md\:hover\:border-teal-darkest:hover {
      border-color: #0D3331
    }
  
    .md\:hover\:border-teal-darker:hover {
      border-color: #20504F
    }
  
    .md\:hover\:border-teal-dark:hover {
      border-color: #38A89D
    }
  
    .md\:hover\:border-teal-light:hover {
      border-color: #64D5CA
    }
  
    .md\:hover\:border-teal-lighter:hover {
      border-color: #A0F0ED
    }
  
    .md\:hover\:border-teal-lightest:hover {
      border-color: #E8FFFE
    }
  
    .md\:hover\:border-blue-darkest:hover {
      border-color: #12283A
    }
  
    .md\:hover\:border-blue-darker:hover {
      border-color: #1C3D5A
    }
  
    .md\:hover\:border-blue-dark:hover {
      border-color: #2779BD
    }
  
    .md\:hover\:border-blue-light:hover {
      border-color: #6CB2EB
    }
  
    .md\:hover\:border-blue-lighter:hover {
      border-color: #BCDEFA
    }
  
    .md\:hover\:border-blue-lightest:hover {
      border-color: #EFF8FF
    }
  
    .md\:hover\:border-indigo-darkest:hover {
      border-color: #191E38
    }
  
    .md\:hover\:border-indigo-darker:hover {
      border-color: #2F365F
    }
  
    .md\:hover\:border-indigo-dark:hover {
      border-color: #5661B3
    }
  
    .md\:hover\:border-indigo-light:hover {
      border-color: #7886D7
    }
  
    .md\:hover\:border-indigo-lighter:hover {
      border-color: #B2B7FF
    }
  
    .md\:hover\:border-indigo-lightest:hover {
      border-color: #E6E8FF
    }
  
    .md\:hover\:border-purple-darkest:hover {
      border-color: #21183C
    }
  
    .md\:hover\:border-purple-darker:hover {
      border-color: #382B5F
    }
  
    .md\:hover\:border-purple-dark:hover {
      border-color: #794ACF
    }
  
    .md\:hover\:border-purple-light:hover {
      border-color: #A779E9
    }
  
    .md\:hover\:border-purple-lighter:hover {
      border-color: #D6BBFC
    }
  
    .md\:hover\:border-purple-lightest:hover {
      border-color: #F3EBFF
    }
  
    .md\:hover\:border-pink-darkest:hover {
      border-color: #451225
    }
  
    .md\:hover\:border-pink-darker:hover {
      border-color: #6F213F
    }
  
    .md\:hover\:border-pink-dark:hover {
      border-color: #EB5286
    }
  
    .md\:hover\:border-pink-light:hover {
      border-color: #FA7EA8
    }
  
    .md\:hover\:border-pink-lighter:hover {
      border-color: #FFBBCA
    }
  
    .md\:hover\:border-pink-lightest:hover {
      border-color: #FFEBEF
    }
  
    .md\:focus\:border-transparent:focus {
      border-color: transparent
    }
  
    .md\:focus\:border-black:focus {
      border-color: #22292F
    }
  
    .md\:focus\:border-white:focus {
      border-color: #FFFFFF
    }
  
    .md\:focus\:border-gray-100:focus {
      border-color: #f7fafc
    }
  
    .md\:focus\:border-gray-200:focus {
      border-color: #edf2f7
    }
  
    .md\:focus\:border-gray-300:focus {
      border-color: #e2e8f0
    }
  
    .md\:focus\:border-gray-400:focus {
      border-color: #cbd5e0
    }
  
    .md\:focus\:border-gray-500:focus {
      border-color: #a0aec0
    }
  
    .md\:focus\:border-gray-600:focus {
      border-color: #718096
    }
  
    .md\:focus\:border-gray-700:focus {
      border-color: #4a5568
    }
  
    .md\:focus\:border-gray-800:focus {
      border-color: #2d3748
    }
  
    .md\:focus\:border-gray-900:focus {
      border-color: #1a202c
    }
  
    .md\:focus\:border-red:focus {
      border-color: #E3342F
    }
  
    .md\:focus\:border-orange:focus {
      border-color: #F6993F
    }
  
    .md\:focus\:border-yellow:focus {
      border-color: #FFED4A
    }
  
    .md\:focus\:border-green:focus {
      border-color: #38C172
    }
  
    .md\:focus\:border-teal:focus {
      border-color: #4DC0B5
    }
  
    .md\:focus\:border-blue:focus {
      border-color: #3490DC
    }
  
    .md\:focus\:border-indigo:focus {
      border-color: #6574CD
    }
  
    .md\:focus\:border-purple:focus {
      border-color: #9561E2
    }
  
    .md\:focus\:border-pink:focus {
      border-color: #F66D9B
    }
  
    .md\:focus\:border-grey-darkest:focus {
      border-color: #3D4852
    }
  
    .md\:focus\:border-grey-darker:focus {
      border-color: #606F7B
    }
  
    .md\:focus\:border-grey-dark:focus {
      border-color: #8795A1
    }
  
    .md\:focus\:border-grey:focus {
      border-color: #B8C2CC
    }
  
    .md\:focus\:border-grey-light:focus {
      border-color: #DAE1E7
    }
  
    .md\:focus\:border-grey-lighter:focus {
      border-color: #F1F5F8
    }
  
    .md\:focus\:border-grey-lightest:focus {
      border-color: #F8FAFC
    }
  
    .md\:focus\:border-red-darkest:focus {
      border-color: #3B0D0C
    }
  
    .md\:focus\:border-red-darker:focus {
      border-color: #621B18
    }
  
    .md\:focus\:border-red-dark:focus {
      border-color: #CC1F1A
    }
  
    .md\:focus\:border-red-light:focus {
      border-color: #EF5753
    }
  
    .md\:focus\:border-red-lighter:focus {
      border-color: #F9ACAA
    }
  
    .md\:focus\:border-red-lightest:focus {
      border-color: #FCEBEA
    }
  
    .md\:focus\:border-orange-darkest:focus {
      border-color: #462A16
    }
  
    .md\:focus\:border-orange-darker:focus {
      border-color: #613B1F
    }
  
    .md\:focus\:border-orange-dark:focus {
      border-color: #DE751F
    }
  
    .md\:focus\:border-orange-light:focus {
      border-color: #FAAD63
    }
  
    .md\:focus\:border-orange-lighter:focus {
      border-color: #FCD9B6
    }
  
    .md\:focus\:border-orange-lightest:focus {
      border-color: #FFF5EB
    }
  
    .md\:focus\:border-yellow-darkest:focus {
      border-color: #453411
    }
  
    .md\:focus\:border-yellow-darker:focus {
      border-color: #684F1D
    }
  
    .md\:focus\:border-yellow-dark:focus {
      border-color: #F2D024
    }
  
    .md\:focus\:border-yellow-light:focus {
      border-color: #FFF382
    }
  
    .md\:focus\:border-yellow-lighter:focus {
      border-color: #FFF9C2
    }
  
    .md\:focus\:border-yellow-lightest:focus {
      border-color: #FCFBEB
    }
  
    .md\:focus\:border-green-darkest:focus {
      border-color: #0F2F21
    }
  
    .md\:focus\:border-green-darker:focus {
      border-color: #1A4731
    }
  
    .md\:focus\:border-green-dark:focus {
      border-color: #1F9D55
    }
  
    .md\:focus\:border-green-light:focus {
      border-color: #51D88A
    }
  
    .md\:focus\:border-green-lighter:focus {
      border-color: #A2F5BF
    }
  
    .md\:focus\:border-green-lightest:focus {
      border-color: #E3FCEC
    }
  
    .md\:focus\:border-teal-darkest:focus {
      border-color: #0D3331
    }
  
    .md\:focus\:border-teal-darker:focus {
      border-color: #20504F
    }
  
    .md\:focus\:border-teal-dark:focus {
      border-color: #38A89D
    }
  
    .md\:focus\:border-teal-light:focus {
      border-color: #64D5CA
    }
  
    .md\:focus\:border-teal-lighter:focus {
      border-color: #A0F0ED
    }
  
    .md\:focus\:border-teal-lightest:focus {
      border-color: #E8FFFE
    }
  
    .md\:focus\:border-blue-darkest:focus {
      border-color: #12283A
    }
  
    .md\:focus\:border-blue-darker:focus {
      border-color: #1C3D5A
    }
  
    .md\:focus\:border-blue-dark:focus {
      border-color: #2779BD
    }
  
    .md\:focus\:border-blue-light:focus {
      border-color: #6CB2EB
    }
  
    .md\:focus\:border-blue-lighter:focus {
      border-color: #BCDEFA
    }
  
    .md\:focus\:border-blue-lightest:focus {
      border-color: #EFF8FF
    }
  
    .md\:focus\:border-indigo-darkest:focus {
      border-color: #191E38
    }
  
    .md\:focus\:border-indigo-darker:focus {
      border-color: #2F365F
    }
  
    .md\:focus\:border-indigo-dark:focus {
      border-color: #5661B3
    }
  
    .md\:focus\:border-indigo-light:focus {
      border-color: #7886D7
    }
  
    .md\:focus\:border-indigo-lighter:focus {
      border-color: #B2B7FF
    }
  
    .md\:focus\:border-indigo-lightest:focus {
      border-color: #E6E8FF
    }
  
    .md\:focus\:border-purple-darkest:focus {
      border-color: #21183C
    }
  
    .md\:focus\:border-purple-darker:focus {
      border-color: #382B5F
    }
  
    .md\:focus\:border-purple-dark:focus {
      border-color: #794ACF
    }
  
    .md\:focus\:border-purple-light:focus {
      border-color: #A779E9
    }
  
    .md\:focus\:border-purple-lighter:focus {
      border-color: #D6BBFC
    }
  
    .md\:focus\:border-purple-lightest:focus {
      border-color: #F3EBFF
    }
  
    .md\:focus\:border-pink-darkest:focus {
      border-color: #451225
    }
  
    .md\:focus\:border-pink-darker:focus {
      border-color: #6F213F
    }
  
    .md\:focus\:border-pink-dark:focus {
      border-color: #EB5286
    }
  
    .md\:focus\:border-pink-light:focus {
      border-color: #FA7EA8
    }
  
    .md\:focus\:border-pink-lighter:focus {
      border-color: #FFBBCA
    }
  
    .md\:focus\:border-pink-lightest:focus {
      border-color: #FFEBEF
    }
  
    .md\:rounded-2 {
      border-radius: .2rem
    }
  
    .md\:rounded-4 {
      border-radius: .4rem
    }
  
    .md\:rounded-6 {
      border-radius: .6rem
    }
  
    .md\:rounded-8 {
      border-radius: .8rem
    }
  
    .md\:rounded-12 {
      border-radius: 1.2rem
    }
  
    .md\:rounded-16 {
      border-radius: 1.6rem
    }
  
    .md\:rounded-20 {
      border-radius: 2rem
    }
  
    .md\:rounded-24 {
      border-radius: 2.4rem
    }
  
    .md\:rounded-28 {
      border-radius: 2.8rem
    }
  
    .md\:rounded-32 {
      border-radius: 3.2rem
    }
  
    .md\:rounded-none {
      border-radius: 0
    }
  
    .md\:rounded-sm {
      border-radius: .2rem
    }
  
    .md\:rounded {
      border-radius: .4rem
    }
  
    .md\:rounded-lg {
      border-radius: .8rem
    }
  
    .md\:rounded-full {
      border-radius: 9999px
    }
  
    .md\:rounded-t-2 {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .md\:rounded-r-2 {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .md\:rounded-b-2 {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-l-2 {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-t-4 {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .md\:rounded-r-4 {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .md\:rounded-b-4 {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-l-4 {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-t-6 {
      border-top-left-radius: .6rem;
      border-top-right-radius: .6rem
    }
  
    .md\:rounded-r-6 {
      border-top-right-radius: .6rem;
      border-bottom-right-radius: .6rem
    }
  
    .md\:rounded-b-6 {
      border-bottom-right-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .md\:rounded-l-6 {
      border-top-left-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .md\:rounded-t-8 {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .md\:rounded-r-8 {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .md\:rounded-b-8 {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-l-8 {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-t-12 {
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem
    }
  
    .md\:rounded-r-12 {
      border-top-right-radius: 1.2rem;
      border-bottom-right-radius: 1.2rem
    }
  
    .md\:rounded-b-12 {
      border-bottom-right-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .md\:rounded-l-12 {
      border-top-left-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .md\:rounded-t-16 {
      border-top-left-radius: 1.6rem;
      border-top-right-radius: 1.6rem
    }
  
    .md\:rounded-r-16 {
      border-top-right-radius: 1.6rem;
      border-bottom-right-radius: 1.6rem
    }
  
    .md\:rounded-b-16 {
      border-bottom-right-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .md\:rounded-l-16 {
      border-top-left-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .md\:rounded-t-20 {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem
    }
  
    .md\:rounded-r-20 {
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem
    }
  
    .md\:rounded-b-20 {
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .md\:rounded-l-20 {
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .md\:rounded-t-24 {
      border-top-left-radius: 2.4rem;
      border-top-right-radius: 2.4rem
    }
  
    .md\:rounded-r-24 {
      border-top-right-radius: 2.4rem;
      border-bottom-right-radius: 2.4rem
    }
  
    .md\:rounded-b-24 {
      border-bottom-right-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .md\:rounded-l-24 {
      border-top-left-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .md\:rounded-t-28 {
      border-top-left-radius: 2.8rem;
      border-top-right-radius: 2.8rem
    }
  
    .md\:rounded-r-28 {
      border-top-right-radius: 2.8rem;
      border-bottom-right-radius: 2.8rem
    }
  
    .md\:rounded-b-28 {
      border-bottom-right-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .md\:rounded-l-28 {
      border-top-left-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .md\:rounded-t-32 {
      border-top-left-radius: 3.2rem;
      border-top-right-radius: 3.2rem
    }
  
    .md\:rounded-r-32 {
      border-top-right-radius: 3.2rem;
      border-bottom-right-radius: 3.2rem
    }
  
    .md\:rounded-b-32 {
      border-bottom-right-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .md\:rounded-l-32 {
      border-top-left-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .md\:rounded-t-none {
      border-top-left-radius: 0;
      border-top-right-radius: 0
    }
  
    .md\:rounded-r-none {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0
    }
  
    .md\:rounded-b-none {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .md\:rounded-l-none {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .md\:rounded-t-sm {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .md\:rounded-r-sm {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .md\:rounded-b-sm {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-l-sm {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-t {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .md\:rounded-r {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .md\:rounded-b {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-l {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-t-lg {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .md\:rounded-r-lg {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .md\:rounded-b-lg {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-l-lg {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-t-full {
      border-top-left-radius: 9999px;
      border-top-right-radius: 9999px
    }
  
    .md\:rounded-r-full {
      border-top-right-radius: 9999px;
      border-bottom-right-radius: 9999px
    }
  
    .md\:rounded-b-full {
      border-bottom-right-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .md\:rounded-l-full {
      border-top-left-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .md\:rounded-tl-2 {
      border-top-left-radius: .2rem
    }
  
    .md\:rounded-tr-2 {
      border-top-right-radius: .2rem
    }
  
    .md\:rounded-br-2 {
      border-bottom-right-radius: .2rem
    }
  
    .md\:rounded-bl-2 {
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-tl-4 {
      border-top-left-radius: .4rem
    }
  
    .md\:rounded-tr-4 {
      border-top-right-radius: .4rem
    }
  
    .md\:rounded-br-4 {
      border-bottom-right-radius: .4rem
    }
  
    .md\:rounded-bl-4 {
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-tl-6 {
      border-top-left-radius: .6rem
    }
  
    .md\:rounded-tr-6 {
      border-top-right-radius: .6rem
    }
  
    .md\:rounded-br-6 {
      border-bottom-right-radius: .6rem
    }
  
    .md\:rounded-bl-6 {
      border-bottom-left-radius: .6rem
    }
  
    .md\:rounded-tl-8 {
      border-top-left-radius: .8rem
    }
  
    .md\:rounded-tr-8 {
      border-top-right-radius: .8rem
    }
  
    .md\:rounded-br-8 {
      border-bottom-right-radius: .8rem
    }
  
    .md\:rounded-bl-8 {
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-tl-12 {
      border-top-left-radius: 1.2rem
    }
  
    .md\:rounded-tr-12 {
      border-top-right-radius: 1.2rem
    }
  
    .md\:rounded-br-12 {
      border-bottom-right-radius: 1.2rem
    }
  
    .md\:rounded-bl-12 {
      border-bottom-left-radius: 1.2rem
    }
  
    .md\:rounded-tl-16 {
      border-top-left-radius: 1.6rem
    }
  
    .md\:rounded-tr-16 {
      border-top-right-radius: 1.6rem
    }
  
    .md\:rounded-br-16 {
      border-bottom-right-radius: 1.6rem
    }
  
    .md\:rounded-bl-16 {
      border-bottom-left-radius: 1.6rem
    }
  
    .md\:rounded-tl-20 {
      border-top-left-radius: 2rem
    }
  
    .md\:rounded-tr-20 {
      border-top-right-radius: 2rem
    }
  
    .md\:rounded-br-20 {
      border-bottom-right-radius: 2rem
    }
  
    .md\:rounded-bl-20 {
      border-bottom-left-radius: 2rem
    }
  
    .md\:rounded-tl-24 {
      border-top-left-radius: 2.4rem
    }
  
    .md\:rounded-tr-24 {
      border-top-right-radius: 2.4rem
    }
  
    .md\:rounded-br-24 {
      border-bottom-right-radius: 2.4rem
    }
  
    .md\:rounded-bl-24 {
      border-bottom-left-radius: 2.4rem
    }
  
    .md\:rounded-tl-28 {
      border-top-left-radius: 2.8rem
    }
  
    .md\:rounded-tr-28 {
      border-top-right-radius: 2.8rem
    }
  
    .md\:rounded-br-28 {
      border-bottom-right-radius: 2.8rem
    }
  
    .md\:rounded-bl-28 {
      border-bottom-left-radius: 2.8rem
    }
  
    .md\:rounded-tl-32 {
      border-top-left-radius: 3.2rem
    }
  
    .md\:rounded-tr-32 {
      border-top-right-radius: 3.2rem
    }
  
    .md\:rounded-br-32 {
      border-bottom-right-radius: 3.2rem
    }
  
    .md\:rounded-bl-32 {
      border-bottom-left-radius: 3.2rem
    }
  
    .md\:rounded-tl-none {
      border-top-left-radius: 0
    }
  
    .md\:rounded-tr-none {
      border-top-right-radius: 0
    }
  
    .md\:rounded-br-none {
      border-bottom-right-radius: 0
    }
  
    .md\:rounded-bl-none {
      border-bottom-left-radius: 0
    }
  
    .md\:rounded-tl-sm {
      border-top-left-radius: .2rem
    }
  
    .md\:rounded-tr-sm {
      border-top-right-radius: .2rem
    }
  
    .md\:rounded-br-sm {
      border-bottom-right-radius: .2rem
    }
  
    .md\:rounded-bl-sm {
      border-bottom-left-radius: .2rem
    }
  
    .md\:rounded-tl {
      border-top-left-radius: .4rem
    }
  
    .md\:rounded-tr {
      border-top-right-radius: .4rem
    }
  
    .md\:rounded-br {
      border-bottom-right-radius: .4rem
    }
  
    .md\:rounded-bl {
      border-bottom-left-radius: .4rem
    }
  
    .md\:rounded-tl-lg {
      border-top-left-radius: .8rem
    }
  
    .md\:rounded-tr-lg {
      border-top-right-radius: .8rem
    }
  
    .md\:rounded-br-lg {
      border-bottom-right-radius: .8rem
    }
  
    .md\:rounded-bl-lg {
      border-bottom-left-radius: .8rem
    }
  
    .md\:rounded-tl-full {
      border-top-left-radius: 9999px
    }
  
    .md\:rounded-tr-full {
      border-top-right-radius: 9999px
    }
  
    .md\:rounded-br-full {
      border-bottom-right-radius: 9999px
    }
  
    .md\:rounded-bl-full {
      border-bottom-left-radius: 9999px
    }
  
    .md\:border-solid {
      border-style: solid
    }
  
    .md\:border-dashed {
      border-style: dashed
    }
  
    .md\:border-dotted {
      border-style: dotted
    }
  
    .md\:border-none {
      border-style: none
    }
  
    .md\:border-0 {
      border-width: 0
    }
  
    .md\:border-1 {
      border-width: 1px
    }
  
    .md\:border-2 {
      border-width: 2px
    }
  
    .md\:border-3 {
      border-width: 3px
    }
  
    .md\:border-4 {
      border-width: 4px
    }
  
    .md\:border-8 {
      border-width: 8px
    }
  
    .md\:border {
      border-width: 1px
    }
  
    .md\:border-t-0 {
      border-top-width: 0
    }
  
    .md\:border-r-0 {
      border-right-width: 0
    }
  
    .md\:border-b-0 {
      border-bottom-width: 0
    }
  
    .md\:border-l-0 {
      border-left-width: 0
    }
  
    .md\:border-t-1 {
      border-top-width: 1px
    }
  
    .md\:border-r-1 {
      border-right-width: 1px
    }
  
    .md\:border-b-1 {
      border-bottom-width: 1px
    }
  
    .md\:border-l-1 {
      border-left-width: 1px
    }
  
    .md\:border-t-2 {
      border-top-width: 2px
    }
  
    .md\:border-r-2 {
      border-right-width: 2px
    }
  
    .md\:border-b-2 {
      border-bottom-width: 2px
    }
  
    .md\:border-l-2 {
      border-left-width: 2px
    }
  
    .md\:border-t-3 {
      border-top-width: 3px
    }
  
    .md\:border-r-3 {
      border-right-width: 3px
    }
  
    .md\:border-b-3 {
      border-bottom-width: 3px
    }
  
    .md\:border-l-3 {
      border-left-width: 3px
    }
  
    .md\:border-t-4 {
      border-top-width: 4px
    }
  
    .md\:border-r-4 {
      border-right-width: 4px
    }
  
    .md\:border-b-4 {
      border-bottom-width: 4px
    }
  
    .md\:border-l-4 {
      border-left-width: 4px
    }
  
    .md\:border-t-8 {
      border-top-width: 8px
    }
  
    .md\:border-r-8 {
      border-right-width: 8px
    }
  
    .md\:border-b-8 {
      border-bottom-width: 8px
    }
  
    .md\:border-l-8 {
      border-left-width: 8px
    }
  
    .md\:border-t {
      border-top-width: 1px
    }
  
    .md\:border-r {
      border-right-width: 1px
    }
  
    .md\:border-b {
      border-bottom-width: 1px
    }
  
    .md\:border-l {
      border-left-width: 1px
    }
  
    .md\:cursor-auto {
      cursor: auto
    }
  
    .md\:cursor-default {
      cursor: default
    }
  
    .md\:cursor-pointer {
      cursor: pointer
    }
  
    .md\:cursor-wait {
      cursor: wait
    }
  
    .md\:cursor-text {
      cursor: text
    }
  
    .md\:cursor-move {
      cursor: move
    }
  
    .md\:cursor-not-allowed {
      cursor: not-allowed
    }
  
    .md\:block {
      display: block
    }
  
    .md\:inline-block {
      display: inline-block
    }
  
    .md\:inline {
      display: inline
    }
  
    .md\:flex {
      display: flex
    }
  
    .md\:inline-flex {
      display: inline-flex
    }
  
    .md\:table {
      display: table
    }
  
    .md\:table-row {
      display: table-row
    }
  
    .md\:table-cell {
      display: table-cell
    }
  
    .md\:hidden {
      display: none
    }
  
    .md\:hover\:block:hover {
      display: block
    }
  
    .md\:hover\:inline-block:hover {
      display: inline-block
    }
  
    .md\:hover\:inline:hover {
      display: inline
    }
  
    .md\:hover\:flex:hover {
      display: flex
    }
  
    .md\:hover\:inline-flex:hover {
      display: inline-flex
    }
  
    .md\:hover\:table:hover {
      display: table
    }
  
    .md\:hover\:table-row:hover {
      display: table-row
    }
  
    .md\:hover\:table-cell:hover {
      display: table-cell
    }
  
    .md\:hover\:hidden:hover {
      display: none
    }
  
    .md\:focus\:block:focus {
      display: block
    }
  
    .md\:focus\:inline-block:focus {
      display: inline-block
    }
  
    .md\:focus\:inline:focus {
      display: inline
    }
  
    .md\:focus\:flex:focus {
      display: flex
    }
  
    .md\:focus\:inline-flex:focus {
      display: inline-flex
    }
  
    .md\:focus\:table:focus {
      display: table
    }
  
    .md\:focus\:table-row:focus {
      display: table-row
    }
  
    .md\:focus\:table-cell:focus {
      display: table-cell
    }
  
    .md\:focus\:hidden:focus {
      display: none
    }
  
    .md\:flex-row {
      flex-direction: row
    }
  
    .md\:flex-row-reverse {
      flex-direction: row-reverse
    }
  
    .md\:flex-col {
      flex-direction: column
    }
  
    .md\:flex-col-reverse {
      flex-direction: column-reverse
    }
  
    .md\:flex-wrap {
      flex-wrap: wrap
    }
  
    .md\:flex-wrap-reverse {
      flex-wrap: wrap-reverse
    }
  
    .md\:flex-no-wrap {
      flex-wrap: nowrap
    }
  
    .md\:items-start {
      align-items: flex-start
    }
  
    .md\:items-end {
      align-items: flex-end
    }
  
    .md\:items-center {
      align-items: center
    }
  
    .md\:items-baseline {
      align-items: baseline
    }
  
    .md\:items-stretch {
      align-items: stretch
    }
  
    .md\:self-auto {
      align-self: auto
    }
  
    .md\:self-start {
      align-self: flex-start
    }
  
    .md\:self-end {
      align-self: flex-end
    }
  
    .md\:self-center {
      align-self: center
    }
  
    .md\:self-stretch {
      align-self: stretch
    }
  
    .md\:justify-start {
      justify-content: flex-start
    }
  
    .md\:justify-end {
      justify-content: flex-end
    }
  
    .md\:justify-center {
      justify-content: center
    }
  
    .md\:justify-between {
      justify-content: space-between
    }
  
    .md\:justify-around {
      justify-content: space-around
    }
  
    .md\:content-center {
      align-content: center
    }
  
    .md\:content-start {
      align-content: flex-start
    }
  
    .md\:content-end {
      align-content: flex-end
    }
  
    .md\:content-between {
      align-content: space-between
    }
  
    .md\:content-around {
      align-content: space-around
    }
  
    .md\:flex-1 {
      flex: 1 1
    }
  
    .md\:flex-auto {
      flex: 1 1 auto
    }
  
    .md\:flex-initial {
      flex: 0 1 auto
    }
  
    .md\:flex-none {
      flex: none
    }
  
    .md\:flex-grow-0 {
      flex-grow: 0
    }
  
    .md\:flex-grow {
      flex-grow: 1
    }
  
    .md\:flex-shrink-0 {
      flex-shrink: 0
    }
  
    .md\:flex-shrink {
      flex-shrink: 1
    }
  
    .md\:order-1 {
      order: 1
    }
  
    .md\:order-2 {
      order: 2
    }
  
    .md\:order-3 {
      order: 3
    }
  
    .md\:order-4 {
      order: 4
    }
  
    .md\:order-5 {
      order: 5
    }
  
    .md\:order-6 {
      order: 6
    }
  
    .md\:order-7 {
      order: 7
    }
  
    .md\:order-8 {
      order: 8
    }
  
    .md\:order-9 {
      order: 9
    }
  
    .md\:order-10 {
      order: 10
    }
  
    .md\:order-11 {
      order: 11
    }
  
    .md\:order-12 {
      order: 12
    }
  
    .md\:order-first {
      order: -9999
    }
  
    .md\:order-last {
      order: 9999
    }
  
    .md\:order-none {
      order: 0
    }
  
    .md\:float-right {
      float: right
    }
  
    .md\:float-left {
      float: left
    }
  
    .md\:float-none {
      float: none
    }
  
    .md\:clearfix:after {
      content: "";
      display: table;
      clear: both
    }
  
    .md\:font-sans {
      font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
    }
  
    .md\:font-serif {
      font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
    }
  
    .md\:font-mono {
      font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
    }
  
    .md\:font-100 {
      font-weight: 100
    }
  
    .md\:font-200 {
      font-weight: 200
    }
  
    .md\:font-300 {
      font-weight: 300
    }
  
    .md\:font-400 {
      font-weight: 400
    }
  
    .md\:font-500 {
      font-weight: 500
    }
  
    .md\:font-600 {
      font-weight: 600
    }
  
    .md\:font-700 {
      font-weight: 700
    }
  
    .md\:font-800 {
      font-weight: 800
    }
  
    .md\:font-900 {
      font-weight: 900
    }
  
    .md\:font-hairline {
      font-weight: 100
    }
  
    .md\:font-thin {
      font-weight: 200
    }
  
    .md\:font-light {
      font-weight: 300
    }
  
    .md\:font-normal {
      font-weight: 400
    }
  
    .md\:font-medium {
      font-weight: 500
    }
  
    .md\:font-semibold {
      font-weight: 600
    }
  
    .md\:font-bold {
      font-weight: 700
    }
  
    .md\:font-extrabold {
      font-weight: 800
    }
  
    .md\:font-black {
      font-weight: 900
    }
  
    .md\:hover\:font-100:hover {
      font-weight: 100
    }
  
    .md\:hover\:font-200:hover {
      font-weight: 200
    }
  
    .md\:hover\:font-300:hover {
      font-weight: 300
    }
  
    .md\:hover\:font-400:hover {
      font-weight: 400
    }
  
    .md\:hover\:font-500:hover {
      font-weight: 500
    }
  
    .md\:hover\:font-600:hover {
      font-weight: 600
    }
  
    .md\:hover\:font-700:hover {
      font-weight: 700
    }
  
    .md\:hover\:font-800:hover {
      font-weight: 800
    }
  
    .md\:hover\:font-900:hover {
      font-weight: 900
    }
  
    .md\:hover\:font-hairline:hover {
      font-weight: 100
    }
  
    .md\:hover\:font-thin:hover {
      font-weight: 200
    }
  
    .md\:hover\:font-light:hover {
      font-weight: 300
    }
  
    .md\:hover\:font-normal:hover {
      font-weight: 400
    }
  
    .md\:hover\:font-medium:hover {
      font-weight: 500
    }
  
    .md\:hover\:font-semibold:hover {
      font-weight: 600
    }
  
    .md\:hover\:font-bold:hover {
      font-weight: 700
    }
  
    .md\:hover\:font-extrabold:hover {
      font-weight: 800
    }
  
    .md\:hover\:font-black:hover {
      font-weight: 900
    }
  
    .md\:focus\:font-100:focus {
      font-weight: 100
    }
  
    .md\:focus\:font-200:focus {
      font-weight: 200
    }
  
    .md\:focus\:font-300:focus {
      font-weight: 300
    }
  
    .md\:focus\:font-400:focus {
      font-weight: 400
    }
  
    .md\:focus\:font-500:focus {
      font-weight: 500
    }
  
    .md\:focus\:font-600:focus {
      font-weight: 600
    }
  
    .md\:focus\:font-700:focus {
      font-weight: 700
    }
  
    .md\:focus\:font-800:focus {
      font-weight: 800
    }
  
    .md\:focus\:font-900:focus {
      font-weight: 900
    }
  
    .md\:focus\:font-hairline:focus {
      font-weight: 100
    }
  
    .md\:focus\:font-thin:focus {
      font-weight: 200
    }
  
    .md\:focus\:font-light:focus {
      font-weight: 300
    }
  
    .md\:focus\:font-normal:focus {
      font-weight: 400
    }
  
    .md\:focus\:font-medium:focus {
      font-weight: 500
    }
  
    .md\:focus\:font-semibold:focus {
      font-weight: 600
    }
  
    .md\:focus\:font-bold:focus {
      font-weight: 700
    }
  
    .md\:focus\:font-extrabold:focus {
      font-weight: 800
    }
  
    .md\:focus\:font-black:focus {
      font-weight: 900
    }
  
    .md\:h-0 {
      height: 0
    }
  
    .md\:h-1 {
      height: 0.25rem
    }
  
    .md\:h-2 {
      height: 0.5rem
    }
  
    .md\:h-3 {
      height: 0.75rem
    }
  
    .md\:h-4 {
      height: 0.4rem
    }
  
    .md\:h-5 {
      height: 1.25rem
    }
  
    .md\:h-6 {
      height: 0.6rem
    }
  
    .md\:h-8 {
      height: 0.8rem
    }
  
    .md\:h-10 {
      height: 2.5rem
    }
  
    .md\:h-12 {
      height: 1.2rem
    }
  
    .md\:h-16 {
      height: 1.6rem
    }
  
    .md\:h-20 {
      height: 2rem
    }
  
    .md\:h-24 {
      height: 2.4rem
    }
  
    .md\:h-28 {
      height: 2.8rem
    }
  
    .md\:h-32 {
      height: 3.2rem
    }
  
    .md\:h-36 {
      height: 3.6rem
    }
  
    .md\:h-40 {
      height: 4rem
    }
  
    .md\:h-44 {
      height: 4.4rem
    }
  
    .md\:h-48 {
      height: 4.8rem
    }
  
    .md\:h-52 {
      height: 5.2rem
    }
  
    .md\:h-56 {
      height: 5.6rem
    }
  
    .md\:h-60 {
      height: 6rem
    }
  
    .md\:h-64 {
      height: 6.4rem
    }
  
    .md\:h-68 {
      height: 6.8rem
    }
  
    .md\:h-72 {
      height: 7.2rem
    }
  
    .md\:h-76 {
      height: 7.6rem
    }
  
    .md\:h-80 {
      height: 8rem
    }
  
    .md\:h-84 {
      height: 8.4rem
    }
  
    .md\:h-88 {
      height: 8.8rem
    }
  
    .md\:h-92 {
      height: 9.2rem
    }
  
    .md\:h-96 {
      height: 9.6rem
    }
  
    .md\:h-128 {
      height: 12.8rem
    }
  
    .md\:h-136 {
      height: 13.6rem
    }
  
    .md\:h-160 {
      height: 16rem
    }
  
    .md\:h-192 {
      height: 19.2rem
    }
  
    .md\:h-200 {
      height: 20rem
    }
  
    .md\:h-208 {
      height: 20.8rem
    }
  
    .md\:h-216 {
      height: 21.6rem
    }
  
    .md\:h-224 {
      height: 22.4rem
    }
  
    .md\:h-256 {
      height: 25.6rem
    }
  
    .md\:h-288 {
      height: 28.8rem
    }
  
    .md\:h-320 {
      height: 32rem
    }
  
    .md\:h-360 {
      height: 36rem
    }
  
    .md\:h-384 {
      height: 38.4rem
    }
  
    .md\:h-400 {
      height: 40rem
    }
  
    .md\:h-512 {
      height: 51.2rem
    }
  
    .md\:h-640 {
      height: 64rem
    }
  
    .md\:h-auto {
      height: auto
    }
  
    .md\:h-px {
      height: 1px
    }
  
    .md\:h-xs {
      height: 32rem
    }
  
    .md\:h-sm {
      height: 48rem
    }
  
    .md\:h-md {
      height: 64rem
    }
  
    .md\:h-lg {
      height: 80rem
    }
  
    .md\:h-xl {
      height: 96rem
    }
  
    .md\:h-2xl {
      height: 112rem
    }
  
    .md\:h-3xl {
      height: 128rem
    }
  
    .md\:h-4xl {
      height: 144rem
    }
  
    .md\:h-5xl {
      height: 160rem
    }
  
    .md\:h-full {
      height: 100%
    }
  
    .md\:h-screen {
      height: 100vh
    }
  
    .md\:leading-none {
      line-height: 1
    }
  
    .md\:leading-tight {
      line-height: 1.25
    }
  
    .md\:leading-snug {
      line-height: 1.375
    }
  
    .md\:leading-normal {
      line-height: 1.5
    }
  
    .md\:leading-relaxed {
      line-height: 1.625
    }
  
    .md\:leading-loose {
      line-height: 2
    }
  
    .md\:list-inside {
      list-style-position: inside
    }
  
    .md\:list-outside {
      list-style-position: outside
    }
  
    .md\:list-none {
      list-style-type: none
    }
  
    .md\:list-disc {
      list-style-type: disc
    }
  
    .md\:list-decimal {
      list-style-type: decimal
    }
  
    .md\:m-0 {
      margin: 0
    }
  
    .md\:m-1 {
      margin: 0.25rem
    }
  
    .md\:m-2 {
      margin: 0.5rem
    }
  
    .md\:m-3 {
      margin: 0.75rem
    }
  
    .md\:m-4 {
      margin: 0.4rem
    }
  
    .md\:m-5 {
      margin: 1.25rem
    }
  
    .md\:m-6 {
      margin: 0.6rem
    }
  
    .md\:m-8 {
      margin: 0.8rem
    }
  
    .md\:m-10 {
      margin: 2.5rem
    }
  
    .md\:m-12 {
      margin: 1.2rem
    }
  
    .md\:m-16 {
      margin: 1.6rem
    }
  
    .md\:m-20 {
      margin: 2rem
    }
  
    .md\:m-24 {
      margin: 2.4rem
    }
  
    .md\:m-28 {
      margin: 2.8rem
    }
  
    .md\:m-32 {
      margin: 3.2rem
    }
  
    .md\:m-36 {
      margin: 3.6rem
    }
  
    .md\:m-40 {
      margin: 4rem
    }
  
    .md\:m-44 {
      margin: 4.4rem
    }
  
    .md\:m-48 {
      margin: 4.8rem
    }
  
    .md\:m-52 {
      margin: 5.2rem
    }
  
    .md\:m-56 {
      margin: 5.6rem
    }
  
    .md\:m-60 {
      margin: 6rem
    }
  
    .md\:m-64 {
      margin: 6.4rem
    }
  
    .md\:m-68 {
      margin: 6.8rem
    }
  
    .md\:m-72 {
      margin: 7.2rem
    }
  
    .md\:m-76 {
      margin: 7.6rem
    }
  
    .md\:m-80 {
      margin: 8rem
    }
  
    .md\:m-84 {
      margin: 8.4rem
    }
  
    .md\:m-88 {
      margin: 8.8rem
    }
  
    .md\:m-92 {
      margin: 9.2rem
    }
  
    .md\:m-96 {
      margin: 9.6rem
    }
  
    .md\:m-128 {
      margin: 12.8rem
    }
  
    .md\:m-136 {
      margin: 13.6rem
    }
  
    .md\:m-160 {
      margin: 16rem
    }
  
    .md\:m-192 {
      margin: 19.2rem
    }
  
    .md\:m-200 {
      margin: 20rem
    }
  
    .md\:m-208 {
      margin: 20.8rem
    }
  
    .md\:m-216 {
      margin: 21.6rem
    }
  
    .md\:m-224 {
      margin: 22.4rem
    }
  
    .md\:m-256 {
      margin: 25.6rem
    }
  
    .md\:m-288 {
      margin: 28.8rem
    }
  
    .md\:m-320 {
      margin: 32rem
    }
  
    .md\:m-360 {
      margin: 36rem
    }
  
    .md\:m-384 {
      margin: 38.4rem
    }
  
    .md\:m-400 {
      margin: 40rem
    }
  
    .md\:m-512 {
      margin: 51.2rem
    }
  
    .md\:m-640 {
      margin: 64rem
    }
  
    .md\:m-auto {
      margin: auto
    }
  
    .md\:m-px {
      margin: 1px
    }
  
    .md\:m-xs {
      margin: 32rem
    }
  
    .md\:m-sm {
      margin: 48rem
    }
  
    .md\:m-md {
      margin: 64rem
    }
  
    .md\:m-lg {
      margin: 80rem
    }
  
    .md\:m-xl {
      margin: 96rem
    }
  
    .md\:m-2xl {
      margin: 112rem
    }
  
    .md\:m-3xl {
      margin: 128rem
    }
  
    .md\:m-4xl {
      margin: 144rem
    }
  
    .md\:m-5xl {
      margin: 160rem
    }
  
    .md\:-m-1 {
      margin: -0.25rem
    }
  
    .md\:-m-2 {
      margin: -0.5rem
    }
  
    .md\:-m-3 {
      margin: -0.75rem
    }
  
    .md\:-m-4 {
      margin: -0.4rem
    }
  
    .md\:-m-5 {
      margin: -1.25rem
    }
  
    .md\:-m-6 {
      margin: -0.6rem
    }
  
    .md\:-m-8 {
      margin: -0.8rem
    }
  
    .md\:-m-10 {
      margin: -2.5rem
    }
  
    .md\:-m-12 {
      margin: -1.2rem
    }
  
    .md\:-m-16 {
      margin: -1.6rem
    }
  
    .md\:-m-20 {
      margin: -2rem
    }
  
    .md\:-m-24 {
      margin: -2.4rem
    }
  
    .md\:-m-28 {
      margin: -2.8rem
    }
  
    .md\:-m-32 {
      margin: -3.2rem
    }
  
    .md\:-m-36 {
      margin: -3.6rem
    }
  
    .md\:-m-40 {
      margin: -4rem
    }
  
    .md\:-m-44 {
      margin: -4.4rem
    }
  
    .md\:-m-48 {
      margin: -4.8rem
    }
  
    .md\:-m-52 {
      margin: -5.2rem
    }
  
    .md\:-m-56 {
      margin: -5.6rem
    }
  
    .md\:-m-60 {
      margin: -6rem
    }
  
    .md\:-m-64 {
      margin: -6.4rem
    }
  
    .md\:-m-68 {
      margin: -6.8rem
    }
  
    .md\:-m-72 {
      margin: -7.2rem
    }
  
    .md\:-m-76 {
      margin: -7.6rem
    }
  
    .md\:-m-80 {
      margin: -8rem
    }
  
    .md\:-m-84 {
      margin: -8.4rem
    }
  
    .md\:-m-88 {
      margin: -8.8rem
    }
  
    .md\:-m-92 {
      margin: -9.2rem
    }
  
    .md\:-m-96 {
      margin: -9.6rem
    }
  
    .md\:-m-128 {
      margin: -12.8rem
    }
  
    .md\:-m-136 {
      margin: -13.6rem
    }
  
    .md\:-m-160 {
      margin: -16rem
    }
  
    .md\:-m-192 {
      margin: -19.2rem
    }
  
    .md\:-m-200 {
      margin: -20rem
    }
  
    .md\:-m-208 {
      margin: -20.8rem
    }
  
    .md\:-m-216 {
      margin: -21.6rem
    }
  
    .md\:-m-224 {
      margin: -22.4rem
    }
  
    .md\:-m-256 {
      margin: -25.6rem
    }
  
    .md\:-m-288 {
      margin: -28.8rem
    }
  
    .md\:-m-320 {
      margin: -32rem
    }
  
    .md\:-m-360 {
      margin: -36rem
    }
  
    .md\:-m-384 {
      margin: -38.4rem
    }
  
    .md\:-m-400 {
      margin: -40rem
    }
  
    .md\:-m-512 {
      margin: -51.2rem
    }
  
    .md\:-m-640 {
      margin: -64rem
    }
  
    .md\:-m-px {
      margin: -1px
    }
  
    .md\:-m-xs {
      margin: -32rem
    }
  
    .md\:-m-sm {
      margin: -48rem
    }
  
    .md\:-m-md {
      margin: -64rem
    }
  
    .md\:-m-lg {
      margin: -80rem
    }
  
    .md\:-m-xl {
      margin: -96rem
    }
  
    .md\:-m-2xl {
      margin: -112rem
    }
  
    .md\:-m-3xl {
      margin: -128rem
    }
  
    .md\:-m-4xl {
      margin: -144rem
    }
  
    .md\:-m-5xl {
      margin: -160rem
    }
  
    .md\:-m-auto {
      margin: -auto
    }
  
    .md\:my-0 {
      margin-top: 0;
      margin-bottom: 0
    }
  
    .md\:mx-0 {
      margin-left: 0;
      margin-right: 0
    }
  
    .md\:my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem
    }
  
    .md\:mx-1 {
      margin-left: 0.25rem;
      margin-right: 0.25rem
    }
  
    .md\:my-2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem
    }
  
    .md\:mx-2 {
      margin-left: 0.5rem;
      margin-right: 0.5rem
    }
  
    .md\:my-3 {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem
    }
  
    .md\:mx-3 {
      margin-left: 0.75rem;
      margin-right: 0.75rem
    }
  
    .md\:my-4 {
      margin-top: 0.4rem;
      margin-bottom: 0.4rem
    }
  
    .md\:mx-4 {
      margin-left: 0.4rem;
      margin-right: 0.4rem
    }
  
    .md\:my-5 {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem
    }
  
    .md\:mx-5 {
      margin-left: 1.25rem;
      margin-right: 1.25rem
    }
  
    .md\:my-6 {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem
    }
  
    .md\:mx-6 {
      margin-left: 0.6rem;
      margin-right: 0.6rem
    }
  
    .md\:my-8 {
      margin-top: 0.8rem;
      margin-bottom: 0.8rem
    }
  
    .md\:mx-8 {
      margin-left: 0.8rem;
      margin-right: 0.8rem
    }
  
    .md\:my-10 {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem
    }
  
    .md\:mx-10 {
      margin-left: 2.5rem;
      margin-right: 2.5rem
    }
  
    .md\:my-12 {
      margin-top: 1.2rem;
      margin-bottom: 1.2rem
    }
  
    .md\:mx-12 {
      margin-left: 1.2rem;
      margin-right: 1.2rem
    }
  
    .md\:my-16 {
      margin-top: 1.6rem;
      margin-bottom: 1.6rem
    }
  
    .md\:mx-16 {
      margin-left: 1.6rem;
      margin-right: 1.6rem
    }
  
    .md\:my-20 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
  
    .md\:mx-20 {
      margin-left: 2rem;
      margin-right: 2rem
    }
  
    .md\:my-24 {
      margin-top: 2.4rem;
      margin-bottom: 2.4rem
    }
  
    .md\:mx-24 {
      margin-left: 2.4rem;
      margin-right: 2.4rem
    }
  
    .md\:my-28 {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem
    }
  
    .md\:mx-28 {
      margin-left: 2.8rem;
      margin-right: 2.8rem
    }
  
    .md\:my-32 {
      margin-top: 3.2rem;
      margin-bottom: 3.2rem
    }
  
    .md\:mx-32 {
      margin-left: 3.2rem;
      margin-right: 3.2rem
    }
  
    .md\:my-36 {
      margin-top: 3.6rem;
      margin-bottom: 3.6rem
    }
  
    .md\:mx-36 {
      margin-left: 3.6rem;
      margin-right: 3.6rem
    }
  
    .md\:my-40 {
      margin-top: 4rem;
      margin-bottom: 4rem
    }
  
    .md\:mx-40 {
      margin-left: 4rem;
      margin-right: 4rem
    }
  
    .md\:my-44 {
      margin-top: 4.4rem;
      margin-bottom: 4.4rem
    }
  
    .md\:mx-44 {
      margin-left: 4.4rem;
      margin-right: 4.4rem
    }
  
    .md\:my-48 {
      margin-top: 4.8rem;
      margin-bottom: 4.8rem
    }
  
    .md\:mx-48 {
      margin-left: 4.8rem;
      margin-right: 4.8rem
    }
  
    .md\:my-52 {
      margin-top: 5.2rem;
      margin-bottom: 5.2rem
    }
  
    .md\:mx-52 {
      margin-left: 5.2rem;
      margin-right: 5.2rem
    }
  
    .md\:my-56 {
      margin-top: 5.6rem;
      margin-bottom: 5.6rem
    }
  
    .md\:mx-56 {
      margin-left: 5.6rem;
      margin-right: 5.6rem
    }
  
    .md\:my-60 {
      margin-top: 6rem;
      margin-bottom: 6rem
    }
  
    .md\:mx-60 {
      margin-left: 6rem;
      margin-right: 6rem
    }
  
    .md\:my-64 {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem
    }
  
    .md\:mx-64 {
      margin-left: 6.4rem;
      margin-right: 6.4rem
    }
  
    .md\:my-68 {
      margin-top: 6.8rem;
      margin-bottom: 6.8rem
    }
  
    .md\:mx-68 {
      margin-left: 6.8rem;
      margin-right: 6.8rem
    }
  
    .md\:my-72 {
      margin-top: 7.2rem;
      margin-bottom: 7.2rem
    }
  
    .md\:mx-72 {
      margin-left: 7.2rem;
      margin-right: 7.2rem
    }
  
    .md\:my-76 {
      margin-top: 7.6rem;
      margin-bottom: 7.6rem
    }
  
    .md\:mx-76 {
      margin-left: 7.6rem;
      margin-right: 7.6rem
    }
  
    .md\:my-80 {
      margin-top: 8rem;
      margin-bottom: 8rem
    }
  
    .md\:mx-80 {
      margin-left: 8rem;
      margin-right: 8rem
    }
  
    .md\:my-84 {
      margin-top: 8.4rem;
      margin-bottom: 8.4rem
    }
  
    .md\:mx-84 {
      margin-left: 8.4rem;
      margin-right: 8.4rem
    }
  
    .md\:my-88 {
      margin-top: 8.8rem;
      margin-bottom: 8.8rem
    }
  
    .md\:mx-88 {
      margin-left: 8.8rem;
      margin-right: 8.8rem
    }
  
    .md\:my-92 {
      margin-top: 9.2rem;
      margin-bottom: 9.2rem
    }
  
    .md\:mx-92 {
      margin-left: 9.2rem;
      margin-right: 9.2rem
    }
  
    .md\:my-96 {
      margin-top: 9.6rem;
      margin-bottom: 9.6rem
    }
  
    .md\:mx-96 {
      margin-left: 9.6rem;
      margin-right: 9.6rem
    }
  
    .md\:my-128 {
      margin-top: 12.8rem;
      margin-bottom: 12.8rem
    }
  
    .md\:mx-128 {
      margin-left: 12.8rem;
      margin-right: 12.8rem
    }
  
    .md\:my-136 {
      margin-top: 13.6rem;
      margin-bottom: 13.6rem
    }
  
    .md\:mx-136 {
      margin-left: 13.6rem;
      margin-right: 13.6rem
    }
  
    .md\:my-160 {
      margin-top: 16rem;
      margin-bottom: 16rem
    }
  
    .md\:mx-160 {
      margin-left: 16rem;
      margin-right: 16rem
    }
  
    .md\:my-192 {
      margin-top: 19.2rem;
      margin-bottom: 19.2rem
    }
  
    .md\:mx-192 {
      margin-left: 19.2rem;
      margin-right: 19.2rem
    }
  
    .md\:my-200 {
      margin-top: 20rem;
      margin-bottom: 20rem
    }
  
    .md\:mx-200 {
      margin-left: 20rem;
      margin-right: 20rem
    }
  
    .md\:my-208 {
      margin-top: 20.8rem;
      margin-bottom: 20.8rem
    }
  
    .md\:mx-208 {
      margin-left: 20.8rem;
      margin-right: 20.8rem
    }
  
    .md\:my-216 {
      margin-top: 21.6rem;
      margin-bottom: 21.6rem
    }
  
    .md\:mx-216 {
      margin-left: 21.6rem;
      margin-right: 21.6rem
    }
  
    .md\:my-224 {
      margin-top: 22.4rem;
      margin-bottom: 22.4rem
    }
  
    .md\:mx-224 {
      margin-left: 22.4rem;
      margin-right: 22.4rem
    }
  
    .md\:my-256 {
      margin-top: 25.6rem;
      margin-bottom: 25.6rem
    }
  
    .md\:mx-256 {
      margin-left: 25.6rem;
      margin-right: 25.6rem
    }
  
    .md\:my-288 {
      margin-top: 28.8rem;
      margin-bottom: 28.8rem
    }
  
    .md\:mx-288 {
      margin-left: 28.8rem;
      margin-right: 28.8rem
    }
  
    .md\:my-320 {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .md\:mx-320 {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .md\:my-360 {
      margin-top: 36rem;
      margin-bottom: 36rem
    }
  
    .md\:mx-360 {
      margin-left: 36rem;
      margin-right: 36rem
    }
  
    .md\:my-384 {
      margin-top: 38.4rem;
      margin-bottom: 38.4rem
    }
  
    .md\:mx-384 {
      margin-left: 38.4rem;
      margin-right: 38.4rem
    }
  
    .md\:my-400 {
      margin-top: 40rem;
      margin-bottom: 40rem
    }
  
    .md\:mx-400 {
      margin-left: 40rem;
      margin-right: 40rem
    }
  
    .md\:my-512 {
      margin-top: 51.2rem;
      margin-bottom: 51.2rem
    }
  
    .md\:mx-512 {
      margin-left: 51.2rem;
      margin-right: 51.2rem
    }
  
    .md\:my-640 {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .md\:mx-640 {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .md\:my-auto {
      margin-top: auto;
      margin-bottom: auto
    }
  
    .md\:mx-auto {
      margin-left: auto;
      margin-right: auto
    }
  
    .md\:my-px {
      margin-top: 1px;
      margin-bottom: 1px
    }
  
    .md\:mx-px {
      margin-left: 1px;
      margin-right: 1px
    }
  
    .md\:my-xs {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .md\:mx-xs {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .md\:my-sm {
      margin-top: 48rem;
      margin-bottom: 48rem
    }
  
    .md\:mx-sm {
      margin-left: 48rem;
      margin-right: 48rem
    }
  
    .md\:my-md {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .md\:mx-md {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .md\:my-lg {
      margin-top: 80rem;
      margin-bottom: 80rem
    }
  
    .md\:mx-lg {
      margin-left: 80rem;
      margin-right: 80rem
    }
  
    .md\:my-xl {
      margin-top: 96rem;
      margin-bottom: 96rem
    }
  
    .md\:mx-xl {
      margin-left: 96rem;
      margin-right: 96rem
    }
  
    .md\:my-2xl {
      margin-top: 112rem;
      margin-bottom: 112rem
    }
  
    .md\:mx-2xl {
      margin-left: 112rem;
      margin-right: 112rem
    }
  
    .md\:my-3xl {
      margin-top: 128rem;
      margin-bottom: 128rem
    }
  
    .md\:mx-3xl {
      margin-left: 128rem;
      margin-right: 128rem
    }
  
    .md\:my-4xl {
      margin-top: 144rem;
      margin-bottom: 144rem
    }
  
    .md\:mx-4xl {
      margin-left: 144rem;
      margin-right: 144rem
    }
  
    .md\:my-5xl {
      margin-top: 160rem;
      margin-bottom: 160rem
    }
  
    .md\:mx-5xl {
      margin-left: 160rem;
      margin-right: 160rem
    }
  
    .md\:-my-1 {
      margin-top: -0.25rem;
      margin-bottom: -0.25rem
    }
  
    .md\:-mx-1 {
      margin-left: -0.25rem;
      margin-right: -0.25rem
    }
  
    .md\:-my-2 {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem
    }
  
    .md\:-mx-2 {
      margin-left: -0.5rem;
      margin-right: -0.5rem
    }
  
    .md\:-my-3 {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem
    }
  
    .md\:-mx-3 {
      margin-left: -0.75rem;
      margin-right: -0.75rem
    }
  
    .md\:-my-4 {
      margin-top: -0.4rem;
      margin-bottom: -0.4rem
    }
  
    .md\:-mx-4 {
      margin-left: -0.4rem;
      margin-right: -0.4rem
    }
  
    .md\:-my-5 {
      margin-top: -1.25rem;
      margin-bottom: -1.25rem
    }
  
    .md\:-mx-5 {
      margin-left: -1.25rem;
      margin-right: -1.25rem
    }
  
    .md\:-my-6 {
      margin-top: -0.6rem;
      margin-bottom: -0.6rem
    }
  
    .md\:-mx-6 {
      margin-left: -0.6rem;
      margin-right: -0.6rem
    }
  
    .md\:-my-8 {
      margin-top: -0.8rem;
      margin-bottom: -0.8rem
    }
  
    .md\:-mx-8 {
      margin-left: -0.8rem;
      margin-right: -0.8rem
    }
  
    .md\:-my-10 {
      margin-top: -2.5rem;
      margin-bottom: -2.5rem
    }
  
    .md\:-mx-10 {
      margin-left: -2.5rem;
      margin-right: -2.5rem
    }
  
    .md\:-my-12 {
      margin-top: -1.2rem;
      margin-bottom: -1.2rem
    }
  
    .md\:-mx-12 {
      margin-left: -1.2rem;
      margin-right: -1.2rem
    }
  
    .md\:-my-16 {
      margin-top: -1.6rem;
      margin-bottom: -1.6rem
    }
  
    .md\:-mx-16 {
      margin-left: -1.6rem;
      margin-right: -1.6rem
    }
  
    .md\:-my-20 {
      margin-top: -2rem;
      margin-bottom: -2rem
    }
  
    .md\:-mx-20 {
      margin-left: -2rem;
      margin-right: -2rem
    }
  
    .md\:-my-24 {
      margin-top: -2.4rem;
      margin-bottom: -2.4rem
    }
  
    .md\:-mx-24 {
      margin-left: -2.4rem;
      margin-right: -2.4rem
    }
  
    .md\:-my-28 {
      margin-top: -2.8rem;
      margin-bottom: -2.8rem
    }
  
    .md\:-mx-28 {
      margin-left: -2.8rem;
      margin-right: -2.8rem
    }
  
    .md\:-my-32 {
      margin-top: -3.2rem;
      margin-bottom: -3.2rem
    }
  
    .md\:-mx-32 {
      margin-left: -3.2rem;
      margin-right: -3.2rem
    }
  
    .md\:-my-36 {
      margin-top: -3.6rem;
      margin-bottom: -3.6rem
    }
  
    .md\:-mx-36 {
      margin-left: -3.6rem;
      margin-right: -3.6rem
    }
  
    .md\:-my-40 {
      margin-top: -4rem;
      margin-bottom: -4rem
    }
  
    .md\:-mx-40 {
      margin-left: -4rem;
      margin-right: -4rem
    }
  
    .md\:-my-44 {
      margin-top: -4.4rem;
      margin-bottom: -4.4rem
    }
  
    .md\:-mx-44 {
      margin-left: -4.4rem;
      margin-right: -4.4rem
    }
  
    .md\:-my-48 {
      margin-top: -4.8rem;
      margin-bottom: -4.8rem
    }
  
    .md\:-mx-48 {
      margin-left: -4.8rem;
      margin-right: -4.8rem
    }
  
    .md\:-my-52 {
      margin-top: -5.2rem;
      margin-bottom: -5.2rem
    }
  
    .md\:-mx-52 {
      margin-left: -5.2rem;
      margin-right: -5.2rem
    }
  
    .md\:-my-56 {
      margin-top: -5.6rem;
      margin-bottom: -5.6rem
    }
  
    .md\:-mx-56 {
      margin-left: -5.6rem;
      margin-right: -5.6rem
    }
  
    .md\:-my-60 {
      margin-top: -6rem;
      margin-bottom: -6rem
    }
  
    .md\:-mx-60 {
      margin-left: -6rem;
      margin-right: -6rem
    }
  
    .md\:-my-64 {
      margin-top: -6.4rem;
      margin-bottom: -6.4rem
    }
  
    .md\:-mx-64 {
      margin-left: -6.4rem;
      margin-right: -6.4rem
    }
  
    .md\:-my-68 {
      margin-top: -6.8rem;
      margin-bottom: -6.8rem
    }
  
    .md\:-mx-68 {
      margin-left: -6.8rem;
      margin-right: -6.8rem
    }
  
    .md\:-my-72 {
      margin-top: -7.2rem;
      margin-bottom: -7.2rem
    }
  
    .md\:-mx-72 {
      margin-left: -7.2rem;
      margin-right: -7.2rem
    }
  
    .md\:-my-76 {
      margin-top: -7.6rem;
      margin-bottom: -7.6rem
    }
  
    .md\:-mx-76 {
      margin-left: -7.6rem;
      margin-right: -7.6rem
    }
  
    .md\:-my-80 {
      margin-top: -8rem;
      margin-bottom: -8rem
    }
  
    .md\:-mx-80 {
      margin-left: -8rem;
      margin-right: -8rem
    }
  
    .md\:-my-84 {
      margin-top: -8.4rem;
      margin-bottom: -8.4rem
    }
  
    .md\:-mx-84 {
      margin-left: -8.4rem;
      margin-right: -8.4rem
    }
  
    .md\:-my-88 {
      margin-top: -8.8rem;
      margin-bottom: -8.8rem
    }
  
    .md\:-mx-88 {
      margin-left: -8.8rem;
      margin-right: -8.8rem
    }
  
    .md\:-my-92 {
      margin-top: -9.2rem;
      margin-bottom: -9.2rem
    }
  
    .md\:-mx-92 {
      margin-left: -9.2rem;
      margin-right: -9.2rem
    }
  
    .md\:-my-96 {
      margin-top: -9.6rem;
      margin-bottom: -9.6rem
    }
  
    .md\:-mx-96 {
      margin-left: -9.6rem;
      margin-right: -9.6rem
    }
  
    .md\:-my-128 {
      margin-top: -12.8rem;
      margin-bottom: -12.8rem
    }
  
    .md\:-mx-128 {
      margin-left: -12.8rem;
      margin-right: -12.8rem
    }
  
    .md\:-my-136 {
      margin-top: -13.6rem;
      margin-bottom: -13.6rem
    }
  
    .md\:-mx-136 {
      margin-left: -13.6rem;
      margin-right: -13.6rem
    }
  
    .md\:-my-160 {
      margin-top: -16rem;
      margin-bottom: -16rem
    }
  
    .md\:-mx-160 {
      margin-left: -16rem;
      margin-right: -16rem
    }
  
    .md\:-my-192 {
      margin-top: -19.2rem;
      margin-bottom: -19.2rem
    }
  
    .md\:-mx-192 {
      margin-left: -19.2rem;
      margin-right: -19.2rem
    }
  
    .md\:-my-200 {
      margin-top: -20rem;
      margin-bottom: -20rem
    }
  
    .md\:-mx-200 {
      margin-left: -20rem;
      margin-right: -20rem
    }
  
    .md\:-my-208 {
      margin-top: -20.8rem;
      margin-bottom: -20.8rem
    }
  
    .md\:-mx-208 {
      margin-left: -20.8rem;
      margin-right: -20.8rem
    }
  
    .md\:-my-216 {
      margin-top: -21.6rem;
      margin-bottom: -21.6rem
    }
  
    .md\:-mx-216 {
      margin-left: -21.6rem;
      margin-right: -21.6rem
    }
  
    .md\:-my-224 {
      margin-top: -22.4rem;
      margin-bottom: -22.4rem
    }
  
    .md\:-mx-224 {
      margin-left: -22.4rem;
      margin-right: -22.4rem
    }
  
    .md\:-my-256 {
      margin-top: -25.6rem;
      margin-bottom: -25.6rem
    }
  
    .md\:-mx-256 {
      margin-left: -25.6rem;
      margin-right: -25.6rem
    }
  
    .md\:-my-288 {
      margin-top: -28.8rem;
      margin-bottom: -28.8rem
    }
  
    .md\:-mx-288 {
      margin-left: -28.8rem;
      margin-right: -28.8rem
    }
  
    .md\:-my-320 {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .md\:-mx-320 {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .md\:-my-360 {
      margin-top: -36rem;
      margin-bottom: -36rem
    }
  
    .md\:-mx-360 {
      margin-left: -36rem;
      margin-right: -36rem
    }
  
    .md\:-my-384 {
      margin-top: -38.4rem;
      margin-bottom: -38.4rem
    }
  
    .md\:-mx-384 {
      margin-left: -38.4rem;
      margin-right: -38.4rem
    }
  
    .md\:-my-400 {
      margin-top: -40rem;
      margin-bottom: -40rem
    }
  
    .md\:-mx-400 {
      margin-left: -40rem;
      margin-right: -40rem
    }
  
    .md\:-my-512 {
      margin-top: -51.2rem;
      margin-bottom: -51.2rem
    }
  
    .md\:-mx-512 {
      margin-left: -51.2rem;
      margin-right: -51.2rem
    }
  
    .md\:-my-640 {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .md\:-mx-640 {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .md\:-my-px {
      margin-top: -1px;
      margin-bottom: -1px
    }
  
    .md\:-mx-px {
      margin-left: -1px;
      margin-right: -1px
    }
  
    .md\:-my-xs {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .md\:-mx-xs {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .md\:-my-sm {
      margin-top: -48rem;
      margin-bottom: -48rem
    }
  
    .md\:-mx-sm {
      margin-left: -48rem;
      margin-right: -48rem
    }
  
    .md\:-my-md {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .md\:-mx-md {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .md\:-my-lg {
      margin-top: -80rem;
      margin-bottom: -80rem
    }
  
    .md\:-mx-lg {
      margin-left: -80rem;
      margin-right: -80rem
    }
  
    .md\:-my-xl {
      margin-top: -96rem;
      margin-bottom: -96rem
    }
  
    .md\:-mx-xl {
      margin-left: -96rem;
      margin-right: -96rem
    }
  
    .md\:-my-2xl {
      margin-top: -112rem;
      margin-bottom: -112rem
    }
  
    .md\:-mx-2xl {
      margin-left: -112rem;
      margin-right: -112rem
    }
  
    .md\:-my-3xl {
      margin-top: -128rem;
      margin-bottom: -128rem
    }
  
    .md\:-mx-3xl {
      margin-left: -128rem;
      margin-right: -128rem
    }
  
    .md\:-my-4xl {
      margin-top: -144rem;
      margin-bottom: -144rem
    }
  
    .md\:-mx-4xl {
      margin-left: -144rem;
      margin-right: -144rem
    }
  
    .md\:-my-5xl {
      margin-top: -160rem;
      margin-bottom: -160rem
    }
  
    .md\:-mx-5xl {
      margin-left: -160rem;
      margin-right: -160rem
    }
  
    .md\:-my-auto {
      margin-top: -auto;
      margin-bottom: -auto
    }
  
    .md\:-mx-auto {
      margin-left: -auto;
      margin-right: -auto
    }
  
    .md\:mt-0 {
      margin-top: 0
    }
  
    .md\:mr-0 {
      margin-right: 0
    }
  
    .md\:mb-0 {
      margin-bottom: 0
    }
  
    .md\:ml-0 {
      margin-left: 0
    }
  
    .md\:mt-1 {
      margin-top: 0.25rem
    }
  
    .md\:mr-1 {
      margin-right: 0.25rem
    }
  
    .md\:mb-1 {
      margin-bottom: 0.25rem
    }
  
    .md\:ml-1 {
      margin-left: 0.25rem
    }
  
    .md\:mt-2 {
      margin-top: 0.5rem
    }
  
    .md\:mr-2 {
      margin-right: 0.5rem
    }
  
    .md\:mb-2 {
      margin-bottom: 0.5rem
    }
  
    .md\:ml-2 {
      margin-left: 0.5rem
    }
  
    .md\:mt-3 {
      margin-top: 0.75rem
    }
  
    .md\:mr-3 {
      margin-right: 0.75rem
    }
  
    .md\:mb-3 {
      margin-bottom: 0.75rem
    }
  
    .md\:ml-3 {
      margin-left: 0.75rem
    }
  
    .md\:mt-4 {
      margin-top: 0.4rem
    }
  
    .md\:mr-4 {
      margin-right: 0.4rem
    }
  
    .md\:mb-4 {
      margin-bottom: 0.4rem
    }
  
    .md\:ml-4 {
      margin-left: 0.4rem
    }
  
    .md\:mt-5 {
      margin-top: 1.25rem
    }
  
    .md\:mr-5 {
      margin-right: 1.25rem
    }
  
    .md\:mb-5 {
      margin-bottom: 1.25rem
    }
  
    .md\:ml-5 {
      margin-left: 1.25rem
    }
  
    .md\:mt-6 {
      margin-top: 0.6rem
    }
  
    .md\:mr-6 {
      margin-right: 0.6rem
    }
  
    .md\:mb-6 {
      margin-bottom: 0.6rem
    }
  
    .md\:ml-6 {
      margin-left: 0.6rem
    }
  
    .md\:mt-8 {
      margin-top: 0.8rem
    }
  
    .md\:mr-8 {
      margin-right: 0.8rem
    }
  
    .md\:mb-8 {
      margin-bottom: 0.8rem
    }
  
    .md\:ml-8 {
      margin-left: 0.8rem
    }
  
    .md\:mt-10 {
      margin-top: 2.5rem
    }
  
    .md\:mr-10 {
      margin-right: 2.5rem
    }
  
    .md\:mb-10 {
      margin-bottom: 2.5rem
    }
  
    .md\:ml-10 {
      margin-left: 2.5rem
    }
  
    .md\:mt-12 {
      margin-top: 1.2rem
    }
  
    .md\:mr-12 {
      margin-right: 1.2rem
    }
  
    .md\:mb-12 {
      margin-bottom: 1.2rem
    }
  
    .md\:ml-12 {
      margin-left: 1.2rem
    }
  
    .md\:mt-16 {
      margin-top: 1.6rem
    }
  
    .md\:mr-16 {
      margin-right: 1.6rem
    }
  
    .md\:mb-16 {
      margin-bottom: 1.6rem
    }
  
    .md\:ml-16 {
      margin-left: 1.6rem
    }
  
    .md\:mt-20 {
      margin-top: 2rem
    }
  
    .md\:mr-20 {
      margin-right: 2rem
    }
  
    .md\:mb-20 {
      margin-bottom: 2rem
    }
  
    .md\:ml-20 {
      margin-left: 2rem
    }
  
    .md\:mt-24 {
      margin-top: 2.4rem
    }
  
    .md\:mr-24 {
      margin-right: 2.4rem
    }
  
    .md\:mb-24 {
      margin-bottom: 2.4rem
    }
  
    .md\:ml-24 {
      margin-left: 2.4rem
    }
  
    .md\:mt-28 {
      margin-top: 2.8rem
    }
  
    .md\:mr-28 {
      margin-right: 2.8rem
    }
  
    .md\:mb-28 {
      margin-bottom: 2.8rem
    }
  
    .md\:ml-28 {
      margin-left: 2.8rem
    }
  
    .md\:mt-32 {
      margin-top: 3.2rem
    }
  
    .md\:mr-32 {
      margin-right: 3.2rem
    }
  
    .md\:mb-32 {
      margin-bottom: 3.2rem
    }
  
    .md\:ml-32 {
      margin-left: 3.2rem
    }
  
    .md\:mt-36 {
      margin-top: 3.6rem
    }
  
    .md\:mr-36 {
      margin-right: 3.6rem
    }
  
    .md\:mb-36 {
      margin-bottom: 3.6rem
    }
  
    .md\:ml-36 {
      margin-left: 3.6rem
    }
  
    .md\:mt-40 {
      margin-top: 4rem
    }
  
    .md\:mr-40 {
      margin-right: 4rem
    }
  
    .md\:mb-40 {
      margin-bottom: 4rem
    }
  
    .md\:ml-40 {
      margin-left: 4rem
    }
  
    .md\:mt-44 {
      margin-top: 4.4rem
    }
  
    .md\:mr-44 {
      margin-right: 4.4rem
    }
  
    .md\:mb-44 {
      margin-bottom: 4.4rem
    }
  
    .md\:ml-44 {
      margin-left: 4.4rem
    }
  
    .md\:mt-48 {
      margin-top: 4.8rem
    }
  
    .md\:mr-48 {
      margin-right: 4.8rem
    }
  
    .md\:mb-48 {
      margin-bottom: 4.8rem
    }
  
    .md\:ml-48 {
      margin-left: 4.8rem
    }
  
    .md\:mt-52 {
      margin-top: 5.2rem
    }
  
    .md\:mr-52 {
      margin-right: 5.2rem
    }
  
    .md\:mb-52 {
      margin-bottom: 5.2rem
    }
  
    .md\:ml-52 {
      margin-left: 5.2rem
    }
  
    .md\:mt-56 {
      margin-top: 5.6rem
    }
  
    .md\:mr-56 {
      margin-right: 5.6rem
    }
  
    .md\:mb-56 {
      margin-bottom: 5.6rem
    }
  
    .md\:ml-56 {
      margin-left: 5.6rem
    }
  
    .md\:mt-60 {
      margin-top: 6rem
    }
  
    .md\:mr-60 {
      margin-right: 6rem
    }
  
    .md\:mb-60 {
      margin-bottom: 6rem
    }
  
    .md\:ml-60 {
      margin-left: 6rem
    }
  
    .md\:mt-64 {
      margin-top: 6.4rem
    }
  
    .md\:mr-64 {
      margin-right: 6.4rem
    }
  
    .md\:mb-64 {
      margin-bottom: 6.4rem
    }
  
    .md\:ml-64 {
      margin-left: 6.4rem
    }
  
    .md\:mt-68 {
      margin-top: 6.8rem
    }
  
    .md\:mr-68 {
      margin-right: 6.8rem
    }
  
    .md\:mb-68 {
      margin-bottom: 6.8rem
    }
  
    .md\:ml-68 {
      margin-left: 6.8rem
    }
  
    .md\:mt-72 {
      margin-top: 7.2rem
    }
  
    .md\:mr-72 {
      margin-right: 7.2rem
    }
  
    .md\:mb-72 {
      margin-bottom: 7.2rem
    }
  
    .md\:ml-72 {
      margin-left: 7.2rem
    }
  
    .md\:mt-76 {
      margin-top: 7.6rem
    }
  
    .md\:mr-76 {
      margin-right: 7.6rem
    }
  
    .md\:mb-76 {
      margin-bottom: 7.6rem
    }
  
    .md\:ml-76 {
      margin-left: 7.6rem
    }
  
    .md\:mt-80 {
      margin-top: 8rem
    }
  
    .md\:mr-80 {
      margin-right: 8rem
    }
  
    .md\:mb-80 {
      margin-bottom: 8rem
    }
  
    .md\:ml-80 {
      margin-left: 8rem
    }
  
    .md\:mt-84 {
      margin-top: 8.4rem
    }
  
    .md\:mr-84 {
      margin-right: 8.4rem
    }
  
    .md\:mb-84 {
      margin-bottom: 8.4rem
    }
  
    .md\:ml-84 {
      margin-left: 8.4rem
    }
  
    .md\:mt-88 {
      margin-top: 8.8rem
    }
  
    .md\:mr-88 {
      margin-right: 8.8rem
    }
  
    .md\:mb-88 {
      margin-bottom: 8.8rem
    }
  
    .md\:ml-88 {
      margin-left: 8.8rem
    }
  
    .md\:mt-92 {
      margin-top: 9.2rem
    }
  
    .md\:mr-92 {
      margin-right: 9.2rem
    }
  
    .md\:mb-92 {
      margin-bottom: 9.2rem
    }
  
    .md\:ml-92 {
      margin-left: 9.2rem
    }
  
    .md\:mt-96 {
      margin-top: 9.6rem
    }
  
    .md\:mr-96 {
      margin-right: 9.6rem
    }
  
    .md\:mb-96 {
      margin-bottom: 9.6rem
    }
  
    .md\:ml-96 {
      margin-left: 9.6rem
    }
  
    .md\:mt-128 {
      margin-top: 12.8rem
    }
  
    .md\:mr-128 {
      margin-right: 12.8rem
    }
  
    .md\:mb-128 {
      margin-bottom: 12.8rem
    }
  
    .md\:ml-128 {
      margin-left: 12.8rem
    }
  
    .md\:mt-136 {
      margin-top: 13.6rem
    }
  
    .md\:mr-136 {
      margin-right: 13.6rem
    }
  
    .md\:mb-136 {
      margin-bottom: 13.6rem
    }
  
    .md\:ml-136 {
      margin-left: 13.6rem
    }
  
    .md\:mt-160 {
      margin-top: 16rem
    }
  
    .md\:mr-160 {
      margin-right: 16rem
    }
  
    .md\:mb-160 {
      margin-bottom: 16rem
    }
  
    .md\:ml-160 {
      margin-left: 16rem
    }
  
    .md\:mt-192 {
      margin-top: 19.2rem
    }
  
    .md\:mr-192 {
      margin-right: 19.2rem
    }
  
    .md\:mb-192 {
      margin-bottom: 19.2rem
    }
  
    .md\:ml-192 {
      margin-left: 19.2rem
    }
  
    .md\:mt-200 {
      margin-top: 20rem
    }
  
    .md\:mr-200 {
      margin-right: 20rem
    }
  
    .md\:mb-200 {
      margin-bottom: 20rem
    }
  
    .md\:ml-200 {
      margin-left: 20rem
    }
  
    .md\:mt-208 {
      margin-top: 20.8rem
    }
  
    .md\:mr-208 {
      margin-right: 20.8rem
    }
  
    .md\:mb-208 {
      margin-bottom: 20.8rem
    }
  
    .md\:ml-208 {
      margin-left: 20.8rem
    }
  
    .md\:mt-216 {
      margin-top: 21.6rem
    }
  
    .md\:mr-216 {
      margin-right: 21.6rem
    }
  
    .md\:mb-216 {
      margin-bottom: 21.6rem
    }
  
    .md\:ml-216 {
      margin-left: 21.6rem
    }
  
    .md\:mt-224 {
      margin-top: 22.4rem
    }
  
    .md\:mr-224 {
      margin-right: 22.4rem
    }
  
    .md\:mb-224 {
      margin-bottom: 22.4rem
    }
  
    .md\:ml-224 {
      margin-left: 22.4rem
    }
  
    .md\:mt-256 {
      margin-top: 25.6rem
    }
  
    .md\:mr-256 {
      margin-right: 25.6rem
    }
  
    .md\:mb-256 {
      margin-bottom: 25.6rem
    }
  
    .md\:ml-256 {
      margin-left: 25.6rem
    }
  
    .md\:mt-288 {
      margin-top: 28.8rem
    }
  
    .md\:mr-288 {
      margin-right: 28.8rem
    }
  
    .md\:mb-288 {
      margin-bottom: 28.8rem
    }
  
    .md\:ml-288 {
      margin-left: 28.8rem
    }
  
    .md\:mt-320 {
      margin-top: 32rem
    }
  
    .md\:mr-320 {
      margin-right: 32rem
    }
  
    .md\:mb-320 {
      margin-bottom: 32rem
    }
  
    .md\:ml-320 {
      margin-left: 32rem
    }
  
    .md\:mt-360 {
      margin-top: 36rem
    }
  
    .md\:mr-360 {
      margin-right: 36rem
    }
  
    .md\:mb-360 {
      margin-bottom: 36rem
    }
  
    .md\:ml-360 {
      margin-left: 36rem
    }
  
    .md\:mt-384 {
      margin-top: 38.4rem
    }
  
    .md\:mr-384 {
      margin-right: 38.4rem
    }
  
    .md\:mb-384 {
      margin-bottom: 38.4rem
    }
  
    .md\:ml-384 {
      margin-left: 38.4rem
    }
  
    .md\:mt-400 {
      margin-top: 40rem
    }
  
    .md\:mr-400 {
      margin-right: 40rem
    }
  
    .md\:mb-400 {
      margin-bottom: 40rem
    }
  
    .md\:ml-400 {
      margin-left: 40rem
    }
  
    .md\:mt-512 {
      margin-top: 51.2rem
    }
  
    .md\:mr-512 {
      margin-right: 51.2rem
    }
  
    .md\:mb-512 {
      margin-bottom: 51.2rem
    }
  
    .md\:ml-512 {
      margin-left: 51.2rem
    }
  
    .md\:mt-640 {
      margin-top: 64rem
    }
  
    .md\:mr-640 {
      margin-right: 64rem
    }
  
    .md\:mb-640 {
      margin-bottom: 64rem
    }
  
    .md\:ml-640 {
      margin-left: 64rem
    }
  
    .md\:mt-auto {
      margin-top: auto
    }
  
    .md\:mr-auto {
      margin-right: auto
    }
  
    .md\:mb-auto {
      margin-bottom: auto
    }
  
    .md\:ml-auto {
      margin-left: auto
    }
  
    .md\:mt-px {
      margin-top: 1px
    }
  
    .md\:mr-px {
      margin-right: 1px
    }
  
    .md\:mb-px {
      margin-bottom: 1px
    }
  
    .md\:ml-px {
      margin-left: 1px
    }
  
    .md\:mt-xs {
      margin-top: 32rem
    }
  
    .md\:mr-xs {
      margin-right: 32rem
    }
  
    .md\:mb-xs {
      margin-bottom: 32rem
    }
  
    .md\:ml-xs {
      margin-left: 32rem
    }
  
    .md\:mt-sm {
      margin-top: 48rem
    }
  
    .md\:mr-sm {
      margin-right: 48rem
    }
  
    .md\:mb-sm {
      margin-bottom: 48rem
    }
  
    .md\:ml-sm {
      margin-left: 48rem
    }
  
    .md\:mt-md {
      margin-top: 64rem
    }
  
    .md\:mr-md {
      margin-right: 64rem
    }
  
    .md\:mb-md {
      margin-bottom: 64rem
    }
  
    .md\:ml-md {
      margin-left: 64rem
    }
  
    .md\:mt-lg {
      margin-top: 80rem
    }
  
    .md\:mr-lg {
      margin-right: 80rem
    }
  
    .md\:mb-lg {
      margin-bottom: 80rem
    }
  
    .md\:ml-lg {
      margin-left: 80rem
    }
  
    .md\:mt-xl {
      margin-top: 96rem
    }
  
    .md\:mr-xl {
      margin-right: 96rem
    }
  
    .md\:mb-xl {
      margin-bottom: 96rem
    }
  
    .md\:ml-xl {
      margin-left: 96rem
    }
  
    .md\:mt-2xl {
      margin-top: 112rem
    }
  
    .md\:mr-2xl {
      margin-right: 112rem
    }
  
    .md\:mb-2xl {
      margin-bottom: 112rem
    }
  
    .md\:ml-2xl {
      margin-left: 112rem
    }
  
    .md\:mt-3xl {
      margin-top: 128rem
    }
  
    .md\:mr-3xl {
      margin-right: 128rem
    }
  
    .md\:mb-3xl {
      margin-bottom: 128rem
    }
  
    .md\:ml-3xl {
      margin-left: 128rem
    }
  
    .md\:mt-4xl {
      margin-top: 144rem
    }
  
    .md\:mr-4xl {
      margin-right: 144rem
    }
  
    .md\:mb-4xl {
      margin-bottom: 144rem
    }
  
    .md\:ml-4xl {
      margin-left: 144rem
    }
  
    .md\:mt-5xl {
      margin-top: 160rem
    }
  
    .md\:mr-5xl {
      margin-right: 160rem
    }
  
    .md\:mb-5xl {
      margin-bottom: 160rem
    }
  
    .md\:ml-5xl {
      margin-left: 160rem
    }
  
    .md\:-mt-1 {
      margin-top: -0.25rem
    }
  
    .md\:-mr-1 {
      margin-right: -0.25rem
    }
  
    .md\:-mb-1 {
      margin-bottom: -0.25rem
    }
  
    .md\:-ml-1 {
      margin-left: -0.25rem
    }
  
    .md\:-mt-2 {
      margin-top: -0.5rem
    }
  
    .md\:-mr-2 {
      margin-right: -0.5rem
    }
  
    .md\:-mb-2 {
      margin-bottom: -0.5rem
    }
  
    .md\:-ml-2 {
      margin-left: -0.5rem
    }
  
    .md\:-mt-3 {
      margin-top: -0.75rem
    }
  
    .md\:-mr-3 {
      margin-right: -0.75rem
    }
  
    .md\:-mb-3 {
      margin-bottom: -0.75rem
    }
  
    .md\:-ml-3 {
      margin-left: -0.75rem
    }
  
    .md\:-mt-4 {
      margin-top: -0.4rem
    }
  
    .md\:-mr-4 {
      margin-right: -0.4rem
    }
  
    .md\:-mb-4 {
      margin-bottom: -0.4rem
    }
  
    .md\:-ml-4 {
      margin-left: -0.4rem
    }
  
    .md\:-mt-5 {
      margin-top: -1.25rem
    }
  
    .md\:-mr-5 {
      margin-right: -1.25rem
    }
  
    .md\:-mb-5 {
      margin-bottom: -1.25rem
    }
  
    .md\:-ml-5 {
      margin-left: -1.25rem
    }
  
    .md\:-mt-6 {
      margin-top: -0.6rem
    }
  
    .md\:-mr-6 {
      margin-right: -0.6rem
    }
  
    .md\:-mb-6 {
      margin-bottom: -0.6rem
    }
  
    .md\:-ml-6 {
      margin-left: -0.6rem
    }
  
    .md\:-mt-8 {
      margin-top: -0.8rem
    }
  
    .md\:-mr-8 {
      margin-right: -0.8rem
    }
  
    .md\:-mb-8 {
      margin-bottom: -0.8rem
    }
  
    .md\:-ml-8 {
      margin-left: -0.8rem
    }
  
    .md\:-mt-10 {
      margin-top: -2.5rem
    }
  
    .md\:-mr-10 {
      margin-right: -2.5rem
    }
  
    .md\:-mb-10 {
      margin-bottom: -2.5rem
    }
  
    .md\:-ml-10 {
      margin-left: -2.5rem
    }
  
    .md\:-mt-12 {
      margin-top: -1.2rem
    }
  
    .md\:-mr-12 {
      margin-right: -1.2rem
    }
  
    .md\:-mb-12 {
      margin-bottom: -1.2rem
    }
  
    .md\:-ml-12 {
      margin-left: -1.2rem
    }
  
    .md\:-mt-16 {
      margin-top: -1.6rem
    }
  
    .md\:-mr-16 {
      margin-right: -1.6rem
    }
  
    .md\:-mb-16 {
      margin-bottom: -1.6rem
    }
  
    .md\:-ml-16 {
      margin-left: -1.6rem
    }
  
    .md\:-mt-20 {
      margin-top: -2rem
    }
  
    .md\:-mr-20 {
      margin-right: -2rem
    }
  
    .md\:-mb-20 {
      margin-bottom: -2rem
    }
  
    .md\:-ml-20 {
      margin-left: -2rem
    }
  
    .md\:-mt-24 {
      margin-top: -2.4rem
    }
  
    .md\:-mr-24 {
      margin-right: -2.4rem
    }
  
    .md\:-mb-24 {
      margin-bottom: -2.4rem
    }
  
    .md\:-ml-24 {
      margin-left: -2.4rem
    }
  
    .md\:-mt-28 {
      margin-top: -2.8rem
    }
  
    .md\:-mr-28 {
      margin-right: -2.8rem
    }
  
    .md\:-mb-28 {
      margin-bottom: -2.8rem
    }
  
    .md\:-ml-28 {
      margin-left: -2.8rem
    }
  
    .md\:-mt-32 {
      margin-top: -3.2rem
    }
  
    .md\:-mr-32 {
      margin-right: -3.2rem
    }
  
    .md\:-mb-32 {
      margin-bottom: -3.2rem
    }
  
    .md\:-ml-32 {
      margin-left: -3.2rem
    }
  
    .md\:-mt-36 {
      margin-top: -3.6rem
    }
  
    .md\:-mr-36 {
      margin-right: -3.6rem
    }
  
    .md\:-mb-36 {
      margin-bottom: -3.6rem
    }
  
    .md\:-ml-36 {
      margin-left: -3.6rem
    }
  
    .md\:-mt-40 {
      margin-top: -4rem
    }
  
    .md\:-mr-40 {
      margin-right: -4rem
    }
  
    .md\:-mb-40 {
      margin-bottom: -4rem
    }
  
    .md\:-ml-40 {
      margin-left: -4rem
    }
  
    .md\:-mt-44 {
      margin-top: -4.4rem
    }
  
    .md\:-mr-44 {
      margin-right: -4.4rem
    }
  
    .md\:-mb-44 {
      margin-bottom: -4.4rem
    }
  
    .md\:-ml-44 {
      margin-left: -4.4rem
    }
  
    .md\:-mt-48 {
      margin-top: -4.8rem
    }
  
    .md\:-mr-48 {
      margin-right: -4.8rem
    }
  
    .md\:-mb-48 {
      margin-bottom: -4.8rem
    }
  
    .md\:-ml-48 {
      margin-left: -4.8rem
    }
  
    .md\:-mt-52 {
      margin-top: -5.2rem
    }
  
    .md\:-mr-52 {
      margin-right: -5.2rem
    }
  
    .md\:-mb-52 {
      margin-bottom: -5.2rem
    }
  
    .md\:-ml-52 {
      margin-left: -5.2rem
    }
  
    .md\:-mt-56 {
      margin-top: -5.6rem
    }
  
    .md\:-mr-56 {
      margin-right: -5.6rem
    }
  
    .md\:-mb-56 {
      margin-bottom: -5.6rem
    }
  
    .md\:-ml-56 {
      margin-left: -5.6rem
    }
  
    .md\:-mt-60 {
      margin-top: -6rem
    }
  
    .md\:-mr-60 {
      margin-right: -6rem
    }
  
    .md\:-mb-60 {
      margin-bottom: -6rem
    }
  
    .md\:-ml-60 {
      margin-left: -6rem
    }
  
    .md\:-mt-64 {
      margin-top: -6.4rem
    }
  
    .md\:-mr-64 {
      margin-right: -6.4rem
    }
  
    .md\:-mb-64 {
      margin-bottom: -6.4rem
    }
  
    .md\:-ml-64 {
      margin-left: -6.4rem
    }
  
    .md\:-mt-68 {
      margin-top: -6.8rem
    }
  
    .md\:-mr-68 {
      margin-right: -6.8rem
    }
  
    .md\:-mb-68 {
      margin-bottom: -6.8rem
    }
  
    .md\:-ml-68 {
      margin-left: -6.8rem
    }
  
    .md\:-mt-72 {
      margin-top: -7.2rem
    }
  
    .md\:-mr-72 {
      margin-right: -7.2rem
    }
  
    .md\:-mb-72 {
      margin-bottom: -7.2rem
    }
  
    .md\:-ml-72 {
      margin-left: -7.2rem
    }
  
    .md\:-mt-76 {
      margin-top: -7.6rem
    }
  
    .md\:-mr-76 {
      margin-right: -7.6rem
    }
  
    .md\:-mb-76 {
      margin-bottom: -7.6rem
    }
  
    .md\:-ml-76 {
      margin-left: -7.6rem
    }
  
    .md\:-mt-80 {
      margin-top: -8rem
    }
  
    .md\:-mr-80 {
      margin-right: -8rem
    }
  
    .md\:-mb-80 {
      margin-bottom: -8rem
    }
  
    .md\:-ml-80 {
      margin-left: -8rem
    }
  
    .md\:-mt-84 {
      margin-top: -8.4rem
    }
  
    .md\:-mr-84 {
      margin-right: -8.4rem
    }
  
    .md\:-mb-84 {
      margin-bottom: -8.4rem
    }
  
    .md\:-ml-84 {
      margin-left: -8.4rem
    }
  
    .md\:-mt-88 {
      margin-top: -8.8rem
    }
  
    .md\:-mr-88 {
      margin-right: -8.8rem
    }
  
    .md\:-mb-88 {
      margin-bottom: -8.8rem
    }
  
    .md\:-ml-88 {
      margin-left: -8.8rem
    }
  
    .md\:-mt-92 {
      margin-top: -9.2rem
    }
  
    .md\:-mr-92 {
      margin-right: -9.2rem
    }
  
    .md\:-mb-92 {
      margin-bottom: -9.2rem
    }
  
    .md\:-ml-92 {
      margin-left: -9.2rem
    }
  
    .md\:-mt-96 {
      margin-top: -9.6rem
    }
  
    .md\:-mr-96 {
      margin-right: -9.6rem
    }
  
    .md\:-mb-96 {
      margin-bottom: -9.6rem
    }
  
    .md\:-ml-96 {
      margin-left: -9.6rem
    }
  
    .md\:-mt-128 {
      margin-top: -12.8rem
    }
  
    .md\:-mr-128 {
      margin-right: -12.8rem
    }
  
    .md\:-mb-128 {
      margin-bottom: -12.8rem
    }
  
    .md\:-ml-128 {
      margin-left: -12.8rem
    }
  
    .md\:-mt-136 {
      margin-top: -13.6rem
    }
  
    .md\:-mr-136 {
      margin-right: -13.6rem
    }
  
    .md\:-mb-136 {
      margin-bottom: -13.6rem
    }
  
    .md\:-ml-136 {
      margin-left: -13.6rem
    }
  
    .md\:-mt-160 {
      margin-top: -16rem
    }
  
    .md\:-mr-160 {
      margin-right: -16rem
    }
  
    .md\:-mb-160 {
      margin-bottom: -16rem
    }
  
    .md\:-ml-160 {
      margin-left: -16rem
    }
  
    .md\:-mt-192 {
      margin-top: -19.2rem
    }
  
    .md\:-mr-192 {
      margin-right: -19.2rem
    }
  
    .md\:-mb-192 {
      margin-bottom: -19.2rem
    }
  
    .md\:-ml-192 {
      margin-left: -19.2rem
    }
  
    .md\:-mt-200 {
      margin-top: -20rem
    }
  
    .md\:-mr-200 {
      margin-right: -20rem
    }
  
    .md\:-mb-200 {
      margin-bottom: -20rem
    }
  
    .md\:-ml-200 {
      margin-left: -20rem
    }
  
    .md\:-mt-208 {
      margin-top: -20.8rem
    }
  
    .md\:-mr-208 {
      margin-right: -20.8rem
    }
  
    .md\:-mb-208 {
      margin-bottom: -20.8rem
    }
  
    .md\:-ml-208 {
      margin-left: -20.8rem
    }
  
    .md\:-mt-216 {
      margin-top: -21.6rem
    }
  
    .md\:-mr-216 {
      margin-right: -21.6rem
    }
  
    .md\:-mb-216 {
      margin-bottom: -21.6rem
    }
  
    .md\:-ml-216 {
      margin-left: -21.6rem
    }
  
    .md\:-mt-224 {
      margin-top: -22.4rem
    }
  
    .md\:-mr-224 {
      margin-right: -22.4rem
    }
  
    .md\:-mb-224 {
      margin-bottom: -22.4rem
    }
  
    .md\:-ml-224 {
      margin-left: -22.4rem
    }
  
    .md\:-mt-256 {
      margin-top: -25.6rem
    }
  
    .md\:-mr-256 {
      margin-right: -25.6rem
    }
  
    .md\:-mb-256 {
      margin-bottom: -25.6rem
    }
  
    .md\:-ml-256 {
      margin-left: -25.6rem
    }
  
    .md\:-mt-288 {
      margin-top: -28.8rem
    }
  
    .md\:-mr-288 {
      margin-right: -28.8rem
    }
  
    .md\:-mb-288 {
      margin-bottom: -28.8rem
    }
  
    .md\:-ml-288 {
      margin-left: -28.8rem
    }
  
    .md\:-mt-320 {
      margin-top: -32rem
    }
  
    .md\:-mr-320 {
      margin-right: -32rem
    }
  
    .md\:-mb-320 {
      margin-bottom: -32rem
    }
  
    .md\:-ml-320 {
      margin-left: -32rem
    }
  
    .md\:-mt-360 {
      margin-top: -36rem
    }
  
    .md\:-mr-360 {
      margin-right: -36rem
    }
  
    .md\:-mb-360 {
      margin-bottom: -36rem
    }
  
    .md\:-ml-360 {
      margin-left: -36rem
    }
  
    .md\:-mt-384 {
      margin-top: -38.4rem
    }
  
    .md\:-mr-384 {
      margin-right: -38.4rem
    }
  
    .md\:-mb-384 {
      margin-bottom: -38.4rem
    }
  
    .md\:-ml-384 {
      margin-left: -38.4rem
    }
  
    .md\:-mt-400 {
      margin-top: -40rem
    }
  
    .md\:-mr-400 {
      margin-right: -40rem
    }
  
    .md\:-mb-400 {
      margin-bottom: -40rem
    }
  
    .md\:-ml-400 {
      margin-left: -40rem
    }
  
    .md\:-mt-512 {
      margin-top: -51.2rem
    }
  
    .md\:-mr-512 {
      margin-right: -51.2rem
    }
  
    .md\:-mb-512 {
      margin-bottom: -51.2rem
    }
  
    .md\:-ml-512 {
      margin-left: -51.2rem
    }
  
    .md\:-mt-640 {
      margin-top: -64rem
    }
  
    .md\:-mr-640 {
      margin-right: -64rem
    }
  
    .md\:-mb-640 {
      margin-bottom: -64rem
    }
  
    .md\:-ml-640 {
      margin-left: -64rem
    }
  
    .md\:-mt-px {
      margin-top: -1px
    }
  
    .md\:-mr-px {
      margin-right: -1px
    }
  
    .md\:-mb-px {
      margin-bottom: -1px
    }
  
    .md\:-ml-px {
      margin-left: -1px
    }
  
    .md\:-mt-xs {
      margin-top: -32rem
    }
  
    .md\:-mr-xs {
      margin-right: -32rem
    }
  
    .md\:-mb-xs {
      margin-bottom: -32rem
    }
  
    .md\:-ml-xs {
      margin-left: -32rem
    }
  
    .md\:-mt-sm {
      margin-top: -48rem
    }
  
    .md\:-mr-sm {
      margin-right: -48rem
    }
  
    .md\:-mb-sm {
      margin-bottom: -48rem
    }
  
    .md\:-ml-sm {
      margin-left: -48rem
    }
  
    .md\:-mt-md {
      margin-top: -64rem
    }
  
    .md\:-mr-md {
      margin-right: -64rem
    }
  
    .md\:-mb-md {
      margin-bottom: -64rem
    }
  
    .md\:-ml-md {
      margin-left: -64rem
    }
  
    .md\:-mt-lg {
      margin-top: -80rem
    }
  
    .md\:-mr-lg {
      margin-right: -80rem
    }
  
    .md\:-mb-lg {
      margin-bottom: -80rem
    }
  
    .md\:-ml-lg {
      margin-left: -80rem
    }
  
    .md\:-mt-xl {
      margin-top: -96rem
    }
  
    .md\:-mr-xl {
      margin-right: -96rem
    }
  
    .md\:-mb-xl {
      margin-bottom: -96rem
    }
  
    .md\:-ml-xl {
      margin-left: -96rem
    }
  
    .md\:-mt-2xl {
      margin-top: -112rem
    }
  
    .md\:-mr-2xl {
      margin-right: -112rem
    }
  
    .md\:-mb-2xl {
      margin-bottom: -112rem
    }
  
    .md\:-ml-2xl {
      margin-left: -112rem
    }
  
    .md\:-mt-3xl {
      margin-top: -128rem
    }
  
    .md\:-mr-3xl {
      margin-right: -128rem
    }
  
    .md\:-mb-3xl {
      margin-bottom: -128rem
    }
  
    .md\:-ml-3xl {
      margin-left: -128rem
    }
  
    .md\:-mt-4xl {
      margin-top: -144rem
    }
  
    .md\:-mr-4xl {
      margin-right: -144rem
    }
  
    .md\:-mb-4xl {
      margin-bottom: -144rem
    }
  
    .md\:-ml-4xl {
      margin-left: -144rem
    }
  
    .md\:-mt-5xl {
      margin-top: -160rem
    }
  
    .md\:-mr-5xl {
      margin-right: -160rem
    }
  
    .md\:-mb-5xl {
      margin-bottom: -160rem
    }
  
    .md\:-ml-5xl {
      margin-left: -160rem
    }
  
    .md\:-mt-auto {
      margin-top: -auto
    }
  
    .md\:-mr-auto {
      margin-right: -auto
    }
  
    .md\:-mb-auto {
      margin-bottom: -auto
    }
  
    .md\:-ml-auto {
      margin-left: -auto
    }
  
    .md\:max-h-0 {
      max-height: 0
    }
  
    .md\:max-h-1 {
      max-height: 0.25rem
    }
  
    .md\:max-h-2 {
      max-height: 0.5rem
    }
  
    .md\:max-h-3 {
      max-height: 0.75rem
    }
  
    .md\:max-h-4 {
      max-height: 0.4rem
    }
  
    .md\:max-h-5 {
      max-height: 1.25rem
    }
  
    .md\:max-h-6 {
      max-height: 0.6rem
    }
  
    .md\:max-h-8 {
      max-height: 0.8rem
    }
  
    .md\:max-h-10 {
      max-height: 2.5rem
    }
  
    .md\:max-h-12 {
      max-height: 1.2rem
    }
  
    .md\:max-h-16 {
      max-height: 1.6rem
    }
  
    .md\:max-h-20 {
      max-height: 2rem
    }
  
    .md\:max-h-24 {
      max-height: 2.4rem
    }
  
    .md\:max-h-28 {
      max-height: 2.8rem
    }
  
    .md\:max-h-32 {
      max-height: 3.2rem
    }
  
    .md\:max-h-36 {
      max-height: 3.6rem
    }
  
    .md\:max-h-40 {
      max-height: 4rem
    }
  
    .md\:max-h-44 {
      max-height: 4.4rem
    }
  
    .md\:max-h-48 {
      max-height: 4.8rem
    }
  
    .md\:max-h-52 {
      max-height: 5.2rem
    }
  
    .md\:max-h-56 {
      max-height: 5.6rem
    }
  
    .md\:max-h-60 {
      max-height: 6rem
    }
  
    .md\:max-h-64 {
      max-height: 6.4rem
    }
  
    .md\:max-h-68 {
      max-height: 6.8rem
    }
  
    .md\:max-h-72 {
      max-height: 7.2rem
    }
  
    .md\:max-h-76 {
      max-height: 7.6rem
    }
  
    .md\:max-h-80 {
      max-height: 8rem
    }
  
    .md\:max-h-84 {
      max-height: 8.4rem
    }
  
    .md\:max-h-88 {
      max-height: 8.8rem
    }
  
    .md\:max-h-92 {
      max-height: 9.2rem
    }
  
    .md\:max-h-96 {
      max-height: 9.6rem
    }
  
    .md\:max-h-128 {
      max-height: 12.8rem
    }
  
    .md\:max-h-136 {
      max-height: 13.6rem
    }
  
    .md\:max-h-160 {
      max-height: 16rem
    }
  
    .md\:max-h-192 {
      max-height: 19.2rem
    }
  
    .md\:max-h-200 {
      max-height: 20rem
    }
  
    .md\:max-h-208 {
      max-height: 20.8rem
    }
  
    .md\:max-h-216 {
      max-height: 21.6rem
    }
  
    .md\:max-h-224 {
      max-height: 22.4rem
    }
  
    .md\:max-h-256 {
      max-height: 25.6rem
    }
  
    .md\:max-h-288 {
      max-height: 28.8rem
    }
  
    .md\:max-h-320 {
      max-height: 32rem
    }
  
    .md\:max-h-360 {
      max-height: 36rem
    }
  
    .md\:max-h-384 {
      max-height: 38.4rem
    }
  
    .md\:max-h-400 {
      max-height: 40rem
    }
  
    .md\:max-h-512 {
      max-height: 51.2rem
    }
  
    .md\:max-h-640 {
      max-height: 64rem
    }
  
    .md\:max-h-full {
      max-height: 100%
    }
  
    .md\:max-h-screen {
      max-height: 100vh
    }
  
    .md\:max-h-auto {
      max-height: auto
    }
  
    .md\:max-h-px {
      max-height: 1px
    }
  
    .md\:max-h-xs {
      max-height: 32rem
    }
  
    .md\:max-h-sm {
      max-height: 48rem
    }
  
    .md\:max-h-md {
      max-height: 64rem
    }
  
    .md\:max-h-lg {
      max-height: 80rem
    }
  
    .md\:max-h-xl {
      max-height: 96rem
    }
  
    .md\:max-h-2xl {
      max-height: 112rem
    }
  
    .md\:max-h-3xl {
      max-height: 128rem
    }
  
    .md\:max-h-4xl {
      max-height: 144rem
    }
  
    .md\:max-h-5xl {
      max-height: 160rem
    }
  
    .md\:max-w-0 {
      max-width: 0
    }
  
    .md\:max-w-1 {
      max-width: 0.25rem
    }
  
    .md\:max-w-2 {
      max-width: 0.5rem
    }
  
    .md\:max-w-3 {
      max-width: 0.75rem
    }
  
    .md\:max-w-4 {
      max-width: 0.4rem
    }
  
    .md\:max-w-5 {
      max-width: 1.25rem
    }
  
    .md\:max-w-6 {
      max-width: 0.6rem
    }
  
    .md\:max-w-8 {
      max-width: 0.8rem
    }
  
    .md\:max-w-10 {
      max-width: 2.5rem
    }
  
    .md\:max-w-12 {
      max-width: 1.2rem
    }
  
    .md\:max-w-16 {
      max-width: 1.6rem
    }
  
    .md\:max-w-20 {
      max-width: 2rem
    }
  
    .md\:max-w-24 {
      max-width: 2.4rem
    }
  
    .md\:max-w-28 {
      max-width: 2.8rem
    }
  
    .md\:max-w-32 {
      max-width: 3.2rem
    }
  
    .md\:max-w-36 {
      max-width: 3.6rem
    }
  
    .md\:max-w-40 {
      max-width: 4rem
    }
  
    .md\:max-w-44 {
      max-width: 4.4rem
    }
  
    .md\:max-w-48 {
      max-width: 4.8rem
    }
  
    .md\:max-w-52 {
      max-width: 5.2rem
    }
  
    .md\:max-w-56 {
      max-width: 5.6rem
    }
  
    .md\:max-w-60 {
      max-width: 6rem
    }
  
    .md\:max-w-64 {
      max-width: 6.4rem
    }
  
    .md\:max-w-68 {
      max-width: 6.8rem
    }
  
    .md\:max-w-72 {
      max-width: 7.2rem
    }
  
    .md\:max-w-76 {
      max-width: 7.6rem
    }
  
    .md\:max-w-80 {
      max-width: 8rem
    }
  
    .md\:max-w-84 {
      max-width: 8.4rem
    }
  
    .md\:max-w-88 {
      max-width: 8.8rem
    }
  
    .md\:max-w-92 {
      max-width: 9.2rem
    }
  
    .md\:max-w-96 {
      max-width: 9.6rem
    }
  
    .md\:max-w-128 {
      max-width: 12.8rem
    }
  
    .md\:max-w-136 {
      max-width: 13.6rem
    }
  
    .md\:max-w-160 {
      max-width: 16rem
    }
  
    .md\:max-w-192 {
      max-width: 19.2rem
    }
  
    .md\:max-w-200 {
      max-width: 20rem
    }
  
    .md\:max-w-208 {
      max-width: 20.8rem
    }
  
    .md\:max-w-216 {
      max-width: 21.6rem
    }
  
    .md\:max-w-224 {
      max-width: 22.4rem
    }
  
    .md\:max-w-256 {
      max-width: 25.6rem
    }
  
    .md\:max-w-288 {
      max-width: 28.8rem
    }
  
    .md\:max-w-320 {
      max-width: 32rem
    }
  
    .md\:max-w-360 {
      max-width: 36rem
    }
  
    .md\:max-w-384 {
      max-width: 38.4rem
    }
  
    .md\:max-w-400 {
      max-width: 40rem
    }
  
    .md\:max-w-512 {
      max-width: 51.2rem
    }
  
    .md\:max-w-640 {
      max-width: 64rem
    }
  
    .md\:max-w-xs {
      max-width: 32rem
    }
  
    .md\:max-w-sm {
      max-width: 48rem
    }
  
    .md\:max-w-md {
      max-width: 64rem
    }
  
    .md\:max-w-lg {
      max-width: 80rem
    }
  
    .md\:max-w-xl {
      max-width: 96rem
    }
  
    .md\:max-w-2xl {
      max-width: 112rem
    }
  
    .md\:max-w-3xl {
      max-width: 128rem
    }
  
    .md\:max-w-4xl {
      max-width: 144rem
    }
  
    .md\:max-w-5xl {
      max-width: 160rem
    }
  
    .md\:max-w-6xl {
      max-width: 72rem
    }
  
    .md\:max-w-full {
      max-width: 100%
    }
  
    .md\:max-w-px {
      max-width: 1px
    }
  
    .md\:max-w-auto {
      max-width: auto
    }
  
    .md\:max-w-screen {
      max-width: 100vw
    }
  
    .md\:min-h-0 {
      min-height: 0
    }
  
    .md\:min-h-1 {
      min-height: 0.25rem
    }
  
    .md\:min-h-2 {
      min-height: 0.5rem
    }
  
    .md\:min-h-3 {
      min-height: 0.75rem
    }
  
    .md\:min-h-4 {
      min-height: 0.4rem
    }
  
    .md\:min-h-5 {
      min-height: 1.25rem
    }
  
    .md\:min-h-6 {
      min-height: 0.6rem
    }
  
    .md\:min-h-8 {
      min-height: 0.8rem
    }
  
    .md\:min-h-10 {
      min-height: 2.5rem
    }
  
    .md\:min-h-12 {
      min-height: 1.2rem
    }
  
    .md\:min-h-16 {
      min-height: 1.6rem
    }
  
    .md\:min-h-20 {
      min-height: 2rem
    }
  
    .md\:min-h-24 {
      min-height: 2.4rem
    }
  
    .md\:min-h-28 {
      min-height: 2.8rem
    }
  
    .md\:min-h-32 {
      min-height: 3.2rem
    }
  
    .md\:min-h-36 {
      min-height: 3.6rem
    }
  
    .md\:min-h-40 {
      min-height: 4rem
    }
  
    .md\:min-h-44 {
      min-height: 4.4rem
    }
  
    .md\:min-h-48 {
      min-height: 4.8rem
    }
  
    .md\:min-h-52 {
      min-height: 5.2rem
    }
  
    .md\:min-h-56 {
      min-height: 5.6rem
    }
  
    .md\:min-h-60 {
      min-height: 6rem
    }
  
    .md\:min-h-64 {
      min-height: 6.4rem
    }
  
    .md\:min-h-68 {
      min-height: 6.8rem
    }
  
    .md\:min-h-72 {
      min-height: 7.2rem
    }
  
    .md\:min-h-76 {
      min-height: 7.6rem
    }
  
    .md\:min-h-80 {
      min-height: 8rem
    }
  
    .md\:min-h-84 {
      min-height: 8.4rem
    }
  
    .md\:min-h-88 {
      min-height: 8.8rem
    }
  
    .md\:min-h-92 {
      min-height: 9.2rem
    }
  
    .md\:min-h-96 {
      min-height: 9.6rem
    }
  
    .md\:min-h-128 {
      min-height: 12.8rem
    }
  
    .md\:min-h-136 {
      min-height: 13.6rem
    }
  
    .md\:min-h-160 {
      min-height: 16rem
    }
  
    .md\:min-h-192 {
      min-height: 19.2rem
    }
  
    .md\:min-h-200 {
      min-height: 20rem
    }
  
    .md\:min-h-208 {
      min-height: 20.8rem
    }
  
    .md\:min-h-216 {
      min-height: 21.6rem
    }
  
    .md\:min-h-224 {
      min-height: 22.4rem
    }
  
    .md\:min-h-256 {
      min-height: 25.6rem
    }
  
    .md\:min-h-288 {
      min-height: 28.8rem
    }
  
    .md\:min-h-320 {
      min-height: 32rem
    }
  
    .md\:min-h-360 {
      min-height: 36rem
    }
  
    .md\:min-h-384 {
      min-height: 38.4rem
    }
  
    .md\:min-h-400 {
      min-height: 40rem
    }
  
    .md\:min-h-512 {
      min-height: 51.2rem
    }
  
    .md\:min-h-640 {
      min-height: 64rem
    }
  
    .md\:min-h-full {
      min-height: 100%
    }
  
    .md\:min-h-screen {
      min-height: 100vh
    }
  
    .md\:min-h-auto {
      min-height: auto
    }
  
    .md\:min-h-px {
      min-height: 1px
    }
  
    .md\:min-h-xs {
      min-height: 32rem
    }
  
    .md\:min-h-sm {
      min-height: 48rem
    }
  
    .md\:min-h-md {
      min-height: 64rem
    }
  
    .md\:min-h-lg {
      min-height: 80rem
    }
  
    .md\:min-h-xl {
      min-height: 96rem
    }
  
    .md\:min-h-2xl {
      min-height: 112rem
    }
  
    .md\:min-h-3xl {
      min-height: 128rem
    }
  
    .md\:min-h-4xl {
      min-height: 144rem
    }
  
    .md\:min-h-5xl {
      min-height: 160rem
    }
  
    .md\:min-w-0 {
      min-width: 0
    }
  
    .md\:min-w-1 {
      min-width: 0.25rem
    }
  
    .md\:min-w-2 {
      min-width: 0.5rem
    }
  
    .md\:min-w-3 {
      min-width: 0.75rem
    }
  
    .md\:min-w-4 {
      min-width: 0.4rem
    }
  
    .md\:min-w-5 {
      min-width: 1.25rem
    }
  
    .md\:min-w-6 {
      min-width: 0.6rem
    }
  
    .md\:min-w-8 {
      min-width: 0.8rem
    }
  
    .md\:min-w-10 {
      min-width: 2.5rem
    }
  
    .md\:min-w-12 {
      min-width: 1.2rem
    }
  
    .md\:min-w-16 {
      min-width: 1.6rem
    }
  
    .md\:min-w-20 {
      min-width: 2rem
    }
  
    .md\:min-w-24 {
      min-width: 2.4rem
    }
  
    .md\:min-w-28 {
      min-width: 2.8rem
    }
  
    .md\:min-w-32 {
      min-width: 3.2rem
    }
  
    .md\:min-w-36 {
      min-width: 3.6rem
    }
  
    .md\:min-w-40 {
      min-width: 4rem
    }
  
    .md\:min-w-44 {
      min-width: 4.4rem
    }
  
    .md\:min-w-48 {
      min-width: 4.8rem
    }
  
    .md\:min-w-52 {
      min-width: 5.2rem
    }
  
    .md\:min-w-56 {
      min-width: 5.6rem
    }
  
    .md\:min-w-60 {
      min-width: 6rem
    }
  
    .md\:min-w-64 {
      min-width: 6.4rem
    }
  
    .md\:min-w-68 {
      min-width: 6.8rem
    }
  
    .md\:min-w-72 {
      min-width: 7.2rem
    }
  
    .md\:min-w-76 {
      min-width: 7.6rem
    }
  
    .md\:min-w-80 {
      min-width: 8rem
    }
  
    .md\:min-w-84 {
      min-width: 8.4rem
    }
  
    .md\:min-w-88 {
      min-width: 8.8rem
    }
  
    .md\:min-w-92 {
      min-width: 9.2rem
    }
  
    .md\:min-w-96 {
      min-width: 9.6rem
    }
  
    .md\:min-w-128 {
      min-width: 12.8rem
    }
  
    .md\:min-w-136 {
      min-width: 13.6rem
    }
  
    .md\:min-w-160 {
      min-width: 16rem
    }
  
    .md\:min-w-192 {
      min-width: 19.2rem
    }
  
    .md\:min-w-200 {
      min-width: 20rem
    }
  
    .md\:min-w-208 {
      min-width: 20.8rem
    }
  
    .md\:min-w-216 {
      min-width: 21.6rem
    }
  
    .md\:min-w-224 {
      min-width: 22.4rem
    }
  
    .md\:min-w-256 {
      min-width: 25.6rem
    }
  
    .md\:min-w-288 {
      min-width: 28.8rem
    }
  
    .md\:min-w-320 {
      min-width: 32rem
    }
  
    .md\:min-w-360 {
      min-width: 36rem
    }
  
    .md\:min-w-384 {
      min-width: 38.4rem
    }
  
    .md\:min-w-400 {
      min-width: 40rem
    }
  
    .md\:min-w-512 {
      min-width: 51.2rem
    }
  
    .md\:min-w-640 {
      min-width: 64rem
    }
  
    .md\:min-w-full {
      min-width: 100%
    }
  
    .md\:min-w-px {
      min-width: 1px
    }
  
    .md\:min-w-xs {
      min-width: 32rem
    }
  
    .md\:min-w-sm {
      min-width: 48rem
    }
  
    .md\:min-w-md {
      min-width: 64rem
    }
  
    .md\:min-w-lg {
      min-width: 80rem
    }
  
    .md\:min-w-xl {
      min-width: 96rem
    }
  
    .md\:min-w-2xl {
      min-width: 112rem
    }
  
    .md\:min-w-3xl {
      min-width: 128rem
    }
  
    .md\:min-w-4xl {
      min-width: 144rem
    }
  
    .md\:min-w-5xl {
      min-width: 160rem
    }
  
    .md\:min-w-auto {
      min-width: auto
    }
  
    .md\:min-w-screen {
      min-width: 100vw
    }
  
    .md\:object-contain {
      object-fit: contain
    }
  
    .md\:object-cover {
      object-fit: cover
    }
  
    .md\:object-fill {
      object-fit: fill
    }
  
    .md\:object-none {
      object-fit: none
    }
  
    .md\:object-scale-down {
      object-fit: scale-down
    }
  
    .md\:object-bottom {
      object-position: bottom
    }
  
    .md\:object-center {
      object-position: center
    }
  
    .md\:object-left {
      object-position: left
    }
  
    .md\:object-left-bottom {
      object-position: left bottom
    }
  
    .md\:object-left-top {
      object-position: left top
    }
  
    .md\:object-right {
      object-position: right
    }
  
    .md\:object-right-bottom {
      object-position: right bottom
    }
  
    .md\:object-right-top {
      object-position: right top
    }
  
    .md\:object-top {
      object-position: top
    }
  
    .md\:opacity-0 {
      opacity: 0
    }
  
    .md\:opacity-25 {
      opacity: 0.25
    }
  
    .md\:opacity-50 {
      opacity: 0.5
    }
  
    .md\:opacity-75 {
      opacity: 0.75
    }
  
    .md\:opacity-100 {
      opacity: 1
    }
  
    .md\:outline-none {
      outline: 0
    }
  
    .md\:focus\:outline-none:focus {
      outline: 0
    }
  
    .md\:overflow-auto {
      overflow: auto
    }
  
    .md\:overflow-hidden {
      overflow: hidden
    }
  
    .md\:overflow-visible {
      overflow: visible
    }
  
    .md\:overflow-scroll {
      overflow: scroll
    }
  
    .md\:overflow-x-auto {
      overflow-x: auto
    }
  
    .md\:overflow-y-auto {
      overflow-y: auto
    }
  
    .md\:overflow-x-hidden {
      overflow-x: hidden
    }
  
    .md\:overflow-y-hidden {
      overflow-y: hidden
    }
  
    .md\:overflow-x-visible {
      overflow-x: visible
    }
  
    .md\:overflow-y-visible {
      overflow-y: visible
    }
  
    .md\:overflow-x-scroll {
      overflow-x: scroll
    }
  
    .md\:overflow-y-scroll {
      overflow-y: scroll
    }
  
    .md\:scrolling-touch {
      -webkit-overflow-scrolling: touch
    }
  
    .md\:scrolling-auto {
      -webkit-overflow-scrolling: auto
    }
  
    .md\:p-0 {
      padding: 0
    }
  
    .md\:p-1 {
      padding: 0.25rem
    }
  
    .md\:p-2 {
      padding: 0.5rem
    }
  
    .md\:p-3 {
      padding: 0.75rem
    }
  
    .md\:p-4 {
      padding: 0.4rem
    }
  
    .md\:p-5 {
      padding: 1.25rem
    }
  
    .md\:p-6 {
      padding: 0.6rem
    }
  
    .md\:p-8 {
      padding: 0.8rem
    }
  
    .md\:p-10 {
      padding: 2.5rem
    }
  
    .md\:p-12 {
      padding: 1.2rem
    }
  
    .md\:p-16 {
      padding: 1.6rem
    }
  
    .md\:p-20 {
      padding: 2rem
    }
  
    .md\:p-24 {
      padding: 2.4rem
    }
  
    .md\:p-28 {
      padding: 2.8rem
    }
  
    .md\:p-32 {
      padding: 3.2rem
    }
  
    .md\:p-36 {
      padding: 3.6rem
    }
  
    .md\:p-40 {
      padding: 4rem
    }
  
    .md\:p-44 {
      padding: 4.4rem
    }
  
    .md\:p-48 {
      padding: 4.8rem
    }
  
    .md\:p-52 {
      padding: 5.2rem
    }
  
    .md\:p-56 {
      padding: 5.6rem
    }
  
    .md\:p-60 {
      padding: 6rem
    }
  
    .md\:p-64 {
      padding: 6.4rem
    }
  
    .md\:p-68 {
      padding: 6.8rem
    }
  
    .md\:p-72 {
      padding: 7.2rem
    }
  
    .md\:p-76 {
      padding: 7.6rem
    }
  
    .md\:p-80 {
      padding: 8rem
    }
  
    .md\:p-84 {
      padding: 8.4rem
    }
  
    .md\:p-88 {
      padding: 8.8rem
    }
  
    .md\:p-92 {
      padding: 9.2rem
    }
  
    .md\:p-96 {
      padding: 9.6rem
    }
  
    .md\:p-128 {
      padding: 12.8rem
    }
  
    .md\:p-136 {
      padding: 13.6rem
    }
  
    .md\:p-160 {
      padding: 16rem
    }
  
    .md\:p-192 {
      padding: 19.2rem
    }
  
    .md\:p-200 {
      padding: 20rem
    }
  
    .md\:p-208 {
      padding: 20.8rem
    }
  
    .md\:p-216 {
      padding: 21.6rem
    }
  
    .md\:p-224 {
      padding: 22.4rem
    }
  
    .md\:p-256 {
      padding: 25.6rem
    }
  
    .md\:p-288 {
      padding: 28.8rem
    }
  
    .md\:p-320 {
      padding: 32rem
    }
  
    .md\:p-360 {
      padding: 36rem
    }
  
    .md\:p-384 {
      padding: 38.4rem
    }
  
    .md\:p-400 {
      padding: 40rem
    }
  
    .md\:p-512 {
      padding: 51.2rem
    }
  
    .md\:p-640 {
      padding: 64rem
    }
  
    .md\:p-px {
      padding: 1px
    }
  
    .md\:p-xs {
      padding: 32rem
    }
  
    .md\:p-sm {
      padding: 48rem
    }
  
    .md\:p-md {
      padding: 64rem
    }
  
    .md\:p-lg {
      padding: 80rem
    }
  
    .md\:p-xl {
      padding: 96rem
    }
  
    .md\:p-2xl {
      padding: 112rem
    }
  
    .md\:p-3xl {
      padding: 128rem
    }
  
    .md\:p-4xl {
      padding: 144rem
    }
  
    .md\:p-5xl {
      padding: 160rem
    }
  
    .md\:p-auto {
      padding: auto
    }
  
    .md\:py-0 {
      padding-top: 0;
      padding-bottom: 0
    }
  
    .md\:px-0 {
      padding-left: 0;
      padding-right: 0
    }
  
    .md\:py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem
    }
  
    .md\:px-1 {
      padding-left: 0.25rem;
      padding-right: 0.25rem
    }
  
    .md\:py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem
    }
  
    .md\:px-2 {
      padding-left: 0.5rem;
      padding-right: 0.5rem
    }
  
    .md\:py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem
    }
  
    .md\:px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem
    }
  
    .md\:py-4 {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem
    }
  
    .md\:px-4 {
      padding-left: 0.4rem;
      padding-right: 0.4rem
    }
  
    .md\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem
    }
  
    .md\:px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }
  
    .md\:py-6 {
      padding-top: 0.6rem;
      padding-bottom: 0.6rem
    }
  
    .md\:px-6 {
      padding-left: 0.6rem;
      padding-right: 0.6rem
    }
  
    .md\:py-8 {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem
    }
  
    .md\:px-8 {
      padding-left: 0.8rem;
      padding-right: 0.8rem
    }
  
    .md\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
    }
  
    .md\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
    }
  
    .md\:py-12 {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem
    }
  
    .md\:px-12 {
      padding-left: 1.2rem;
      padding-right: 1.2rem
    }
  
    .md\:py-16 {
      padding-top: 1.6rem;
      padding-bottom: 1.6rem
    }
  
    .md\:px-16 {
      padding-left: 1.6rem;
      padding-right: 1.6rem
    }
  
    .md\:py-20 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }
  
    .md\:px-20 {
      padding-left: 2rem;
      padding-right: 2rem
    }
  
    .md\:py-24 {
      padding-top: 2.4rem;
      padding-bottom: 2.4rem
    }
  
    .md\:px-24 {
      padding-left: 2.4rem;
      padding-right: 2.4rem
    }
  
    .md\:py-28 {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem
    }
  
    .md\:px-28 {
      padding-left: 2.8rem;
      padding-right: 2.8rem
    }
  
    .md\:py-32 {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem
    }
  
    .md\:px-32 {
      padding-left: 3.2rem;
      padding-right: 3.2rem
    }
  
    .md\:py-36 {
      padding-top: 3.6rem;
      padding-bottom: 3.6rem
    }
  
    .md\:px-36 {
      padding-left: 3.6rem;
      padding-right: 3.6rem
    }
  
    .md\:py-40 {
      padding-top: 4rem;
      padding-bottom: 4rem
    }
  
    .md\:px-40 {
      padding-left: 4rem;
      padding-right: 4rem
    }
  
    .md\:py-44 {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem
    }
  
    .md\:px-44 {
      padding-left: 4.4rem;
      padding-right: 4.4rem
    }
  
    .md\:py-48 {
      padding-top: 4.8rem;
      padding-bottom: 4.8rem
    }
  
    .md\:px-48 {
      padding-left: 4.8rem;
      padding-right: 4.8rem
    }
  
    .md\:py-52 {
      padding-top: 5.2rem;
      padding-bottom: 5.2rem
    }
  
    .md\:px-52 {
      padding-left: 5.2rem;
      padding-right: 5.2rem
    }
  
    .md\:py-56 {
      padding-top: 5.6rem;
      padding-bottom: 5.6rem
    }
  
    .md\:px-56 {
      padding-left: 5.6rem;
      padding-right: 5.6rem
    }
  
    .md\:py-60 {
      padding-top: 6rem;
      padding-bottom: 6rem
    }
  
    .md\:px-60 {
      padding-left: 6rem;
      padding-right: 6rem
    }
  
    .md\:py-64 {
      padding-top: 6.4rem;
      padding-bottom: 6.4rem
    }
  
    .md\:px-64 {
      padding-left: 6.4rem;
      padding-right: 6.4rem
    }
  
    .md\:py-68 {
      padding-top: 6.8rem;
      padding-bottom: 6.8rem
    }
  
    .md\:px-68 {
      padding-left: 6.8rem;
      padding-right: 6.8rem
    }
  
    .md\:py-72 {
      padding-top: 7.2rem;
      padding-bottom: 7.2rem
    }
  
    .md\:px-72 {
      padding-left: 7.2rem;
      padding-right: 7.2rem
    }
  
    .md\:py-76 {
      padding-top: 7.6rem;
      padding-bottom: 7.6rem
    }
  
    .md\:px-76 {
      padding-left: 7.6rem;
      padding-right: 7.6rem
    }
  
    .md\:py-80 {
      padding-top: 8rem;
      padding-bottom: 8rem
    }
  
    .md\:px-80 {
      padding-left: 8rem;
      padding-right: 8rem
    }
  
    .md\:py-84 {
      padding-top: 8.4rem;
      padding-bottom: 8.4rem
    }
  
    .md\:px-84 {
      padding-left: 8.4rem;
      padding-right: 8.4rem
    }
  
    .md\:py-88 {
      padding-top: 8.8rem;
      padding-bottom: 8.8rem
    }
  
    .md\:px-88 {
      padding-left: 8.8rem;
      padding-right: 8.8rem
    }
  
    .md\:py-92 {
      padding-top: 9.2rem;
      padding-bottom: 9.2rem
    }
  
    .md\:px-92 {
      padding-left: 9.2rem;
      padding-right: 9.2rem
    }
  
    .md\:py-96 {
      padding-top: 9.6rem;
      padding-bottom: 9.6rem
    }
  
    .md\:px-96 {
      padding-left: 9.6rem;
      padding-right: 9.6rem
    }
  
    .md\:py-128 {
      padding-top: 12.8rem;
      padding-bottom: 12.8rem
    }
  
    .md\:px-128 {
      padding-left: 12.8rem;
      padding-right: 12.8rem
    }
  
    .md\:py-136 {
      padding-top: 13.6rem;
      padding-bottom: 13.6rem
    }
  
    .md\:px-136 {
      padding-left: 13.6rem;
      padding-right: 13.6rem
    }
  
    .md\:py-160 {
      padding-top: 16rem;
      padding-bottom: 16rem
    }
  
    .md\:px-160 {
      padding-left: 16rem;
      padding-right: 16rem
    }
  
    .md\:py-192 {
      padding-top: 19.2rem;
      padding-bottom: 19.2rem
    }
  
    .md\:px-192 {
      padding-left: 19.2rem;
      padding-right: 19.2rem
    }
  
    .md\:py-200 {
      padding-top: 20rem;
      padding-bottom: 20rem
    }
  
    .md\:px-200 {
      padding-left: 20rem;
      padding-right: 20rem
    }
  
    .md\:py-208 {
      padding-top: 20.8rem;
      padding-bottom: 20.8rem
    }
  
    .md\:px-208 {
      padding-left: 20.8rem;
      padding-right: 20.8rem
    }
  
    .md\:py-216 {
      padding-top: 21.6rem;
      padding-bottom: 21.6rem
    }
  
    .md\:px-216 {
      padding-left: 21.6rem;
      padding-right: 21.6rem
    }
  
    .md\:py-224 {
      padding-top: 22.4rem;
      padding-bottom: 22.4rem
    }
  
    .md\:px-224 {
      padding-left: 22.4rem;
      padding-right: 22.4rem
    }
  
    .md\:py-256 {
      padding-top: 25.6rem;
      padding-bottom: 25.6rem
    }
  
    .md\:px-256 {
      padding-left: 25.6rem;
      padding-right: 25.6rem
    }
  
    .md\:py-288 {
      padding-top: 28.8rem;
      padding-bottom: 28.8rem
    }
  
    .md\:px-288 {
      padding-left: 28.8rem;
      padding-right: 28.8rem
    }
  
    .md\:py-320 {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .md\:px-320 {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .md\:py-360 {
      padding-top: 36rem;
      padding-bottom: 36rem
    }
  
    .md\:px-360 {
      padding-left: 36rem;
      padding-right: 36rem
    }
  
    .md\:py-384 {
      padding-top: 38.4rem;
      padding-bottom: 38.4rem
    }
  
    .md\:px-384 {
      padding-left: 38.4rem;
      padding-right: 38.4rem
    }
  
    .md\:py-400 {
      padding-top: 40rem;
      padding-bottom: 40rem
    }
  
    .md\:px-400 {
      padding-left: 40rem;
      padding-right: 40rem
    }
  
    .md\:py-512 {
      padding-top: 51.2rem;
      padding-bottom: 51.2rem
    }
  
    .md\:px-512 {
      padding-left: 51.2rem;
      padding-right: 51.2rem
    }
  
    .md\:py-640 {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .md\:px-640 {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .md\:py-px {
      padding-top: 1px;
      padding-bottom: 1px
    }
  
    .md\:px-px {
      padding-left: 1px;
      padding-right: 1px
    }
  
    .md\:py-xs {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .md\:px-xs {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .md\:py-sm {
      padding-top: 48rem;
      padding-bottom: 48rem
    }
  
    .md\:px-sm {
      padding-left: 48rem;
      padding-right: 48rem
    }
  
    .md\:py-md {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .md\:px-md {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .md\:py-lg {
      padding-top: 80rem;
      padding-bottom: 80rem
    }
  
    .md\:px-lg {
      padding-left: 80rem;
      padding-right: 80rem
    }
  
    .md\:py-xl {
      padding-top: 96rem;
      padding-bottom: 96rem
    }
  
    .md\:px-xl {
      padding-left: 96rem;
      padding-right: 96rem
    }
  
    .md\:py-2xl {
      padding-top: 112rem;
      padding-bottom: 112rem
    }
  
    .md\:px-2xl {
      padding-left: 112rem;
      padding-right: 112rem
    }
  
    .md\:py-3xl {
      padding-top: 128rem;
      padding-bottom: 128rem
    }
  
    .md\:px-3xl {
      padding-left: 128rem;
      padding-right: 128rem
    }
  
    .md\:py-4xl {
      padding-top: 144rem;
      padding-bottom: 144rem
    }
  
    .md\:px-4xl {
      padding-left: 144rem;
      padding-right: 144rem
    }
  
    .md\:py-5xl {
      padding-top: 160rem;
      padding-bottom: 160rem
    }
  
    .md\:px-5xl {
      padding-left: 160rem;
      padding-right: 160rem
    }
  
    .md\:py-auto {
      padding-top: auto;
      padding-bottom: auto
    }
  
    .md\:px-auto {
      padding-left: auto;
      padding-right: auto
    }
  
    .md\:pt-0 {
      padding-top: 0
    }
  
    .md\:pr-0 {
      padding-right: 0
    }
  
    .md\:pb-0 {
      padding-bottom: 0
    }
  
    .md\:pl-0 {
      padding-left: 0
    }
  
    .md\:pt-1 {
      padding-top: 0.25rem
    }
  
    .md\:pr-1 {
      padding-right: 0.25rem
    }
  
    .md\:pb-1 {
      padding-bottom: 0.25rem
    }
  
    .md\:pl-1 {
      padding-left: 0.25rem
    }
  
    .md\:pt-2 {
      padding-top: 0.5rem
    }
  
    .md\:pr-2 {
      padding-right: 0.5rem
    }
  
    .md\:pb-2 {
      padding-bottom: 0.5rem
    }
  
    .md\:pl-2 {
      padding-left: 0.5rem
    }
  
    .md\:pt-3 {
      padding-top: 0.75rem
    }
  
    .md\:pr-3 {
      padding-right: 0.75rem
    }
  
    .md\:pb-3 {
      padding-bottom: 0.75rem
    }
  
    .md\:pl-3 {
      padding-left: 0.75rem
    }
  
    .md\:pt-4 {
      padding-top: 0.4rem
    }
  
    .md\:pr-4 {
      padding-right: 0.4rem
    }
  
    .md\:pb-4 {
      padding-bottom: 0.4rem
    }
  
    .md\:pl-4 {
      padding-left: 0.4rem
    }
  
    .md\:pt-5 {
      padding-top: 1.25rem
    }
  
    .md\:pr-5 {
      padding-right: 1.25rem
    }
  
    .md\:pb-5 {
      padding-bottom: 1.25rem
    }
  
    .md\:pl-5 {
      padding-left: 1.25rem
    }
  
    .md\:pt-6 {
      padding-top: 0.6rem
    }
  
    .md\:pr-6 {
      padding-right: 0.6rem
    }
  
    .md\:pb-6 {
      padding-bottom: 0.6rem
    }
  
    .md\:pl-6 {
      padding-left: 0.6rem
    }
  
    .md\:pt-8 {
      padding-top: 0.8rem
    }
  
    .md\:pr-8 {
      padding-right: 0.8rem
    }
  
    .md\:pb-8 {
      padding-bottom: 0.8rem
    }
  
    .md\:pl-8 {
      padding-left: 0.8rem
    }
  
    .md\:pt-10 {
      padding-top: 2.5rem
    }
  
    .md\:pr-10 {
      padding-right: 2.5rem
    }
  
    .md\:pb-10 {
      padding-bottom: 2.5rem
    }
  
    .md\:pl-10 {
      padding-left: 2.5rem
    }
  
    .md\:pt-12 {
      padding-top: 1.2rem
    }
  
    .md\:pr-12 {
      padding-right: 1.2rem
    }
  
    .md\:pb-12 {
      padding-bottom: 1.2rem
    }
  
    .md\:pl-12 {
      padding-left: 1.2rem
    }
  
    .md\:pt-16 {
      padding-top: 1.6rem
    }
  
    .md\:pr-16 {
      padding-right: 1.6rem
    }
  
    .md\:pb-16 {
      padding-bottom: 1.6rem
    }
  
    .md\:pl-16 {
      padding-left: 1.6rem
    }
  
    .md\:pt-20 {
      padding-top: 2rem
    }
  
    .md\:pr-20 {
      padding-right: 2rem
    }
  
    .md\:pb-20 {
      padding-bottom: 2rem
    }
  
    .md\:pl-20 {
      padding-left: 2rem
    }
  
    .md\:pt-24 {
      padding-top: 2.4rem
    }
  
    .md\:pr-24 {
      padding-right: 2.4rem
    }
  
    .md\:pb-24 {
      padding-bottom: 2.4rem
    }
  
    .md\:pl-24 {
      padding-left: 2.4rem
    }
  
    .md\:pt-28 {
      padding-top: 2.8rem
    }
  
    .md\:pr-28 {
      padding-right: 2.8rem
    }
  
    .md\:pb-28 {
      padding-bottom: 2.8rem
    }
  
    .md\:pl-28 {
      padding-left: 2.8rem
    }
  
    .md\:pt-32 {
      padding-top: 3.2rem
    }
  
    .md\:pr-32 {
      padding-right: 3.2rem
    }
  
    .md\:pb-32 {
      padding-bottom: 3.2rem
    }
  
    .md\:pl-32 {
      padding-left: 3.2rem
    }
  
    .md\:pt-36 {
      padding-top: 3.6rem
    }
  
    .md\:pr-36 {
      padding-right: 3.6rem
    }
  
    .md\:pb-36 {
      padding-bottom: 3.6rem
    }
  
    .md\:pl-36 {
      padding-left: 3.6rem
    }
  
    .md\:pt-40 {
      padding-top: 4rem
    }
  
    .md\:pr-40 {
      padding-right: 4rem
    }
  
    .md\:pb-40 {
      padding-bottom: 4rem
    }
  
    .md\:pl-40 {
      padding-left: 4rem
    }
  
    .md\:pt-44 {
      padding-top: 4.4rem
    }
  
    .md\:pr-44 {
      padding-right: 4.4rem
    }
  
    .md\:pb-44 {
      padding-bottom: 4.4rem
    }
  
    .md\:pl-44 {
      padding-left: 4.4rem
    }
  
    .md\:pt-48 {
      padding-top: 4.8rem
    }
  
    .md\:pr-48 {
      padding-right: 4.8rem
    }
  
    .md\:pb-48 {
      padding-bottom: 4.8rem
    }
  
    .md\:pl-48 {
      padding-left: 4.8rem
    }
  
    .md\:pt-52 {
      padding-top: 5.2rem
    }
  
    .md\:pr-52 {
      padding-right: 5.2rem
    }
  
    .md\:pb-52 {
      padding-bottom: 5.2rem
    }
  
    .md\:pl-52 {
      padding-left: 5.2rem
    }
  
    .md\:pt-56 {
      padding-top: 5.6rem
    }
  
    .md\:pr-56 {
      padding-right: 5.6rem
    }
  
    .md\:pb-56 {
      padding-bottom: 5.6rem
    }
  
    .md\:pl-56 {
      padding-left: 5.6rem
    }
  
    .md\:pt-60 {
      padding-top: 6rem
    }
  
    .md\:pr-60 {
      padding-right: 6rem
    }
  
    .md\:pb-60 {
      padding-bottom: 6rem
    }
  
    .md\:pl-60 {
      padding-left: 6rem
    }
  
    .md\:pt-64 {
      padding-top: 6.4rem
    }
  
    .md\:pr-64 {
      padding-right: 6.4rem
    }
  
    .md\:pb-64 {
      padding-bottom: 6.4rem
    }
  
    .md\:pl-64 {
      padding-left: 6.4rem
    }
  
    .md\:pt-68 {
      padding-top: 6.8rem
    }
  
    .md\:pr-68 {
      padding-right: 6.8rem
    }
  
    .md\:pb-68 {
      padding-bottom: 6.8rem
    }
  
    .md\:pl-68 {
      padding-left: 6.8rem
    }
  
    .md\:pt-72 {
      padding-top: 7.2rem
    }
  
    .md\:pr-72 {
      padding-right: 7.2rem
    }
  
    .md\:pb-72 {
      padding-bottom: 7.2rem
    }
  
    .md\:pl-72 {
      padding-left: 7.2rem
    }
  
    .md\:pt-76 {
      padding-top: 7.6rem
    }
  
    .md\:pr-76 {
      padding-right: 7.6rem
    }
  
    .md\:pb-76 {
      padding-bottom: 7.6rem
    }
  
    .md\:pl-76 {
      padding-left: 7.6rem
    }
  
    .md\:pt-80 {
      padding-top: 8rem
    }
  
    .md\:pr-80 {
      padding-right: 8rem
    }
  
    .md\:pb-80 {
      padding-bottom: 8rem
    }
  
    .md\:pl-80 {
      padding-left: 8rem
    }
  
    .md\:pt-84 {
      padding-top: 8.4rem
    }
  
    .md\:pr-84 {
      padding-right: 8.4rem
    }
  
    .md\:pb-84 {
      padding-bottom: 8.4rem
    }
  
    .md\:pl-84 {
      padding-left: 8.4rem
    }
  
    .md\:pt-88 {
      padding-top: 8.8rem
    }
  
    .md\:pr-88 {
      padding-right: 8.8rem
    }
  
    .md\:pb-88 {
      padding-bottom: 8.8rem
    }
  
    .md\:pl-88 {
      padding-left: 8.8rem
    }
  
    .md\:pt-92 {
      padding-top: 9.2rem
    }
  
    .md\:pr-92 {
      padding-right: 9.2rem
    }
  
    .md\:pb-92 {
      padding-bottom: 9.2rem
    }
  
    .md\:pl-92 {
      padding-left: 9.2rem
    }
  
    .md\:pt-96 {
      padding-top: 9.6rem
    }
  
    .md\:pr-96 {
      padding-right: 9.6rem
    }
  
    .md\:pb-96 {
      padding-bottom: 9.6rem
    }
  
    .md\:pl-96 {
      padding-left: 9.6rem
    }
  
    .md\:pt-128 {
      padding-top: 12.8rem
    }
  
    .md\:pr-128 {
      padding-right: 12.8rem
    }
  
    .md\:pb-128 {
      padding-bottom: 12.8rem
    }
  
    .md\:pl-128 {
      padding-left: 12.8rem
    }
  
    .md\:pt-136 {
      padding-top: 13.6rem
    }
  
    .md\:pr-136 {
      padding-right: 13.6rem
    }
  
    .md\:pb-136 {
      padding-bottom: 13.6rem
    }
  
    .md\:pl-136 {
      padding-left: 13.6rem
    }
  
    .md\:pt-160 {
      padding-top: 16rem
    }
  
    .md\:pr-160 {
      padding-right: 16rem
    }
  
    .md\:pb-160 {
      padding-bottom: 16rem
    }
  
    .md\:pl-160 {
      padding-left: 16rem
    }
  
    .md\:pt-192 {
      padding-top: 19.2rem
    }
  
    .md\:pr-192 {
      padding-right: 19.2rem
    }
  
    .md\:pb-192 {
      padding-bottom: 19.2rem
    }
  
    .md\:pl-192 {
      padding-left: 19.2rem
    }
  
    .md\:pt-200 {
      padding-top: 20rem
    }
  
    .md\:pr-200 {
      padding-right: 20rem
    }
  
    .md\:pb-200 {
      padding-bottom: 20rem
    }
  
    .md\:pl-200 {
      padding-left: 20rem
    }
  
    .md\:pt-208 {
      padding-top: 20.8rem
    }
  
    .md\:pr-208 {
      padding-right: 20.8rem
    }
  
    .md\:pb-208 {
      padding-bottom: 20.8rem
    }
  
    .md\:pl-208 {
      padding-left: 20.8rem
    }
  
    .md\:pt-216 {
      padding-top: 21.6rem
    }
  
    .md\:pr-216 {
      padding-right: 21.6rem
    }
  
    .md\:pb-216 {
      padding-bottom: 21.6rem
    }
  
    .md\:pl-216 {
      padding-left: 21.6rem
    }
  
    .md\:pt-224 {
      padding-top: 22.4rem
    }
  
    .md\:pr-224 {
      padding-right: 22.4rem
    }
  
    .md\:pb-224 {
      padding-bottom: 22.4rem
    }
  
    .md\:pl-224 {
      padding-left: 22.4rem
    }
  
    .md\:pt-256 {
      padding-top: 25.6rem
    }
  
    .md\:pr-256 {
      padding-right: 25.6rem
    }
  
    .md\:pb-256 {
      padding-bottom: 25.6rem
    }
  
    .md\:pl-256 {
      padding-left: 25.6rem
    }
  
    .md\:pt-288 {
      padding-top: 28.8rem
    }
  
    .md\:pr-288 {
      padding-right: 28.8rem
    }
  
    .md\:pb-288 {
      padding-bottom: 28.8rem
    }
  
    .md\:pl-288 {
      padding-left: 28.8rem
    }
  
    .md\:pt-320 {
      padding-top: 32rem
    }
  
    .md\:pr-320 {
      padding-right: 32rem
    }
  
    .md\:pb-320 {
      padding-bottom: 32rem
    }
  
    .md\:pl-320 {
      padding-left: 32rem
    }
  
    .md\:pt-360 {
      padding-top: 36rem
    }
  
    .md\:pr-360 {
      padding-right: 36rem
    }
  
    .md\:pb-360 {
      padding-bottom: 36rem
    }
  
    .md\:pl-360 {
      padding-left: 36rem
    }
  
    .md\:pt-384 {
      padding-top: 38.4rem
    }
  
    .md\:pr-384 {
      padding-right: 38.4rem
    }
  
    .md\:pb-384 {
      padding-bottom: 38.4rem
    }
  
    .md\:pl-384 {
      padding-left: 38.4rem
    }
  
    .md\:pt-400 {
      padding-top: 40rem
    }
  
    .md\:pr-400 {
      padding-right: 40rem
    }
  
    .md\:pb-400 {
      padding-bottom: 40rem
    }
  
    .md\:pl-400 {
      padding-left: 40rem
    }
  
    .md\:pt-512 {
      padding-top: 51.2rem
    }
  
    .md\:pr-512 {
      padding-right: 51.2rem
    }
  
    .md\:pb-512 {
      padding-bottom: 51.2rem
    }
  
    .md\:pl-512 {
      padding-left: 51.2rem
    }
  
    .md\:pt-640 {
      padding-top: 64rem
    }
  
    .md\:pr-640 {
      padding-right: 64rem
    }
  
    .md\:pb-640 {
      padding-bottom: 64rem
    }
  
    .md\:pl-640 {
      padding-left: 64rem
    }
  
    .md\:pt-px {
      padding-top: 1px
    }
  
    .md\:pr-px {
      padding-right: 1px
    }
  
    .md\:pb-px {
      padding-bottom: 1px
    }
  
    .md\:pl-px {
      padding-left: 1px
    }
  
    .md\:pt-xs {
      padding-top: 32rem
    }
  
    .md\:pr-xs {
      padding-right: 32rem
    }
  
    .md\:pb-xs {
      padding-bottom: 32rem
    }
  
    .md\:pl-xs {
      padding-left: 32rem
    }
  
    .md\:pt-sm {
      padding-top: 48rem
    }
  
    .md\:pr-sm {
      padding-right: 48rem
    }
  
    .md\:pb-sm {
      padding-bottom: 48rem
    }
  
    .md\:pl-sm {
      padding-left: 48rem
    }
  
    .md\:pt-md {
      padding-top: 64rem
    }
  
    .md\:pr-md {
      padding-right: 64rem
    }
  
    .md\:pb-md {
      padding-bottom: 64rem
    }
  
    .md\:pl-md {
      padding-left: 64rem
    }
  
    .md\:pt-lg {
      padding-top: 80rem
    }
  
    .md\:pr-lg {
      padding-right: 80rem
    }
  
    .md\:pb-lg {
      padding-bottom: 80rem
    }
  
    .md\:pl-lg {
      padding-left: 80rem
    }
  
    .md\:pt-xl {
      padding-top: 96rem
    }
  
    .md\:pr-xl {
      padding-right: 96rem
    }
  
    .md\:pb-xl {
      padding-bottom: 96rem
    }
  
    .md\:pl-xl {
      padding-left: 96rem
    }
  
    .md\:pt-2xl {
      padding-top: 112rem
    }
  
    .md\:pr-2xl {
      padding-right: 112rem
    }
  
    .md\:pb-2xl {
      padding-bottom: 112rem
    }
  
    .md\:pl-2xl {
      padding-left: 112rem
    }
  
    .md\:pt-3xl {
      padding-top: 128rem
    }
  
    .md\:pr-3xl {
      padding-right: 128rem
    }
  
    .md\:pb-3xl {
      padding-bottom: 128rem
    }
  
    .md\:pl-3xl {
      padding-left: 128rem
    }
  
    .md\:pt-4xl {
      padding-top: 144rem
    }
  
    .md\:pr-4xl {
      padding-right: 144rem
    }
  
    .md\:pb-4xl {
      padding-bottom: 144rem
    }
  
    .md\:pl-4xl {
      padding-left: 144rem
    }
  
    .md\:pt-5xl {
      padding-top: 160rem
    }
  
    .md\:pr-5xl {
      padding-right: 160rem
    }
  
    .md\:pb-5xl {
      padding-bottom: 160rem
    }
  
    .md\:pl-5xl {
      padding-left: 160rem
    }
  
    .md\:pt-auto {
      padding-top: auto
    }
  
    .md\:pr-auto {
      padding-right: auto
    }
  
    .md\:pb-auto {
      padding-bottom: auto
    }
  
    .md\:pl-auto {
      padding-left: auto
    }
  
    .md\:pointer-events-none {
      pointer-events: none
    }
  
    .md\:pointer-events-auto {
      pointer-events: auto
    }
  
    .md\:static {
      position: static
    }
  
    .md\:fixed {
      position: fixed
    }
  
    .md\:absolute {
      position: absolute
    }
  
    .md\:relative {
      position: relative
    }
  
    .md\:sticky {
      position: -webkit-sticky;
      position: sticky
    }
  
    .md\:inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0
    }
  
    .md\:inset-auto {
      top: auto;
      right: auto;
      bottom: auto;
      left: auto
    }
  
    .md\:inset-y-0 {
      top: 0;
      bottom: 0
    }
  
    .md\:inset-x-0 {
      right: 0;
      left: 0
    }
  
    .md\:inset-y-auto {
      top: auto;
      bottom: auto
    }
  
    .md\:inset-x-auto {
      right: auto;
      left: auto
    }
  
    .md\:top-0 {
      top: 0
    }
  
    .md\:right-0 {
      right: 0
    }
  
    .md\:bottom-0 {
      bottom: 0
    }
  
    .md\:left-0 {
      left: 0
    }
  
    .md\:top-auto {
      top: auto
    }
  
    .md\:right-auto {
      right: auto
    }
  
    .md\:bottom-auto {
      bottom: auto
    }
  
    .md\:left-auto {
      left: auto
    }
  
    .md\:resize-none {
      resize: none
    }
  
    .md\:resize-y {
      resize: vertical
    }
  
    .md\:resize-x {
      resize: horizontal
    }
  
    .md\:resize {
      resize: both
    }
  
    .md\:shadow-0 {
      box-shadow: none
    }
  
    .md\:shadow-1 {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-2 {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-3 {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-4 {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-5 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-6 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-7 {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-8 {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-9 {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-10 {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-11 {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-12 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-13 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-14 {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-15 {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-16 {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-17 {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-18 {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-19 {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-20 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-21 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-22 {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-23 {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .md\:shadow-24 {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .md\:shadow {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .md\:shadow-md {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .md\:shadow-lg {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .md\:shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .md\:shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .md\:shadow-inner {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .md\:shadow-outline {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .md\:shadow-none {
      box-shadow: none
    }
  
    .md\:hover\:shadow-0:hover {
      box-shadow: none
    }
  
    .md\:hover\:shadow-1:hover {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-2:hover {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-3:hover {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-4:hover {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-5:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-6:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-7:hover {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-8:hover {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-9:hover {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-10:hover {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-11:hover {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-12:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-13:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-14:hover {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-15:hover {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-16:hover {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-17:hover {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-18:hover {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-19:hover {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-20:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-21:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-22:hover {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-23:hover {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow-24:hover {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .md\:hover\:shadow:hover {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .md\:hover\:shadow-md:hover {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .md\:hover\:shadow-lg:hover {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .md\:hover\:shadow-xl:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .md\:hover\:shadow-2xl:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .md\:hover\:shadow-inner:hover {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .md\:hover\:shadow-outline:hover {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .md\:hover\:shadow-none:hover {
      box-shadow: none
    }
  
    .md\:focus\:shadow-0:focus {
      box-shadow: none
    }
  
    .md\:focus\:shadow-1:focus {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-2:focus {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-3:focus {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-4:focus {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-5:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-6:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-7:focus {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-8:focus {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-9:focus {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-10:focus {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-11:focus {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-12:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-13:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-14:focus {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-15:focus {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-16:focus {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-17:focus {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-18:focus {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-19:focus {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-20:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-21:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-22:focus {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-23:focus {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow-24:focus {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .md\:focus\:shadow:focus {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .md\:focus\:shadow-md:focus {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .md\:focus\:shadow-lg:focus {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .md\:focus\:shadow-xl:focus {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .md\:focus\:shadow-2xl:focus {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .md\:focus\:shadow-inner:focus {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .md\:focus\:shadow-outline:focus {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .md\:focus\:shadow-none:focus {
      box-shadow: none
    }
  
    .md\:fill-current {
      fill: currentColor
    }
  
    .md\:stroke-current {
      stroke: currentColor
    }
  
    .md\:table-auto {
      table-layout: auto
    }
  
    .md\:table-fixed {
      table-layout: fixed
    }
  
    .md\:text-left {
      text-align: left
    }
  
    .md\:text-center {
      text-align: center
    }
  
    .md\:text-right {
      text-align: right
    }
  
    .md\:text-justify {
      text-align: justify
    }
  
    .md\:text-transparent {
      color: transparent
    }
  
    .md\:text-black {
      color: #22292F
    }
  
    .md\:text-white {
      color: #FFFFFF
    }
  
    .md\:text-gray-100 {
      color: #f7fafc
    }
  
    .md\:text-gray-200 {
      color: #edf2f7
    }
  
    .md\:text-gray-300 {
      color: #e2e8f0
    }
  
    .md\:text-gray-400 {
      color: #cbd5e0
    }
  
    .md\:text-gray-500 {
      color: #a0aec0
    }
  
    .md\:text-gray-600 {
      color: #718096
    }
  
    .md\:text-gray-700 {
      color: #4a5568
    }
  
    .md\:text-gray-800 {
      color: #2d3748
    }
  
    .md\:text-gray-900 {
      color: #1a202c
    }
  
    .md\:text-red {
      color: #E3342F
    }
  
    .md\:text-orange {
      color: #F6993F
    }
  
    .md\:text-yellow {
      color: #FFED4A
    }
  
    .md\:text-green {
      color: #38C172
    }
  
    .md\:text-teal {
      color: #4DC0B5
    }
  
    .md\:text-blue {
      color: #3490DC
    }
  
    .md\:text-indigo {
      color: #6574CD
    }
  
    .md\:text-purple {
      color: #9561E2
    }
  
    .md\:text-pink {
      color: #F66D9B
    }
  
    .md\:text-grey-darkest {
      color: #3D4852
    }
  
    .md\:text-grey-darker {
      color: #606F7B
    }
  
    .md\:text-grey-dark {
      color: #8795A1
    }
  
    .md\:text-grey {
      color: #B8C2CC
    }
  
    .md\:text-grey-light {
      color: #DAE1E7
    }
  
    .md\:text-grey-lighter {
      color: #F1F5F8
    }
  
    .md\:text-grey-lightest {
      color: #F8FAFC
    }
  
    .md\:text-red-darkest {
      color: #3B0D0C
    }
  
    .md\:text-red-darker {
      color: #621B18
    }
  
    .md\:text-red-dark {
      color: #CC1F1A
    }
  
    .md\:text-red-light {
      color: #EF5753
    }
  
    .md\:text-red-lighter {
      color: #F9ACAA
    }
  
    .md\:text-red-lightest {
      color: #FCEBEA
    }
  
    .md\:text-orange-darkest {
      color: #462A16
    }
  
    .md\:text-orange-darker {
      color: #613B1F
    }
  
    .md\:text-orange-dark {
      color: #DE751F
    }
  
    .md\:text-orange-light {
      color: #FAAD63
    }
  
    .md\:text-orange-lighter {
      color: #FCD9B6
    }
  
    .md\:text-orange-lightest {
      color: #FFF5EB
    }
  
    .md\:text-yellow-darkest {
      color: #453411
    }
  
    .md\:text-yellow-darker {
      color: #684F1D
    }
  
    .md\:text-yellow-dark {
      color: #F2D024
    }
  
    .md\:text-yellow-light {
      color: #FFF382
    }
  
    .md\:text-yellow-lighter {
      color: #FFF9C2
    }
  
    .md\:text-yellow-lightest {
      color: #FCFBEB
    }
  
    .md\:text-green-darkest {
      color: #0F2F21
    }
  
    .md\:text-green-darker {
      color: #1A4731
    }
  
    .md\:text-green-dark {
      color: #1F9D55
    }
  
    .md\:text-green-light {
      color: #51D88A
    }
  
    .md\:text-green-lighter {
      color: #A2F5BF
    }
  
    .md\:text-green-lightest {
      color: #E3FCEC
    }
  
    .md\:text-teal-darkest {
      color: #0D3331
    }
  
    .md\:text-teal-darker {
      color: #20504F
    }
  
    .md\:text-teal-dark {
      color: #38A89D
    }
  
    .md\:text-teal-light {
      color: #64D5CA
    }
  
    .md\:text-teal-lighter {
      color: #A0F0ED
    }
  
    .md\:text-teal-lightest {
      color: #E8FFFE
    }
  
    .md\:text-blue-darkest {
      color: #12283A
    }
  
    .md\:text-blue-darker {
      color: #1C3D5A
    }
  
    .md\:text-blue-dark {
      color: #2779BD
    }
  
    .md\:text-blue-light {
      color: #6CB2EB
    }
  
    .md\:text-blue-lighter {
      color: #BCDEFA
    }
  
    .md\:text-blue-lightest {
      color: #EFF8FF
    }
  
    .md\:text-indigo-darkest {
      color: #191E38
    }
  
    .md\:text-indigo-darker {
      color: #2F365F
    }
  
    .md\:text-indigo-dark {
      color: #5661B3
    }
  
    .md\:text-indigo-light {
      color: #7886D7
    }
  
    .md\:text-indigo-lighter {
      color: #B2B7FF
    }
  
    .md\:text-indigo-lightest {
      color: #E6E8FF
    }
  
    .md\:text-purple-darkest {
      color: #21183C
    }
  
    .md\:text-purple-darker {
      color: #382B5F
    }
  
    .md\:text-purple-dark {
      color: #794ACF
    }
  
    .md\:text-purple-light {
      color: #A779E9
    }
  
    .md\:text-purple-lighter {
      color: #D6BBFC
    }
  
    .md\:text-purple-lightest {
      color: #F3EBFF
    }
  
    .md\:text-pink-darkest {
      color: #451225
    }
  
    .md\:text-pink-darker {
      color: #6F213F
    }
  
    .md\:text-pink-dark {
      color: #EB5286
    }
  
    .md\:text-pink-light {
      color: #FA7EA8
    }
  
    .md\:text-pink-lighter {
      color: #FFBBCA
    }
  
    .md\:text-pink-lightest {
      color: #FFEBEF
    }
  
    .md\:hover\:text-transparent:hover {
      color: transparent
    }
  
    .md\:hover\:text-black:hover {
      color: #22292F
    }
  
    .md\:hover\:text-white:hover {
      color: #FFFFFF
    }
  
    .md\:hover\:text-gray-100:hover {
      color: #f7fafc
    }
  
    .md\:hover\:text-gray-200:hover {
      color: #edf2f7
    }
  
    .md\:hover\:text-gray-300:hover {
      color: #e2e8f0
    }
  
    .md\:hover\:text-gray-400:hover {
      color: #cbd5e0
    }
  
    .md\:hover\:text-gray-500:hover {
      color: #a0aec0
    }
  
    .md\:hover\:text-gray-600:hover {
      color: #718096
    }
  
    .md\:hover\:text-gray-700:hover {
      color: #4a5568
    }
  
    .md\:hover\:text-gray-800:hover {
      color: #2d3748
    }
  
    .md\:hover\:text-gray-900:hover {
      color: #1a202c
    }
  
    .md\:hover\:text-red:hover {
      color: #E3342F
    }
  
    .md\:hover\:text-orange:hover {
      color: #F6993F
    }
  
    .md\:hover\:text-yellow:hover {
      color: #FFED4A
    }
  
    .md\:hover\:text-green:hover {
      color: #38C172
    }
  
    .md\:hover\:text-teal:hover {
      color: #4DC0B5
    }
  
    .md\:hover\:text-blue:hover {
      color: #3490DC
    }
  
    .md\:hover\:text-indigo:hover {
      color: #6574CD
    }
  
    .md\:hover\:text-purple:hover {
      color: #9561E2
    }
  
    .md\:hover\:text-pink:hover {
      color: #F66D9B
    }
  
    .md\:hover\:text-grey-darkest:hover {
      color: #3D4852
    }
  
    .md\:hover\:text-grey-darker:hover {
      color: #606F7B
    }
  
    .md\:hover\:text-grey-dark:hover {
      color: #8795A1
    }
  
    .md\:hover\:text-grey:hover {
      color: #B8C2CC
    }
  
    .md\:hover\:text-grey-light:hover {
      color: #DAE1E7
    }
  
    .md\:hover\:text-grey-lighter:hover {
      color: #F1F5F8
    }
  
    .md\:hover\:text-grey-lightest:hover {
      color: #F8FAFC
    }
  
    .md\:hover\:text-red-darkest:hover {
      color: #3B0D0C
    }
  
    .md\:hover\:text-red-darker:hover {
      color: #621B18
    }
  
    .md\:hover\:text-red-dark:hover {
      color: #CC1F1A
    }
  
    .md\:hover\:text-red-light:hover {
      color: #EF5753
    }
  
    .md\:hover\:text-red-lighter:hover {
      color: #F9ACAA
    }
  
    .md\:hover\:text-red-lightest:hover {
      color: #FCEBEA
    }
  
    .md\:hover\:text-orange-darkest:hover {
      color: #462A16
    }
  
    .md\:hover\:text-orange-darker:hover {
      color: #613B1F
    }
  
    .md\:hover\:text-orange-dark:hover {
      color: #DE751F
    }
  
    .md\:hover\:text-orange-light:hover {
      color: #FAAD63
    }
  
    .md\:hover\:text-orange-lighter:hover {
      color: #FCD9B6
    }
  
    .md\:hover\:text-orange-lightest:hover {
      color: #FFF5EB
    }
  
    .md\:hover\:text-yellow-darkest:hover {
      color: #453411
    }
  
    .md\:hover\:text-yellow-darker:hover {
      color: #684F1D
    }
  
    .md\:hover\:text-yellow-dark:hover {
      color: #F2D024
    }
  
    .md\:hover\:text-yellow-light:hover {
      color: #FFF382
    }
  
    .md\:hover\:text-yellow-lighter:hover {
      color: #FFF9C2
    }
  
    .md\:hover\:text-yellow-lightest:hover {
      color: #FCFBEB
    }
  
    .md\:hover\:text-green-darkest:hover {
      color: #0F2F21
    }
  
    .md\:hover\:text-green-darker:hover {
      color: #1A4731
    }
  
    .md\:hover\:text-green-dark:hover {
      color: #1F9D55
    }
  
    .md\:hover\:text-green-light:hover {
      color: #51D88A
    }
  
    .md\:hover\:text-green-lighter:hover {
      color: #A2F5BF
    }
  
    .md\:hover\:text-green-lightest:hover {
      color: #E3FCEC
    }
  
    .md\:hover\:text-teal-darkest:hover {
      color: #0D3331
    }
  
    .md\:hover\:text-teal-darker:hover {
      color: #20504F
    }
  
    .md\:hover\:text-teal-dark:hover {
      color: #38A89D
    }
  
    .md\:hover\:text-teal-light:hover {
      color: #64D5CA
    }
  
    .md\:hover\:text-teal-lighter:hover {
      color: #A0F0ED
    }
  
    .md\:hover\:text-teal-lightest:hover {
      color: #E8FFFE
    }
  
    .md\:hover\:text-blue-darkest:hover {
      color: #12283A
    }
  
    .md\:hover\:text-blue-darker:hover {
      color: #1C3D5A
    }
  
    .md\:hover\:text-blue-dark:hover {
      color: #2779BD
    }
  
    .md\:hover\:text-blue-light:hover {
      color: #6CB2EB
    }
  
    .md\:hover\:text-blue-lighter:hover {
      color: #BCDEFA
    }
  
    .md\:hover\:text-blue-lightest:hover {
      color: #EFF8FF
    }
  
    .md\:hover\:text-indigo-darkest:hover {
      color: #191E38
    }
  
    .md\:hover\:text-indigo-darker:hover {
      color: #2F365F
    }
  
    .md\:hover\:text-indigo-dark:hover {
      color: #5661B3
    }
  
    .md\:hover\:text-indigo-light:hover {
      color: #7886D7
    }
  
    .md\:hover\:text-indigo-lighter:hover {
      color: #B2B7FF
    }
  
    .md\:hover\:text-indigo-lightest:hover {
      color: #E6E8FF
    }
  
    .md\:hover\:text-purple-darkest:hover {
      color: #21183C
    }
  
    .md\:hover\:text-purple-darker:hover {
      color: #382B5F
    }
  
    .md\:hover\:text-purple-dark:hover {
      color: #794ACF
    }
  
    .md\:hover\:text-purple-light:hover {
      color: #A779E9
    }
  
    .md\:hover\:text-purple-lighter:hover {
      color: #D6BBFC
    }
  
    .md\:hover\:text-purple-lightest:hover {
      color: #F3EBFF
    }
  
    .md\:hover\:text-pink-darkest:hover {
      color: #451225
    }
  
    .md\:hover\:text-pink-darker:hover {
      color: #6F213F
    }
  
    .md\:hover\:text-pink-dark:hover {
      color: #EB5286
    }
  
    .md\:hover\:text-pink-light:hover {
      color: #FA7EA8
    }
  
    .md\:hover\:text-pink-lighter:hover {
      color: #FFBBCA
    }
  
    .md\:hover\:text-pink-lightest:hover {
      color: #FFEBEF
    }
  
    .md\:focus\:text-transparent:focus {
      color: transparent
    }
  
    .md\:focus\:text-black:focus {
      color: #22292F
    }
  
    .md\:focus\:text-white:focus {
      color: #FFFFFF
    }
  
    .md\:focus\:text-gray-100:focus {
      color: #f7fafc
    }
  
    .md\:focus\:text-gray-200:focus {
      color: #edf2f7
    }
  
    .md\:focus\:text-gray-300:focus {
      color: #e2e8f0
    }
  
    .md\:focus\:text-gray-400:focus {
      color: #cbd5e0
    }
  
    .md\:focus\:text-gray-500:focus {
      color: #a0aec0
    }
  
    .md\:focus\:text-gray-600:focus {
      color: #718096
    }
  
    .md\:focus\:text-gray-700:focus {
      color: #4a5568
    }
  
    .md\:focus\:text-gray-800:focus {
      color: #2d3748
    }
  
    .md\:focus\:text-gray-900:focus {
      color: #1a202c
    }
  
    .md\:focus\:text-red:focus {
      color: #E3342F
    }
  
    .md\:focus\:text-orange:focus {
      color: #F6993F
    }
  
    .md\:focus\:text-yellow:focus {
      color: #FFED4A
    }
  
    .md\:focus\:text-green:focus {
      color: #38C172
    }
  
    .md\:focus\:text-teal:focus {
      color: #4DC0B5
    }
  
    .md\:focus\:text-blue:focus {
      color: #3490DC
    }
  
    .md\:focus\:text-indigo:focus {
      color: #6574CD
    }
  
    .md\:focus\:text-purple:focus {
      color: #9561E2
    }
  
    .md\:focus\:text-pink:focus {
      color: #F66D9B
    }
  
    .md\:focus\:text-grey-darkest:focus {
      color: #3D4852
    }
  
    .md\:focus\:text-grey-darker:focus {
      color: #606F7B
    }
  
    .md\:focus\:text-grey-dark:focus {
      color: #8795A1
    }
  
    .md\:focus\:text-grey:focus {
      color: #B8C2CC
    }
  
    .md\:focus\:text-grey-light:focus {
      color: #DAE1E7
    }
  
    .md\:focus\:text-grey-lighter:focus {
      color: #F1F5F8
    }
  
    .md\:focus\:text-grey-lightest:focus {
      color: #F8FAFC
    }
  
    .md\:focus\:text-red-darkest:focus {
      color: #3B0D0C
    }
  
    .md\:focus\:text-red-darker:focus {
      color: #621B18
    }
  
    .md\:focus\:text-red-dark:focus {
      color: #CC1F1A
    }
  
    .md\:focus\:text-red-light:focus {
      color: #EF5753
    }
  
    .md\:focus\:text-red-lighter:focus {
      color: #F9ACAA
    }
  
    .md\:focus\:text-red-lightest:focus {
      color: #FCEBEA
    }
  
    .md\:focus\:text-orange-darkest:focus {
      color: #462A16
    }
  
    .md\:focus\:text-orange-darker:focus {
      color: #613B1F
    }
  
    .md\:focus\:text-orange-dark:focus {
      color: #DE751F
    }
  
    .md\:focus\:text-orange-light:focus {
      color: #FAAD63
    }
  
    .md\:focus\:text-orange-lighter:focus {
      color: #FCD9B6
    }
  
    .md\:focus\:text-orange-lightest:focus {
      color: #FFF5EB
    }
  
    .md\:focus\:text-yellow-darkest:focus {
      color: #453411
    }
  
    .md\:focus\:text-yellow-darker:focus {
      color: #684F1D
    }
  
    .md\:focus\:text-yellow-dark:focus {
      color: #F2D024
    }
  
    .md\:focus\:text-yellow-light:focus {
      color: #FFF382
    }
  
    .md\:focus\:text-yellow-lighter:focus {
      color: #FFF9C2
    }
  
    .md\:focus\:text-yellow-lightest:focus {
      color: #FCFBEB
    }
  
    .md\:focus\:text-green-darkest:focus {
      color: #0F2F21
    }
  
    .md\:focus\:text-green-darker:focus {
      color: #1A4731
    }
  
    .md\:focus\:text-green-dark:focus {
      color: #1F9D55
    }
  
    .md\:focus\:text-green-light:focus {
      color: #51D88A
    }
  
    .md\:focus\:text-green-lighter:focus {
      color: #A2F5BF
    }
  
    .md\:focus\:text-green-lightest:focus {
      color: #E3FCEC
    }
  
    .md\:focus\:text-teal-darkest:focus {
      color: #0D3331
    }
  
    .md\:focus\:text-teal-darker:focus {
      color: #20504F
    }
  
    .md\:focus\:text-teal-dark:focus {
      color: #38A89D
    }
  
    .md\:focus\:text-teal-light:focus {
      color: #64D5CA
    }
  
    .md\:focus\:text-teal-lighter:focus {
      color: #A0F0ED
    }
  
    .md\:focus\:text-teal-lightest:focus {
      color: #E8FFFE
    }
  
    .md\:focus\:text-blue-darkest:focus {
      color: #12283A
    }
  
    .md\:focus\:text-blue-darker:focus {
      color: #1C3D5A
    }
  
    .md\:focus\:text-blue-dark:focus {
      color: #2779BD
    }
  
    .md\:focus\:text-blue-light:focus {
      color: #6CB2EB
    }
  
    .md\:focus\:text-blue-lighter:focus {
      color: #BCDEFA
    }
  
    .md\:focus\:text-blue-lightest:focus {
      color: #EFF8FF
    }
  
    .md\:focus\:text-indigo-darkest:focus {
      color: #191E38
    }
  
    .md\:focus\:text-indigo-darker:focus {
      color: #2F365F
    }
  
    .md\:focus\:text-indigo-dark:focus {
      color: #5661B3
    }
  
    .md\:focus\:text-indigo-light:focus {
      color: #7886D7
    }
  
    .md\:focus\:text-indigo-lighter:focus {
      color: #B2B7FF
    }
  
    .md\:focus\:text-indigo-lightest:focus {
      color: #E6E8FF
    }
  
    .md\:focus\:text-purple-darkest:focus {
      color: #21183C
    }
  
    .md\:focus\:text-purple-darker:focus {
      color: #382B5F
    }
  
    .md\:focus\:text-purple-dark:focus {
      color: #794ACF
    }
  
    .md\:focus\:text-purple-light:focus {
      color: #A779E9
    }
  
    .md\:focus\:text-purple-lighter:focus {
      color: #D6BBFC
    }
  
    .md\:focus\:text-purple-lightest:focus {
      color: #F3EBFF
    }
  
    .md\:focus\:text-pink-darkest:focus {
      color: #451225
    }
  
    .md\:focus\:text-pink-darker:focus {
      color: #6F213F
    }
  
    .md\:focus\:text-pink-dark:focus {
      color: #EB5286
    }
  
    .md\:focus\:text-pink-light:focus {
      color: #FA7EA8
    }
  
    .md\:focus\:text-pink-lighter:focus {
      color: #FFBBCA
    }
  
    .md\:focus\:text-pink-lightest:focus {
      color: #FFEBEF
    }
  
    .md\:text-10 {
      font-size: 1rem
    }
  
    .md\:text-11 {
      font-size: 1.1rem
    }
  
    .md\:text-12 {
      font-size: 1.2rem
    }
  
    .md\:text-13 {
      font-size: 1.3rem
    }
  
    .md\:text-14 {
      font-size: 1.4rem
    }
  
    .md\:text-15 {
      font-size: 1.5rem
    }
  
    .md\:text-16 {
      font-size: 1.6rem
    }
  
    .md\:text-17 {
      font-size: 1.7rem
    }
  
    .md\:text-18 {
      font-size: 1.8rem
    }
  
    .md\:text-19 {
      font-size: 1.9rem
    }
  
    .md\:text-20 {
      font-size: 2rem
    }
  
    .md\:text-24 {
      font-size: 2.4rem
    }
  
    .md\:text-28 {
      font-size: 2.8rem
    }
  
    .md\:text-32 {
      font-size: 3.2rem
    }
  
    .md\:text-36 {
      font-size: 3.6rem
    }
  
    .md\:text-40 {
      font-size: 4rem
    }
  
    .md\:text-44 {
      font-size: 4.4rem
    }
  
    .md\:text-48 {
      font-size: 4.8rem
    }
  
    .md\:text-52 {
      font-size: 5.2rem
    }
  
    .md\:text-56 {
      font-size: 5.6rem
    }
  
    .md\:text-60 {
      font-size: 6rem
    }
  
    .md\:text-64 {
      font-size: 6.4rem
    }
  
    .md\:text-68 {
      font-size: 6.8rem
    }
  
    .md\:text-72 {
      font-size: 7.2rem
    }
  
    .md\:text-96 {
      font-size: 9.6rem
    }
  
    .md\:text-128 {
      font-size: 12.8rem
    }
  
    .md\:text-xs {
      font-size: 1.2rem
    }
  
    .md\:text-sm {
      font-size: 2.4rem
    }
  
    .md\:text-base {
      font-size: 1.6rem
    }
  
    .md\:text-lg {
      font-size: 1.8rem
    }
  
    .md\:text-xl {
      font-size: 2rem
    }
  
    .md\:text-2xl {
      font-size: 2.4rem
    }
  
    .md\:text-3xl {
      font-size: 3rem
    }
  
    .md\:text-4xl {
      font-size: 3.6rem
    }
  
    .md\:text-5xl {
      font-size: 4.8rem
    }
  
    .md\:text-6xl {
      font-size: 4rem
    }
  
    .md\:italic {
      font-style: italic
    }
  
    .md\:not-italic {
      font-style: normal
    }
  
    .md\:hover\:italic:hover {
      font-style: italic
    }
  
    .md\:hover\:not-italic:hover {
      font-style: normal
    }
  
    .md\:focus\:italic:focus {
      font-style: italic
    }
  
    .md\:focus\:not-italic:focus {
      font-style: normal
    }
  
    .md\:uppercase {
      text-transform: uppercase
    }
  
    .md\:lowercase {
      text-transform: lowercase
    }
  
    .md\:capitalize {
      text-transform: capitalize
    }
  
    .md\:normal-case {
      text-transform: none
    }
  
    .md\:underline {
      text-decoration: underline
    }
  
    .md\:line-through {
      text-decoration: line-through
    }
  
    .md\:no-underline {
      text-decoration: none
    }
  
    .md\:hover\:underline:hover {
      text-decoration: underline
    }
  
    .md\:hover\:line-through:hover {
      text-decoration: line-through
    }
  
    .md\:hover\:no-underline:hover {
      text-decoration: none
    }
  
    .md\:focus\:underline:focus {
      text-decoration: underline
    }
  
    .md\:focus\:line-through:focus {
      text-decoration: line-through
    }
  
    .md\:focus\:no-underline:focus {
      text-decoration: none
    }
  
    .md\:antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }
  
    .md\:subpixel-antialiased {
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto
    }
  
    .md\:tracking-tighter {
      letter-spacing: -0.05em
    }
  
    .md\:tracking-tight {
      letter-spacing: -0.025em
    }
  
    .md\:tracking-normal {
      letter-spacing: 0
    }
  
    .md\:tracking-wide {
      letter-spacing: 0.025em
    }
  
    .md\:tracking-wider {
      letter-spacing: 0.05em
    }
  
    .md\:tracking-widest {
      letter-spacing: 0.1em
    }
  
    .md\:select-none {
      -webkit-user-select: none;
              user-select: none
    }
  
    .md\:select-text {
      -webkit-user-select: text;
              user-select: text
    }
  
    .md\:select-all {
      -webkit-user-select: all;
              user-select: all
    }
  
    .md\:select-auto {
      -webkit-user-select: auto;
              user-select: auto
    }
  
    .md\:align-baseline {
      vertical-align: baseline
    }
  
    .md\:align-top {
      vertical-align: top
    }
  
    .md\:align-middle {
      vertical-align: middle
    }
  
    .md\:align-bottom {
      vertical-align: bottom
    }
  
    .md\:align-text-top {
      vertical-align: text-top
    }
  
    .md\:align-text-bottom {
      vertical-align: text-bottom
    }
  
    .md\:visible {
      visibility: visible
    }
  
    .md\:invisible {
      visibility: hidden
    }
  
    .md\:whitespace-normal {
      white-space: normal
    }
  
    .md\:whitespace-no-wrap {
      white-space: nowrap
    }
  
    .md\:whitespace-pre {
      white-space: pre
    }
  
    .md\:whitespace-pre-line {
      white-space: pre-line
    }
  
    .md\:whitespace-pre-wrap {
      white-space: pre-wrap
    }
  
    .md\:break-normal {
      overflow-wrap: normal;
      word-break: normal
    }
  
    .md\:break-words {
      overflow-wrap: break-word
    }
  
    .md\:break-all {
      word-break: break-all
    }
  
    .md\:truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
  
    .md\:w-0 {
      width: 0
    }
  
    .md\:w-1 {
      width: 0.25rem
    }
  
    .md\:w-2 {
      width: 0.5rem
    }
  
    .md\:w-3 {
      width: 0.75rem
    }
  
    .md\:w-4 {
      width: 0.4rem
    }
  
    .md\:w-5 {
      width: 1.25rem
    }
  
    .md\:w-6 {
      width: 0.6rem
    }
  
    .md\:w-8 {
      width: 0.8rem
    }
  
    .md\:w-10 {
      width: 2.5rem
    }
  
    .md\:w-12 {
      width: 1.2rem
    }
  
    .md\:w-16 {
      width: 1.6rem
    }
  
    .md\:w-20 {
      width: 2rem
    }
  
    .md\:w-24 {
      width: 2.4rem
    }
  
    .md\:w-28 {
      width: 2.8rem
    }
  
    .md\:w-32 {
      width: 3.2rem
    }
  
    .md\:w-36 {
      width: 3.6rem
    }
  
    .md\:w-40 {
      width: 4rem
    }
  
    .md\:w-44 {
      width: 4.4rem
    }
  
    .md\:w-48 {
      width: 4.8rem
    }
  
    .md\:w-52 {
      width: 5.2rem
    }
  
    .md\:w-56 {
      width: 5.6rem
    }
  
    .md\:w-60 {
      width: 6rem
    }
  
    .md\:w-64 {
      width: 6.4rem
    }
  
    .md\:w-68 {
      width: 6.8rem
    }
  
    .md\:w-72 {
      width: 7.2rem
    }
  
    .md\:w-76 {
      width: 7.6rem
    }
  
    .md\:w-80 {
      width: 8rem
    }
  
    .md\:w-84 {
      width: 8.4rem
    }
  
    .md\:w-88 {
      width: 8.8rem
    }
  
    .md\:w-92 {
      width: 9.2rem
    }
  
    .md\:w-96 {
      width: 9.6rem
    }
  
    .md\:w-128 {
      width: 12.8rem
    }
  
    .md\:w-136 {
      width: 13.6rem
    }
  
    .md\:w-160 {
      width: 16rem
    }
  
    .md\:w-192 {
      width: 19.2rem
    }
  
    .md\:w-200 {
      width: 20rem
    }
  
    .md\:w-208 {
      width: 20.8rem
    }
  
    .md\:w-216 {
      width: 21.6rem
    }
  
    .md\:w-224 {
      width: 22.4rem
    }
  
    .md\:w-256 {
      width: 25.6rem
    }
  
    .md\:w-288 {
      width: 28.8rem
    }
  
    .md\:w-320 {
      width: 32rem
    }
  
    .md\:w-360 {
      width: 36rem
    }
  
    .md\:w-384 {
      width: 38.4rem
    }
  
    .md\:w-400 {
      width: 40rem
    }
  
    .md\:w-512 {
      width: 51.2rem
    }
  
    .md\:w-640 {
      width: 64rem
    }
  
    .md\:w-auto {
      width: auto
    }
  
    .md\:w-px {
      width: 1px
    }
  
    .md\:w-xs {
      width: 32rem
    }
  
    .md\:w-sm {
      width: 48rem
    }
  
    .md\:w-md {
      width: 64rem
    }
  
    .md\:w-lg {
      width: 80rem
    }
  
    .md\:w-xl {
      width: 96rem
    }
  
    .md\:w-2xl {
      width: 112rem
    }
  
    .md\:w-3xl {
      width: 128rem
    }
  
    .md\:w-4xl {
      width: 144rem
    }
  
    .md\:w-5xl {
      width: 160rem
    }
  
    .md\:w-1\/2 {
      width: 50%
    }
  
    .md\:w-1\/3 {
      width: 33.33333%
    }
  
    .md\:w-2\/3 {
      width: 66.66667%
    }
  
    .md\:w-1\/4 {
      width: 25%
    }
  
    .md\:w-2\/4 {
      width: 50%
    }
  
    .md\:w-3\/4 {
      width: 75%
    }
  
    .md\:w-1\/5 {
      width: 20%
    }
  
    .md\:w-2\/5 {
      width: 40%
    }
  
    .md\:w-3\/5 {
      width: 60%
    }
  
    .md\:w-4\/5 {
      width: 80%
    }
  
    .md\:w-1\/6 {
      width: 16.66667%
    }
  
    .md\:w-2\/6 {
      width: 33.33333%
    }
  
    .md\:w-3\/6 {
      width: 50%
    }
  
    .md\:w-4\/6 {
      width: 66.66667%
    }
  
    .md\:w-5\/6 {
      width: 83.33333%
    }
  
    .md\:w-1\/12 {
      width: 8.33333%
    }
  
    .md\:w-2\/12 {
      width: 16.66667%
    }
  
    .md\:w-3\/12 {
      width: 25%
    }
  
    .md\:w-4\/12 {
      width: 33.33333%
    }
  
    .md\:w-5\/12 {
      width: 41.66667%
    }
  
    .md\:w-6\/12 {
      width: 50%
    }
  
    .md\:w-7\/12 {
      width: 58.33333%
    }
  
    .md\:w-8\/12 {
      width: 66.66667%
    }
  
    .md\:w-9\/12 {
      width: 75%
    }
  
    .md\:w-10\/12 {
      width: 83.33333%
    }
  
    .md\:w-11\/12 {
      width: 91.66667%
    }
  
    .md\:w-full {
      width: 100%
    }
  
    .md\:w-screen {
      width: 100vw
    }
  
    .md\:z-0 {
      z-index: 0
    }
  
    .md\:z-10 {
      z-index: 10
    }
  
    .md\:z-20 {
      z-index: 20
    }
  
    .md\:z-30 {
      z-index: 30
    }
  
    .md\:z-40 {
      z-index: 40
    }
  
    .md\:z-50 {
      z-index: 50
    }
  
    .md\:z-99 {
      z-index: 99
    }
  
    .md\:z-999 {
      z-index: 999
    }
  
    .md\:z-9999 {
      z-index: 9999
    }
  
    .md\:z-auto {
      z-index: auto
    }
  }
  
  @media (min-width: 1280px) {
    .lg\:appearance-none {
      -webkit-appearance: none;
              appearance: none
    }
  
    .lg\:bg-fixed {
      background-attachment: fixed
    }
  
    .lg\:bg-local {
      background-attachment: local
    }
  
    .lg\:bg-scroll {
      background-attachment: scroll
    }
  
    .lg\:bg-transparent {
      background-color: transparent
    }
  
    .lg\:bg-black {
      background-color: #22292F
    }
  
    .lg\:bg-white {
      background-color: #FFFFFF
    }
  
    .lg\:bg-gray-100 {
      background-color: #f7fafc
    }
  
    .lg\:bg-gray-200 {
      background-color: #edf2f7
    }
  
    .lg\:bg-gray-300 {
      background-color: #e2e8f0
    }
  
    .lg\:bg-gray-400 {
      background-color: #cbd5e0
    }
  
    .lg\:bg-gray-500 {
      background-color: #a0aec0
    }
  
    .lg\:bg-gray-600 {
      background-color: #718096
    }
  
    .lg\:bg-gray-700 {
      background-color: #4a5568
    }
  
    .lg\:bg-gray-800 {
      background-color: #2d3748
    }
  
    .lg\:bg-gray-900 {
      background-color: #1a202c
    }
  
    .lg\:bg-red {
      background-color: #E3342F
    }
  
    .lg\:bg-orange {
      background-color: #F6993F
    }
  
    .lg\:bg-yellow {
      background-color: #FFED4A
    }
  
    .lg\:bg-green {
      background-color: #38C172
    }
  
    .lg\:bg-teal {
      background-color: #4DC0B5
    }
  
    .lg\:bg-blue {
      background-color: #3490DC
    }
  
    .lg\:bg-indigo {
      background-color: #6574CD
    }
  
    .lg\:bg-purple {
      background-color: #9561E2
    }
  
    .lg\:bg-pink {
      background-color: #F66D9B
    }
  
    .lg\:bg-grey-darkest {
      background-color: #3D4852
    }
  
    .lg\:bg-grey-darker {
      background-color: #606F7B
    }
  
    .lg\:bg-grey-dark {
      background-color: #8795A1
    }
  
    .lg\:bg-grey {
      background-color: #B8C2CC
    }
  
    .lg\:bg-grey-light {
      background-color: #DAE1E7
    }
  
    .lg\:bg-grey-lighter {
      background-color: #F1F5F8
    }
  
    .lg\:bg-grey-lightest {
      background-color: #F8FAFC
    }
  
    .lg\:bg-red-darkest {
      background-color: #3B0D0C
    }
  
    .lg\:bg-red-darker {
      background-color: #621B18
    }
  
    .lg\:bg-red-dark {
      background-color: #CC1F1A
    }
  
    .lg\:bg-red-light {
      background-color: #EF5753
    }
  
    .lg\:bg-red-lighter {
      background-color: #F9ACAA
    }
  
    .lg\:bg-red-lightest {
      background-color: #FCEBEA
    }
  
    .lg\:bg-orange-darkest {
      background-color: #462A16
    }
  
    .lg\:bg-orange-darker {
      background-color: #613B1F
    }
  
    .lg\:bg-orange-dark {
      background-color: #DE751F
    }
  
    .lg\:bg-orange-light {
      background-color: #FAAD63
    }
  
    .lg\:bg-orange-lighter {
      background-color: #FCD9B6
    }
  
    .lg\:bg-orange-lightest {
      background-color: #FFF5EB
    }
  
    .lg\:bg-yellow-darkest {
      background-color: #453411
    }
  
    .lg\:bg-yellow-darker {
      background-color: #684F1D
    }
  
    .lg\:bg-yellow-dark {
      background-color: #F2D024
    }
  
    .lg\:bg-yellow-light {
      background-color: #FFF382
    }
  
    .lg\:bg-yellow-lighter {
      background-color: #FFF9C2
    }
  
    .lg\:bg-yellow-lightest {
      background-color: #FCFBEB
    }
  
    .lg\:bg-green-darkest {
      background-color: #0F2F21
    }
  
    .lg\:bg-green-darker {
      background-color: #1A4731
    }
  
    .lg\:bg-green-dark {
      background-color: #1F9D55
    }
  
    .lg\:bg-green-light {
      background-color: #51D88A
    }
  
    .lg\:bg-green-lighter {
      background-color: #A2F5BF
    }
  
    .lg\:bg-green-lightest {
      background-color: #E3FCEC
    }
  
    .lg\:bg-teal-darkest {
      background-color: #0D3331
    }
  
    .lg\:bg-teal-darker {
      background-color: #20504F
    }
  
    .lg\:bg-teal-dark {
      background-color: #38A89D
    }
  
    .lg\:bg-teal-light {
      background-color: #64D5CA
    }
  
    .lg\:bg-teal-lighter {
      background-color: #A0F0ED
    }
  
    .lg\:bg-teal-lightest {
      background-color: #E8FFFE
    }
  
    .lg\:bg-blue-darkest {
      background-color: #12283A
    }
  
    .lg\:bg-blue-darker {
      background-color: #1C3D5A
    }
  
    .lg\:bg-blue-dark {
      background-color: #2779BD
    }
  
    .lg\:bg-blue-light {
      background-color: #6CB2EB
    }
  
    .lg\:bg-blue-lighter {
      background-color: #BCDEFA
    }
  
    .lg\:bg-blue-lightest {
      background-color: #EFF8FF
    }
  
    .lg\:bg-indigo-darkest {
      background-color: #191E38
    }
  
    .lg\:bg-indigo-darker {
      background-color: #2F365F
    }
  
    .lg\:bg-indigo-dark {
      background-color: #5661B3
    }
  
    .lg\:bg-indigo-light {
      background-color: #7886D7
    }
  
    .lg\:bg-indigo-lighter {
      background-color: #B2B7FF
    }
  
    .lg\:bg-indigo-lightest {
      background-color: #E6E8FF
    }
  
    .lg\:bg-purple-darkest {
      background-color: #21183C
    }
  
    .lg\:bg-purple-darker {
      background-color: #382B5F
    }
  
    .lg\:bg-purple-dark {
      background-color: #794ACF
    }
  
    .lg\:bg-purple-light {
      background-color: #A779E9
    }
  
    .lg\:bg-purple-lighter {
      background-color: #D6BBFC
    }
  
    .lg\:bg-purple-lightest {
      background-color: #F3EBFF
    }
  
    .lg\:bg-pink-darkest {
      background-color: #451225
    }
  
    .lg\:bg-pink-darker {
      background-color: #6F213F
    }
  
    .lg\:bg-pink-dark {
      background-color: #EB5286
    }
  
    .lg\:bg-pink-light {
      background-color: #FA7EA8
    }
  
    .lg\:bg-pink-lighter {
      background-color: #FFBBCA
    }
  
    .lg\:bg-pink-lightest {
      background-color: #FFEBEF
    }
  
    .lg\:hover\:bg-transparent:hover {
      background-color: transparent
    }
  
    .lg\:hover\:bg-black:hover {
      background-color: #22292F
    }
  
    .lg\:hover\:bg-white:hover {
      background-color: #FFFFFF
    }
  
    .lg\:hover\:bg-gray-100:hover {
      background-color: #f7fafc
    }
  
    .lg\:hover\:bg-gray-200:hover {
      background-color: #edf2f7
    }
  
    .lg\:hover\:bg-gray-300:hover {
      background-color: #e2e8f0
    }
  
    .lg\:hover\:bg-gray-400:hover {
      background-color: #cbd5e0
    }
  
    .lg\:hover\:bg-gray-500:hover {
      background-color: #a0aec0
    }
  
    .lg\:hover\:bg-gray-600:hover {
      background-color: #718096
    }
  
    .lg\:hover\:bg-gray-700:hover {
      background-color: #4a5568
    }
  
    .lg\:hover\:bg-gray-800:hover {
      background-color: #2d3748
    }
  
    .lg\:hover\:bg-gray-900:hover {
      background-color: #1a202c
    }
  
    .lg\:hover\:bg-red:hover {
      background-color: #E3342F
    }
  
    .lg\:hover\:bg-orange:hover {
      background-color: #F6993F
    }
  
    .lg\:hover\:bg-yellow:hover {
      background-color: #FFED4A
    }
  
    .lg\:hover\:bg-green:hover {
      background-color: #38C172
    }
  
    .lg\:hover\:bg-teal:hover {
      background-color: #4DC0B5
    }
  
    .lg\:hover\:bg-blue:hover {
      background-color: #3490DC
    }
  
    .lg\:hover\:bg-indigo:hover {
      background-color: #6574CD
    }
  
    .lg\:hover\:bg-purple:hover {
      background-color: #9561E2
    }
  
    .lg\:hover\:bg-pink:hover {
      background-color: #F66D9B
    }
  
    .lg\:hover\:bg-grey-darkest:hover {
      background-color: #3D4852
    }
  
    .lg\:hover\:bg-grey-darker:hover {
      background-color: #606F7B
    }
  
    .lg\:hover\:bg-grey-dark:hover {
      background-color: #8795A1
    }
  
    .lg\:hover\:bg-grey:hover {
      background-color: #B8C2CC
    }
  
    .lg\:hover\:bg-grey-light:hover {
      background-color: #DAE1E7
    }
  
    .lg\:hover\:bg-grey-lighter:hover {
      background-color: #F1F5F8
    }
  
    .lg\:hover\:bg-grey-lightest:hover {
      background-color: #F8FAFC
    }
  
    .lg\:hover\:bg-red-darkest:hover {
      background-color: #3B0D0C
    }
  
    .lg\:hover\:bg-red-darker:hover {
      background-color: #621B18
    }
  
    .lg\:hover\:bg-red-dark:hover {
      background-color: #CC1F1A
    }
  
    .lg\:hover\:bg-red-light:hover {
      background-color: #EF5753
    }
  
    .lg\:hover\:bg-red-lighter:hover {
      background-color: #F9ACAA
    }
  
    .lg\:hover\:bg-red-lightest:hover {
      background-color: #FCEBEA
    }
  
    .lg\:hover\:bg-orange-darkest:hover {
      background-color: #462A16
    }
  
    .lg\:hover\:bg-orange-darker:hover {
      background-color: #613B1F
    }
  
    .lg\:hover\:bg-orange-dark:hover {
      background-color: #DE751F
    }
  
    .lg\:hover\:bg-orange-light:hover {
      background-color: #FAAD63
    }
  
    .lg\:hover\:bg-orange-lighter:hover {
      background-color: #FCD9B6
    }
  
    .lg\:hover\:bg-orange-lightest:hover {
      background-color: #FFF5EB
    }
  
    .lg\:hover\:bg-yellow-darkest:hover {
      background-color: #453411
    }
  
    .lg\:hover\:bg-yellow-darker:hover {
      background-color: #684F1D
    }
  
    .lg\:hover\:bg-yellow-dark:hover {
      background-color: #F2D024
    }
  
    .lg\:hover\:bg-yellow-light:hover {
      background-color: #FFF382
    }
  
    .lg\:hover\:bg-yellow-lighter:hover {
      background-color: #FFF9C2
    }
  
    .lg\:hover\:bg-yellow-lightest:hover {
      background-color: #FCFBEB
    }
  
    .lg\:hover\:bg-green-darkest:hover {
      background-color: #0F2F21
    }
  
    .lg\:hover\:bg-green-darker:hover {
      background-color: #1A4731
    }
  
    .lg\:hover\:bg-green-dark:hover {
      background-color: #1F9D55
    }
  
    .lg\:hover\:bg-green-light:hover {
      background-color: #51D88A
    }
  
    .lg\:hover\:bg-green-lighter:hover {
      background-color: #A2F5BF
    }
  
    .lg\:hover\:bg-green-lightest:hover {
      background-color: #E3FCEC
    }
  
    .lg\:hover\:bg-teal-darkest:hover {
      background-color: #0D3331
    }
  
    .lg\:hover\:bg-teal-darker:hover {
      background-color: #20504F
    }
  
    .lg\:hover\:bg-teal-dark:hover {
      background-color: #38A89D
    }
  
    .lg\:hover\:bg-teal-light:hover {
      background-color: #64D5CA
    }
  
    .lg\:hover\:bg-teal-lighter:hover {
      background-color: #A0F0ED
    }
  
    .lg\:hover\:bg-teal-lightest:hover {
      background-color: #E8FFFE
    }
  
    .lg\:hover\:bg-blue-darkest:hover {
      background-color: #12283A
    }
  
    .lg\:hover\:bg-blue-darker:hover {
      background-color: #1C3D5A
    }
  
    .lg\:hover\:bg-blue-dark:hover {
      background-color: #2779BD
    }
  
    .lg\:hover\:bg-blue-light:hover {
      background-color: #6CB2EB
    }
  
    .lg\:hover\:bg-blue-lighter:hover {
      background-color: #BCDEFA
    }
  
    .lg\:hover\:bg-blue-lightest:hover {
      background-color: #EFF8FF
    }
  
    .lg\:hover\:bg-indigo-darkest:hover {
      background-color: #191E38
    }
  
    .lg\:hover\:bg-indigo-darker:hover {
      background-color: #2F365F
    }
  
    .lg\:hover\:bg-indigo-dark:hover {
      background-color: #5661B3
    }
  
    .lg\:hover\:bg-indigo-light:hover {
      background-color: #7886D7
    }
  
    .lg\:hover\:bg-indigo-lighter:hover {
      background-color: #B2B7FF
    }
  
    .lg\:hover\:bg-indigo-lightest:hover {
      background-color: #E6E8FF
    }
  
    .lg\:hover\:bg-purple-darkest:hover {
      background-color: #21183C
    }
  
    .lg\:hover\:bg-purple-darker:hover {
      background-color: #382B5F
    }
  
    .lg\:hover\:bg-purple-dark:hover {
      background-color: #794ACF
    }
  
    .lg\:hover\:bg-purple-light:hover {
      background-color: #A779E9
    }
  
    .lg\:hover\:bg-purple-lighter:hover {
      background-color: #D6BBFC
    }
  
    .lg\:hover\:bg-purple-lightest:hover {
      background-color: #F3EBFF
    }
  
    .lg\:hover\:bg-pink-darkest:hover {
      background-color: #451225
    }
  
    .lg\:hover\:bg-pink-darker:hover {
      background-color: #6F213F
    }
  
    .lg\:hover\:bg-pink-dark:hover {
      background-color: #EB5286
    }
  
    .lg\:hover\:bg-pink-light:hover {
      background-color: #FA7EA8
    }
  
    .lg\:hover\:bg-pink-lighter:hover {
      background-color: #FFBBCA
    }
  
    .lg\:hover\:bg-pink-lightest:hover {
      background-color: #FFEBEF
    }
  
    .lg\:focus\:bg-transparent:focus {
      background-color: transparent
    }
  
    .lg\:focus\:bg-black:focus {
      background-color: #22292F
    }
  
    .lg\:focus\:bg-white:focus {
      background-color: #FFFFFF
    }
  
    .lg\:focus\:bg-gray-100:focus {
      background-color: #f7fafc
    }
  
    .lg\:focus\:bg-gray-200:focus {
      background-color: #edf2f7
    }
  
    .lg\:focus\:bg-gray-300:focus {
      background-color: #e2e8f0
    }
  
    .lg\:focus\:bg-gray-400:focus {
      background-color: #cbd5e0
    }
  
    .lg\:focus\:bg-gray-500:focus {
      background-color: #a0aec0
    }
  
    .lg\:focus\:bg-gray-600:focus {
      background-color: #718096
    }
  
    .lg\:focus\:bg-gray-700:focus {
      background-color: #4a5568
    }
  
    .lg\:focus\:bg-gray-800:focus {
      background-color: #2d3748
    }
  
    .lg\:focus\:bg-gray-900:focus {
      background-color: #1a202c
    }
  
    .lg\:focus\:bg-red:focus {
      background-color: #E3342F
    }
  
    .lg\:focus\:bg-orange:focus {
      background-color: #F6993F
    }
  
    .lg\:focus\:bg-yellow:focus {
      background-color: #FFED4A
    }
  
    .lg\:focus\:bg-green:focus {
      background-color: #38C172
    }
  
    .lg\:focus\:bg-teal:focus {
      background-color: #4DC0B5
    }
  
    .lg\:focus\:bg-blue:focus {
      background-color: #3490DC
    }
  
    .lg\:focus\:bg-indigo:focus {
      background-color: #6574CD
    }
  
    .lg\:focus\:bg-purple:focus {
      background-color: #9561E2
    }
  
    .lg\:focus\:bg-pink:focus {
      background-color: #F66D9B
    }
  
    .lg\:focus\:bg-grey-darkest:focus {
      background-color: #3D4852
    }
  
    .lg\:focus\:bg-grey-darker:focus {
      background-color: #606F7B
    }
  
    .lg\:focus\:bg-grey-dark:focus {
      background-color: #8795A1
    }
  
    .lg\:focus\:bg-grey:focus {
      background-color: #B8C2CC
    }
  
    .lg\:focus\:bg-grey-light:focus {
      background-color: #DAE1E7
    }
  
    .lg\:focus\:bg-grey-lighter:focus {
      background-color: #F1F5F8
    }
  
    .lg\:focus\:bg-grey-lightest:focus {
      background-color: #F8FAFC
    }
  
    .lg\:focus\:bg-red-darkest:focus {
      background-color: #3B0D0C
    }
  
    .lg\:focus\:bg-red-darker:focus {
      background-color: #621B18
    }
  
    .lg\:focus\:bg-red-dark:focus {
      background-color: #CC1F1A
    }
  
    .lg\:focus\:bg-red-light:focus {
      background-color: #EF5753
    }
  
    .lg\:focus\:bg-red-lighter:focus {
      background-color: #F9ACAA
    }
  
    .lg\:focus\:bg-red-lightest:focus {
      background-color: #FCEBEA
    }
  
    .lg\:focus\:bg-orange-darkest:focus {
      background-color: #462A16
    }
  
    .lg\:focus\:bg-orange-darker:focus {
      background-color: #613B1F
    }
  
    .lg\:focus\:bg-orange-dark:focus {
      background-color: #DE751F
    }
  
    .lg\:focus\:bg-orange-light:focus {
      background-color: #FAAD63
    }
  
    .lg\:focus\:bg-orange-lighter:focus {
      background-color: #FCD9B6
    }
  
    .lg\:focus\:bg-orange-lightest:focus {
      background-color: #FFF5EB
    }
  
    .lg\:focus\:bg-yellow-darkest:focus {
      background-color: #453411
    }
  
    .lg\:focus\:bg-yellow-darker:focus {
      background-color: #684F1D
    }
  
    .lg\:focus\:bg-yellow-dark:focus {
      background-color: #F2D024
    }
  
    .lg\:focus\:bg-yellow-light:focus {
      background-color: #FFF382
    }
  
    .lg\:focus\:bg-yellow-lighter:focus {
      background-color: #FFF9C2
    }
  
    .lg\:focus\:bg-yellow-lightest:focus {
      background-color: #FCFBEB
    }
  
    .lg\:focus\:bg-green-darkest:focus {
      background-color: #0F2F21
    }
  
    .lg\:focus\:bg-green-darker:focus {
      background-color: #1A4731
    }
  
    .lg\:focus\:bg-green-dark:focus {
      background-color: #1F9D55
    }
  
    .lg\:focus\:bg-green-light:focus {
      background-color: #51D88A
    }
  
    .lg\:focus\:bg-green-lighter:focus {
      background-color: #A2F5BF
    }
  
    .lg\:focus\:bg-green-lightest:focus {
      background-color: #E3FCEC
    }
  
    .lg\:focus\:bg-teal-darkest:focus {
      background-color: #0D3331
    }
  
    .lg\:focus\:bg-teal-darker:focus {
      background-color: #20504F
    }
  
    .lg\:focus\:bg-teal-dark:focus {
      background-color: #38A89D
    }
  
    .lg\:focus\:bg-teal-light:focus {
      background-color: #64D5CA
    }
  
    .lg\:focus\:bg-teal-lighter:focus {
      background-color: #A0F0ED
    }
  
    .lg\:focus\:bg-teal-lightest:focus {
      background-color: #E8FFFE
    }
  
    .lg\:focus\:bg-blue-darkest:focus {
      background-color: #12283A
    }
  
    .lg\:focus\:bg-blue-darker:focus {
      background-color: #1C3D5A
    }
  
    .lg\:focus\:bg-blue-dark:focus {
      background-color: #2779BD
    }
  
    .lg\:focus\:bg-blue-light:focus {
      background-color: #6CB2EB
    }
  
    .lg\:focus\:bg-blue-lighter:focus {
      background-color: #BCDEFA
    }
  
    .lg\:focus\:bg-blue-lightest:focus {
      background-color: #EFF8FF
    }
  
    .lg\:focus\:bg-indigo-darkest:focus {
      background-color: #191E38
    }
  
    .lg\:focus\:bg-indigo-darker:focus {
      background-color: #2F365F
    }
  
    .lg\:focus\:bg-indigo-dark:focus {
      background-color: #5661B3
    }
  
    .lg\:focus\:bg-indigo-light:focus {
      background-color: #7886D7
    }
  
    .lg\:focus\:bg-indigo-lighter:focus {
      background-color: #B2B7FF
    }
  
    .lg\:focus\:bg-indigo-lightest:focus {
      background-color: #E6E8FF
    }
  
    .lg\:focus\:bg-purple-darkest:focus {
      background-color: #21183C
    }
  
    .lg\:focus\:bg-purple-darker:focus {
      background-color: #382B5F
    }
  
    .lg\:focus\:bg-purple-dark:focus {
      background-color: #794ACF
    }
  
    .lg\:focus\:bg-purple-light:focus {
      background-color: #A779E9
    }
  
    .lg\:focus\:bg-purple-lighter:focus {
      background-color: #D6BBFC
    }
  
    .lg\:focus\:bg-purple-lightest:focus {
      background-color: #F3EBFF
    }
  
    .lg\:focus\:bg-pink-darkest:focus {
      background-color: #451225
    }
  
    .lg\:focus\:bg-pink-darker:focus {
      background-color: #6F213F
    }
  
    .lg\:focus\:bg-pink-dark:focus {
      background-color: #EB5286
    }
  
    .lg\:focus\:bg-pink-light:focus {
      background-color: #FA7EA8
    }
  
    .lg\:focus\:bg-pink-lighter:focus {
      background-color: #FFBBCA
    }
  
    .lg\:focus\:bg-pink-lightest:focus {
      background-color: #FFEBEF
    }
  
    .lg\:bg-bottom {
      background-position: bottom
    }
  
    .lg\:bg-center {
      background-position: center
    }
  
    .lg\:bg-left {
      background-position: left
    }
  
    .lg\:bg-left-bottom {
      background-position: left bottom
    }
  
    .lg\:bg-left-top {
      background-position: left top
    }
  
    .lg\:bg-right {
      background-position: right
    }
  
    .lg\:bg-right-bottom {
      background-position: right bottom
    }
  
    .lg\:bg-right-top {
      background-position: right top
    }
  
    .lg\:bg-top {
      background-position: top
    }
  
    .lg\:bg-repeat {
      background-repeat: repeat
    }
  
    .lg\:bg-no-repeat {
      background-repeat: no-repeat
    }
  
    .lg\:bg-repeat-x {
      background-repeat: repeat-x
    }
  
    .lg\:bg-repeat-y {
      background-repeat: repeat-y
    }
  
    .lg\:bg-repeat-round {
      background-repeat: round
    }
  
    .lg\:bg-repeat-space {
      background-repeat: space
    }
  
    .lg\:bg-auto {
      background-size: auto
    }
  
    .lg\:bg-cover {
      background-size: cover
    }
  
    .lg\:bg-contain {
      background-size: contain
    }
  
    .lg\:border-collapse {
      border-collapse: collapse
    }
  
    .lg\:border-separate {
      border-collapse: separate
    }
  
    .lg\:border-transparent {
      border-color: transparent
    }
  
    .lg\:border-black {
      border-color: #22292F
    }
  
    .lg\:border-white {
      border-color: #FFFFFF
    }
  
    .lg\:border-gray-100 {
      border-color: #f7fafc
    }
  
    .lg\:border-gray-200 {
      border-color: #edf2f7
    }
  
    .lg\:border-gray-300 {
      border-color: #e2e8f0
    }
  
    .lg\:border-gray-400 {
      border-color: #cbd5e0
    }
  
    .lg\:border-gray-500 {
      border-color: #a0aec0
    }
  
    .lg\:border-gray-600 {
      border-color: #718096
    }
  
    .lg\:border-gray-700 {
      border-color: #4a5568
    }
  
    .lg\:border-gray-800 {
      border-color: #2d3748
    }
  
    .lg\:border-gray-900 {
      border-color: #1a202c
    }
  
    .lg\:border-red {
      border-color: #E3342F
    }
  
    .lg\:border-orange {
      border-color: #F6993F
    }
  
    .lg\:border-yellow {
      border-color: #FFED4A
    }
  
    .lg\:border-green {
      border-color: #38C172
    }
  
    .lg\:border-teal {
      border-color: #4DC0B5
    }
  
    .lg\:border-blue {
      border-color: #3490DC
    }
  
    .lg\:border-indigo {
      border-color: #6574CD
    }
  
    .lg\:border-purple {
      border-color: #9561E2
    }
  
    .lg\:border-pink {
      border-color: #F66D9B
    }
  
    .lg\:border-grey-darkest {
      border-color: #3D4852
    }
  
    .lg\:border-grey-darker {
      border-color: #606F7B
    }
  
    .lg\:border-grey-dark {
      border-color: #8795A1
    }
  
    .lg\:border-grey {
      border-color: #B8C2CC
    }
  
    .lg\:border-grey-light {
      border-color: #DAE1E7
    }
  
    .lg\:border-grey-lighter {
      border-color: #F1F5F8
    }
  
    .lg\:border-grey-lightest {
      border-color: #F8FAFC
    }
  
    .lg\:border-red-darkest {
      border-color: #3B0D0C
    }
  
    .lg\:border-red-darker {
      border-color: #621B18
    }
  
    .lg\:border-red-dark {
      border-color: #CC1F1A
    }
  
    .lg\:border-red-light {
      border-color: #EF5753
    }
  
    .lg\:border-red-lighter {
      border-color: #F9ACAA
    }
  
    .lg\:border-red-lightest {
      border-color: #FCEBEA
    }
  
    .lg\:border-orange-darkest {
      border-color: #462A16
    }
  
    .lg\:border-orange-darker {
      border-color: #613B1F
    }
  
    .lg\:border-orange-dark {
      border-color: #DE751F
    }
  
    .lg\:border-orange-light {
      border-color: #FAAD63
    }
  
    .lg\:border-orange-lighter {
      border-color: #FCD9B6
    }
  
    .lg\:border-orange-lightest {
      border-color: #FFF5EB
    }
  
    .lg\:border-yellow-darkest {
      border-color: #453411
    }
  
    .lg\:border-yellow-darker {
      border-color: #684F1D
    }
  
    .lg\:border-yellow-dark {
      border-color: #F2D024
    }
  
    .lg\:border-yellow-light {
      border-color: #FFF382
    }
  
    .lg\:border-yellow-lighter {
      border-color: #FFF9C2
    }
  
    .lg\:border-yellow-lightest {
      border-color: #FCFBEB
    }
  
    .lg\:border-green-darkest {
      border-color: #0F2F21
    }
  
    .lg\:border-green-darker {
      border-color: #1A4731
    }
  
    .lg\:border-green-dark {
      border-color: #1F9D55
    }
  
    .lg\:border-green-light {
      border-color: #51D88A
    }
  
    .lg\:border-green-lighter {
      border-color: #A2F5BF
    }
  
    .lg\:border-green-lightest {
      border-color: #E3FCEC
    }
  
    .lg\:border-teal-darkest {
      border-color: #0D3331
    }
  
    .lg\:border-teal-darker {
      border-color: #20504F
    }
  
    .lg\:border-teal-dark {
      border-color: #38A89D
    }
  
    .lg\:border-teal-light {
      border-color: #64D5CA
    }
  
    .lg\:border-teal-lighter {
      border-color: #A0F0ED
    }
  
    .lg\:border-teal-lightest {
      border-color: #E8FFFE
    }
  
    .lg\:border-blue-darkest {
      border-color: #12283A
    }
  
    .lg\:border-blue-darker {
      border-color: #1C3D5A
    }
  
    .lg\:border-blue-dark {
      border-color: #2779BD
    }
  
    .lg\:border-blue-light {
      border-color: #6CB2EB
    }
  
    .lg\:border-blue-lighter {
      border-color: #BCDEFA
    }
  
    .lg\:border-blue-lightest {
      border-color: #EFF8FF
    }
  
    .lg\:border-indigo-darkest {
      border-color: #191E38
    }
  
    .lg\:border-indigo-darker {
      border-color: #2F365F
    }
  
    .lg\:border-indigo-dark {
      border-color: #5661B3
    }
  
    .lg\:border-indigo-light {
      border-color: #7886D7
    }
  
    .lg\:border-indigo-lighter {
      border-color: #B2B7FF
    }
  
    .lg\:border-indigo-lightest {
      border-color: #E6E8FF
    }
  
    .lg\:border-purple-darkest {
      border-color: #21183C
    }
  
    .lg\:border-purple-darker {
      border-color: #382B5F
    }
  
    .lg\:border-purple-dark {
      border-color: #794ACF
    }
  
    .lg\:border-purple-light {
      border-color: #A779E9
    }
  
    .lg\:border-purple-lighter {
      border-color: #D6BBFC
    }
  
    .lg\:border-purple-lightest {
      border-color: #F3EBFF
    }
  
    .lg\:border-pink-darkest {
      border-color: #451225
    }
  
    .lg\:border-pink-darker {
      border-color: #6F213F
    }
  
    .lg\:border-pink-dark {
      border-color: #EB5286
    }
  
    .lg\:border-pink-light {
      border-color: #FA7EA8
    }
  
    .lg\:border-pink-lighter {
      border-color: #FFBBCA
    }
  
    .lg\:border-pink-lightest {
      border-color: #FFEBEF
    }
  
    .lg\:hover\:border-transparent:hover {
      border-color: transparent
    }
  
    .lg\:hover\:border-black:hover {
      border-color: #22292F
    }
  
    .lg\:hover\:border-white:hover {
      border-color: #FFFFFF
    }
  
    .lg\:hover\:border-gray-100:hover {
      border-color: #f7fafc
    }
  
    .lg\:hover\:border-gray-200:hover {
      border-color: #edf2f7
    }
  
    .lg\:hover\:border-gray-300:hover {
      border-color: #e2e8f0
    }
  
    .lg\:hover\:border-gray-400:hover {
      border-color: #cbd5e0
    }
  
    .lg\:hover\:border-gray-500:hover {
      border-color: #a0aec0
    }
  
    .lg\:hover\:border-gray-600:hover {
      border-color: #718096
    }
  
    .lg\:hover\:border-gray-700:hover {
      border-color: #4a5568
    }
  
    .lg\:hover\:border-gray-800:hover {
      border-color: #2d3748
    }
  
    .lg\:hover\:border-gray-900:hover {
      border-color: #1a202c
    }
  
    .lg\:hover\:border-red:hover {
      border-color: #E3342F
    }
  
    .lg\:hover\:border-orange:hover {
      border-color: #F6993F
    }
  
    .lg\:hover\:border-yellow:hover {
      border-color: #FFED4A
    }
  
    .lg\:hover\:border-green:hover {
      border-color: #38C172
    }
  
    .lg\:hover\:border-teal:hover {
      border-color: #4DC0B5
    }
  
    .lg\:hover\:border-blue:hover {
      border-color: #3490DC
    }
  
    .lg\:hover\:border-indigo:hover {
      border-color: #6574CD
    }
  
    .lg\:hover\:border-purple:hover {
      border-color: #9561E2
    }
  
    .lg\:hover\:border-pink:hover {
      border-color: #F66D9B
    }
  
    .lg\:hover\:border-grey-darkest:hover {
      border-color: #3D4852
    }
  
    .lg\:hover\:border-grey-darker:hover {
      border-color: #606F7B
    }
  
    .lg\:hover\:border-grey-dark:hover {
      border-color: #8795A1
    }
  
    .lg\:hover\:border-grey:hover {
      border-color: #B8C2CC
    }
  
    .lg\:hover\:border-grey-light:hover {
      border-color: #DAE1E7
    }
  
    .lg\:hover\:border-grey-lighter:hover {
      border-color: #F1F5F8
    }
  
    .lg\:hover\:border-grey-lightest:hover {
      border-color: #F8FAFC
    }
  
    .lg\:hover\:border-red-darkest:hover {
      border-color: #3B0D0C
    }
  
    .lg\:hover\:border-red-darker:hover {
      border-color: #621B18
    }
  
    .lg\:hover\:border-red-dark:hover {
      border-color: #CC1F1A
    }
  
    .lg\:hover\:border-red-light:hover {
      border-color: #EF5753
    }
  
    .lg\:hover\:border-red-lighter:hover {
      border-color: #F9ACAA
    }
  
    .lg\:hover\:border-red-lightest:hover {
      border-color: #FCEBEA
    }
  
    .lg\:hover\:border-orange-darkest:hover {
      border-color: #462A16
    }
  
    .lg\:hover\:border-orange-darker:hover {
      border-color: #613B1F
    }
  
    .lg\:hover\:border-orange-dark:hover {
      border-color: #DE751F
    }
  
    .lg\:hover\:border-orange-light:hover {
      border-color: #FAAD63
    }
  
    .lg\:hover\:border-orange-lighter:hover {
      border-color: #FCD9B6
    }
  
    .lg\:hover\:border-orange-lightest:hover {
      border-color: #FFF5EB
    }
  
    .lg\:hover\:border-yellow-darkest:hover {
      border-color: #453411
    }
  
    .lg\:hover\:border-yellow-darker:hover {
      border-color: #684F1D
    }
  
    .lg\:hover\:border-yellow-dark:hover {
      border-color: #F2D024
    }
  
    .lg\:hover\:border-yellow-light:hover {
      border-color: #FFF382
    }
  
    .lg\:hover\:border-yellow-lighter:hover {
      border-color: #FFF9C2
    }
  
    .lg\:hover\:border-yellow-lightest:hover {
      border-color: #FCFBEB
    }
  
    .lg\:hover\:border-green-darkest:hover {
      border-color: #0F2F21
    }
  
    .lg\:hover\:border-green-darker:hover {
      border-color: #1A4731
    }
  
    .lg\:hover\:border-green-dark:hover {
      border-color: #1F9D55
    }
  
    .lg\:hover\:border-green-light:hover {
      border-color: #51D88A
    }
  
    .lg\:hover\:border-green-lighter:hover {
      border-color: #A2F5BF
    }
  
    .lg\:hover\:border-green-lightest:hover {
      border-color: #E3FCEC
    }
  
    .lg\:hover\:border-teal-darkest:hover {
      border-color: #0D3331
    }
  
    .lg\:hover\:border-teal-darker:hover {
      border-color: #20504F
    }
  
    .lg\:hover\:border-teal-dark:hover {
      border-color: #38A89D
    }
  
    .lg\:hover\:border-teal-light:hover {
      border-color: #64D5CA
    }
  
    .lg\:hover\:border-teal-lighter:hover {
      border-color: #A0F0ED
    }
  
    .lg\:hover\:border-teal-lightest:hover {
      border-color: #E8FFFE
    }
  
    .lg\:hover\:border-blue-darkest:hover {
      border-color: #12283A
    }
  
    .lg\:hover\:border-blue-darker:hover {
      border-color: #1C3D5A
    }
  
    .lg\:hover\:border-blue-dark:hover {
      border-color: #2779BD
    }
  
    .lg\:hover\:border-blue-light:hover {
      border-color: #6CB2EB
    }
  
    .lg\:hover\:border-blue-lighter:hover {
      border-color: #BCDEFA
    }
  
    .lg\:hover\:border-blue-lightest:hover {
      border-color: #EFF8FF
    }
  
    .lg\:hover\:border-indigo-darkest:hover {
      border-color: #191E38
    }
  
    .lg\:hover\:border-indigo-darker:hover {
      border-color: #2F365F
    }
  
    .lg\:hover\:border-indigo-dark:hover {
      border-color: #5661B3
    }
  
    .lg\:hover\:border-indigo-light:hover {
      border-color: #7886D7
    }
  
    .lg\:hover\:border-indigo-lighter:hover {
      border-color: #B2B7FF
    }
  
    .lg\:hover\:border-indigo-lightest:hover {
      border-color: #E6E8FF
    }
  
    .lg\:hover\:border-purple-darkest:hover {
      border-color: #21183C
    }
  
    .lg\:hover\:border-purple-darker:hover {
      border-color: #382B5F
    }
  
    .lg\:hover\:border-purple-dark:hover {
      border-color: #794ACF
    }
  
    .lg\:hover\:border-purple-light:hover {
      border-color: #A779E9
    }
  
    .lg\:hover\:border-purple-lighter:hover {
      border-color: #D6BBFC
    }
  
    .lg\:hover\:border-purple-lightest:hover {
      border-color: #F3EBFF
    }
  
    .lg\:hover\:border-pink-darkest:hover {
      border-color: #451225
    }
  
    .lg\:hover\:border-pink-darker:hover {
      border-color: #6F213F
    }
  
    .lg\:hover\:border-pink-dark:hover {
      border-color: #EB5286
    }
  
    .lg\:hover\:border-pink-light:hover {
      border-color: #FA7EA8
    }
  
    .lg\:hover\:border-pink-lighter:hover {
      border-color: #FFBBCA
    }
  
    .lg\:hover\:border-pink-lightest:hover {
      border-color: #FFEBEF
    }
  
    .lg\:focus\:border-transparent:focus {
      border-color: transparent
    }
  
    .lg\:focus\:border-black:focus {
      border-color: #22292F
    }
  
    .lg\:focus\:border-white:focus {
      border-color: #FFFFFF
    }
  
    .lg\:focus\:border-gray-100:focus {
      border-color: #f7fafc
    }
  
    .lg\:focus\:border-gray-200:focus {
      border-color: #edf2f7
    }
  
    .lg\:focus\:border-gray-300:focus {
      border-color: #e2e8f0
    }
  
    .lg\:focus\:border-gray-400:focus {
      border-color: #cbd5e0
    }
  
    .lg\:focus\:border-gray-500:focus {
      border-color: #a0aec0
    }
  
    .lg\:focus\:border-gray-600:focus {
      border-color: #718096
    }
  
    .lg\:focus\:border-gray-700:focus {
      border-color: #4a5568
    }
  
    .lg\:focus\:border-gray-800:focus {
      border-color: #2d3748
    }
  
    .lg\:focus\:border-gray-900:focus {
      border-color: #1a202c
    }
  
    .lg\:focus\:border-red:focus {
      border-color: #E3342F
    }
  
    .lg\:focus\:border-orange:focus {
      border-color: #F6993F
    }
  
    .lg\:focus\:border-yellow:focus {
      border-color: #FFED4A
    }
  
    .lg\:focus\:border-green:focus {
      border-color: #38C172
    }
  
    .lg\:focus\:border-teal:focus {
      border-color: #4DC0B5
    }
  
    .lg\:focus\:border-blue:focus {
      border-color: #3490DC
    }
  
    .lg\:focus\:border-indigo:focus {
      border-color: #6574CD
    }
  
    .lg\:focus\:border-purple:focus {
      border-color: #9561E2
    }
  
    .lg\:focus\:border-pink:focus {
      border-color: #F66D9B
    }
  
    .lg\:focus\:border-grey-darkest:focus {
      border-color: #3D4852
    }
  
    .lg\:focus\:border-grey-darker:focus {
      border-color: #606F7B
    }
  
    .lg\:focus\:border-grey-dark:focus {
      border-color: #8795A1
    }
  
    .lg\:focus\:border-grey:focus {
      border-color: #B8C2CC
    }
  
    .lg\:focus\:border-grey-light:focus {
      border-color: #DAE1E7
    }
  
    .lg\:focus\:border-grey-lighter:focus {
      border-color: #F1F5F8
    }
  
    .lg\:focus\:border-grey-lightest:focus {
      border-color: #F8FAFC
    }
  
    .lg\:focus\:border-red-darkest:focus {
      border-color: #3B0D0C
    }
  
    .lg\:focus\:border-red-darker:focus {
      border-color: #621B18
    }
  
    .lg\:focus\:border-red-dark:focus {
      border-color: #CC1F1A
    }
  
    .lg\:focus\:border-red-light:focus {
      border-color: #EF5753
    }
  
    .lg\:focus\:border-red-lighter:focus {
      border-color: #F9ACAA
    }
  
    .lg\:focus\:border-red-lightest:focus {
      border-color: #FCEBEA
    }
  
    .lg\:focus\:border-orange-darkest:focus {
      border-color: #462A16
    }
  
    .lg\:focus\:border-orange-darker:focus {
      border-color: #613B1F
    }
  
    .lg\:focus\:border-orange-dark:focus {
      border-color: #DE751F
    }
  
    .lg\:focus\:border-orange-light:focus {
      border-color: #FAAD63
    }
  
    .lg\:focus\:border-orange-lighter:focus {
      border-color: #FCD9B6
    }
  
    .lg\:focus\:border-orange-lightest:focus {
      border-color: #FFF5EB
    }
  
    .lg\:focus\:border-yellow-darkest:focus {
      border-color: #453411
    }
  
    .lg\:focus\:border-yellow-darker:focus {
      border-color: #684F1D
    }
  
    .lg\:focus\:border-yellow-dark:focus {
      border-color: #F2D024
    }
  
    .lg\:focus\:border-yellow-light:focus {
      border-color: #FFF382
    }
  
    .lg\:focus\:border-yellow-lighter:focus {
      border-color: #FFF9C2
    }
  
    .lg\:focus\:border-yellow-lightest:focus {
      border-color: #FCFBEB
    }
  
    .lg\:focus\:border-green-darkest:focus {
      border-color: #0F2F21
    }
  
    .lg\:focus\:border-green-darker:focus {
      border-color: #1A4731
    }
  
    .lg\:focus\:border-green-dark:focus {
      border-color: #1F9D55
    }
  
    .lg\:focus\:border-green-light:focus {
      border-color: #51D88A
    }
  
    .lg\:focus\:border-green-lighter:focus {
      border-color: #A2F5BF
    }
  
    .lg\:focus\:border-green-lightest:focus {
      border-color: #E3FCEC
    }
  
    .lg\:focus\:border-teal-darkest:focus {
      border-color: #0D3331
    }
  
    .lg\:focus\:border-teal-darker:focus {
      border-color: #20504F
    }
  
    .lg\:focus\:border-teal-dark:focus {
      border-color: #38A89D
    }
  
    .lg\:focus\:border-teal-light:focus {
      border-color: #64D5CA
    }
  
    .lg\:focus\:border-teal-lighter:focus {
      border-color: #A0F0ED
    }
  
    .lg\:focus\:border-teal-lightest:focus {
      border-color: #E8FFFE
    }
  
    .lg\:focus\:border-blue-darkest:focus {
      border-color: #12283A
    }
  
    .lg\:focus\:border-blue-darker:focus {
      border-color: #1C3D5A
    }
  
    .lg\:focus\:border-blue-dark:focus {
      border-color: #2779BD
    }
  
    .lg\:focus\:border-blue-light:focus {
      border-color: #6CB2EB
    }
  
    .lg\:focus\:border-blue-lighter:focus {
      border-color: #BCDEFA
    }
  
    .lg\:focus\:border-blue-lightest:focus {
      border-color: #EFF8FF
    }
  
    .lg\:focus\:border-indigo-darkest:focus {
      border-color: #191E38
    }
  
    .lg\:focus\:border-indigo-darker:focus {
      border-color: #2F365F
    }
  
    .lg\:focus\:border-indigo-dark:focus {
      border-color: #5661B3
    }
  
    .lg\:focus\:border-indigo-light:focus {
      border-color: #7886D7
    }
  
    .lg\:focus\:border-indigo-lighter:focus {
      border-color: #B2B7FF
    }
  
    .lg\:focus\:border-indigo-lightest:focus {
      border-color: #E6E8FF
    }
  
    .lg\:focus\:border-purple-darkest:focus {
      border-color: #21183C
    }
  
    .lg\:focus\:border-purple-darker:focus {
      border-color: #382B5F
    }
  
    .lg\:focus\:border-purple-dark:focus {
      border-color: #794ACF
    }
  
    .lg\:focus\:border-purple-light:focus {
      border-color: #A779E9
    }
  
    .lg\:focus\:border-purple-lighter:focus {
      border-color: #D6BBFC
    }
  
    .lg\:focus\:border-purple-lightest:focus {
      border-color: #F3EBFF
    }
  
    .lg\:focus\:border-pink-darkest:focus {
      border-color: #451225
    }
  
    .lg\:focus\:border-pink-darker:focus {
      border-color: #6F213F
    }
  
    .lg\:focus\:border-pink-dark:focus {
      border-color: #EB5286
    }
  
    .lg\:focus\:border-pink-light:focus {
      border-color: #FA7EA8
    }
  
    .lg\:focus\:border-pink-lighter:focus {
      border-color: #FFBBCA
    }
  
    .lg\:focus\:border-pink-lightest:focus {
      border-color: #FFEBEF
    }
  
    .lg\:rounded-2 {
      border-radius: .2rem
    }
  
    .lg\:rounded-4 {
      border-radius: .4rem
    }
  
    .lg\:rounded-6 {
      border-radius: .6rem
    }
  
    .lg\:rounded-8 {
      border-radius: .8rem
    }
  
    .lg\:rounded-12 {
      border-radius: 1.2rem
    }
  
    .lg\:rounded-16 {
      border-radius: 1.6rem
    }
  
    .lg\:rounded-20 {
      border-radius: 2rem
    }
  
    .lg\:rounded-24 {
      border-radius: 2.4rem
    }
  
    .lg\:rounded-28 {
      border-radius: 2.8rem
    }
  
    .lg\:rounded-32 {
      border-radius: 3.2rem
    }
  
    .lg\:rounded-none {
      border-radius: 0
    }
  
    .lg\:rounded-sm {
      border-radius: .2rem
    }
  
    .lg\:rounded {
      border-radius: .4rem
    }
  
    .lg\:rounded-lg {
      border-radius: .8rem
    }
  
    .lg\:rounded-full {
      border-radius: 9999px
    }
  
    .lg\:rounded-t-2 {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .lg\:rounded-r-2 {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .lg\:rounded-b-2 {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-l-2 {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-t-4 {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .lg\:rounded-r-4 {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .lg\:rounded-b-4 {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-l-4 {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-t-6 {
      border-top-left-radius: .6rem;
      border-top-right-radius: .6rem
    }
  
    .lg\:rounded-r-6 {
      border-top-right-radius: .6rem;
      border-bottom-right-radius: .6rem
    }
  
    .lg\:rounded-b-6 {
      border-bottom-right-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .lg\:rounded-l-6 {
      border-top-left-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .lg\:rounded-t-8 {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .lg\:rounded-r-8 {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .lg\:rounded-b-8 {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-l-8 {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-t-12 {
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem
    }
  
    .lg\:rounded-r-12 {
      border-top-right-radius: 1.2rem;
      border-bottom-right-radius: 1.2rem
    }
  
    .lg\:rounded-b-12 {
      border-bottom-right-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .lg\:rounded-l-12 {
      border-top-left-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .lg\:rounded-t-16 {
      border-top-left-radius: 1.6rem;
      border-top-right-radius: 1.6rem
    }
  
    .lg\:rounded-r-16 {
      border-top-right-radius: 1.6rem;
      border-bottom-right-radius: 1.6rem
    }
  
    .lg\:rounded-b-16 {
      border-bottom-right-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .lg\:rounded-l-16 {
      border-top-left-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .lg\:rounded-t-20 {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem
    }
  
    .lg\:rounded-r-20 {
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem
    }
  
    .lg\:rounded-b-20 {
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .lg\:rounded-l-20 {
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .lg\:rounded-t-24 {
      border-top-left-radius: 2.4rem;
      border-top-right-radius: 2.4rem
    }
  
    .lg\:rounded-r-24 {
      border-top-right-radius: 2.4rem;
      border-bottom-right-radius: 2.4rem
    }
  
    .lg\:rounded-b-24 {
      border-bottom-right-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .lg\:rounded-l-24 {
      border-top-left-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .lg\:rounded-t-28 {
      border-top-left-radius: 2.8rem;
      border-top-right-radius: 2.8rem
    }
  
    .lg\:rounded-r-28 {
      border-top-right-radius: 2.8rem;
      border-bottom-right-radius: 2.8rem
    }
  
    .lg\:rounded-b-28 {
      border-bottom-right-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .lg\:rounded-l-28 {
      border-top-left-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .lg\:rounded-t-32 {
      border-top-left-radius: 3.2rem;
      border-top-right-radius: 3.2rem
    }
  
    .lg\:rounded-r-32 {
      border-top-right-radius: 3.2rem;
      border-bottom-right-radius: 3.2rem
    }
  
    .lg\:rounded-b-32 {
      border-bottom-right-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .lg\:rounded-l-32 {
      border-top-left-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .lg\:rounded-t-none {
      border-top-left-radius: 0;
      border-top-right-radius: 0
    }
  
    .lg\:rounded-r-none {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0
    }
  
    .lg\:rounded-b-none {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .lg\:rounded-l-none {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .lg\:rounded-t-sm {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .lg\:rounded-r-sm {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .lg\:rounded-b-sm {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-l-sm {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-t {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .lg\:rounded-r {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .lg\:rounded-b {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-l {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-t-lg {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .lg\:rounded-r-lg {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .lg\:rounded-b-lg {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-l-lg {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-t-full {
      border-top-left-radius: 9999px;
      border-top-right-radius: 9999px
    }
  
    .lg\:rounded-r-full {
      border-top-right-radius: 9999px;
      border-bottom-right-radius: 9999px
    }
  
    .lg\:rounded-b-full {
      border-bottom-right-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .lg\:rounded-l-full {
      border-top-left-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .lg\:rounded-tl-2 {
      border-top-left-radius: .2rem
    }
  
    .lg\:rounded-tr-2 {
      border-top-right-radius: .2rem
    }
  
    .lg\:rounded-br-2 {
      border-bottom-right-radius: .2rem
    }
  
    .lg\:rounded-bl-2 {
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-tl-4 {
      border-top-left-radius: .4rem
    }
  
    .lg\:rounded-tr-4 {
      border-top-right-radius: .4rem
    }
  
    .lg\:rounded-br-4 {
      border-bottom-right-radius: .4rem
    }
  
    .lg\:rounded-bl-4 {
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-tl-6 {
      border-top-left-radius: .6rem
    }
  
    .lg\:rounded-tr-6 {
      border-top-right-radius: .6rem
    }
  
    .lg\:rounded-br-6 {
      border-bottom-right-radius: .6rem
    }
  
    .lg\:rounded-bl-6 {
      border-bottom-left-radius: .6rem
    }
  
    .lg\:rounded-tl-8 {
      border-top-left-radius: .8rem
    }
  
    .lg\:rounded-tr-8 {
      border-top-right-radius: .8rem
    }
  
    .lg\:rounded-br-8 {
      border-bottom-right-radius: .8rem
    }
  
    .lg\:rounded-bl-8 {
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-tl-12 {
      border-top-left-radius: 1.2rem
    }
  
    .lg\:rounded-tr-12 {
      border-top-right-radius: 1.2rem
    }
  
    .lg\:rounded-br-12 {
      border-bottom-right-radius: 1.2rem
    }
  
    .lg\:rounded-bl-12 {
      border-bottom-left-radius: 1.2rem
    }
  
    .lg\:rounded-tl-16 {
      border-top-left-radius: 1.6rem
    }
  
    .lg\:rounded-tr-16 {
      border-top-right-radius: 1.6rem
    }
  
    .lg\:rounded-br-16 {
      border-bottom-right-radius: 1.6rem
    }
  
    .lg\:rounded-bl-16 {
      border-bottom-left-radius: 1.6rem
    }
  
    .lg\:rounded-tl-20 {
      border-top-left-radius: 2rem
    }
  
    .lg\:rounded-tr-20 {
      border-top-right-radius: 2rem
    }
  
    .lg\:rounded-br-20 {
      border-bottom-right-radius: 2rem
    }
  
    .lg\:rounded-bl-20 {
      border-bottom-left-radius: 2rem
    }
  
    .lg\:rounded-tl-24 {
      border-top-left-radius: 2.4rem
    }
  
    .lg\:rounded-tr-24 {
      border-top-right-radius: 2.4rem
    }
  
    .lg\:rounded-br-24 {
      border-bottom-right-radius: 2.4rem
    }
  
    .lg\:rounded-bl-24 {
      border-bottom-left-radius: 2.4rem
    }
  
    .lg\:rounded-tl-28 {
      border-top-left-radius: 2.8rem
    }
  
    .lg\:rounded-tr-28 {
      border-top-right-radius: 2.8rem
    }
  
    .lg\:rounded-br-28 {
      border-bottom-right-radius: 2.8rem
    }
  
    .lg\:rounded-bl-28 {
      border-bottom-left-radius: 2.8rem
    }
  
    .lg\:rounded-tl-32 {
      border-top-left-radius: 3.2rem
    }
  
    .lg\:rounded-tr-32 {
      border-top-right-radius: 3.2rem
    }
  
    .lg\:rounded-br-32 {
      border-bottom-right-radius: 3.2rem
    }
  
    .lg\:rounded-bl-32 {
      border-bottom-left-radius: 3.2rem
    }
  
    .lg\:rounded-tl-none {
      border-top-left-radius: 0
    }
  
    .lg\:rounded-tr-none {
      border-top-right-radius: 0
    }
  
    .lg\:rounded-br-none {
      border-bottom-right-radius: 0
    }
  
    .lg\:rounded-bl-none {
      border-bottom-left-radius: 0
    }
  
    .lg\:rounded-tl-sm {
      border-top-left-radius: .2rem
    }
  
    .lg\:rounded-tr-sm {
      border-top-right-radius: .2rem
    }
  
    .lg\:rounded-br-sm {
      border-bottom-right-radius: .2rem
    }
  
    .lg\:rounded-bl-sm {
      border-bottom-left-radius: .2rem
    }
  
    .lg\:rounded-tl {
      border-top-left-radius: .4rem
    }
  
    .lg\:rounded-tr {
      border-top-right-radius: .4rem
    }
  
    .lg\:rounded-br {
      border-bottom-right-radius: .4rem
    }
  
    .lg\:rounded-bl {
      border-bottom-left-radius: .4rem
    }
  
    .lg\:rounded-tl-lg {
      border-top-left-radius: .8rem
    }
  
    .lg\:rounded-tr-lg {
      border-top-right-radius: .8rem
    }
  
    .lg\:rounded-br-lg {
      border-bottom-right-radius: .8rem
    }
  
    .lg\:rounded-bl-lg {
      border-bottom-left-radius: .8rem
    }
  
    .lg\:rounded-tl-full {
      border-top-left-radius: 9999px
    }
  
    .lg\:rounded-tr-full {
      border-top-right-radius: 9999px
    }
  
    .lg\:rounded-br-full {
      border-bottom-right-radius: 9999px
    }
  
    .lg\:rounded-bl-full {
      border-bottom-left-radius: 9999px
    }
  
    .lg\:border-solid {
      border-style: solid
    }
  
    .lg\:border-dashed {
      border-style: dashed
    }
  
    .lg\:border-dotted {
      border-style: dotted
    }
  
    .lg\:border-none {
      border-style: none
    }
  
    .lg\:border-0 {
      border-width: 0
    }
  
    .lg\:border-1 {
      border-width: 1px
    }
  
    .lg\:border-2 {
      border-width: 2px
    }
  
    .lg\:border-3 {
      border-width: 3px
    }
  
    .lg\:border-4 {
      border-width: 4px
    }
  
    .lg\:border-8 {
      border-width: 8px
    }
  
    .lg\:border {
      border-width: 1px
    }
  
    .lg\:border-t-0 {
      border-top-width: 0
    }
  
    .lg\:border-r-0 {
      border-right-width: 0
    }
  
    .lg\:border-b-0 {
      border-bottom-width: 0
    }
  
    .lg\:border-l-0 {
      border-left-width: 0
    }
  
    .lg\:border-t-1 {
      border-top-width: 1px
    }
  
    .lg\:border-r-1 {
      border-right-width: 1px
    }
  
    .lg\:border-b-1 {
      border-bottom-width: 1px
    }
  
    .lg\:border-l-1 {
      border-left-width: 1px
    }
  
    .lg\:border-t-2 {
      border-top-width: 2px
    }
  
    .lg\:border-r-2 {
      border-right-width: 2px
    }
  
    .lg\:border-b-2 {
      border-bottom-width: 2px
    }
  
    .lg\:border-l-2 {
      border-left-width: 2px
    }
  
    .lg\:border-t-3 {
      border-top-width: 3px
    }
  
    .lg\:border-r-3 {
      border-right-width: 3px
    }
  
    .lg\:border-b-3 {
      border-bottom-width: 3px
    }
  
    .lg\:border-l-3 {
      border-left-width: 3px
    }
  
    .lg\:border-t-4 {
      border-top-width: 4px
    }
  
    .lg\:border-r-4 {
      border-right-width: 4px
    }
  
    .lg\:border-b-4 {
      border-bottom-width: 4px
    }
  
    .lg\:border-l-4 {
      border-left-width: 4px
    }
  
    .lg\:border-t-8 {
      border-top-width: 8px
    }
  
    .lg\:border-r-8 {
      border-right-width: 8px
    }
  
    .lg\:border-b-8 {
      border-bottom-width: 8px
    }
  
    .lg\:border-l-8 {
      border-left-width: 8px
    }
  
    .lg\:border-t {
      border-top-width: 1px
    }
  
    .lg\:border-r {
      border-right-width: 1px
    }
  
    .lg\:border-b {
      border-bottom-width: 1px
    }
  
    .lg\:border-l {
      border-left-width: 1px
    }
  
    .lg\:cursor-auto {
      cursor: auto
    }
  
    .lg\:cursor-default {
      cursor: default
    }
  
    .lg\:cursor-pointer {
      cursor: pointer
    }
  
    .lg\:cursor-wait {
      cursor: wait
    }
  
    .lg\:cursor-text {
      cursor: text
    }
  
    .lg\:cursor-move {
      cursor: move
    }
  
    .lg\:cursor-not-allowed {
      cursor: not-allowed
    }
  
    .lg\:block {
      display: block
    }
  
    .lg\:inline-block {
      display: inline-block
    }
  
    .lg\:inline {
      display: inline
    }
  
    .lg\:flex {
      display: flex
    }
  
    .lg\:inline-flex {
      display: inline-flex
    }
  
    .lg\:table {
      display: table
    }
  
    .lg\:table-row {
      display: table-row
    }
  
    .lg\:table-cell {
      display: table-cell
    }
  
    .lg\:hidden {
      display: none
    }
  
    .lg\:hover\:block:hover {
      display: block
    }
  
    .lg\:hover\:inline-block:hover {
      display: inline-block
    }
  
    .lg\:hover\:inline:hover {
      display: inline
    }
  
    .lg\:hover\:flex:hover {
      display: flex
    }
  
    .lg\:hover\:inline-flex:hover {
      display: inline-flex
    }
  
    .lg\:hover\:table:hover {
      display: table
    }
  
    .lg\:hover\:table-row:hover {
      display: table-row
    }
  
    .lg\:hover\:table-cell:hover {
      display: table-cell
    }
  
    .lg\:hover\:hidden:hover {
      display: none
    }
  
    .lg\:focus\:block:focus {
      display: block
    }
  
    .lg\:focus\:inline-block:focus {
      display: inline-block
    }
  
    .lg\:focus\:inline:focus {
      display: inline
    }
  
    .lg\:focus\:flex:focus {
      display: flex
    }
  
    .lg\:focus\:inline-flex:focus {
      display: inline-flex
    }
  
    .lg\:focus\:table:focus {
      display: table
    }
  
    .lg\:focus\:table-row:focus {
      display: table-row
    }
  
    .lg\:focus\:table-cell:focus {
      display: table-cell
    }
  
    .lg\:focus\:hidden:focus {
      display: none
    }
  
    .lg\:flex-row {
      flex-direction: row
    }
  
    .lg\:flex-row-reverse {
      flex-direction: row-reverse
    }
  
    .lg\:flex-col {
      flex-direction: column
    }
  
    .lg\:flex-col-reverse {
      flex-direction: column-reverse
    }
  
    .lg\:flex-wrap {
      flex-wrap: wrap
    }
  
    .lg\:flex-wrap-reverse {
      flex-wrap: wrap-reverse
    }
  
    .lg\:flex-no-wrap {
      flex-wrap: nowrap
    }
  
    .lg\:items-start {
      align-items: flex-start
    }
  
    .lg\:items-end {
      align-items: flex-end
    }
  
    .lg\:items-center {
      align-items: center
    }
  
    .lg\:items-baseline {
      align-items: baseline
    }
  
    .lg\:items-stretch {
      align-items: stretch
    }
  
    .lg\:self-auto {
      align-self: auto
    }
  
    .lg\:self-start {
      align-self: flex-start
    }
  
    .lg\:self-end {
      align-self: flex-end
    }
  
    .lg\:self-center {
      align-self: center
    }
  
    .lg\:self-stretch {
      align-self: stretch
    }
  
    .lg\:justify-start {
      justify-content: flex-start
    }
  
    .lg\:justify-end {
      justify-content: flex-end
    }
  
    .lg\:justify-center {
      justify-content: center
    }
  
    .lg\:justify-between {
      justify-content: space-between
    }
  
    .lg\:justify-around {
      justify-content: space-around
    }
  
    .lg\:content-center {
      align-content: center
    }
  
    .lg\:content-start {
      align-content: flex-start
    }
  
    .lg\:content-end {
      align-content: flex-end
    }
  
    .lg\:content-between {
      align-content: space-between
    }
  
    .lg\:content-around {
      align-content: space-around
    }
  
    .lg\:flex-1 {
      flex: 1 1
    }
  
    .lg\:flex-auto {
      flex: 1 1 auto
    }
  
    .lg\:flex-initial {
      flex: 0 1 auto
    }
  
    .lg\:flex-none {
      flex: none
    }
  
    .lg\:flex-grow-0 {
      flex-grow: 0
    }
  
    .lg\:flex-grow {
      flex-grow: 1
    }
  
    .lg\:flex-shrink-0 {
      flex-shrink: 0
    }
  
    .lg\:flex-shrink {
      flex-shrink: 1
    }
  
    .lg\:order-1 {
      order: 1
    }
  
    .lg\:order-2 {
      order: 2
    }
  
    .lg\:order-3 {
      order: 3
    }
  
    .lg\:order-4 {
      order: 4
    }
  
    .lg\:order-5 {
      order: 5
    }
  
    .lg\:order-6 {
      order: 6
    }
  
    .lg\:order-7 {
      order: 7
    }
  
    .lg\:order-8 {
      order: 8
    }
  
    .lg\:order-9 {
      order: 9
    }
  
    .lg\:order-10 {
      order: 10
    }
  
    .lg\:order-11 {
      order: 11
    }
  
    .lg\:order-12 {
      order: 12
    }
  
    .lg\:order-first {
      order: -9999
    }
  
    .lg\:order-last {
      order: 9999
    }
  
    .lg\:order-none {
      order: 0
    }
  
    .lg\:float-right {
      float: right
    }
  
    .lg\:float-left {
      float: left
    }
  
    .lg\:float-none {
      float: none
    }
  
    .lg\:clearfix:after {
      content: "";
      display: table;
      clear: both
    }
  
    .lg\:font-sans {
      font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
    }
  
    .lg\:font-serif {
      font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
    }
  
    .lg\:font-mono {
      font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
    }
  
    .lg\:font-100 {
      font-weight: 100
    }
  
    .lg\:font-200 {
      font-weight: 200
    }
  
    .lg\:font-300 {
      font-weight: 300
    }
  
    .lg\:font-400 {
      font-weight: 400
    }
  
    .lg\:font-500 {
      font-weight: 500
    }
  
    .lg\:font-600 {
      font-weight: 600
    }
  
    .lg\:font-700 {
      font-weight: 700
    }
  
    .lg\:font-800 {
      font-weight: 800
    }
  
    .lg\:font-900 {
      font-weight: 900
    }
  
    .lg\:font-hairline {
      font-weight: 100
    }
  
    .lg\:font-thin {
      font-weight: 200
    }
  
    .lg\:font-light {
      font-weight: 300
    }
  
    .lg\:font-normal {
      font-weight: 400
    }
  
    .lg\:font-medium {
      font-weight: 500
    }
  
    .lg\:font-semibold {
      font-weight: 600
    }
  
    .lg\:font-bold {
      font-weight: 700
    }
  
    .lg\:font-extrabold {
      font-weight: 800
    }
  
    .lg\:font-black {
      font-weight: 900
    }
  
    .lg\:hover\:font-100:hover {
      font-weight: 100
    }
  
    .lg\:hover\:font-200:hover {
      font-weight: 200
    }
  
    .lg\:hover\:font-300:hover {
      font-weight: 300
    }
  
    .lg\:hover\:font-400:hover {
      font-weight: 400
    }
  
    .lg\:hover\:font-500:hover {
      font-weight: 500
    }
  
    .lg\:hover\:font-600:hover {
      font-weight: 600
    }
  
    .lg\:hover\:font-700:hover {
      font-weight: 700
    }
  
    .lg\:hover\:font-800:hover {
      font-weight: 800
    }
  
    .lg\:hover\:font-900:hover {
      font-weight: 900
    }
  
    .lg\:hover\:font-hairline:hover {
      font-weight: 100
    }
  
    .lg\:hover\:font-thin:hover {
      font-weight: 200
    }
  
    .lg\:hover\:font-light:hover {
      font-weight: 300
    }
  
    .lg\:hover\:font-normal:hover {
      font-weight: 400
    }
  
    .lg\:hover\:font-medium:hover {
      font-weight: 500
    }
  
    .lg\:hover\:font-semibold:hover {
      font-weight: 600
    }
  
    .lg\:hover\:font-bold:hover {
      font-weight: 700
    }
  
    .lg\:hover\:font-extrabold:hover {
      font-weight: 800
    }
  
    .lg\:hover\:font-black:hover {
      font-weight: 900
    }
  
    .lg\:focus\:font-100:focus {
      font-weight: 100
    }
  
    .lg\:focus\:font-200:focus {
      font-weight: 200
    }
  
    .lg\:focus\:font-300:focus {
      font-weight: 300
    }
  
    .lg\:focus\:font-400:focus {
      font-weight: 400
    }
  
    .lg\:focus\:font-500:focus {
      font-weight: 500
    }
  
    .lg\:focus\:font-600:focus {
      font-weight: 600
    }
  
    .lg\:focus\:font-700:focus {
      font-weight: 700
    }
  
    .lg\:focus\:font-800:focus {
      font-weight: 800
    }
  
    .lg\:focus\:font-900:focus {
      font-weight: 900
    }
  
    .lg\:focus\:font-hairline:focus {
      font-weight: 100
    }
  
    .lg\:focus\:font-thin:focus {
      font-weight: 200
    }
  
    .lg\:focus\:font-light:focus {
      font-weight: 300
    }
  
    .lg\:focus\:font-normal:focus {
      font-weight: 400
    }
  
    .lg\:focus\:font-medium:focus {
      font-weight: 500
    }
  
    .lg\:focus\:font-semibold:focus {
      font-weight: 600
    }
  
    .lg\:focus\:font-bold:focus {
      font-weight: 700
    }
  
    .lg\:focus\:font-extrabold:focus {
      font-weight: 800
    }
  
    .lg\:focus\:font-black:focus {
      font-weight: 900
    }
  
    .lg\:h-0 {
      height: 0
    }
  
    .lg\:h-1 {
      height: 0.25rem
    }
  
    .lg\:h-2 {
      height: 0.5rem
    }
  
    .lg\:h-3 {
      height: 0.75rem
    }
  
    .lg\:h-4 {
      height: 0.4rem
    }
  
    .lg\:h-5 {
      height: 1.25rem
    }
  
    .lg\:h-6 {
      height: 0.6rem
    }
  
    .lg\:h-8 {
      height: 0.8rem
    }
  
    .lg\:h-10 {
      height: 2.5rem
    }
  
    .lg\:h-12 {
      height: 1.2rem
    }
  
    .lg\:h-16 {
      height: 1.6rem
    }
  
    .lg\:h-20 {
      height: 2rem
    }
  
    .lg\:h-24 {
      height: 2.4rem
    }
  
    .lg\:h-28 {
      height: 2.8rem
    }
  
    .lg\:h-32 {
      height: 3.2rem
    }
  
    .lg\:h-36 {
      height: 3.6rem
    }
  
    .lg\:h-40 {
      height: 4rem
    }
  
    .lg\:h-44 {
      height: 4.4rem
    }
  
    .lg\:h-48 {
      height: 4.8rem
    }
  
    .lg\:h-52 {
      height: 5.2rem
    }
  
    .lg\:h-56 {
      height: 5.6rem
    }
  
    .lg\:h-60 {
      height: 6rem
    }
  
    .lg\:h-64 {
      height: 6.4rem
    }
  
    .lg\:h-68 {
      height: 6.8rem
    }
  
    .lg\:h-72 {
      height: 7.2rem
    }
  
    .lg\:h-76 {
      height: 7.6rem
    }
  
    .lg\:h-80 {
      height: 8rem
    }
  
    .lg\:h-84 {
      height: 8.4rem
    }
  
    .lg\:h-88 {
      height: 8.8rem
    }
  
    .lg\:h-92 {
      height: 9.2rem
    }
  
    .lg\:h-96 {
      height: 9.6rem
    }
  
    .lg\:h-128 {
      height: 12.8rem
    }
  
    .lg\:h-136 {
      height: 13.6rem
    }
  
    .lg\:h-160 {
      height: 16rem
    }
  
    .lg\:h-192 {
      height: 19.2rem
    }
  
    .lg\:h-200 {
      height: 20rem
    }
  
    .lg\:h-208 {
      height: 20.8rem
    }
  
    .lg\:h-216 {
      height: 21.6rem
    }
  
    .lg\:h-224 {
      height: 22.4rem
    }
  
    .lg\:h-256 {
      height: 25.6rem
    }
  
    .lg\:h-288 {
      height: 28.8rem
    }
  
    .lg\:h-320 {
      height: 32rem
    }
  
    .lg\:h-360 {
      height: 36rem
    }
  
    .lg\:h-384 {
      height: 38.4rem
    }
  
    .lg\:h-400 {
      height: 40rem
    }
  
    .lg\:h-512 {
      height: 51.2rem
    }
  
    .lg\:h-640 {
      height: 64rem
    }
  
    .lg\:h-auto {
      height: auto
    }
  
    .lg\:h-px {
      height: 1px
    }
  
    .lg\:h-xs {
      height: 32rem
    }
  
    .lg\:h-sm {
      height: 48rem
    }
  
    .lg\:h-md {
      height: 64rem
    }
  
    .lg\:h-lg {
      height: 80rem
    }
  
    .lg\:h-xl {
      height: 96rem
    }
  
    .lg\:h-2xl {
      height: 112rem
    }
  
    .lg\:h-3xl {
      height: 128rem
    }
  
    .lg\:h-4xl {
      height: 144rem
    }
  
    .lg\:h-5xl {
      height: 160rem
    }
  
    .lg\:h-full {
      height: 100%
    }
  
    .lg\:h-screen {
      height: 100vh
    }
  
    .lg\:leading-none {
      line-height: 1
    }
  
    .lg\:leading-tight {
      line-height: 1.25
    }
  
    .lg\:leading-snug {
      line-height: 1.375
    }
  
    .lg\:leading-normal {
      line-height: 1.5
    }
  
    .lg\:leading-relaxed {
      line-height: 1.625
    }
  
    .lg\:leading-loose {
      line-height: 2
    }
  
    .lg\:list-inside {
      list-style-position: inside
    }
  
    .lg\:list-outside {
      list-style-position: outside
    }
  
    .lg\:list-none {
      list-style-type: none
    }
  
    .lg\:list-disc {
      list-style-type: disc
    }
  
    .lg\:list-decimal {
      list-style-type: decimal
    }
  
    .lg\:m-0 {
      margin: 0
    }
  
    .lg\:m-1 {
      margin: 0.25rem
    }
  
    .lg\:m-2 {
      margin: 0.5rem
    }
  
    .lg\:m-3 {
      margin: 0.75rem
    }
  
    .lg\:m-4 {
      margin: 0.4rem
    }
  
    .lg\:m-5 {
      margin: 1.25rem
    }
  
    .lg\:m-6 {
      margin: 0.6rem
    }
  
    .lg\:m-8 {
      margin: 0.8rem
    }
  
    .lg\:m-10 {
      margin: 2.5rem
    }
  
    .lg\:m-12 {
      margin: 1.2rem
    }
  
    .lg\:m-16 {
      margin: 1.6rem
    }
  
    .lg\:m-20 {
      margin: 2rem
    }
  
    .lg\:m-24 {
      margin: 2.4rem
    }
  
    .lg\:m-28 {
      margin: 2.8rem
    }
  
    .lg\:m-32 {
      margin: 3.2rem
    }
  
    .lg\:m-36 {
      margin: 3.6rem
    }
  
    .lg\:m-40 {
      margin: 4rem
    }
  
    .lg\:m-44 {
      margin: 4.4rem
    }
  
    .lg\:m-48 {
      margin: 4.8rem
    }
  
    .lg\:m-52 {
      margin: 5.2rem
    }
  
    .lg\:m-56 {
      margin: 5.6rem
    }
  
    .lg\:m-60 {
      margin: 6rem
    }
  
    .lg\:m-64 {
      margin: 6.4rem
    }
  
    .lg\:m-68 {
      margin: 6.8rem
    }
  
    .lg\:m-72 {
      margin: 7.2rem
    }
  
    .lg\:m-76 {
      margin: 7.6rem
    }
  
    .lg\:m-80 {
      margin: 8rem
    }
  
    .lg\:m-84 {
      margin: 8.4rem
    }
  
    .lg\:m-88 {
      margin: 8.8rem
    }
  
    .lg\:m-92 {
      margin: 9.2rem
    }
  
    .lg\:m-96 {
      margin: 9.6rem
    }
  
    .lg\:m-128 {
      margin: 12.8rem
    }
  
    .lg\:m-136 {
      margin: 13.6rem
    }
  
    .lg\:m-160 {
      margin: 16rem
    }
  
    .lg\:m-192 {
      margin: 19.2rem
    }
  
    .lg\:m-200 {
      margin: 20rem
    }
  
    .lg\:m-208 {
      margin: 20.8rem
    }
  
    .lg\:m-216 {
      margin: 21.6rem
    }
  
    .lg\:m-224 {
      margin: 22.4rem
    }
  
    .lg\:m-256 {
      margin: 25.6rem
    }
  
    .lg\:m-288 {
      margin: 28.8rem
    }
  
    .lg\:m-320 {
      margin: 32rem
    }
  
    .lg\:m-360 {
      margin: 36rem
    }
  
    .lg\:m-384 {
      margin: 38.4rem
    }
  
    .lg\:m-400 {
      margin: 40rem
    }
  
    .lg\:m-512 {
      margin: 51.2rem
    }
  
    .lg\:m-640 {
      margin: 64rem
    }
  
    .lg\:m-auto {
      margin: auto
    }
  
    .lg\:m-px {
      margin: 1px
    }
  
    .lg\:m-xs {
      margin: 32rem
    }
  
    .lg\:m-sm {
      margin: 48rem
    }
  
    .lg\:m-md {
      margin: 64rem
    }
  
    .lg\:m-lg {
      margin: 80rem
    }
  
    .lg\:m-xl {
      margin: 96rem
    }
  
    .lg\:m-2xl {
      margin: 112rem
    }
  
    .lg\:m-3xl {
      margin: 128rem
    }
  
    .lg\:m-4xl {
      margin: 144rem
    }
  
    .lg\:m-5xl {
      margin: 160rem
    }
  
    .lg\:-m-1 {
      margin: -0.25rem
    }
  
    .lg\:-m-2 {
      margin: -0.5rem
    }
  
    .lg\:-m-3 {
      margin: -0.75rem
    }
  
    .lg\:-m-4 {
      margin: -0.4rem
    }
  
    .lg\:-m-5 {
      margin: -1.25rem
    }
  
    .lg\:-m-6 {
      margin: -0.6rem
    }
  
    .lg\:-m-8 {
      margin: -0.8rem
    }
  
    .lg\:-m-10 {
      margin: -2.5rem
    }
  
    .lg\:-m-12 {
      margin: -1.2rem
    }
  
    .lg\:-m-16 {
      margin: -1.6rem
    }
  
    .lg\:-m-20 {
      margin: -2rem
    }
  
    .lg\:-m-24 {
      margin: -2.4rem
    }
  
    .lg\:-m-28 {
      margin: -2.8rem
    }
  
    .lg\:-m-32 {
      margin: -3.2rem
    }
  
    .lg\:-m-36 {
      margin: -3.6rem
    }
  
    .lg\:-m-40 {
      margin: -4rem
    }
  
    .lg\:-m-44 {
      margin: -4.4rem
    }
  
    .lg\:-m-48 {
      margin: -4.8rem
    }
  
    .lg\:-m-52 {
      margin: -5.2rem
    }
  
    .lg\:-m-56 {
      margin: -5.6rem
    }
  
    .lg\:-m-60 {
      margin: -6rem
    }
  
    .lg\:-m-64 {
      margin: -6.4rem
    }
  
    .lg\:-m-68 {
      margin: -6.8rem
    }
  
    .lg\:-m-72 {
      margin: -7.2rem
    }
  
    .lg\:-m-76 {
      margin: -7.6rem
    }
  
    .lg\:-m-80 {
      margin: -8rem
    }
  
    .lg\:-m-84 {
      margin: -8.4rem
    }
  
    .lg\:-m-88 {
      margin: -8.8rem
    }
  
    .lg\:-m-92 {
      margin: -9.2rem
    }
  
    .lg\:-m-96 {
      margin: -9.6rem
    }
  
    .lg\:-m-128 {
      margin: -12.8rem
    }
  
    .lg\:-m-136 {
      margin: -13.6rem
    }
  
    .lg\:-m-160 {
      margin: -16rem
    }
  
    .lg\:-m-192 {
      margin: -19.2rem
    }
  
    .lg\:-m-200 {
      margin: -20rem
    }
  
    .lg\:-m-208 {
      margin: -20.8rem
    }
  
    .lg\:-m-216 {
      margin: -21.6rem
    }
  
    .lg\:-m-224 {
      margin: -22.4rem
    }
  
    .lg\:-m-256 {
      margin: -25.6rem
    }
  
    .lg\:-m-288 {
      margin: -28.8rem
    }
  
    .lg\:-m-320 {
      margin: -32rem
    }
  
    .lg\:-m-360 {
      margin: -36rem
    }
  
    .lg\:-m-384 {
      margin: -38.4rem
    }
  
    .lg\:-m-400 {
      margin: -40rem
    }
  
    .lg\:-m-512 {
      margin: -51.2rem
    }
  
    .lg\:-m-640 {
      margin: -64rem
    }
  
    .lg\:-m-px {
      margin: -1px
    }
  
    .lg\:-m-xs {
      margin: -32rem
    }
  
    .lg\:-m-sm {
      margin: -48rem
    }
  
    .lg\:-m-md {
      margin: -64rem
    }
  
    .lg\:-m-lg {
      margin: -80rem
    }
  
    .lg\:-m-xl {
      margin: -96rem
    }
  
    .lg\:-m-2xl {
      margin: -112rem
    }
  
    .lg\:-m-3xl {
      margin: -128rem
    }
  
    .lg\:-m-4xl {
      margin: -144rem
    }
  
    .lg\:-m-5xl {
      margin: -160rem
    }
  
    .lg\:-m-auto {
      margin: -auto
    }
  
    .lg\:my-0 {
      margin-top: 0;
      margin-bottom: 0
    }
  
    .lg\:mx-0 {
      margin-left: 0;
      margin-right: 0
    }
  
    .lg\:my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem
    }
  
    .lg\:mx-1 {
      margin-left: 0.25rem;
      margin-right: 0.25rem
    }
  
    .lg\:my-2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem
    }
  
    .lg\:mx-2 {
      margin-left: 0.5rem;
      margin-right: 0.5rem
    }
  
    .lg\:my-3 {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem
    }
  
    .lg\:mx-3 {
      margin-left: 0.75rem;
      margin-right: 0.75rem
    }
  
    .lg\:my-4 {
      margin-top: 0.4rem;
      margin-bottom: 0.4rem
    }
  
    .lg\:mx-4 {
      margin-left: 0.4rem;
      margin-right: 0.4rem
    }
  
    .lg\:my-5 {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem
    }
  
    .lg\:mx-5 {
      margin-left: 1.25rem;
      margin-right: 1.25rem
    }
  
    .lg\:my-6 {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem
    }
  
    .lg\:mx-6 {
      margin-left: 0.6rem;
      margin-right: 0.6rem
    }
  
    .lg\:my-8 {
      margin-top: 0.8rem;
      margin-bottom: 0.8rem
    }
  
    .lg\:mx-8 {
      margin-left: 0.8rem;
      margin-right: 0.8rem
    }
  
    .lg\:my-10 {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem
    }
  
    .lg\:mx-10 {
      margin-left: 2.5rem;
      margin-right: 2.5rem
    }
  
    .lg\:my-12 {
      margin-top: 1.2rem;
      margin-bottom: 1.2rem
    }
  
    .lg\:mx-12 {
      margin-left: 1.2rem;
      margin-right: 1.2rem
    }
  
    .lg\:my-16 {
      margin-top: 1.6rem;
      margin-bottom: 1.6rem
    }
  
    .lg\:mx-16 {
      margin-left: 1.6rem;
      margin-right: 1.6rem
    }
  
    .lg\:my-20 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
  
    .lg\:mx-20 {
      margin-left: 2rem;
      margin-right: 2rem
    }
  
    .lg\:my-24 {
      margin-top: 2.4rem;
      margin-bottom: 2.4rem
    }
  
    .lg\:mx-24 {
      margin-left: 2.4rem;
      margin-right: 2.4rem
    }
  
    .lg\:my-28 {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem
    }
  
    .lg\:mx-28 {
      margin-left: 2.8rem;
      margin-right: 2.8rem
    }
  
    .lg\:my-32 {
      margin-top: 3.2rem;
      margin-bottom: 3.2rem
    }
  
    .lg\:mx-32 {
      margin-left: 3.2rem;
      margin-right: 3.2rem
    }
  
    .lg\:my-36 {
      margin-top: 3.6rem;
      margin-bottom: 3.6rem
    }
  
    .lg\:mx-36 {
      margin-left: 3.6rem;
      margin-right: 3.6rem
    }
  
    .lg\:my-40 {
      margin-top: 4rem;
      margin-bottom: 4rem
    }
  
    .lg\:mx-40 {
      margin-left: 4rem;
      margin-right: 4rem
    }
  
    .lg\:my-44 {
      margin-top: 4.4rem;
      margin-bottom: 4.4rem
    }
  
    .lg\:mx-44 {
      margin-left: 4.4rem;
      margin-right: 4.4rem
    }
  
    .lg\:my-48 {
      margin-top: 4.8rem;
      margin-bottom: 4.8rem
    }
  
    .lg\:mx-48 {
      margin-left: 4.8rem;
      margin-right: 4.8rem
    }
  
    .lg\:my-52 {
      margin-top: 5.2rem;
      margin-bottom: 5.2rem
    }
  
    .lg\:mx-52 {
      margin-left: 5.2rem;
      margin-right: 5.2rem
    }
  
    .lg\:my-56 {
      margin-top: 5.6rem;
      margin-bottom: 5.6rem
    }
  
    .lg\:mx-56 {
      margin-left: 5.6rem;
      margin-right: 5.6rem
    }
  
    .lg\:my-60 {
      margin-top: 6rem;
      margin-bottom: 6rem
    }
  
    .lg\:mx-60 {
      margin-left: 6rem;
      margin-right: 6rem
    }
  
    .lg\:my-64 {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem
    }
  
    .lg\:mx-64 {
      margin-left: 6.4rem;
      margin-right: 6.4rem
    }
  
    .lg\:my-68 {
      margin-top: 6.8rem;
      margin-bottom: 6.8rem
    }
  
    .lg\:mx-68 {
      margin-left: 6.8rem;
      margin-right: 6.8rem
    }
  
    .lg\:my-72 {
      margin-top: 7.2rem;
      margin-bottom: 7.2rem
    }
  
    .lg\:mx-72 {
      margin-left: 7.2rem;
      margin-right: 7.2rem
    }
  
    .lg\:my-76 {
      margin-top: 7.6rem;
      margin-bottom: 7.6rem
    }
  
    .lg\:mx-76 {
      margin-left: 7.6rem;
      margin-right: 7.6rem
    }
  
    .lg\:my-80 {
      margin-top: 8rem;
      margin-bottom: 8rem
    }
  
    .lg\:mx-80 {
      margin-left: 8rem;
      margin-right: 8rem
    }
  
    .lg\:my-84 {
      margin-top: 8.4rem;
      margin-bottom: 8.4rem
    }
  
    .lg\:mx-84 {
      margin-left: 8.4rem;
      margin-right: 8.4rem
    }
  
    .lg\:my-88 {
      margin-top: 8.8rem;
      margin-bottom: 8.8rem
    }
  
    .lg\:mx-88 {
      margin-left: 8.8rem;
      margin-right: 8.8rem
    }
  
    .lg\:my-92 {
      margin-top: 9.2rem;
      margin-bottom: 9.2rem
    }
  
    .lg\:mx-92 {
      margin-left: 9.2rem;
      margin-right: 9.2rem
    }
  
    .lg\:my-96 {
      margin-top: 9.6rem;
      margin-bottom: 9.6rem
    }
  
    .lg\:mx-96 {
      margin-left: 9.6rem;
      margin-right: 9.6rem
    }
  
    .lg\:my-128 {
      margin-top: 12.8rem;
      margin-bottom: 12.8rem
    }
  
    .lg\:mx-128 {
      margin-left: 12.8rem;
      margin-right: 12.8rem
    }
  
    .lg\:my-136 {
      margin-top: 13.6rem;
      margin-bottom: 13.6rem
    }
  
    .lg\:mx-136 {
      margin-left: 13.6rem;
      margin-right: 13.6rem
    }
  
    .lg\:my-160 {
      margin-top: 16rem;
      margin-bottom: 16rem
    }
  
    .lg\:mx-160 {
      margin-left: 16rem;
      margin-right: 16rem
    }
  
    .lg\:my-192 {
      margin-top: 19.2rem;
      margin-bottom: 19.2rem
    }
  
    .lg\:mx-192 {
      margin-left: 19.2rem;
      margin-right: 19.2rem
    }
  
    .lg\:my-200 {
      margin-top: 20rem;
      margin-bottom: 20rem
    }
  
    .lg\:mx-200 {
      margin-left: 20rem;
      margin-right: 20rem
    }
  
    .lg\:my-208 {
      margin-top: 20.8rem;
      margin-bottom: 20.8rem
    }
  
    .lg\:mx-208 {
      margin-left: 20.8rem;
      margin-right: 20.8rem
    }
  
    .lg\:my-216 {
      margin-top: 21.6rem;
      margin-bottom: 21.6rem
    }
  
    .lg\:mx-216 {
      margin-left: 21.6rem;
      margin-right: 21.6rem
    }
  
    .lg\:my-224 {
      margin-top: 22.4rem;
      margin-bottom: 22.4rem
    }
  
    .lg\:mx-224 {
      margin-left: 22.4rem;
      margin-right: 22.4rem
    }
  
    .lg\:my-256 {
      margin-top: 25.6rem;
      margin-bottom: 25.6rem
    }
  
    .lg\:mx-256 {
      margin-left: 25.6rem;
      margin-right: 25.6rem
    }
  
    .lg\:my-288 {
      margin-top: 28.8rem;
      margin-bottom: 28.8rem
    }
  
    .lg\:mx-288 {
      margin-left: 28.8rem;
      margin-right: 28.8rem
    }
  
    .lg\:my-320 {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .lg\:mx-320 {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .lg\:my-360 {
      margin-top: 36rem;
      margin-bottom: 36rem
    }
  
    .lg\:mx-360 {
      margin-left: 36rem;
      margin-right: 36rem
    }
  
    .lg\:my-384 {
      margin-top: 38.4rem;
      margin-bottom: 38.4rem
    }
  
    .lg\:mx-384 {
      margin-left: 38.4rem;
      margin-right: 38.4rem
    }
  
    .lg\:my-400 {
      margin-top: 40rem;
      margin-bottom: 40rem
    }
  
    .lg\:mx-400 {
      margin-left: 40rem;
      margin-right: 40rem
    }
  
    .lg\:my-512 {
      margin-top: 51.2rem;
      margin-bottom: 51.2rem
    }
  
    .lg\:mx-512 {
      margin-left: 51.2rem;
      margin-right: 51.2rem
    }
  
    .lg\:my-640 {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .lg\:mx-640 {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .lg\:my-auto {
      margin-top: auto;
      margin-bottom: auto
    }
  
    .lg\:mx-auto {
      margin-left: auto;
      margin-right: auto
    }
  
    .lg\:my-px {
      margin-top: 1px;
      margin-bottom: 1px
    }
  
    .lg\:mx-px {
      margin-left: 1px;
      margin-right: 1px
    }
  
    .lg\:my-xs {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .lg\:mx-xs {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .lg\:my-sm {
      margin-top: 48rem;
      margin-bottom: 48rem
    }
  
    .lg\:mx-sm {
      margin-left: 48rem;
      margin-right: 48rem
    }
  
    .lg\:my-md {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .lg\:mx-md {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .lg\:my-lg {
      margin-top: 80rem;
      margin-bottom: 80rem
    }
  
    .lg\:mx-lg {
      margin-left: 80rem;
      margin-right: 80rem
    }
  
    .lg\:my-xl {
      margin-top: 96rem;
      margin-bottom: 96rem
    }
  
    .lg\:mx-xl {
      margin-left: 96rem;
      margin-right: 96rem
    }
  
    .lg\:my-2xl {
      margin-top: 112rem;
      margin-bottom: 112rem
    }
  
    .lg\:mx-2xl {
      margin-left: 112rem;
      margin-right: 112rem
    }
  
    .lg\:my-3xl {
      margin-top: 128rem;
      margin-bottom: 128rem
    }
  
    .lg\:mx-3xl {
      margin-left: 128rem;
      margin-right: 128rem
    }
  
    .lg\:my-4xl {
      margin-top: 144rem;
      margin-bottom: 144rem
    }
  
    .lg\:mx-4xl {
      margin-left: 144rem;
      margin-right: 144rem
    }
  
    .lg\:my-5xl {
      margin-top: 160rem;
      margin-bottom: 160rem
    }
  
    .lg\:mx-5xl {
      margin-left: 160rem;
      margin-right: 160rem
    }
  
    .lg\:-my-1 {
      margin-top: -0.25rem;
      margin-bottom: -0.25rem
    }
  
    .lg\:-mx-1 {
      margin-left: -0.25rem;
      margin-right: -0.25rem
    }
  
    .lg\:-my-2 {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem
    }
  
    .lg\:-mx-2 {
      margin-left: -0.5rem;
      margin-right: -0.5rem
    }
  
    .lg\:-my-3 {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem
    }
  
    .lg\:-mx-3 {
      margin-left: -0.75rem;
      margin-right: -0.75rem
    }
  
    .lg\:-my-4 {
      margin-top: -0.4rem;
      margin-bottom: -0.4rem
    }
  
    .lg\:-mx-4 {
      margin-left: -0.4rem;
      margin-right: -0.4rem
    }
  
    .lg\:-my-5 {
      margin-top: -1.25rem;
      margin-bottom: -1.25rem
    }
  
    .lg\:-mx-5 {
      margin-left: -1.25rem;
      margin-right: -1.25rem
    }
  
    .lg\:-my-6 {
      margin-top: -0.6rem;
      margin-bottom: -0.6rem
    }
  
    .lg\:-mx-6 {
      margin-left: -0.6rem;
      margin-right: -0.6rem
    }
  
    .lg\:-my-8 {
      margin-top: -0.8rem;
      margin-bottom: -0.8rem
    }
  
    .lg\:-mx-8 {
      margin-left: -0.8rem;
      margin-right: -0.8rem
    }
  
    .lg\:-my-10 {
      margin-top: -2.5rem;
      margin-bottom: -2.5rem
    }
  
    .lg\:-mx-10 {
      margin-left: -2.5rem;
      margin-right: -2.5rem
    }
  
    .lg\:-my-12 {
      margin-top: -1.2rem;
      margin-bottom: -1.2rem
    }
  
    .lg\:-mx-12 {
      margin-left: -1.2rem;
      margin-right: -1.2rem
    }
  
    .lg\:-my-16 {
      margin-top: -1.6rem;
      margin-bottom: -1.6rem
    }
  
    .lg\:-mx-16 {
      margin-left: -1.6rem;
      margin-right: -1.6rem
    }
  
    .lg\:-my-20 {
      margin-top: -2rem;
      margin-bottom: -2rem
    }
  
    .lg\:-mx-20 {
      margin-left: -2rem;
      margin-right: -2rem
    }
  
    .lg\:-my-24 {
      margin-top: -2.4rem;
      margin-bottom: -2.4rem
    }
  
    .lg\:-mx-24 {
      margin-left: -2.4rem;
      margin-right: -2.4rem
    }
  
    .lg\:-my-28 {
      margin-top: -2.8rem;
      margin-bottom: -2.8rem
    }
  
    .lg\:-mx-28 {
      margin-left: -2.8rem;
      margin-right: -2.8rem
    }
  
    .lg\:-my-32 {
      margin-top: -3.2rem;
      margin-bottom: -3.2rem
    }
  
    .lg\:-mx-32 {
      margin-left: -3.2rem;
      margin-right: -3.2rem
    }
  
    .lg\:-my-36 {
      margin-top: -3.6rem;
      margin-bottom: -3.6rem
    }
  
    .lg\:-mx-36 {
      margin-left: -3.6rem;
      margin-right: -3.6rem
    }
  
    .lg\:-my-40 {
      margin-top: -4rem;
      margin-bottom: -4rem
    }
  
    .lg\:-mx-40 {
      margin-left: -4rem;
      margin-right: -4rem
    }
  
    .lg\:-my-44 {
      margin-top: -4.4rem;
      margin-bottom: -4.4rem
    }
  
    .lg\:-mx-44 {
      margin-left: -4.4rem;
      margin-right: -4.4rem
    }
  
    .lg\:-my-48 {
      margin-top: -4.8rem;
      margin-bottom: -4.8rem
    }
  
    .lg\:-mx-48 {
      margin-left: -4.8rem;
      margin-right: -4.8rem
    }
  
    .lg\:-my-52 {
      margin-top: -5.2rem;
      margin-bottom: -5.2rem
    }
  
    .lg\:-mx-52 {
      margin-left: -5.2rem;
      margin-right: -5.2rem
    }
  
    .lg\:-my-56 {
      margin-top: -5.6rem;
      margin-bottom: -5.6rem
    }
  
    .lg\:-mx-56 {
      margin-left: -5.6rem;
      margin-right: -5.6rem
    }
  
    .lg\:-my-60 {
      margin-top: -6rem;
      margin-bottom: -6rem
    }
  
    .lg\:-mx-60 {
      margin-left: -6rem;
      margin-right: -6rem
    }
  
    .lg\:-my-64 {
      margin-top: -6.4rem;
      margin-bottom: -6.4rem
    }
  
    .lg\:-mx-64 {
      margin-left: -6.4rem;
      margin-right: -6.4rem
    }
  
    .lg\:-my-68 {
      margin-top: -6.8rem;
      margin-bottom: -6.8rem
    }
  
    .lg\:-mx-68 {
      margin-left: -6.8rem;
      margin-right: -6.8rem
    }
  
    .lg\:-my-72 {
      margin-top: -7.2rem;
      margin-bottom: -7.2rem
    }
  
    .lg\:-mx-72 {
      margin-left: -7.2rem;
      margin-right: -7.2rem
    }
  
    .lg\:-my-76 {
      margin-top: -7.6rem;
      margin-bottom: -7.6rem
    }
  
    .lg\:-mx-76 {
      margin-left: -7.6rem;
      margin-right: -7.6rem
    }
  
    .lg\:-my-80 {
      margin-top: -8rem;
      margin-bottom: -8rem
    }
  
    .lg\:-mx-80 {
      margin-left: -8rem;
      margin-right: -8rem
    }
  
    .lg\:-my-84 {
      margin-top: -8.4rem;
      margin-bottom: -8.4rem
    }
  
    .lg\:-mx-84 {
      margin-left: -8.4rem;
      margin-right: -8.4rem
    }
  
    .lg\:-my-88 {
      margin-top: -8.8rem;
      margin-bottom: -8.8rem
    }
  
    .lg\:-mx-88 {
      margin-left: -8.8rem;
      margin-right: -8.8rem
    }
  
    .lg\:-my-92 {
      margin-top: -9.2rem;
      margin-bottom: -9.2rem
    }
  
    .lg\:-mx-92 {
      margin-left: -9.2rem;
      margin-right: -9.2rem
    }
  
    .lg\:-my-96 {
      margin-top: -9.6rem;
      margin-bottom: -9.6rem
    }
  
    .lg\:-mx-96 {
      margin-left: -9.6rem;
      margin-right: -9.6rem
    }
  
    .lg\:-my-128 {
      margin-top: -12.8rem;
      margin-bottom: -12.8rem
    }
  
    .lg\:-mx-128 {
      margin-left: -12.8rem;
      margin-right: -12.8rem
    }
  
    .lg\:-my-136 {
      margin-top: -13.6rem;
      margin-bottom: -13.6rem
    }
  
    .lg\:-mx-136 {
      margin-left: -13.6rem;
      margin-right: -13.6rem
    }
  
    .lg\:-my-160 {
      margin-top: -16rem;
      margin-bottom: -16rem
    }
  
    .lg\:-mx-160 {
      margin-left: -16rem;
      margin-right: -16rem
    }
  
    .lg\:-my-192 {
      margin-top: -19.2rem;
      margin-bottom: -19.2rem
    }
  
    .lg\:-mx-192 {
      margin-left: -19.2rem;
      margin-right: -19.2rem
    }
  
    .lg\:-my-200 {
      margin-top: -20rem;
      margin-bottom: -20rem
    }
  
    .lg\:-mx-200 {
      margin-left: -20rem;
      margin-right: -20rem
    }
  
    .lg\:-my-208 {
      margin-top: -20.8rem;
      margin-bottom: -20.8rem
    }
  
    .lg\:-mx-208 {
      margin-left: -20.8rem;
      margin-right: -20.8rem
    }
  
    .lg\:-my-216 {
      margin-top: -21.6rem;
      margin-bottom: -21.6rem
    }
  
    .lg\:-mx-216 {
      margin-left: -21.6rem;
      margin-right: -21.6rem
    }
  
    .lg\:-my-224 {
      margin-top: -22.4rem;
      margin-bottom: -22.4rem
    }
  
    .lg\:-mx-224 {
      margin-left: -22.4rem;
      margin-right: -22.4rem
    }
  
    .lg\:-my-256 {
      margin-top: -25.6rem;
      margin-bottom: -25.6rem
    }
  
    .lg\:-mx-256 {
      margin-left: -25.6rem;
      margin-right: -25.6rem
    }
  
    .lg\:-my-288 {
      margin-top: -28.8rem;
      margin-bottom: -28.8rem
    }
  
    .lg\:-mx-288 {
      margin-left: -28.8rem;
      margin-right: -28.8rem
    }
  
    .lg\:-my-320 {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .lg\:-mx-320 {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .lg\:-my-360 {
      margin-top: -36rem;
      margin-bottom: -36rem
    }
  
    .lg\:-mx-360 {
      margin-left: -36rem;
      margin-right: -36rem
    }
  
    .lg\:-my-384 {
      margin-top: -38.4rem;
      margin-bottom: -38.4rem
    }
  
    .lg\:-mx-384 {
      margin-left: -38.4rem;
      margin-right: -38.4rem
    }
  
    .lg\:-my-400 {
      margin-top: -40rem;
      margin-bottom: -40rem
    }
  
    .lg\:-mx-400 {
      margin-left: -40rem;
      margin-right: -40rem
    }
  
    .lg\:-my-512 {
      margin-top: -51.2rem;
      margin-bottom: -51.2rem
    }
  
    .lg\:-mx-512 {
      margin-left: -51.2rem;
      margin-right: -51.2rem
    }
  
    .lg\:-my-640 {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .lg\:-mx-640 {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .lg\:-my-px {
      margin-top: -1px;
      margin-bottom: -1px
    }
  
    .lg\:-mx-px {
      margin-left: -1px;
      margin-right: -1px
    }
  
    .lg\:-my-xs {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .lg\:-mx-xs {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .lg\:-my-sm {
      margin-top: -48rem;
      margin-bottom: -48rem
    }
  
    .lg\:-mx-sm {
      margin-left: -48rem;
      margin-right: -48rem
    }
  
    .lg\:-my-md {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .lg\:-mx-md {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .lg\:-my-lg {
      margin-top: -80rem;
      margin-bottom: -80rem
    }
  
    .lg\:-mx-lg {
      margin-left: -80rem;
      margin-right: -80rem
    }
  
    .lg\:-my-xl {
      margin-top: -96rem;
      margin-bottom: -96rem
    }
  
    .lg\:-mx-xl {
      margin-left: -96rem;
      margin-right: -96rem
    }
  
    .lg\:-my-2xl {
      margin-top: -112rem;
      margin-bottom: -112rem
    }
  
    .lg\:-mx-2xl {
      margin-left: -112rem;
      margin-right: -112rem
    }
  
    .lg\:-my-3xl {
      margin-top: -128rem;
      margin-bottom: -128rem
    }
  
    .lg\:-mx-3xl {
      margin-left: -128rem;
      margin-right: -128rem
    }
  
    .lg\:-my-4xl {
      margin-top: -144rem;
      margin-bottom: -144rem
    }
  
    .lg\:-mx-4xl {
      margin-left: -144rem;
      margin-right: -144rem
    }
  
    .lg\:-my-5xl {
      margin-top: -160rem;
      margin-bottom: -160rem
    }
  
    .lg\:-mx-5xl {
      margin-left: -160rem;
      margin-right: -160rem
    }
  
    .lg\:-my-auto {
      margin-top: -auto;
      margin-bottom: -auto
    }
  
    .lg\:-mx-auto {
      margin-left: -auto;
      margin-right: -auto
    }
  
    .lg\:mt-0 {
      margin-top: 0
    }
  
    .lg\:mr-0 {
      margin-right: 0
    }
  
    .lg\:mb-0 {
      margin-bottom: 0
    }
  
    .lg\:ml-0 {
      margin-left: 0
    }
  
    .lg\:mt-1 {
      margin-top: 0.25rem
    }
  
    .lg\:mr-1 {
      margin-right: 0.25rem
    }
  
    .lg\:mb-1 {
      margin-bottom: 0.25rem
    }
  
    .lg\:ml-1 {
      margin-left: 0.25rem
    }
  
    .lg\:mt-2 {
      margin-top: 0.5rem
    }
  
    .lg\:mr-2 {
      margin-right: 0.5rem
    }
  
    .lg\:mb-2 {
      margin-bottom: 0.5rem
    }
  
    .lg\:ml-2 {
      margin-left: 0.5rem
    }
  
    .lg\:mt-3 {
      margin-top: 0.75rem
    }
  
    .lg\:mr-3 {
      margin-right: 0.75rem
    }
  
    .lg\:mb-3 {
      margin-bottom: 0.75rem
    }
  
    .lg\:ml-3 {
      margin-left: 0.75rem
    }
  
    .lg\:mt-4 {
      margin-top: 0.4rem
    }
  
    .lg\:mr-4 {
      margin-right: 0.4rem
    }
  
    .lg\:mb-4 {
      margin-bottom: 0.4rem
    }
  
    .lg\:ml-4 {
      margin-left: 0.4rem
    }
  
    .lg\:mt-5 {
      margin-top: 1.25rem
    }
  
    .lg\:mr-5 {
      margin-right: 1.25rem
    }
  
    .lg\:mb-5 {
      margin-bottom: 1.25rem
    }
  
    .lg\:ml-5 {
      margin-left: 1.25rem
    }
  
    .lg\:mt-6 {
      margin-top: 0.6rem
    }
  
    .lg\:mr-6 {
      margin-right: 0.6rem
    }
  
    .lg\:mb-6 {
      margin-bottom: 0.6rem
    }
  
    .lg\:ml-6 {
      margin-left: 0.6rem
    }
  
    .lg\:mt-8 {
      margin-top: 0.8rem
    }
  
    .lg\:mr-8 {
      margin-right: 0.8rem
    }
  
    .lg\:mb-8 {
      margin-bottom: 0.8rem
    }
  
    .lg\:ml-8 {
      margin-left: 0.8rem
    }
  
    .lg\:mt-10 {
      margin-top: 2.5rem
    }
  
    .lg\:mr-10 {
      margin-right: 2.5rem
    }
  
    .lg\:mb-10 {
      margin-bottom: 2.5rem
    }
  
    .lg\:ml-10 {
      margin-left: 2.5rem
    }
  
    .lg\:mt-12 {
      margin-top: 1.2rem
    }
  
    .lg\:mr-12 {
      margin-right: 1.2rem
    }
  
    .lg\:mb-12 {
      margin-bottom: 1.2rem
    }
  
    .lg\:ml-12 {
      margin-left: 1.2rem
    }
  
    .lg\:mt-16 {
      margin-top: 1.6rem
    }
  
    .lg\:mr-16 {
      margin-right: 1.6rem
    }
  
    .lg\:mb-16 {
      margin-bottom: 1.6rem
    }
  
    .lg\:ml-16 {
      margin-left: 1.6rem
    }
  
    .lg\:mt-20 {
      margin-top: 2rem
    }
  
    .lg\:mr-20 {
      margin-right: 2rem
    }
  
    .lg\:mb-20 {
      margin-bottom: 2rem
    }
  
    .lg\:ml-20 {
      margin-left: 2rem
    }
  
    .lg\:mt-24 {
      margin-top: 2.4rem
    }
  
    .lg\:mr-24 {
      margin-right: 2.4rem
    }
  
    .lg\:mb-24 {
      margin-bottom: 2.4rem
    }
  
    .lg\:ml-24 {
      margin-left: 2.4rem
    }
  
    .lg\:mt-28 {
      margin-top: 2.8rem
    }
  
    .lg\:mr-28 {
      margin-right: 2.8rem
    }
  
    .lg\:mb-28 {
      margin-bottom: 2.8rem
    }
  
    .lg\:ml-28 {
      margin-left: 2.8rem
    }
  
    .lg\:mt-32 {
      margin-top: 3.2rem
    }
  
    .lg\:mr-32 {
      margin-right: 3.2rem
    }
  
    .lg\:mb-32 {
      margin-bottom: 3.2rem
    }
  
    .lg\:ml-32 {
      margin-left: 3.2rem
    }
  
    .lg\:mt-36 {
      margin-top: 3.6rem
    }
  
    .lg\:mr-36 {
      margin-right: 3.6rem
    }
  
    .lg\:mb-36 {
      margin-bottom: 3.6rem
    }
  
    .lg\:ml-36 {
      margin-left: 3.6rem
    }
  
    .lg\:mt-40 {
      margin-top: 4rem
    }
  
    .lg\:mr-40 {
      margin-right: 4rem
    }
  
    .lg\:mb-40 {
      margin-bottom: 4rem
    }
  
    .lg\:ml-40 {
      margin-left: 4rem
    }
  
    .lg\:mt-44 {
      margin-top: 4.4rem
    }
  
    .lg\:mr-44 {
      margin-right: 4.4rem
    }
  
    .lg\:mb-44 {
      margin-bottom: 4.4rem
    }
  
    .lg\:ml-44 {
      margin-left: 4.4rem
    }
  
    .lg\:mt-48 {
      margin-top: 4.8rem
    }
  
    .lg\:mr-48 {
      margin-right: 4.8rem
    }
  
    .lg\:mb-48 {
      margin-bottom: 4.8rem
    }
  
    .lg\:ml-48 {
      margin-left: 4.8rem
    }
  
    .lg\:mt-52 {
      margin-top: 5.2rem
    }
  
    .lg\:mr-52 {
      margin-right: 5.2rem
    }
  
    .lg\:mb-52 {
      margin-bottom: 5.2rem
    }
  
    .lg\:ml-52 {
      margin-left: 5.2rem
    }
  
    .lg\:mt-56 {
      margin-top: 5.6rem
    }
  
    .lg\:mr-56 {
      margin-right: 5.6rem
    }
  
    .lg\:mb-56 {
      margin-bottom: 5.6rem
    }
  
    .lg\:ml-56 {
      margin-left: 5.6rem
    }
  
    .lg\:mt-60 {
      margin-top: 6rem
    }
  
    .lg\:mr-60 {
      margin-right: 6rem
    }
  
    .lg\:mb-60 {
      margin-bottom: 6rem
    }
  
    .lg\:ml-60 {
      margin-left: 6rem
    }
  
    .lg\:mt-64 {
      margin-top: 6.4rem
    }
  
    .lg\:mr-64 {
      margin-right: 6.4rem
    }
  
    .lg\:mb-64 {
      margin-bottom: 6.4rem
    }
  
    .lg\:ml-64 {
      margin-left: 6.4rem
    }
  
    .lg\:mt-68 {
      margin-top: 6.8rem
    }
  
    .lg\:mr-68 {
      margin-right: 6.8rem
    }
  
    .lg\:mb-68 {
      margin-bottom: 6.8rem
    }
  
    .lg\:ml-68 {
      margin-left: 6.8rem
    }
  
    .lg\:mt-72 {
      margin-top: 7.2rem
    }
  
    .lg\:mr-72 {
      margin-right: 7.2rem
    }
  
    .lg\:mb-72 {
      margin-bottom: 7.2rem
    }
  
    .lg\:ml-72 {
      margin-left: 7.2rem
    }
  
    .lg\:mt-76 {
      margin-top: 7.6rem
    }
  
    .lg\:mr-76 {
      margin-right: 7.6rem
    }
  
    .lg\:mb-76 {
      margin-bottom: 7.6rem
    }
  
    .lg\:ml-76 {
      margin-left: 7.6rem
    }
  
    .lg\:mt-80 {
      margin-top: 8rem
    }
  
    .lg\:mr-80 {
      margin-right: 8rem
    }
  
    .lg\:mb-80 {
      margin-bottom: 8rem
    }
  
    .lg\:ml-80 {
      margin-left: 8rem
    }
  
    .lg\:mt-84 {
      margin-top: 8.4rem
    }
  
    .lg\:mr-84 {
      margin-right: 8.4rem
    }
  
    .lg\:mb-84 {
      margin-bottom: 8.4rem
    }
  
    .lg\:ml-84 {
      margin-left: 8.4rem
    }
  
    .lg\:mt-88 {
      margin-top: 8.8rem
    }
  
    .lg\:mr-88 {
      margin-right: 8.8rem
    }
  
    .lg\:mb-88 {
      margin-bottom: 8.8rem
    }
  
    .lg\:ml-88 {
      margin-left: 8.8rem
    }
  
    .lg\:mt-92 {
      margin-top: 9.2rem
    }
  
    .lg\:mr-92 {
      margin-right: 9.2rem
    }
  
    .lg\:mb-92 {
      margin-bottom: 9.2rem
    }
  
    .lg\:ml-92 {
      margin-left: 9.2rem
    }
  
    .lg\:mt-96 {
      margin-top: 9.6rem
    }
  
    .lg\:mr-96 {
      margin-right: 9.6rem
    }
  
    .lg\:mb-96 {
      margin-bottom: 9.6rem
    }
  
    .lg\:ml-96 {
      margin-left: 9.6rem
    }
  
    .lg\:mt-128 {
      margin-top: 12.8rem
    }
  
    .lg\:mr-128 {
      margin-right: 12.8rem
    }
  
    .lg\:mb-128 {
      margin-bottom: 12.8rem
    }
  
    .lg\:ml-128 {
      margin-left: 12.8rem
    }
  
    .lg\:mt-136 {
      margin-top: 13.6rem
    }
  
    .lg\:mr-136 {
      margin-right: 13.6rem
    }
  
    .lg\:mb-136 {
      margin-bottom: 13.6rem
    }
  
    .lg\:ml-136 {
      margin-left: 13.6rem
    }
  
    .lg\:mt-160 {
      margin-top: 16rem
    }
  
    .lg\:mr-160 {
      margin-right: 16rem
    }
  
    .lg\:mb-160 {
      margin-bottom: 16rem
    }
  
    .lg\:ml-160 {
      margin-left: 16rem
    }
  
    .lg\:mt-192 {
      margin-top: 19.2rem
    }
  
    .lg\:mr-192 {
      margin-right: 19.2rem
    }
  
    .lg\:mb-192 {
      margin-bottom: 19.2rem
    }
  
    .lg\:ml-192 {
      margin-left: 19.2rem
    }
  
    .lg\:mt-200 {
      margin-top: 20rem
    }
  
    .lg\:mr-200 {
      margin-right: 20rem
    }
  
    .lg\:mb-200 {
      margin-bottom: 20rem
    }
  
    .lg\:ml-200 {
      margin-left: 20rem
    }
  
    .lg\:mt-208 {
      margin-top: 20.8rem
    }
  
    .lg\:mr-208 {
      margin-right: 20.8rem
    }
  
    .lg\:mb-208 {
      margin-bottom: 20.8rem
    }
  
    .lg\:ml-208 {
      margin-left: 20.8rem
    }
  
    .lg\:mt-216 {
      margin-top: 21.6rem
    }
  
    .lg\:mr-216 {
      margin-right: 21.6rem
    }
  
    .lg\:mb-216 {
      margin-bottom: 21.6rem
    }
  
    .lg\:ml-216 {
      margin-left: 21.6rem
    }
  
    .lg\:mt-224 {
      margin-top: 22.4rem
    }
  
    .lg\:mr-224 {
      margin-right: 22.4rem
    }
  
    .lg\:mb-224 {
      margin-bottom: 22.4rem
    }
  
    .lg\:ml-224 {
      margin-left: 22.4rem
    }
  
    .lg\:mt-256 {
      margin-top: 25.6rem
    }
  
    .lg\:mr-256 {
      margin-right: 25.6rem
    }
  
    .lg\:mb-256 {
      margin-bottom: 25.6rem
    }
  
    .lg\:ml-256 {
      margin-left: 25.6rem
    }
  
    .lg\:mt-288 {
      margin-top: 28.8rem
    }
  
    .lg\:mr-288 {
      margin-right: 28.8rem
    }
  
    .lg\:mb-288 {
      margin-bottom: 28.8rem
    }
  
    .lg\:ml-288 {
      margin-left: 28.8rem
    }
  
    .lg\:mt-320 {
      margin-top: 32rem
    }
  
    .lg\:mr-320 {
      margin-right: 32rem
    }
  
    .lg\:mb-320 {
      margin-bottom: 32rem
    }
  
    .lg\:ml-320 {
      margin-left: 32rem
    }
  
    .lg\:mt-360 {
      margin-top: 36rem
    }
  
    .lg\:mr-360 {
      margin-right: 36rem
    }
  
    .lg\:mb-360 {
      margin-bottom: 36rem
    }
  
    .lg\:ml-360 {
      margin-left: 36rem
    }
  
    .lg\:mt-384 {
      margin-top: 38.4rem
    }
  
    .lg\:mr-384 {
      margin-right: 38.4rem
    }
  
    .lg\:mb-384 {
      margin-bottom: 38.4rem
    }
  
    .lg\:ml-384 {
      margin-left: 38.4rem
    }
  
    .lg\:mt-400 {
      margin-top: 40rem
    }
  
    .lg\:mr-400 {
      margin-right: 40rem
    }
  
    .lg\:mb-400 {
      margin-bottom: 40rem
    }
  
    .lg\:ml-400 {
      margin-left: 40rem
    }
  
    .lg\:mt-512 {
      margin-top: 51.2rem
    }
  
    .lg\:mr-512 {
      margin-right: 51.2rem
    }
  
    .lg\:mb-512 {
      margin-bottom: 51.2rem
    }
  
    .lg\:ml-512 {
      margin-left: 51.2rem
    }
  
    .lg\:mt-640 {
      margin-top: 64rem
    }
  
    .lg\:mr-640 {
      margin-right: 64rem
    }
  
    .lg\:mb-640 {
      margin-bottom: 64rem
    }
  
    .lg\:ml-640 {
      margin-left: 64rem
    }
  
    .lg\:mt-auto {
      margin-top: auto
    }
  
    .lg\:mr-auto {
      margin-right: auto
    }
  
    .lg\:mb-auto {
      margin-bottom: auto
    }
  
    .lg\:ml-auto {
      margin-left: auto
    }
  
    .lg\:mt-px {
      margin-top: 1px
    }
  
    .lg\:mr-px {
      margin-right: 1px
    }
  
    .lg\:mb-px {
      margin-bottom: 1px
    }
  
    .lg\:ml-px {
      margin-left: 1px
    }
  
    .lg\:mt-xs {
      margin-top: 32rem
    }
  
    .lg\:mr-xs {
      margin-right: 32rem
    }
  
    .lg\:mb-xs {
      margin-bottom: 32rem
    }
  
    .lg\:ml-xs {
      margin-left: 32rem
    }
  
    .lg\:mt-sm {
      margin-top: 48rem
    }
  
    .lg\:mr-sm {
      margin-right: 48rem
    }
  
    .lg\:mb-sm {
      margin-bottom: 48rem
    }
  
    .lg\:ml-sm {
      margin-left: 48rem
    }
  
    .lg\:mt-md {
      margin-top: 64rem
    }
  
    .lg\:mr-md {
      margin-right: 64rem
    }
  
    .lg\:mb-md {
      margin-bottom: 64rem
    }
  
    .lg\:ml-md {
      margin-left: 64rem
    }
  
    .lg\:mt-lg {
      margin-top: 80rem
    }
  
    .lg\:mr-lg {
      margin-right: 80rem
    }
  
    .lg\:mb-lg {
      margin-bottom: 80rem
    }
  
    .lg\:ml-lg {
      margin-left: 80rem
    }
  
    .lg\:mt-xl {
      margin-top: 96rem
    }
  
    .lg\:mr-xl {
      margin-right: 96rem
    }
  
    .lg\:mb-xl {
      margin-bottom: 96rem
    }
  
    .lg\:ml-xl {
      margin-left: 96rem
    }
  
    .lg\:mt-2xl {
      margin-top: 112rem
    }
  
    .lg\:mr-2xl {
      margin-right: 112rem
    }
  
    .lg\:mb-2xl {
      margin-bottom: 112rem
    }
  
    .lg\:ml-2xl {
      margin-left: 112rem
    }
  
    .lg\:mt-3xl {
      margin-top: 128rem
    }
  
    .lg\:mr-3xl {
      margin-right: 128rem
    }
  
    .lg\:mb-3xl {
      margin-bottom: 128rem
    }
  
    .lg\:ml-3xl {
      margin-left: 128rem
    }
  
    .lg\:mt-4xl {
      margin-top: 144rem
    }
  
    .lg\:mr-4xl {
      margin-right: 144rem
    }
  
    .lg\:mb-4xl {
      margin-bottom: 144rem
    }
  
    .lg\:ml-4xl {
      margin-left: 144rem
    }
  
    .lg\:mt-5xl {
      margin-top: 160rem
    }
  
    .lg\:mr-5xl {
      margin-right: 160rem
    }
  
    .lg\:mb-5xl {
      margin-bottom: 160rem
    }
  
    .lg\:ml-5xl {
      margin-left: 160rem
    }
  
    .lg\:-mt-1 {
      margin-top: -0.25rem
    }
  
    .lg\:-mr-1 {
      margin-right: -0.25rem
    }
  
    .lg\:-mb-1 {
      margin-bottom: -0.25rem
    }
  
    .lg\:-ml-1 {
      margin-left: -0.25rem
    }
  
    .lg\:-mt-2 {
      margin-top: -0.5rem
    }
  
    .lg\:-mr-2 {
      margin-right: -0.5rem
    }
  
    .lg\:-mb-2 {
      margin-bottom: -0.5rem
    }
  
    .lg\:-ml-2 {
      margin-left: -0.5rem
    }
  
    .lg\:-mt-3 {
      margin-top: -0.75rem
    }
  
    .lg\:-mr-3 {
      margin-right: -0.75rem
    }
  
    .lg\:-mb-3 {
      margin-bottom: -0.75rem
    }
  
    .lg\:-ml-3 {
      margin-left: -0.75rem
    }
  
    .lg\:-mt-4 {
      margin-top: -0.4rem
    }
  
    .lg\:-mr-4 {
      margin-right: -0.4rem
    }
  
    .lg\:-mb-4 {
      margin-bottom: -0.4rem
    }
  
    .lg\:-ml-4 {
      margin-left: -0.4rem
    }
  
    .lg\:-mt-5 {
      margin-top: -1.25rem
    }
  
    .lg\:-mr-5 {
      margin-right: -1.25rem
    }
  
    .lg\:-mb-5 {
      margin-bottom: -1.25rem
    }
  
    .lg\:-ml-5 {
      margin-left: -1.25rem
    }
  
    .lg\:-mt-6 {
      margin-top: -0.6rem
    }
  
    .lg\:-mr-6 {
      margin-right: -0.6rem
    }
  
    .lg\:-mb-6 {
      margin-bottom: -0.6rem
    }
  
    .lg\:-ml-6 {
      margin-left: -0.6rem
    }
  
    .lg\:-mt-8 {
      margin-top: -0.8rem
    }
  
    .lg\:-mr-8 {
      margin-right: -0.8rem
    }
  
    .lg\:-mb-8 {
      margin-bottom: -0.8rem
    }
  
    .lg\:-ml-8 {
      margin-left: -0.8rem
    }
  
    .lg\:-mt-10 {
      margin-top: -2.5rem
    }
  
    .lg\:-mr-10 {
      margin-right: -2.5rem
    }
  
    .lg\:-mb-10 {
      margin-bottom: -2.5rem
    }
  
    .lg\:-ml-10 {
      margin-left: -2.5rem
    }
  
    .lg\:-mt-12 {
      margin-top: -1.2rem
    }
  
    .lg\:-mr-12 {
      margin-right: -1.2rem
    }
  
    .lg\:-mb-12 {
      margin-bottom: -1.2rem
    }
  
    .lg\:-ml-12 {
      margin-left: -1.2rem
    }
  
    .lg\:-mt-16 {
      margin-top: -1.6rem
    }
  
    .lg\:-mr-16 {
      margin-right: -1.6rem
    }
  
    .lg\:-mb-16 {
      margin-bottom: -1.6rem
    }
  
    .lg\:-ml-16 {
      margin-left: -1.6rem
    }
  
    .lg\:-mt-20 {
      margin-top: -2rem
    }
  
    .lg\:-mr-20 {
      margin-right: -2rem
    }
  
    .lg\:-mb-20 {
      margin-bottom: -2rem
    }
  
    .lg\:-ml-20 {
      margin-left: -2rem
    }
  
    .lg\:-mt-24 {
      margin-top: -2.4rem
    }
  
    .lg\:-mr-24 {
      margin-right: -2.4rem
    }
  
    .lg\:-mb-24 {
      margin-bottom: -2.4rem
    }
  
    .lg\:-ml-24 {
      margin-left: -2.4rem
    }
  
    .lg\:-mt-28 {
      margin-top: -2.8rem
    }
  
    .lg\:-mr-28 {
      margin-right: -2.8rem
    }
  
    .lg\:-mb-28 {
      margin-bottom: -2.8rem
    }
  
    .lg\:-ml-28 {
      margin-left: -2.8rem
    }
  
    .lg\:-mt-32 {
      margin-top: -3.2rem
    }
  
    .lg\:-mr-32 {
      margin-right: -3.2rem
    }
  
    .lg\:-mb-32 {
      margin-bottom: -3.2rem
    }
  
    .lg\:-ml-32 {
      margin-left: -3.2rem
    }
  
    .lg\:-mt-36 {
      margin-top: -3.6rem
    }
  
    .lg\:-mr-36 {
      margin-right: -3.6rem
    }
  
    .lg\:-mb-36 {
      margin-bottom: -3.6rem
    }
  
    .lg\:-ml-36 {
      margin-left: -3.6rem
    }
  
    .lg\:-mt-40 {
      margin-top: -4rem
    }
  
    .lg\:-mr-40 {
      margin-right: -4rem
    }
  
    .lg\:-mb-40 {
      margin-bottom: -4rem
    }
  
    .lg\:-ml-40 {
      margin-left: -4rem
    }
  
    .lg\:-mt-44 {
      margin-top: -4.4rem
    }
  
    .lg\:-mr-44 {
      margin-right: -4.4rem
    }
  
    .lg\:-mb-44 {
      margin-bottom: -4.4rem
    }
  
    .lg\:-ml-44 {
      margin-left: -4.4rem
    }
  
    .lg\:-mt-48 {
      margin-top: -4.8rem
    }
  
    .lg\:-mr-48 {
      margin-right: -4.8rem
    }
  
    .lg\:-mb-48 {
      margin-bottom: -4.8rem
    }
  
    .lg\:-ml-48 {
      margin-left: -4.8rem
    }
  
    .lg\:-mt-52 {
      margin-top: -5.2rem
    }
  
    .lg\:-mr-52 {
      margin-right: -5.2rem
    }
  
    .lg\:-mb-52 {
      margin-bottom: -5.2rem
    }
  
    .lg\:-ml-52 {
      margin-left: -5.2rem
    }
  
    .lg\:-mt-56 {
      margin-top: -5.6rem
    }
  
    .lg\:-mr-56 {
      margin-right: -5.6rem
    }
  
    .lg\:-mb-56 {
      margin-bottom: -5.6rem
    }
  
    .lg\:-ml-56 {
      margin-left: -5.6rem
    }
  
    .lg\:-mt-60 {
      margin-top: -6rem
    }
  
    .lg\:-mr-60 {
      margin-right: -6rem
    }
  
    .lg\:-mb-60 {
      margin-bottom: -6rem
    }
  
    .lg\:-ml-60 {
      margin-left: -6rem
    }
  
    .lg\:-mt-64 {
      margin-top: -6.4rem
    }
  
    .lg\:-mr-64 {
      margin-right: -6.4rem
    }
  
    .lg\:-mb-64 {
      margin-bottom: -6.4rem
    }
  
    .lg\:-ml-64 {
      margin-left: -6.4rem
    }
  
    .lg\:-mt-68 {
      margin-top: -6.8rem
    }
  
    .lg\:-mr-68 {
      margin-right: -6.8rem
    }
  
    .lg\:-mb-68 {
      margin-bottom: -6.8rem
    }
  
    .lg\:-ml-68 {
      margin-left: -6.8rem
    }
  
    .lg\:-mt-72 {
      margin-top: -7.2rem
    }
  
    .lg\:-mr-72 {
      margin-right: -7.2rem
    }
  
    .lg\:-mb-72 {
      margin-bottom: -7.2rem
    }
  
    .lg\:-ml-72 {
      margin-left: -7.2rem
    }
  
    .lg\:-mt-76 {
      margin-top: -7.6rem
    }
  
    .lg\:-mr-76 {
      margin-right: -7.6rem
    }
  
    .lg\:-mb-76 {
      margin-bottom: -7.6rem
    }
  
    .lg\:-ml-76 {
      margin-left: -7.6rem
    }
  
    .lg\:-mt-80 {
      margin-top: -8rem
    }
  
    .lg\:-mr-80 {
      margin-right: -8rem
    }
  
    .lg\:-mb-80 {
      margin-bottom: -8rem
    }
  
    .lg\:-ml-80 {
      margin-left: -8rem
    }
  
    .lg\:-mt-84 {
      margin-top: -8.4rem
    }
  
    .lg\:-mr-84 {
      margin-right: -8.4rem
    }
  
    .lg\:-mb-84 {
      margin-bottom: -8.4rem
    }
  
    .lg\:-ml-84 {
      margin-left: -8.4rem
    }
  
    .lg\:-mt-88 {
      margin-top: -8.8rem
    }
  
    .lg\:-mr-88 {
      margin-right: -8.8rem
    }
  
    .lg\:-mb-88 {
      margin-bottom: -8.8rem
    }
  
    .lg\:-ml-88 {
      margin-left: -8.8rem
    }
  
    .lg\:-mt-92 {
      margin-top: -9.2rem
    }
  
    .lg\:-mr-92 {
      margin-right: -9.2rem
    }
  
    .lg\:-mb-92 {
      margin-bottom: -9.2rem
    }
  
    .lg\:-ml-92 {
      margin-left: -9.2rem
    }
  
    .lg\:-mt-96 {
      margin-top: -9.6rem
    }
  
    .lg\:-mr-96 {
      margin-right: -9.6rem
    }
  
    .lg\:-mb-96 {
      margin-bottom: -9.6rem
    }
  
    .lg\:-ml-96 {
      margin-left: -9.6rem
    }
  
    .lg\:-mt-128 {
      margin-top: -12.8rem
    }
  
    .lg\:-mr-128 {
      margin-right: -12.8rem
    }
  
    .lg\:-mb-128 {
      margin-bottom: -12.8rem
    }
  
    .lg\:-ml-128 {
      margin-left: -12.8rem
    }
  
    .lg\:-mt-136 {
      margin-top: -13.6rem
    }
  
    .lg\:-mr-136 {
      margin-right: -13.6rem
    }
  
    .lg\:-mb-136 {
      margin-bottom: -13.6rem
    }
  
    .lg\:-ml-136 {
      margin-left: -13.6rem
    }
  
    .lg\:-mt-160 {
      margin-top: -16rem
    }
  
    .lg\:-mr-160 {
      margin-right: -16rem
    }
  
    .lg\:-mb-160 {
      margin-bottom: -16rem
    }
  
    .lg\:-ml-160 {
      margin-left: -16rem
    }
  
    .lg\:-mt-192 {
      margin-top: -19.2rem
    }
  
    .lg\:-mr-192 {
      margin-right: -19.2rem
    }
  
    .lg\:-mb-192 {
      margin-bottom: -19.2rem
    }
  
    .lg\:-ml-192 {
      margin-left: -19.2rem
    }
  
    .lg\:-mt-200 {
      margin-top: -20rem
    }
  
    .lg\:-mr-200 {
      margin-right: -20rem
    }
  
    .lg\:-mb-200 {
      margin-bottom: -20rem
    }
  
    .lg\:-ml-200 {
      margin-left: -20rem
    }
  
    .lg\:-mt-208 {
      margin-top: -20.8rem
    }
  
    .lg\:-mr-208 {
      margin-right: -20.8rem
    }
  
    .lg\:-mb-208 {
      margin-bottom: -20.8rem
    }
  
    .lg\:-ml-208 {
      margin-left: -20.8rem
    }
  
    .lg\:-mt-216 {
      margin-top: -21.6rem
    }
  
    .lg\:-mr-216 {
      margin-right: -21.6rem
    }
  
    .lg\:-mb-216 {
      margin-bottom: -21.6rem
    }
  
    .lg\:-ml-216 {
      margin-left: -21.6rem
    }
  
    .lg\:-mt-224 {
      margin-top: -22.4rem
    }
  
    .lg\:-mr-224 {
      margin-right: -22.4rem
    }
  
    .lg\:-mb-224 {
      margin-bottom: -22.4rem
    }
  
    .lg\:-ml-224 {
      margin-left: -22.4rem
    }
  
    .lg\:-mt-256 {
      margin-top: -25.6rem
    }
  
    .lg\:-mr-256 {
      margin-right: -25.6rem
    }
  
    .lg\:-mb-256 {
      margin-bottom: -25.6rem
    }
  
    .lg\:-ml-256 {
      margin-left: -25.6rem
    }
  
    .lg\:-mt-288 {
      margin-top: -28.8rem
    }
  
    .lg\:-mr-288 {
      margin-right: -28.8rem
    }
  
    .lg\:-mb-288 {
      margin-bottom: -28.8rem
    }
  
    .lg\:-ml-288 {
      margin-left: -28.8rem
    }
  
    .lg\:-mt-320 {
      margin-top: -32rem
    }
  
    .lg\:-mr-320 {
      margin-right: -32rem
    }
  
    .lg\:-mb-320 {
      margin-bottom: -32rem
    }
  
    .lg\:-ml-320 {
      margin-left: -32rem
    }
  
    .lg\:-mt-360 {
      margin-top: -36rem
    }
  
    .lg\:-mr-360 {
      margin-right: -36rem
    }
  
    .lg\:-mb-360 {
      margin-bottom: -36rem
    }
  
    .lg\:-ml-360 {
      margin-left: -36rem
    }
  
    .lg\:-mt-384 {
      margin-top: -38.4rem
    }
  
    .lg\:-mr-384 {
      margin-right: -38.4rem
    }
  
    .lg\:-mb-384 {
      margin-bottom: -38.4rem
    }
  
    .lg\:-ml-384 {
      margin-left: -38.4rem
    }
  
    .lg\:-mt-400 {
      margin-top: -40rem
    }
  
    .lg\:-mr-400 {
      margin-right: -40rem
    }
  
    .lg\:-mb-400 {
      margin-bottom: -40rem
    }
  
    .lg\:-ml-400 {
      margin-left: -40rem
    }
  
    .lg\:-mt-512 {
      margin-top: -51.2rem
    }
  
    .lg\:-mr-512 {
      margin-right: -51.2rem
    }
  
    .lg\:-mb-512 {
      margin-bottom: -51.2rem
    }
  
    .lg\:-ml-512 {
      margin-left: -51.2rem
    }
  
    .lg\:-mt-640 {
      margin-top: -64rem
    }
  
    .lg\:-mr-640 {
      margin-right: -64rem
    }
  
    .lg\:-mb-640 {
      margin-bottom: -64rem
    }
  
    .lg\:-ml-640 {
      margin-left: -64rem
    }
  
    .lg\:-mt-px {
      margin-top: -1px
    }
  
    .lg\:-mr-px {
      margin-right: -1px
    }
  
    .lg\:-mb-px {
      margin-bottom: -1px
    }
  
    .lg\:-ml-px {
      margin-left: -1px
    }
  
    .lg\:-mt-xs {
      margin-top: -32rem
    }
  
    .lg\:-mr-xs {
      margin-right: -32rem
    }
  
    .lg\:-mb-xs {
      margin-bottom: -32rem
    }
  
    .lg\:-ml-xs {
      margin-left: -32rem
    }
  
    .lg\:-mt-sm {
      margin-top: -48rem
    }
  
    .lg\:-mr-sm {
      margin-right: -48rem
    }
  
    .lg\:-mb-sm {
      margin-bottom: -48rem
    }
  
    .lg\:-ml-sm {
      margin-left: -48rem
    }
  
    .lg\:-mt-md {
      margin-top: -64rem
    }
  
    .lg\:-mr-md {
      margin-right: -64rem
    }
  
    .lg\:-mb-md {
      margin-bottom: -64rem
    }
  
    .lg\:-ml-md {
      margin-left: -64rem
    }
  
    .lg\:-mt-lg {
      margin-top: -80rem
    }
  
    .lg\:-mr-lg {
      margin-right: -80rem
    }
  
    .lg\:-mb-lg {
      margin-bottom: -80rem
    }
  
    .lg\:-ml-lg {
      margin-left: -80rem
    }
  
    .lg\:-mt-xl {
      margin-top: -96rem
    }
  
    .lg\:-mr-xl {
      margin-right: -96rem
    }
  
    .lg\:-mb-xl {
      margin-bottom: -96rem
    }
  
    .lg\:-ml-xl {
      margin-left: -96rem
    }
  
    .lg\:-mt-2xl {
      margin-top: -112rem
    }
  
    .lg\:-mr-2xl {
      margin-right: -112rem
    }
  
    .lg\:-mb-2xl {
      margin-bottom: -112rem
    }
  
    .lg\:-ml-2xl {
      margin-left: -112rem
    }
  
    .lg\:-mt-3xl {
      margin-top: -128rem
    }
  
    .lg\:-mr-3xl {
      margin-right: -128rem
    }
  
    .lg\:-mb-3xl {
      margin-bottom: -128rem
    }
  
    .lg\:-ml-3xl {
      margin-left: -128rem
    }
  
    .lg\:-mt-4xl {
      margin-top: -144rem
    }
  
    .lg\:-mr-4xl {
      margin-right: -144rem
    }
  
    .lg\:-mb-4xl {
      margin-bottom: -144rem
    }
  
    .lg\:-ml-4xl {
      margin-left: -144rem
    }
  
    .lg\:-mt-5xl {
      margin-top: -160rem
    }
  
    .lg\:-mr-5xl {
      margin-right: -160rem
    }
  
    .lg\:-mb-5xl {
      margin-bottom: -160rem
    }
  
    .lg\:-ml-5xl {
      margin-left: -160rem
    }
  
    .lg\:-mt-auto {
      margin-top: -auto
    }
  
    .lg\:-mr-auto {
      margin-right: -auto
    }
  
    .lg\:-mb-auto {
      margin-bottom: -auto
    }
  
    .lg\:-ml-auto {
      margin-left: -auto
    }
  
    .lg\:max-h-0 {
      max-height: 0
    }
  
    .lg\:max-h-1 {
      max-height: 0.25rem
    }
  
    .lg\:max-h-2 {
      max-height: 0.5rem
    }
  
    .lg\:max-h-3 {
      max-height: 0.75rem
    }
  
    .lg\:max-h-4 {
      max-height: 0.4rem
    }
  
    .lg\:max-h-5 {
      max-height: 1.25rem
    }
  
    .lg\:max-h-6 {
      max-height: 0.6rem
    }
  
    .lg\:max-h-8 {
      max-height: 0.8rem
    }
  
    .lg\:max-h-10 {
      max-height: 2.5rem
    }
  
    .lg\:max-h-12 {
      max-height: 1.2rem
    }
  
    .lg\:max-h-16 {
      max-height: 1.6rem
    }
  
    .lg\:max-h-20 {
      max-height: 2rem
    }
  
    .lg\:max-h-24 {
      max-height: 2.4rem
    }
  
    .lg\:max-h-28 {
      max-height: 2.8rem
    }
  
    .lg\:max-h-32 {
      max-height: 3.2rem
    }
  
    .lg\:max-h-36 {
      max-height: 3.6rem
    }
  
    .lg\:max-h-40 {
      max-height: 4rem
    }
  
    .lg\:max-h-44 {
      max-height: 4.4rem
    }
  
    .lg\:max-h-48 {
      max-height: 4.8rem
    }
  
    .lg\:max-h-52 {
      max-height: 5.2rem
    }
  
    .lg\:max-h-56 {
      max-height: 5.6rem
    }
  
    .lg\:max-h-60 {
      max-height: 6rem
    }
  
    .lg\:max-h-64 {
      max-height: 6.4rem
    }
  
    .lg\:max-h-68 {
      max-height: 6.8rem
    }
  
    .lg\:max-h-72 {
      max-height: 7.2rem
    }
  
    .lg\:max-h-76 {
      max-height: 7.6rem
    }
  
    .lg\:max-h-80 {
      max-height: 8rem
    }
  
    .lg\:max-h-84 {
      max-height: 8.4rem
    }
  
    .lg\:max-h-88 {
      max-height: 8.8rem
    }
  
    .lg\:max-h-92 {
      max-height: 9.2rem
    }
  
    .lg\:max-h-96 {
      max-height: 9.6rem
    }
  
    .lg\:max-h-128 {
      max-height: 12.8rem
    }
  
    .lg\:max-h-136 {
      max-height: 13.6rem
    }
  
    .lg\:max-h-160 {
      max-height: 16rem
    }
  
    .lg\:max-h-192 {
      max-height: 19.2rem
    }
  
    .lg\:max-h-200 {
      max-height: 20rem
    }
  
    .lg\:max-h-208 {
      max-height: 20.8rem
    }
  
    .lg\:max-h-216 {
      max-height: 21.6rem
    }
  
    .lg\:max-h-224 {
      max-height: 22.4rem
    }
  
    .lg\:max-h-256 {
      max-height: 25.6rem
    }
  
    .lg\:max-h-288 {
      max-height: 28.8rem
    }
  
    .lg\:max-h-320 {
      max-height: 32rem
    }
  
    .lg\:max-h-360 {
      max-height: 36rem
    }
  
    .lg\:max-h-384 {
      max-height: 38.4rem
    }
  
    .lg\:max-h-400 {
      max-height: 40rem
    }
  
    .lg\:max-h-512 {
      max-height: 51.2rem
    }
  
    .lg\:max-h-640 {
      max-height: 64rem
    }
  
    .lg\:max-h-full {
      max-height: 100%
    }
  
    .lg\:max-h-screen {
      max-height: 100vh
    }
  
    .lg\:max-h-auto {
      max-height: auto
    }
  
    .lg\:max-h-px {
      max-height: 1px
    }
  
    .lg\:max-h-xs {
      max-height: 32rem
    }
  
    .lg\:max-h-sm {
      max-height: 48rem
    }
  
    .lg\:max-h-md {
      max-height: 64rem
    }
  
    .lg\:max-h-lg {
      max-height: 80rem
    }
  
    .lg\:max-h-xl {
      max-height: 96rem
    }
  
    .lg\:max-h-2xl {
      max-height: 112rem
    }
  
    .lg\:max-h-3xl {
      max-height: 128rem
    }
  
    .lg\:max-h-4xl {
      max-height: 144rem
    }
  
    .lg\:max-h-5xl {
      max-height: 160rem
    }
  
    .lg\:max-w-0 {
      max-width: 0
    }
  
    .lg\:max-w-1 {
      max-width: 0.25rem
    }
  
    .lg\:max-w-2 {
      max-width: 0.5rem
    }
  
    .lg\:max-w-3 {
      max-width: 0.75rem
    }
  
    .lg\:max-w-4 {
      max-width: 0.4rem
    }
  
    .lg\:max-w-5 {
      max-width: 1.25rem
    }
  
    .lg\:max-w-6 {
      max-width: 0.6rem
    }
  
    .lg\:max-w-8 {
      max-width: 0.8rem
    }
  
    .lg\:max-w-10 {
      max-width: 2.5rem
    }
  
    .lg\:max-w-12 {
      max-width: 1.2rem
    }
  
    .lg\:max-w-16 {
      max-width: 1.6rem
    }
  
    .lg\:max-w-20 {
      max-width: 2rem
    }
  
    .lg\:max-w-24 {
      max-width: 2.4rem
    }
  
    .lg\:max-w-28 {
      max-width: 2.8rem
    }
  
    .lg\:max-w-32 {
      max-width: 3.2rem
    }
  
    .lg\:max-w-36 {
      max-width: 3.6rem
    }
  
    .lg\:max-w-40 {
      max-width: 4rem
    }
  
    .lg\:max-w-44 {
      max-width: 4.4rem
    }
  
    .lg\:max-w-48 {
      max-width: 4.8rem
    }
  
    .lg\:max-w-52 {
      max-width: 5.2rem
    }
  
    .lg\:max-w-56 {
      max-width: 5.6rem
    }
  
    .lg\:max-w-60 {
      max-width: 6rem
    }
  
    .lg\:max-w-64 {
      max-width: 6.4rem
    }
  
    .lg\:max-w-68 {
      max-width: 6.8rem
    }
  
    .lg\:max-w-72 {
      max-width: 7.2rem
    }
  
    .lg\:max-w-76 {
      max-width: 7.6rem
    }
  
    .lg\:max-w-80 {
      max-width: 8rem
    }
  
    .lg\:max-w-84 {
      max-width: 8.4rem
    }
  
    .lg\:max-w-88 {
      max-width: 8.8rem
    }
  
    .lg\:max-w-92 {
      max-width: 9.2rem
    }
  
    .lg\:max-w-96 {
      max-width: 9.6rem
    }
  
    .lg\:max-w-128 {
      max-width: 12.8rem
    }
  
    .lg\:max-w-136 {
      max-width: 13.6rem
    }
  
    .lg\:max-w-160 {
      max-width: 16rem
    }
  
    .lg\:max-w-192 {
      max-width: 19.2rem
    }
  
    .lg\:max-w-200 {
      max-width: 20rem
    }
  
    .lg\:max-w-208 {
      max-width: 20.8rem
    }
  
    .lg\:max-w-216 {
      max-width: 21.6rem
    }
  
    .lg\:max-w-224 {
      max-width: 22.4rem
    }
  
    .lg\:max-w-256 {
      max-width: 25.6rem
    }
  
    .lg\:max-w-288 {
      max-width: 28.8rem
    }
  
    .lg\:max-w-320 {
      max-width: 32rem
    }
  
    .lg\:max-w-360 {
      max-width: 36rem
    }
  
    .lg\:max-w-384 {
      max-width: 38.4rem
    }
  
    .lg\:max-w-400 {
      max-width: 40rem
    }
  
    .lg\:max-w-512 {
      max-width: 51.2rem
    }
  
    .lg\:max-w-640 {
      max-width: 64rem
    }
  
    .lg\:max-w-xs {
      max-width: 32rem
    }
  
    .lg\:max-w-sm {
      max-width: 48rem
    }
  
    .lg\:max-w-md {
      max-width: 64rem
    }
  
    .lg\:max-w-lg {
      max-width: 80rem
    }
  
    .lg\:max-w-xl {
      max-width: 96rem
    }
  
    .lg\:max-w-2xl {
      max-width: 112rem
    }
  
    .lg\:max-w-3xl {
      max-width: 128rem
    }
  
    .lg\:max-w-4xl {
      max-width: 144rem
    }
  
    .lg\:max-w-5xl {
      max-width: 160rem
    }
  
    .lg\:max-w-6xl {
      max-width: 72rem
    }
  
    .lg\:max-w-full {
      max-width: 100%
    }
  
    .lg\:max-w-px {
      max-width: 1px
    }
  
    .lg\:max-w-auto {
      max-width: auto
    }
  
    .lg\:max-w-screen {
      max-width: 100vw
    }
  
    .lg\:min-h-0 {
      min-height: 0
    }
  
    .lg\:min-h-1 {
      min-height: 0.25rem
    }
  
    .lg\:min-h-2 {
      min-height: 0.5rem
    }
  
    .lg\:min-h-3 {
      min-height: 0.75rem
    }
  
    .lg\:min-h-4 {
      min-height: 0.4rem
    }
  
    .lg\:min-h-5 {
      min-height: 1.25rem
    }
  
    .lg\:min-h-6 {
      min-height: 0.6rem
    }
  
    .lg\:min-h-8 {
      min-height: 0.8rem
    }
  
    .lg\:min-h-10 {
      min-height: 2.5rem
    }
  
    .lg\:min-h-12 {
      min-height: 1.2rem
    }
  
    .lg\:min-h-16 {
      min-height: 1.6rem
    }
  
    .lg\:min-h-20 {
      min-height: 2rem
    }
  
    .lg\:min-h-24 {
      min-height: 2.4rem
    }
  
    .lg\:min-h-28 {
      min-height: 2.8rem
    }
  
    .lg\:min-h-32 {
      min-height: 3.2rem
    }
  
    .lg\:min-h-36 {
      min-height: 3.6rem
    }
  
    .lg\:min-h-40 {
      min-height: 4rem
    }
  
    .lg\:min-h-44 {
      min-height: 4.4rem
    }
  
    .lg\:min-h-48 {
      min-height: 4.8rem
    }
  
    .lg\:min-h-52 {
      min-height: 5.2rem
    }
  
    .lg\:min-h-56 {
      min-height: 5.6rem
    }
  
    .lg\:min-h-60 {
      min-height: 6rem
    }
  
    .lg\:min-h-64 {
      min-height: 6.4rem
    }
  
    .lg\:min-h-68 {
      min-height: 6.8rem
    }
  
    .lg\:min-h-72 {
      min-height: 7.2rem
    }
  
    .lg\:min-h-76 {
      min-height: 7.6rem
    }
  
    .lg\:min-h-80 {
      min-height: 8rem
    }
  
    .lg\:min-h-84 {
      min-height: 8.4rem
    }
  
    .lg\:min-h-88 {
      min-height: 8.8rem
    }
  
    .lg\:min-h-92 {
      min-height: 9.2rem
    }
  
    .lg\:min-h-96 {
      min-height: 9.6rem
    }
  
    .lg\:min-h-128 {
      min-height: 12.8rem
    }
  
    .lg\:min-h-136 {
      min-height: 13.6rem
    }
  
    .lg\:min-h-160 {
      min-height: 16rem
    }
  
    .lg\:min-h-192 {
      min-height: 19.2rem
    }
  
    .lg\:min-h-200 {
      min-height: 20rem
    }
  
    .lg\:min-h-208 {
      min-height: 20.8rem
    }
  
    .lg\:min-h-216 {
      min-height: 21.6rem
    }
  
    .lg\:min-h-224 {
      min-height: 22.4rem
    }
  
    .lg\:min-h-256 {
      min-height: 25.6rem
    }
  
    .lg\:min-h-288 {
      min-height: 28.8rem
    }
  
    .lg\:min-h-320 {
      min-height: 32rem
    }
  
    .lg\:min-h-360 {
      min-height: 36rem
    }
  
    .lg\:min-h-384 {
      min-height: 38.4rem
    }
  
    .lg\:min-h-400 {
      min-height: 40rem
    }
  
    .lg\:min-h-512 {
      min-height: 51.2rem
    }
  
    .lg\:min-h-640 {
      min-height: 64rem
    }
  
    .lg\:min-h-full {
      min-height: 100%
    }
  
    .lg\:min-h-screen {
      min-height: 100vh
    }
  
    .lg\:min-h-auto {
      min-height: auto
    }
  
    .lg\:min-h-px {
      min-height: 1px
    }
  
    .lg\:min-h-xs {
      min-height: 32rem
    }
  
    .lg\:min-h-sm {
      min-height: 48rem
    }
  
    .lg\:min-h-md {
      min-height: 64rem
    }
  
    .lg\:min-h-lg {
      min-height: 80rem
    }
  
    .lg\:min-h-xl {
      min-height: 96rem
    }
  
    .lg\:min-h-2xl {
      min-height: 112rem
    }
  
    .lg\:min-h-3xl {
      min-height: 128rem
    }
  
    .lg\:min-h-4xl {
      min-height: 144rem
    }
  
    .lg\:min-h-5xl {
      min-height: 160rem
    }
  
    .lg\:min-w-0 {
      min-width: 0
    }
  
    .lg\:min-w-1 {
      min-width: 0.25rem
    }
  
    .lg\:min-w-2 {
      min-width: 0.5rem
    }
  
    .lg\:min-w-3 {
      min-width: 0.75rem
    }
  
    .lg\:min-w-4 {
      min-width: 0.4rem
    }
  
    .lg\:min-w-5 {
      min-width: 1.25rem
    }
  
    .lg\:min-w-6 {
      min-width: 0.6rem
    }
  
    .lg\:min-w-8 {
      min-width: 0.8rem
    }
  
    .lg\:min-w-10 {
      min-width: 2.5rem
    }
  
    .lg\:min-w-12 {
      min-width: 1.2rem
    }
  
    .lg\:min-w-16 {
      min-width: 1.6rem
    }
  
    .lg\:min-w-20 {
      min-width: 2rem
    }
  
    .lg\:min-w-24 {
      min-width: 2.4rem
    }
  
    .lg\:min-w-28 {
      min-width: 2.8rem
    }
  
    .lg\:min-w-32 {
      min-width: 3.2rem
    }
  
    .lg\:min-w-36 {
      min-width: 3.6rem
    }
  
    .lg\:min-w-40 {
      min-width: 4rem
    }
  
    .lg\:min-w-44 {
      min-width: 4.4rem
    }
  
    .lg\:min-w-48 {
      min-width: 4.8rem
    }
  
    .lg\:min-w-52 {
      min-width: 5.2rem
    }
  
    .lg\:min-w-56 {
      min-width: 5.6rem
    }
  
    .lg\:min-w-60 {
      min-width: 6rem
    }
  
    .lg\:min-w-64 {
      min-width: 6.4rem
    }
  
    .lg\:min-w-68 {
      min-width: 6.8rem
    }
  
    .lg\:min-w-72 {
      min-width: 7.2rem
    }
  
    .lg\:min-w-76 {
      min-width: 7.6rem
    }
  
    .lg\:min-w-80 {
      min-width: 8rem
    }
  
    .lg\:min-w-84 {
      min-width: 8.4rem
    }
  
    .lg\:min-w-88 {
      min-width: 8.8rem
    }
  
    .lg\:min-w-92 {
      min-width: 9.2rem
    }
  
    .lg\:min-w-96 {
      min-width: 9.6rem
    }
  
    .lg\:min-w-128 {
      min-width: 12.8rem
    }
  
    .lg\:min-w-136 {
      min-width: 13.6rem
    }
  
    .lg\:min-w-160 {
      min-width: 16rem
    }
  
    .lg\:min-w-192 {
      min-width: 19.2rem
    }
  
    .lg\:min-w-200 {
      min-width: 20rem
    }
  
    .lg\:min-w-208 {
      min-width: 20.8rem
    }
  
    .lg\:min-w-216 {
      min-width: 21.6rem
    }
  
    .lg\:min-w-224 {
      min-width: 22.4rem
    }
  
    .lg\:min-w-256 {
      min-width: 25.6rem
    }
  
    .lg\:min-w-288 {
      min-width: 28.8rem
    }
  
    .lg\:min-w-320 {
      min-width: 32rem
    }
  
    .lg\:min-w-360 {
      min-width: 36rem
    }
  
    .lg\:min-w-384 {
      min-width: 38.4rem
    }
  
    .lg\:min-w-400 {
      min-width: 40rem
    }
  
    .lg\:min-w-512 {
      min-width: 51.2rem
    }
  
    .lg\:min-w-640 {
      min-width: 64rem
    }
  
    .lg\:min-w-full {
      min-width: 100%
    }
  
    .lg\:min-w-px {
      min-width: 1px
    }
  
    .lg\:min-w-xs {
      min-width: 32rem
    }
  
    .lg\:min-w-sm {
      min-width: 48rem
    }
  
    .lg\:min-w-md {
      min-width: 64rem
    }
  
    .lg\:min-w-lg {
      min-width: 80rem
    }
  
    .lg\:min-w-xl {
      min-width: 96rem
    }
  
    .lg\:min-w-2xl {
      min-width: 112rem
    }
  
    .lg\:min-w-3xl {
      min-width: 128rem
    }
  
    .lg\:min-w-4xl {
      min-width: 144rem
    }
  
    .lg\:min-w-5xl {
      min-width: 160rem
    }
  
    .lg\:min-w-auto {
      min-width: auto
    }
  
    .lg\:min-w-screen {
      min-width: 100vw
    }
  
    .lg\:object-contain {
      object-fit: contain
    }
  
    .lg\:object-cover {
      object-fit: cover
    }
  
    .lg\:object-fill {
      object-fit: fill
    }
  
    .lg\:object-none {
      object-fit: none
    }
  
    .lg\:object-scale-down {
      object-fit: scale-down
    }
  
    .lg\:object-bottom {
      object-position: bottom
    }
  
    .lg\:object-center {
      object-position: center
    }
  
    .lg\:object-left {
      object-position: left
    }
  
    .lg\:object-left-bottom {
      object-position: left bottom
    }
  
    .lg\:object-left-top {
      object-position: left top
    }
  
    .lg\:object-right {
      object-position: right
    }
  
    .lg\:object-right-bottom {
      object-position: right bottom
    }
  
    .lg\:object-right-top {
      object-position: right top
    }
  
    .lg\:object-top {
      object-position: top
    }
  
    .lg\:opacity-0 {
      opacity: 0
    }
  
    .lg\:opacity-25 {
      opacity: 0.25
    }
  
    .lg\:opacity-50 {
      opacity: 0.5
    }
  
    .lg\:opacity-75 {
      opacity: 0.75
    }
  
    .lg\:opacity-100 {
      opacity: 1
    }
  
    .lg\:outline-none {
      outline: 0
    }
  
    .lg\:focus\:outline-none:focus {
      outline: 0
    }
  
    .lg\:overflow-auto {
      overflow: auto
    }
  
    .lg\:overflow-hidden {
      overflow: hidden
    }
  
    .lg\:overflow-visible {
      overflow: visible
    }
  
    .lg\:overflow-scroll {
      overflow: scroll
    }
  
    .lg\:overflow-x-auto {
      overflow-x: auto
    }
  
    .lg\:overflow-y-auto {
      overflow-y: auto
    }
  
    .lg\:overflow-x-hidden {
      overflow-x: hidden
    }
  
    .lg\:overflow-y-hidden {
      overflow-y: hidden
    }
  
    .lg\:overflow-x-visible {
      overflow-x: visible
    }
  
    .lg\:overflow-y-visible {
      overflow-y: visible
    }
  
    .lg\:overflow-x-scroll {
      overflow-x: scroll
    }
  
    .lg\:overflow-y-scroll {
      overflow-y: scroll
    }
  
    .lg\:scrolling-touch {
      -webkit-overflow-scrolling: touch
    }
  
    .lg\:scrolling-auto {
      -webkit-overflow-scrolling: auto
    }
  
    .lg\:p-0 {
      padding: 0
    }
  
    .lg\:p-1 {
      padding: 0.25rem
    }
  
    .lg\:p-2 {
      padding: 0.5rem
    }
  
    .lg\:p-3 {
      padding: 0.75rem
    }
  
    .lg\:p-4 {
      padding: 0.4rem
    }
  
    .lg\:p-5 {
      padding: 1.25rem
    }
  
    .lg\:p-6 {
      padding: 0.6rem
    }
  
    .lg\:p-8 {
      padding: 0.8rem
    }
  
    .lg\:p-10 {
      padding: 2.5rem
    }
  
    .lg\:p-12 {
      padding: 1.2rem
    }
  
    .lg\:p-16 {
      padding: 1.6rem
    }
  
    .lg\:p-20 {
      padding: 2rem
    }
  
    .lg\:p-24 {
      padding: 2.4rem
    }
  
    .lg\:p-28 {
      padding: 2.8rem
    }
  
    .lg\:p-32 {
      padding: 3.2rem
    }
  
    .lg\:p-36 {
      padding: 3.6rem
    }
  
    .lg\:p-40 {
      padding: 4rem
    }
  
    .lg\:p-44 {
      padding: 4.4rem
    }
  
    .lg\:p-48 {
      padding: 4.8rem
    }
  
    .lg\:p-52 {
      padding: 5.2rem
    }
  
    .lg\:p-56 {
      padding: 5.6rem
    }
  
    .lg\:p-60 {
      padding: 6rem
    }
  
    .lg\:p-64 {
      padding: 6.4rem
    }
  
    .lg\:p-68 {
      padding: 6.8rem
    }
  
    .lg\:p-72 {
      padding: 7.2rem
    }
  
    .lg\:p-76 {
      padding: 7.6rem
    }
  
    .lg\:p-80 {
      padding: 8rem
    }
  
    .lg\:p-84 {
      padding: 8.4rem
    }
  
    .lg\:p-88 {
      padding: 8.8rem
    }
  
    .lg\:p-92 {
      padding: 9.2rem
    }
  
    .lg\:p-96 {
      padding: 9.6rem
    }
  
    .lg\:p-128 {
      padding: 12.8rem
    }
  
    .lg\:p-136 {
      padding: 13.6rem
    }
  
    .lg\:p-160 {
      padding: 16rem
    }
  
    .lg\:p-192 {
      padding: 19.2rem
    }
  
    .lg\:p-200 {
      padding: 20rem
    }
  
    .lg\:p-208 {
      padding: 20.8rem
    }
  
    .lg\:p-216 {
      padding: 21.6rem
    }
  
    .lg\:p-224 {
      padding: 22.4rem
    }
  
    .lg\:p-256 {
      padding: 25.6rem
    }
  
    .lg\:p-288 {
      padding: 28.8rem
    }
  
    .lg\:p-320 {
      padding: 32rem
    }
  
    .lg\:p-360 {
      padding: 36rem
    }
  
    .lg\:p-384 {
      padding: 38.4rem
    }
  
    .lg\:p-400 {
      padding: 40rem
    }
  
    .lg\:p-512 {
      padding: 51.2rem
    }
  
    .lg\:p-640 {
      padding: 64rem
    }
  
    .lg\:p-px {
      padding: 1px
    }
  
    .lg\:p-xs {
      padding: 32rem
    }
  
    .lg\:p-sm {
      padding: 48rem
    }
  
    .lg\:p-md {
      padding: 64rem
    }
  
    .lg\:p-lg {
      padding: 80rem
    }
  
    .lg\:p-xl {
      padding: 96rem
    }
  
    .lg\:p-2xl {
      padding: 112rem
    }
  
    .lg\:p-3xl {
      padding: 128rem
    }
  
    .lg\:p-4xl {
      padding: 144rem
    }
  
    .lg\:p-5xl {
      padding: 160rem
    }
  
    .lg\:p-auto {
      padding: auto
    }
  
    .lg\:py-0 {
      padding-top: 0;
      padding-bottom: 0
    }
  
    .lg\:px-0 {
      padding-left: 0;
      padding-right: 0
    }
  
    .lg\:py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem
    }
  
    .lg\:px-1 {
      padding-left: 0.25rem;
      padding-right: 0.25rem
    }
  
    .lg\:py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem
    }
  
    .lg\:px-2 {
      padding-left: 0.5rem;
      padding-right: 0.5rem
    }
  
    .lg\:py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem
    }
  
    .lg\:px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem
    }
  
    .lg\:py-4 {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem
    }
  
    .lg\:px-4 {
      padding-left: 0.4rem;
      padding-right: 0.4rem
    }
  
    .lg\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem
    }
  
    .lg\:px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }
  
    .lg\:py-6 {
      padding-top: 0.6rem;
      padding-bottom: 0.6rem
    }
  
    .lg\:px-6 {
      padding-left: 0.6rem;
      padding-right: 0.6rem
    }
  
    .lg\:py-8 {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem
    }
  
    .lg\:px-8 {
      padding-left: 0.8rem;
      padding-right: 0.8rem
    }
  
    .lg\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
    }
  
    .lg\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
    }
  
    .lg\:py-12 {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem
    }
  
    .lg\:px-12 {
      padding-left: 1.2rem;
      padding-right: 1.2rem
    }
  
    .lg\:py-16 {
      padding-top: 1.6rem;
      padding-bottom: 1.6rem
    }
  
    .lg\:px-16 {
      padding-left: 1.6rem;
      padding-right: 1.6rem
    }
  
    .lg\:py-20 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }
  
    .lg\:px-20 {
      padding-left: 2rem;
      padding-right: 2rem
    }
  
    .lg\:py-24 {
      padding-top: 2.4rem;
      padding-bottom: 2.4rem
    }
  
    .lg\:px-24 {
      padding-left: 2.4rem;
      padding-right: 2.4rem
    }
  
    .lg\:py-28 {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem
    }
  
    .lg\:px-28 {
      padding-left: 2.8rem;
      padding-right: 2.8rem
    }
  
    .lg\:py-32 {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem
    }
  
    .lg\:px-32 {
      padding-left: 3.2rem;
      padding-right: 3.2rem
    }
  
    .lg\:py-36 {
      padding-top: 3.6rem;
      padding-bottom: 3.6rem
    }
  
    .lg\:px-36 {
      padding-left: 3.6rem;
      padding-right: 3.6rem
    }
  
    .lg\:py-40 {
      padding-top: 4rem;
      padding-bottom: 4rem
    }
  
    .lg\:px-40 {
      padding-left: 4rem;
      padding-right: 4rem
    }
  
    .lg\:py-44 {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem
    }
  
    .lg\:px-44 {
      padding-left: 4.4rem;
      padding-right: 4.4rem
    }
  
    .lg\:py-48 {
      padding-top: 4.8rem;
      padding-bottom: 4.8rem
    }
  
    .lg\:px-48 {
      padding-left: 4.8rem;
      padding-right: 4.8rem
    }
  
    .lg\:py-52 {
      padding-top: 5.2rem;
      padding-bottom: 5.2rem
    }
  
    .lg\:px-52 {
      padding-left: 5.2rem;
      padding-right: 5.2rem
    }
  
    .lg\:py-56 {
      padding-top: 5.6rem;
      padding-bottom: 5.6rem
    }
  
    .lg\:px-56 {
      padding-left: 5.6rem;
      padding-right: 5.6rem
    }
  
    .lg\:py-60 {
      padding-top: 6rem;
      padding-bottom: 6rem
    }
  
    .lg\:px-60 {
      padding-left: 6rem;
      padding-right: 6rem
    }
  
    .lg\:py-64 {
      padding-top: 6.4rem;
      padding-bottom: 6.4rem
    }
  
    .lg\:px-64 {
      padding-left: 6.4rem;
      padding-right: 6.4rem
    }
  
    .lg\:py-68 {
      padding-top: 6.8rem;
      padding-bottom: 6.8rem
    }
  
    .lg\:px-68 {
      padding-left: 6.8rem;
      padding-right: 6.8rem
    }
  
    .lg\:py-72 {
      padding-top: 7.2rem;
      padding-bottom: 7.2rem
    }
  
    .lg\:px-72 {
      padding-left: 7.2rem;
      padding-right: 7.2rem
    }
  
    .lg\:py-76 {
      padding-top: 7.6rem;
      padding-bottom: 7.6rem
    }
  
    .lg\:px-76 {
      padding-left: 7.6rem;
      padding-right: 7.6rem
    }
  
    .lg\:py-80 {
      padding-top: 8rem;
      padding-bottom: 8rem
    }
  
    .lg\:px-80 {
      padding-left: 8rem;
      padding-right: 8rem
    }
  
    .lg\:py-84 {
      padding-top: 8.4rem;
      padding-bottom: 8.4rem
    }
  
    .lg\:px-84 {
      padding-left: 8.4rem;
      padding-right: 8.4rem
    }
  
    .lg\:py-88 {
      padding-top: 8.8rem;
      padding-bottom: 8.8rem
    }
  
    .lg\:px-88 {
      padding-left: 8.8rem;
      padding-right: 8.8rem
    }
  
    .lg\:py-92 {
      padding-top: 9.2rem;
      padding-bottom: 9.2rem
    }
  
    .lg\:px-92 {
      padding-left: 9.2rem;
      padding-right: 9.2rem
    }
  
    .lg\:py-96 {
      padding-top: 9.6rem;
      padding-bottom: 9.6rem
    }
  
    .lg\:px-96 {
      padding-left: 9.6rem;
      padding-right: 9.6rem
    }
  
    .lg\:py-128 {
      padding-top: 12.8rem;
      padding-bottom: 12.8rem
    }
  
    .lg\:px-128 {
      padding-left: 12.8rem;
      padding-right: 12.8rem
    }
  
    .lg\:py-136 {
      padding-top: 13.6rem;
      padding-bottom: 13.6rem
    }
  
    .lg\:px-136 {
      padding-left: 13.6rem;
      padding-right: 13.6rem
    }
  
    .lg\:py-160 {
      padding-top: 16rem;
      padding-bottom: 16rem
    }
  
    .lg\:px-160 {
      padding-left: 16rem;
      padding-right: 16rem
    }
  
    .lg\:py-192 {
      padding-top: 19.2rem;
      padding-bottom: 19.2rem
    }
  
    .lg\:px-192 {
      padding-left: 19.2rem;
      padding-right: 19.2rem
    }
  
    .lg\:py-200 {
      padding-top: 20rem;
      padding-bottom: 20rem
    }
  
    .lg\:px-200 {
      padding-left: 20rem;
      padding-right: 20rem
    }
  
    .lg\:py-208 {
      padding-top: 20.8rem;
      padding-bottom: 20.8rem
    }
  
    .lg\:px-208 {
      padding-left: 20.8rem;
      padding-right: 20.8rem
    }
  
    .lg\:py-216 {
      padding-top: 21.6rem;
      padding-bottom: 21.6rem
    }
  
    .lg\:px-216 {
      padding-left: 21.6rem;
      padding-right: 21.6rem
    }
  
    .lg\:py-224 {
      padding-top: 22.4rem;
      padding-bottom: 22.4rem
    }
  
    .lg\:px-224 {
      padding-left: 22.4rem;
      padding-right: 22.4rem
    }
  
    .lg\:py-256 {
      padding-top: 25.6rem;
      padding-bottom: 25.6rem
    }
  
    .lg\:px-256 {
      padding-left: 25.6rem;
      padding-right: 25.6rem
    }
  
    .lg\:py-288 {
      padding-top: 28.8rem;
      padding-bottom: 28.8rem
    }
  
    .lg\:px-288 {
      padding-left: 28.8rem;
      padding-right: 28.8rem
    }
  
    .lg\:py-320 {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .lg\:px-320 {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .lg\:py-360 {
      padding-top: 36rem;
      padding-bottom: 36rem
    }
  
    .lg\:px-360 {
      padding-left: 36rem;
      padding-right: 36rem
    }
  
    .lg\:py-384 {
      padding-top: 38.4rem;
      padding-bottom: 38.4rem
    }
  
    .lg\:px-384 {
      padding-left: 38.4rem;
      padding-right: 38.4rem
    }
  
    .lg\:py-400 {
      padding-top: 40rem;
      padding-bottom: 40rem
    }
  
    .lg\:px-400 {
      padding-left: 40rem;
      padding-right: 40rem
    }
  
    .lg\:py-512 {
      padding-top: 51.2rem;
      padding-bottom: 51.2rem
    }
  
    .lg\:px-512 {
      padding-left: 51.2rem;
      padding-right: 51.2rem
    }
  
    .lg\:py-640 {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .lg\:px-640 {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .lg\:py-px {
      padding-top: 1px;
      padding-bottom: 1px
    }
  
    .lg\:px-px {
      padding-left: 1px;
      padding-right: 1px
    }
  
    .lg\:py-xs {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .lg\:px-xs {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .lg\:py-sm {
      padding-top: 48rem;
      padding-bottom: 48rem
    }
  
    .lg\:px-sm {
      padding-left: 48rem;
      padding-right: 48rem
    }
  
    .lg\:py-md {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .lg\:px-md {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .lg\:py-lg {
      padding-top: 80rem;
      padding-bottom: 80rem
    }
  
    .lg\:px-lg {
      padding-left: 80rem;
      padding-right: 80rem
    }
  
    .lg\:py-xl {
      padding-top: 96rem;
      padding-bottom: 96rem
    }
  
    .lg\:px-xl {
      padding-left: 96rem;
      padding-right: 96rem
    }
  
    .lg\:py-2xl {
      padding-top: 112rem;
      padding-bottom: 112rem
    }
  
    .lg\:px-2xl {
      padding-left: 112rem;
      padding-right: 112rem
    }
  
    .lg\:py-3xl {
      padding-top: 128rem;
      padding-bottom: 128rem
    }
  
    .lg\:px-3xl {
      padding-left: 128rem;
      padding-right: 128rem
    }
  
    .lg\:py-4xl {
      padding-top: 144rem;
      padding-bottom: 144rem
    }
  
    .lg\:px-4xl {
      padding-left: 144rem;
      padding-right: 144rem
    }
  
    .lg\:py-5xl {
      padding-top: 160rem;
      padding-bottom: 160rem
    }
  
    .lg\:px-5xl {
      padding-left: 160rem;
      padding-right: 160rem
    }
  
    .lg\:py-auto {
      padding-top: auto;
      padding-bottom: auto
    }
  
    .lg\:px-auto {
      padding-left: auto;
      padding-right: auto
    }
  
    .lg\:pt-0 {
      padding-top: 0
    }
  
    .lg\:pr-0 {
      padding-right: 0
    }
  
    .lg\:pb-0 {
      padding-bottom: 0
    }
  
    .lg\:pl-0 {
      padding-left: 0
    }
  
    .lg\:pt-1 {
      padding-top: 0.25rem
    }
  
    .lg\:pr-1 {
      padding-right: 0.25rem
    }
  
    .lg\:pb-1 {
      padding-bottom: 0.25rem
    }
  
    .lg\:pl-1 {
      padding-left: 0.25rem
    }
  
    .lg\:pt-2 {
      padding-top: 0.5rem
    }
  
    .lg\:pr-2 {
      padding-right: 0.5rem
    }
  
    .lg\:pb-2 {
      padding-bottom: 0.5rem
    }
  
    .lg\:pl-2 {
      padding-left: 0.5rem
    }
  
    .lg\:pt-3 {
      padding-top: 0.75rem
    }
  
    .lg\:pr-3 {
      padding-right: 0.75rem
    }
  
    .lg\:pb-3 {
      padding-bottom: 0.75rem
    }
  
    .lg\:pl-3 {
      padding-left: 0.75rem
    }
  
    .lg\:pt-4 {
      padding-top: 0.4rem
    }
  
    .lg\:pr-4 {
      padding-right: 0.4rem
    }
  
    .lg\:pb-4 {
      padding-bottom: 0.4rem
    }
  
    .lg\:pl-4 {
      padding-left: 0.4rem
    }
  
    .lg\:pt-5 {
      padding-top: 1.25rem
    }
  
    .lg\:pr-5 {
      padding-right: 1.25rem
    }
  
    .lg\:pb-5 {
      padding-bottom: 1.25rem
    }
  
    .lg\:pl-5 {
      padding-left: 1.25rem
    }
  
    .lg\:pt-6 {
      padding-top: 0.6rem
    }
  
    .lg\:pr-6 {
      padding-right: 0.6rem
    }
  
    .lg\:pb-6 {
      padding-bottom: 0.6rem
    }
  
    .lg\:pl-6 {
      padding-left: 0.6rem
    }
  
    .lg\:pt-8 {
      padding-top: 0.8rem
    }
  
    .lg\:pr-8 {
      padding-right: 0.8rem
    }
  
    .lg\:pb-8 {
      padding-bottom: 0.8rem
    }
  
    .lg\:pl-8 {
      padding-left: 0.8rem
    }
  
    .lg\:pt-10 {
      padding-top: 2.5rem
    }
  
    .lg\:pr-10 {
      padding-right: 2.5rem
    }
  
    .lg\:pb-10 {
      padding-bottom: 2.5rem
    }
  
    .lg\:pl-10 {
      padding-left: 2.5rem
    }
  
    .lg\:pt-12 {
      padding-top: 1.2rem
    }
  
    .lg\:pr-12 {
      padding-right: 1.2rem
    }
  
    .lg\:pb-12 {
      padding-bottom: 1.2rem
    }
  
    .lg\:pl-12 {
      padding-left: 1.2rem
    }
  
    .lg\:pt-16 {
      padding-top: 1.6rem
    }
  
    .lg\:pr-16 {
      padding-right: 1.6rem
    }
  
    .lg\:pb-16 {
      padding-bottom: 1.6rem
    }
  
    .lg\:pl-16 {
      padding-left: 1.6rem
    }
  
    .lg\:pt-20 {
      padding-top: 2rem
    }
  
    .lg\:pr-20 {
      padding-right: 2rem
    }
  
    .lg\:pb-20 {
      padding-bottom: 2rem
    }
  
    .lg\:pl-20 {
      padding-left: 2rem
    }
  
    .lg\:pt-24 {
      padding-top: 2.4rem
    }
  
    .lg\:pr-24 {
      padding-right: 2.4rem
    }
  
    .lg\:pb-24 {
      padding-bottom: 2.4rem
    }
  
    .lg\:pl-24 {
      padding-left: 2.4rem
    }
  
    .lg\:pt-28 {
      padding-top: 2.8rem
    }
  
    .lg\:pr-28 {
      padding-right: 2.8rem
    }
  
    .lg\:pb-28 {
      padding-bottom: 2.8rem
    }
  
    .lg\:pl-28 {
      padding-left: 2.8rem
    }
  
    .lg\:pt-32 {
      padding-top: 3.2rem
    }
  
    .lg\:pr-32 {
      padding-right: 3.2rem
    }
  
    .lg\:pb-32 {
      padding-bottom: 3.2rem
    }
  
    .lg\:pl-32 {
      padding-left: 3.2rem
    }
  
    .lg\:pt-36 {
      padding-top: 3.6rem
    }
  
    .lg\:pr-36 {
      padding-right: 3.6rem
    }
  
    .lg\:pb-36 {
      padding-bottom: 3.6rem
    }
  
    .lg\:pl-36 {
      padding-left: 3.6rem
    }
  
    .lg\:pt-40 {
      padding-top: 4rem
    }
  
    .lg\:pr-40 {
      padding-right: 4rem
    }
  
    .lg\:pb-40 {
      padding-bottom: 4rem
    }
  
    .lg\:pl-40 {
      padding-left: 4rem
    }
  
    .lg\:pt-44 {
      padding-top: 4.4rem
    }
  
    .lg\:pr-44 {
      padding-right: 4.4rem
    }
  
    .lg\:pb-44 {
      padding-bottom: 4.4rem
    }
  
    .lg\:pl-44 {
      padding-left: 4.4rem
    }
  
    .lg\:pt-48 {
      padding-top: 4.8rem
    }
  
    .lg\:pr-48 {
      padding-right: 4.8rem
    }
  
    .lg\:pb-48 {
      padding-bottom: 4.8rem
    }
  
    .lg\:pl-48 {
      padding-left: 4.8rem
    }
  
    .lg\:pt-52 {
      padding-top: 5.2rem
    }
  
    .lg\:pr-52 {
      padding-right: 5.2rem
    }
  
    .lg\:pb-52 {
      padding-bottom: 5.2rem
    }
  
    .lg\:pl-52 {
      padding-left: 5.2rem
    }
  
    .lg\:pt-56 {
      padding-top: 5.6rem
    }
  
    .lg\:pr-56 {
      padding-right: 5.6rem
    }
  
    .lg\:pb-56 {
      padding-bottom: 5.6rem
    }
  
    .lg\:pl-56 {
      padding-left: 5.6rem
    }
  
    .lg\:pt-60 {
      padding-top: 6rem
    }
  
    .lg\:pr-60 {
      padding-right: 6rem
    }
  
    .lg\:pb-60 {
      padding-bottom: 6rem
    }
  
    .lg\:pl-60 {
      padding-left: 6rem
    }
  
    .lg\:pt-64 {
      padding-top: 6.4rem
    }
  
    .lg\:pr-64 {
      padding-right: 6.4rem
    }
  
    .lg\:pb-64 {
      padding-bottom: 6.4rem
    }
  
    .lg\:pl-64 {
      padding-left: 6.4rem
    }
  
    .lg\:pt-68 {
      padding-top: 6.8rem
    }
  
    .lg\:pr-68 {
      padding-right: 6.8rem
    }
  
    .lg\:pb-68 {
      padding-bottom: 6.8rem
    }
  
    .lg\:pl-68 {
      padding-left: 6.8rem
    }
  
    .lg\:pt-72 {
      padding-top: 7.2rem
    }
  
    .lg\:pr-72 {
      padding-right: 7.2rem
    }
  
    .lg\:pb-72 {
      padding-bottom: 7.2rem
    }
  
    .lg\:pl-72 {
      padding-left: 7.2rem
    }
  
    .lg\:pt-76 {
      padding-top: 7.6rem
    }
  
    .lg\:pr-76 {
      padding-right: 7.6rem
    }
  
    .lg\:pb-76 {
      padding-bottom: 7.6rem
    }
  
    .lg\:pl-76 {
      padding-left: 7.6rem
    }
  
    .lg\:pt-80 {
      padding-top: 8rem
    }
  
    .lg\:pr-80 {
      padding-right: 8rem
    }
  
    .lg\:pb-80 {
      padding-bottom: 8rem
    }
  
    .lg\:pl-80 {
      padding-left: 8rem
    }
  
    .lg\:pt-84 {
      padding-top: 8.4rem
    }
  
    .lg\:pr-84 {
      padding-right: 8.4rem
    }
  
    .lg\:pb-84 {
      padding-bottom: 8.4rem
    }
  
    .lg\:pl-84 {
      padding-left: 8.4rem
    }
  
    .lg\:pt-88 {
      padding-top: 8.8rem
    }
  
    .lg\:pr-88 {
      padding-right: 8.8rem
    }
  
    .lg\:pb-88 {
      padding-bottom: 8.8rem
    }
  
    .lg\:pl-88 {
      padding-left: 8.8rem
    }
  
    .lg\:pt-92 {
      padding-top: 9.2rem
    }
  
    .lg\:pr-92 {
      padding-right: 9.2rem
    }
  
    .lg\:pb-92 {
      padding-bottom: 9.2rem
    }
  
    .lg\:pl-92 {
      padding-left: 9.2rem
    }
  
    .lg\:pt-96 {
      padding-top: 9.6rem
    }
  
    .lg\:pr-96 {
      padding-right: 9.6rem
    }
  
    .lg\:pb-96 {
      padding-bottom: 9.6rem
    }
  
    .lg\:pl-96 {
      padding-left: 9.6rem
    }
  
    .lg\:pt-128 {
      padding-top: 12.8rem
    }
  
    .lg\:pr-128 {
      padding-right: 12.8rem
    }
  
    .lg\:pb-128 {
      padding-bottom: 12.8rem
    }
  
    .lg\:pl-128 {
      padding-left: 12.8rem
    }
  
    .lg\:pt-136 {
      padding-top: 13.6rem
    }
  
    .lg\:pr-136 {
      padding-right: 13.6rem
    }
  
    .lg\:pb-136 {
      padding-bottom: 13.6rem
    }
  
    .lg\:pl-136 {
      padding-left: 13.6rem
    }
  
    .lg\:pt-160 {
      padding-top: 16rem
    }
  
    .lg\:pr-160 {
      padding-right: 16rem
    }
  
    .lg\:pb-160 {
      padding-bottom: 16rem
    }
  
    .lg\:pl-160 {
      padding-left: 16rem
    }
  
    .lg\:pt-192 {
      padding-top: 19.2rem
    }
  
    .lg\:pr-192 {
      padding-right: 19.2rem
    }
  
    .lg\:pb-192 {
      padding-bottom: 19.2rem
    }
  
    .lg\:pl-192 {
      padding-left: 19.2rem
    }
  
    .lg\:pt-200 {
      padding-top: 20rem
    }
  
    .lg\:pr-200 {
      padding-right: 20rem
    }
  
    .lg\:pb-200 {
      padding-bottom: 20rem
    }
  
    .lg\:pl-200 {
      padding-left: 20rem
    }
  
    .lg\:pt-208 {
      padding-top: 20.8rem
    }
  
    .lg\:pr-208 {
      padding-right: 20.8rem
    }
  
    .lg\:pb-208 {
      padding-bottom: 20.8rem
    }
  
    .lg\:pl-208 {
      padding-left: 20.8rem
    }
  
    .lg\:pt-216 {
      padding-top: 21.6rem
    }
  
    .lg\:pr-216 {
      padding-right: 21.6rem
    }
  
    .lg\:pb-216 {
      padding-bottom: 21.6rem
    }
  
    .lg\:pl-216 {
      padding-left: 21.6rem
    }
  
    .lg\:pt-224 {
      padding-top: 22.4rem
    }
  
    .lg\:pr-224 {
      padding-right: 22.4rem
    }
  
    .lg\:pb-224 {
      padding-bottom: 22.4rem
    }
  
    .lg\:pl-224 {
      padding-left: 22.4rem
    }
  
    .lg\:pt-256 {
      padding-top: 25.6rem
    }
  
    .lg\:pr-256 {
      padding-right: 25.6rem
    }
  
    .lg\:pb-256 {
      padding-bottom: 25.6rem
    }
  
    .lg\:pl-256 {
      padding-left: 25.6rem
    }
  
    .lg\:pt-288 {
      padding-top: 28.8rem
    }
  
    .lg\:pr-288 {
      padding-right: 28.8rem
    }
  
    .lg\:pb-288 {
      padding-bottom: 28.8rem
    }
  
    .lg\:pl-288 {
      padding-left: 28.8rem
    }
  
    .lg\:pt-320 {
      padding-top: 32rem
    }
  
    .lg\:pr-320 {
      padding-right: 32rem
    }
  
    .lg\:pb-320 {
      padding-bottom: 32rem
    }
  
    .lg\:pl-320 {
      padding-left: 32rem
    }
  
    .lg\:pt-360 {
      padding-top: 36rem
    }
  
    .lg\:pr-360 {
      padding-right: 36rem
    }
  
    .lg\:pb-360 {
      padding-bottom: 36rem
    }
  
    .lg\:pl-360 {
      padding-left: 36rem
    }
  
    .lg\:pt-384 {
      padding-top: 38.4rem
    }
  
    .lg\:pr-384 {
      padding-right: 38.4rem
    }
  
    .lg\:pb-384 {
      padding-bottom: 38.4rem
    }
  
    .lg\:pl-384 {
      padding-left: 38.4rem
    }
  
    .lg\:pt-400 {
      padding-top: 40rem
    }
  
    .lg\:pr-400 {
      padding-right: 40rem
    }
  
    .lg\:pb-400 {
      padding-bottom: 40rem
    }
  
    .lg\:pl-400 {
      padding-left: 40rem
    }
  
    .lg\:pt-512 {
      padding-top: 51.2rem
    }
  
    .lg\:pr-512 {
      padding-right: 51.2rem
    }
  
    .lg\:pb-512 {
      padding-bottom: 51.2rem
    }
  
    .lg\:pl-512 {
      padding-left: 51.2rem
    }
  
    .lg\:pt-640 {
      padding-top: 64rem
    }
  
    .lg\:pr-640 {
      padding-right: 64rem
    }
  
    .lg\:pb-640 {
      padding-bottom: 64rem
    }
  
    .lg\:pl-640 {
      padding-left: 64rem
    }
  
    .lg\:pt-px {
      padding-top: 1px
    }
  
    .lg\:pr-px {
      padding-right: 1px
    }
  
    .lg\:pb-px {
      padding-bottom: 1px
    }
  
    .lg\:pl-px {
      padding-left: 1px
    }
  
    .lg\:pt-xs {
      padding-top: 32rem
    }
  
    .lg\:pr-xs {
      padding-right: 32rem
    }
  
    .lg\:pb-xs {
      padding-bottom: 32rem
    }
  
    .lg\:pl-xs {
      padding-left: 32rem
    }
  
    .lg\:pt-sm {
      padding-top: 48rem
    }
  
    .lg\:pr-sm {
      padding-right: 48rem
    }
  
    .lg\:pb-sm {
      padding-bottom: 48rem
    }
  
    .lg\:pl-sm {
      padding-left: 48rem
    }
  
    .lg\:pt-md {
      padding-top: 64rem
    }
  
    .lg\:pr-md {
      padding-right: 64rem
    }
  
    .lg\:pb-md {
      padding-bottom: 64rem
    }
  
    .lg\:pl-md {
      padding-left: 64rem
    }
  
    .lg\:pt-lg {
      padding-top: 80rem
    }
  
    .lg\:pr-lg {
      padding-right: 80rem
    }
  
    .lg\:pb-lg {
      padding-bottom: 80rem
    }
  
    .lg\:pl-lg {
      padding-left: 80rem
    }
  
    .lg\:pt-xl {
      padding-top: 96rem
    }
  
    .lg\:pr-xl {
      padding-right: 96rem
    }
  
    .lg\:pb-xl {
      padding-bottom: 96rem
    }
  
    .lg\:pl-xl {
      padding-left: 96rem
    }
  
    .lg\:pt-2xl {
      padding-top: 112rem
    }
  
    .lg\:pr-2xl {
      padding-right: 112rem
    }
  
    .lg\:pb-2xl {
      padding-bottom: 112rem
    }
  
    .lg\:pl-2xl {
      padding-left: 112rem
    }
  
    .lg\:pt-3xl {
      padding-top: 128rem
    }
  
    .lg\:pr-3xl {
      padding-right: 128rem
    }
  
    .lg\:pb-3xl {
      padding-bottom: 128rem
    }
  
    .lg\:pl-3xl {
      padding-left: 128rem
    }
  
    .lg\:pt-4xl {
      padding-top: 144rem
    }
  
    .lg\:pr-4xl {
      padding-right: 144rem
    }
  
    .lg\:pb-4xl {
      padding-bottom: 144rem
    }
  
    .lg\:pl-4xl {
      padding-left: 144rem
    }
  
    .lg\:pt-5xl {
      padding-top: 160rem
    }
  
    .lg\:pr-5xl {
      padding-right: 160rem
    }
  
    .lg\:pb-5xl {
      padding-bottom: 160rem
    }
  
    .lg\:pl-5xl {
      padding-left: 160rem
    }
  
    .lg\:pt-auto {
      padding-top: auto
    }
  
    .lg\:pr-auto {
      padding-right: auto
    }
  
    .lg\:pb-auto {
      padding-bottom: auto
    }
  
    .lg\:pl-auto {
      padding-left: auto
    }
  
    .lg\:pointer-events-none {
      pointer-events: none
    }
  
    .lg\:pointer-events-auto {
      pointer-events: auto
    }
  
    .lg\:static {
      position: static
    }
  
    .lg\:fixed {
      position: fixed
    }
  
    .lg\:absolute {
      position: absolute
    }
  
    .lg\:relative {
      position: relative
    }
  
    .lg\:sticky {
      position: -webkit-sticky;
      position: sticky
    }
  
    .lg\:inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0
    }
  
    .lg\:inset-auto {
      top: auto;
      right: auto;
      bottom: auto;
      left: auto
    }
  
    .lg\:inset-y-0 {
      top: 0;
      bottom: 0
    }
  
    .lg\:inset-x-0 {
      right: 0;
      left: 0
    }
  
    .lg\:inset-y-auto {
      top: auto;
      bottom: auto
    }
  
    .lg\:inset-x-auto {
      right: auto;
      left: auto
    }
  
    .lg\:top-0 {
      top: 0
    }
  
    .lg\:right-0 {
      right: 0
    }
  
    .lg\:bottom-0 {
      bottom: 0
    }
  
    .lg\:left-0 {
      left: 0
    }
  
    .lg\:top-auto {
      top: auto
    }
  
    .lg\:right-auto {
      right: auto
    }
  
    .lg\:bottom-auto {
      bottom: auto
    }
  
    .lg\:left-auto {
      left: auto
    }
  
    .lg\:resize-none {
      resize: none
    }
  
    .lg\:resize-y {
      resize: vertical
    }
  
    .lg\:resize-x {
      resize: horizontal
    }
  
    .lg\:resize {
      resize: both
    }
  
    .lg\:shadow-0 {
      box-shadow: none
    }
  
    .lg\:shadow-1 {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-2 {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-3 {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-4 {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-5 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-6 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-7 {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-8 {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-9 {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-10 {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-11 {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-12 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-13 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-14 {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-15 {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-16 {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-17 {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-18 {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-19 {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-20 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-21 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-22 {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-23 {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow-24 {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:shadow {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .lg\:shadow-md {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:shadow-lg {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .lg\:shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .lg\:shadow-inner {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .lg\:shadow-outline {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .lg\:shadow-none {
      box-shadow: none
    }
  
    .lg\:hover\:shadow-0:hover {
      box-shadow: none
    }
  
    .lg\:hover\:shadow-1:hover {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-2:hover {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-3:hover {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-4:hover {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-5:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-6:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-7:hover {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-8:hover {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-9:hover {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-10:hover {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-11:hover {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-12:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-13:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-14:hover {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-15:hover {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-16:hover {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-17:hover {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-18:hover {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-19:hover {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-20:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-21:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-22:hover {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-23:hover {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow-24:hover {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:hover\:shadow:hover {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .lg\:hover\:shadow-md:hover {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:hover\:shadow-lg:hover {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:hover\:shadow-xl:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .lg\:hover\:shadow-2xl:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .lg\:hover\:shadow-inner:hover {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .lg\:hover\:shadow-outline:hover {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .lg\:hover\:shadow-none:hover {
      box-shadow: none
    }
  
    .lg\:focus\:shadow-0:focus {
      box-shadow: none
    }
  
    .lg\:focus\:shadow-1:focus {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-2:focus {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-3:focus {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-4:focus {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-5:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-6:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-7:focus {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-8:focus {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-9:focus {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-10:focus {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-11:focus {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-12:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-13:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-14:focus {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-15:focus {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-16:focus {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-17:focus {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-18:focus {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-19:focus {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-20:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-21:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-22:focus {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-23:focus {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow-24:focus {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .lg\:focus\:shadow:focus {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .lg\:focus\:shadow-md:focus {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:focus\:shadow-lg:focus {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .lg\:focus\:shadow-xl:focus {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .lg\:focus\:shadow-2xl:focus {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .lg\:focus\:shadow-inner:focus {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .lg\:focus\:shadow-outline:focus {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .lg\:focus\:shadow-none:focus {
      box-shadow: none
    }
  
    .lg\:fill-current {
      fill: currentColor
    }
  
    .lg\:stroke-current {
      stroke: currentColor
    }
  
    .lg\:table-auto {
      table-layout: auto
    }
  
    .lg\:table-fixed {
      table-layout: fixed
    }
  
    .lg\:text-left {
      text-align: left
    }
  
    .lg\:text-center {
      text-align: center
    }
  
    .lg\:text-right {
      text-align: right
    }
  
    .lg\:text-justify {
      text-align: justify
    }
  
    .lg\:text-transparent {
      color: transparent
    }
  
    .lg\:text-black {
      color: #22292F
    }
  
    .lg\:text-white {
      color: #FFFFFF
    }
  
    .lg\:text-gray-100 {
      color: #f7fafc
    }
  
    .lg\:text-gray-200 {
      color: #edf2f7
    }
  
    .lg\:text-gray-300 {
      color: #e2e8f0
    }
  
    .lg\:text-gray-400 {
      color: #cbd5e0
    }
  
    .lg\:text-gray-500 {
      color: #a0aec0
    }
  
    .lg\:text-gray-600 {
      color: #718096
    }
  
    .lg\:text-gray-700 {
      color: #4a5568
    }
  
    .lg\:text-gray-800 {
      color: #2d3748
    }
  
    .lg\:text-gray-900 {
      color: #1a202c
    }
  
    .lg\:text-red {
      color: #E3342F
    }
  
    .lg\:text-orange {
      color: #F6993F
    }
  
    .lg\:text-yellow {
      color: #FFED4A
    }
  
    .lg\:text-green {
      color: #38C172
    }
  
    .lg\:text-teal {
      color: #4DC0B5
    }
  
    .lg\:text-blue {
      color: #3490DC
    }
  
    .lg\:text-indigo {
      color: #6574CD
    }
  
    .lg\:text-purple {
      color: #9561E2
    }
  
    .lg\:text-pink {
      color: #F66D9B
    }
  
    .lg\:text-grey-darkest {
      color: #3D4852
    }
  
    .lg\:text-grey-darker {
      color: #606F7B
    }
  
    .lg\:text-grey-dark {
      color: #8795A1
    }
  
    .lg\:text-grey {
      color: #B8C2CC
    }
  
    .lg\:text-grey-light {
      color: #DAE1E7
    }
  
    .lg\:text-grey-lighter {
      color: #F1F5F8
    }
  
    .lg\:text-grey-lightest {
      color: #F8FAFC
    }
  
    .lg\:text-red-darkest {
      color: #3B0D0C
    }
  
    .lg\:text-red-darker {
      color: #621B18
    }
  
    .lg\:text-red-dark {
      color: #CC1F1A
    }
  
    .lg\:text-red-light {
      color: #EF5753
    }
  
    .lg\:text-red-lighter {
      color: #F9ACAA
    }
  
    .lg\:text-red-lightest {
      color: #FCEBEA
    }
  
    .lg\:text-orange-darkest {
      color: #462A16
    }
  
    .lg\:text-orange-darker {
      color: #613B1F
    }
  
    .lg\:text-orange-dark {
      color: #DE751F
    }
  
    .lg\:text-orange-light {
      color: #FAAD63
    }
  
    .lg\:text-orange-lighter {
      color: #FCD9B6
    }
  
    .lg\:text-orange-lightest {
      color: #FFF5EB
    }
  
    .lg\:text-yellow-darkest {
      color: #453411
    }
  
    .lg\:text-yellow-darker {
      color: #684F1D
    }
  
    .lg\:text-yellow-dark {
      color: #F2D024
    }
  
    .lg\:text-yellow-light {
      color: #FFF382
    }
  
    .lg\:text-yellow-lighter {
      color: #FFF9C2
    }
  
    .lg\:text-yellow-lightest {
      color: #FCFBEB
    }
  
    .lg\:text-green-darkest {
      color: #0F2F21
    }
  
    .lg\:text-green-darker {
      color: #1A4731
    }
  
    .lg\:text-green-dark {
      color: #1F9D55
    }
  
    .lg\:text-green-light {
      color: #51D88A
    }
  
    .lg\:text-green-lighter {
      color: #A2F5BF
    }
  
    .lg\:text-green-lightest {
      color: #E3FCEC
    }
  
    .lg\:text-teal-darkest {
      color: #0D3331
    }
  
    .lg\:text-teal-darker {
      color: #20504F
    }
  
    .lg\:text-teal-dark {
      color: #38A89D
    }
  
    .lg\:text-teal-light {
      color: #64D5CA
    }
  
    .lg\:text-teal-lighter {
      color: #A0F0ED
    }
  
    .lg\:text-teal-lightest {
      color: #E8FFFE
    }
  
    .lg\:text-blue-darkest {
      color: #12283A
    }
  
    .lg\:text-blue-darker {
      color: #1C3D5A
    }
  
    .lg\:text-blue-dark {
      color: #2779BD
    }
  
    .lg\:text-blue-light {
      color: #6CB2EB
    }
  
    .lg\:text-blue-lighter {
      color: #BCDEFA
    }
  
    .lg\:text-blue-lightest {
      color: #EFF8FF
    }
  
    .lg\:text-indigo-darkest {
      color: #191E38
    }
  
    .lg\:text-indigo-darker {
      color: #2F365F
    }
  
    .lg\:text-indigo-dark {
      color: #5661B3
    }
  
    .lg\:text-indigo-light {
      color: #7886D7
    }
  
    .lg\:text-indigo-lighter {
      color: #B2B7FF
    }
  
    .lg\:text-indigo-lightest {
      color: #E6E8FF
    }
  
    .lg\:text-purple-darkest {
      color: #21183C
    }
  
    .lg\:text-purple-darker {
      color: #382B5F
    }
  
    .lg\:text-purple-dark {
      color: #794ACF
    }
  
    .lg\:text-purple-light {
      color: #A779E9
    }
  
    .lg\:text-purple-lighter {
      color: #D6BBFC
    }
  
    .lg\:text-purple-lightest {
      color: #F3EBFF
    }
  
    .lg\:text-pink-darkest {
      color: #451225
    }
  
    .lg\:text-pink-darker {
      color: #6F213F
    }
  
    .lg\:text-pink-dark {
      color: #EB5286
    }
  
    .lg\:text-pink-light {
      color: #FA7EA8
    }
  
    .lg\:text-pink-lighter {
      color: #FFBBCA
    }
  
    .lg\:text-pink-lightest {
      color: #FFEBEF
    }
  
    .lg\:hover\:text-transparent:hover {
      color: transparent
    }
  
    .lg\:hover\:text-black:hover {
      color: #22292F
    }
  
    .lg\:hover\:text-white:hover {
      color: #FFFFFF
    }
  
    .lg\:hover\:text-gray-100:hover {
      color: #f7fafc
    }
  
    .lg\:hover\:text-gray-200:hover {
      color: #edf2f7
    }
  
    .lg\:hover\:text-gray-300:hover {
      color: #e2e8f0
    }
  
    .lg\:hover\:text-gray-400:hover {
      color: #cbd5e0
    }
  
    .lg\:hover\:text-gray-500:hover {
      color: #a0aec0
    }
  
    .lg\:hover\:text-gray-600:hover {
      color: #718096
    }
  
    .lg\:hover\:text-gray-700:hover {
      color: #4a5568
    }
  
    .lg\:hover\:text-gray-800:hover {
      color: #2d3748
    }
  
    .lg\:hover\:text-gray-900:hover {
      color: #1a202c
    }
  
    .lg\:hover\:text-red:hover {
      color: #E3342F
    }
  
    .lg\:hover\:text-orange:hover {
      color: #F6993F
    }
  
    .lg\:hover\:text-yellow:hover {
      color: #FFED4A
    }
  
    .lg\:hover\:text-green:hover {
      color: #38C172
    }
  
    .lg\:hover\:text-teal:hover {
      color: #4DC0B5
    }
  
    .lg\:hover\:text-blue:hover {
      color: #3490DC
    }
  
    .lg\:hover\:text-indigo:hover {
      color: #6574CD
    }
  
    .lg\:hover\:text-purple:hover {
      color: #9561E2
    }
  
    .lg\:hover\:text-pink:hover {
      color: #F66D9B
    }
  
    .lg\:hover\:text-grey-darkest:hover {
      color: #3D4852
    }
  
    .lg\:hover\:text-grey-darker:hover {
      color: #606F7B
    }
  
    .lg\:hover\:text-grey-dark:hover {
      color: #8795A1
    }
  
    .lg\:hover\:text-grey:hover {
      color: #B8C2CC
    }
  
    .lg\:hover\:text-grey-light:hover {
      color: #DAE1E7
    }
  
    .lg\:hover\:text-grey-lighter:hover {
      color: #F1F5F8
    }
  
    .lg\:hover\:text-grey-lightest:hover {
      color: #F8FAFC
    }
  
    .lg\:hover\:text-red-darkest:hover {
      color: #3B0D0C
    }
  
    .lg\:hover\:text-red-darker:hover {
      color: #621B18
    }
  
    .lg\:hover\:text-red-dark:hover {
      color: #CC1F1A
    }
  
    .lg\:hover\:text-red-light:hover {
      color: #EF5753
    }
  
    .lg\:hover\:text-red-lighter:hover {
      color: #F9ACAA
    }
  
    .lg\:hover\:text-red-lightest:hover {
      color: #FCEBEA
    }
  
    .lg\:hover\:text-orange-darkest:hover {
      color: #462A16
    }
  
    .lg\:hover\:text-orange-darker:hover {
      color: #613B1F
    }
  
    .lg\:hover\:text-orange-dark:hover {
      color: #DE751F
    }
  
    .lg\:hover\:text-orange-light:hover {
      color: #FAAD63
    }
  
    .lg\:hover\:text-orange-lighter:hover {
      color: #FCD9B6
    }
  
    .lg\:hover\:text-orange-lightest:hover {
      color: #FFF5EB
    }
  
    .lg\:hover\:text-yellow-darkest:hover {
      color: #453411
    }
  
    .lg\:hover\:text-yellow-darker:hover {
      color: #684F1D
    }
  
    .lg\:hover\:text-yellow-dark:hover {
      color: #F2D024
    }
  
    .lg\:hover\:text-yellow-light:hover {
      color: #FFF382
    }
  
    .lg\:hover\:text-yellow-lighter:hover {
      color: #FFF9C2
    }
  
    .lg\:hover\:text-yellow-lightest:hover {
      color: #FCFBEB
    }
  
    .lg\:hover\:text-green-darkest:hover {
      color: #0F2F21
    }
  
    .lg\:hover\:text-green-darker:hover {
      color: #1A4731
    }
  
    .lg\:hover\:text-green-dark:hover {
      color: #1F9D55
    }
  
    .lg\:hover\:text-green-light:hover {
      color: #51D88A
    }
  
    .lg\:hover\:text-green-lighter:hover {
      color: #A2F5BF
    }
  
    .lg\:hover\:text-green-lightest:hover {
      color: #E3FCEC
    }
  
    .lg\:hover\:text-teal-darkest:hover {
      color: #0D3331
    }
  
    .lg\:hover\:text-teal-darker:hover {
      color: #20504F
    }
  
    .lg\:hover\:text-teal-dark:hover {
      color: #38A89D
    }
  
    .lg\:hover\:text-teal-light:hover {
      color: #64D5CA
    }
  
    .lg\:hover\:text-teal-lighter:hover {
      color: #A0F0ED
    }
  
    .lg\:hover\:text-teal-lightest:hover {
      color: #E8FFFE
    }
  
    .lg\:hover\:text-blue-darkest:hover {
      color: #12283A
    }
  
    .lg\:hover\:text-blue-darker:hover {
      color: #1C3D5A
    }
  
    .lg\:hover\:text-blue-dark:hover {
      color: #2779BD
    }
  
    .lg\:hover\:text-blue-light:hover {
      color: #6CB2EB
    }
  
    .lg\:hover\:text-blue-lighter:hover {
      color: #BCDEFA
    }
  
    .lg\:hover\:text-blue-lightest:hover {
      color: #EFF8FF
    }
  
    .lg\:hover\:text-indigo-darkest:hover {
      color: #191E38
    }
  
    .lg\:hover\:text-indigo-darker:hover {
      color: #2F365F
    }
  
    .lg\:hover\:text-indigo-dark:hover {
      color: #5661B3
    }
  
    .lg\:hover\:text-indigo-light:hover {
      color: #7886D7
    }
  
    .lg\:hover\:text-indigo-lighter:hover {
      color: #B2B7FF
    }
  
    .lg\:hover\:text-indigo-lightest:hover {
      color: #E6E8FF
    }
  
    .lg\:hover\:text-purple-darkest:hover {
      color: #21183C
    }
  
    .lg\:hover\:text-purple-darker:hover {
      color: #382B5F
    }
  
    .lg\:hover\:text-purple-dark:hover {
      color: #794ACF
    }
  
    .lg\:hover\:text-purple-light:hover {
      color: #A779E9
    }
  
    .lg\:hover\:text-purple-lighter:hover {
      color: #D6BBFC
    }
  
    .lg\:hover\:text-purple-lightest:hover {
      color: #F3EBFF
    }
  
    .lg\:hover\:text-pink-darkest:hover {
      color: #451225
    }
  
    .lg\:hover\:text-pink-darker:hover {
      color: #6F213F
    }
  
    .lg\:hover\:text-pink-dark:hover {
      color: #EB5286
    }
  
    .lg\:hover\:text-pink-light:hover {
      color: #FA7EA8
    }
  
    .lg\:hover\:text-pink-lighter:hover {
      color: #FFBBCA
    }
  
    .lg\:hover\:text-pink-lightest:hover {
      color: #FFEBEF
    }
  
    .lg\:focus\:text-transparent:focus {
      color: transparent
    }
  
    .lg\:focus\:text-black:focus {
      color: #22292F
    }
  
    .lg\:focus\:text-white:focus {
      color: #FFFFFF
    }
  
    .lg\:focus\:text-gray-100:focus {
      color: #f7fafc
    }
  
    .lg\:focus\:text-gray-200:focus {
      color: #edf2f7
    }
  
    .lg\:focus\:text-gray-300:focus {
      color: #e2e8f0
    }
  
    .lg\:focus\:text-gray-400:focus {
      color: #cbd5e0
    }
  
    .lg\:focus\:text-gray-500:focus {
      color: #a0aec0
    }
  
    .lg\:focus\:text-gray-600:focus {
      color: #718096
    }
  
    .lg\:focus\:text-gray-700:focus {
      color: #4a5568
    }
  
    .lg\:focus\:text-gray-800:focus {
      color: #2d3748
    }
  
    .lg\:focus\:text-gray-900:focus {
      color: #1a202c
    }
  
    .lg\:focus\:text-red:focus {
      color: #E3342F
    }
  
    .lg\:focus\:text-orange:focus {
      color: #F6993F
    }
  
    .lg\:focus\:text-yellow:focus {
      color: #FFED4A
    }
  
    .lg\:focus\:text-green:focus {
      color: #38C172
    }
  
    .lg\:focus\:text-teal:focus {
      color: #4DC0B5
    }
  
    .lg\:focus\:text-blue:focus {
      color: #3490DC
    }
  
    .lg\:focus\:text-indigo:focus {
      color: #6574CD
    }
  
    .lg\:focus\:text-purple:focus {
      color: #9561E2
    }
  
    .lg\:focus\:text-pink:focus {
      color: #F66D9B
    }
  
    .lg\:focus\:text-grey-darkest:focus {
      color: #3D4852
    }
  
    .lg\:focus\:text-grey-darker:focus {
      color: #606F7B
    }
  
    .lg\:focus\:text-grey-dark:focus {
      color: #8795A1
    }
  
    .lg\:focus\:text-grey:focus {
      color: #B8C2CC
    }
  
    .lg\:focus\:text-grey-light:focus {
      color: #DAE1E7
    }
  
    .lg\:focus\:text-grey-lighter:focus {
      color: #F1F5F8
    }
  
    .lg\:focus\:text-grey-lightest:focus {
      color: #F8FAFC
    }
  
    .lg\:focus\:text-red-darkest:focus {
      color: #3B0D0C
    }
  
    .lg\:focus\:text-red-darker:focus {
      color: #621B18
    }
  
    .lg\:focus\:text-red-dark:focus {
      color: #CC1F1A
    }
  
    .lg\:focus\:text-red-light:focus {
      color: #EF5753
    }
  
    .lg\:focus\:text-red-lighter:focus {
      color: #F9ACAA
    }
  
    .lg\:focus\:text-red-lightest:focus {
      color: #FCEBEA
    }
  
    .lg\:focus\:text-orange-darkest:focus {
      color: #462A16
    }
  
    .lg\:focus\:text-orange-darker:focus {
      color: #613B1F
    }
  
    .lg\:focus\:text-orange-dark:focus {
      color: #DE751F
    }
  
    .lg\:focus\:text-orange-light:focus {
      color: #FAAD63
    }
  
    .lg\:focus\:text-orange-lighter:focus {
      color: #FCD9B6
    }
  
    .lg\:focus\:text-orange-lightest:focus {
      color: #FFF5EB
    }
  
    .lg\:focus\:text-yellow-darkest:focus {
      color: #453411
    }
  
    .lg\:focus\:text-yellow-darker:focus {
      color: #684F1D
    }
  
    .lg\:focus\:text-yellow-dark:focus {
      color: #F2D024
    }
  
    .lg\:focus\:text-yellow-light:focus {
      color: #FFF382
    }
  
    .lg\:focus\:text-yellow-lighter:focus {
      color: #FFF9C2
    }
  
    .lg\:focus\:text-yellow-lightest:focus {
      color: #FCFBEB
    }
  
    .lg\:focus\:text-green-darkest:focus {
      color: #0F2F21
    }
  
    .lg\:focus\:text-green-darker:focus {
      color: #1A4731
    }
  
    .lg\:focus\:text-green-dark:focus {
      color: #1F9D55
    }
  
    .lg\:focus\:text-green-light:focus {
      color: #51D88A
    }
  
    .lg\:focus\:text-green-lighter:focus {
      color: #A2F5BF
    }
  
    .lg\:focus\:text-green-lightest:focus {
      color: #E3FCEC
    }
  
    .lg\:focus\:text-teal-darkest:focus {
      color: #0D3331
    }
  
    .lg\:focus\:text-teal-darker:focus {
      color: #20504F
    }
  
    .lg\:focus\:text-teal-dark:focus {
      color: #38A89D
    }
  
    .lg\:focus\:text-teal-light:focus {
      color: #64D5CA
    }
  
    .lg\:focus\:text-teal-lighter:focus {
      color: #A0F0ED
    }
  
    .lg\:focus\:text-teal-lightest:focus {
      color: #E8FFFE
    }
  
    .lg\:focus\:text-blue-darkest:focus {
      color: #12283A
    }
  
    .lg\:focus\:text-blue-darker:focus {
      color: #1C3D5A
    }
  
    .lg\:focus\:text-blue-dark:focus {
      color: #2779BD
    }
  
    .lg\:focus\:text-blue-light:focus {
      color: #6CB2EB
    }
  
    .lg\:focus\:text-blue-lighter:focus {
      color: #BCDEFA
    }
  
    .lg\:focus\:text-blue-lightest:focus {
      color: #EFF8FF
    }
  
    .lg\:focus\:text-indigo-darkest:focus {
      color: #191E38
    }
  
    .lg\:focus\:text-indigo-darker:focus {
      color: #2F365F
    }
  
    .lg\:focus\:text-indigo-dark:focus {
      color: #5661B3
    }
  
    .lg\:focus\:text-indigo-light:focus {
      color: #7886D7
    }
  
    .lg\:focus\:text-indigo-lighter:focus {
      color: #B2B7FF
    }
  
    .lg\:focus\:text-indigo-lightest:focus {
      color: #E6E8FF
    }
  
    .lg\:focus\:text-purple-darkest:focus {
      color: #21183C
    }
  
    .lg\:focus\:text-purple-darker:focus {
      color: #382B5F
    }
  
    .lg\:focus\:text-purple-dark:focus {
      color: #794ACF
    }
  
    .lg\:focus\:text-purple-light:focus {
      color: #A779E9
    }
  
    .lg\:focus\:text-purple-lighter:focus {
      color: #D6BBFC
    }
  
    .lg\:focus\:text-purple-lightest:focus {
      color: #F3EBFF
    }
  
    .lg\:focus\:text-pink-darkest:focus {
      color: #451225
    }
  
    .lg\:focus\:text-pink-darker:focus {
      color: #6F213F
    }
  
    .lg\:focus\:text-pink-dark:focus {
      color: #EB5286
    }
  
    .lg\:focus\:text-pink-light:focus {
      color: #FA7EA8
    }
  
    .lg\:focus\:text-pink-lighter:focus {
      color: #FFBBCA
    }
  
    .lg\:focus\:text-pink-lightest:focus {
      color: #FFEBEF
    }
  
    .lg\:text-10 {
      font-size: 1rem
    }
  
    .lg\:text-11 {
      font-size: 1.1rem
    }
  
    .lg\:text-12 {
      font-size: 1.2rem
    }
  
    .lg\:text-13 {
      font-size: 1.3rem
    }
  
    .lg\:text-14 {
      font-size: 1.4rem
    }
  
    .lg\:text-15 {
      font-size: 1.5rem
    }
  
    .lg\:text-16 {
      font-size: 1.6rem
    }
  
    .lg\:text-17 {
      font-size: 1.7rem
    }
  
    .lg\:text-18 {
      font-size: 1.8rem
    }
  
    .lg\:text-19 {
      font-size: 1.9rem
    }
  
    .lg\:text-20 {
      font-size: 2rem
    }
  
    .lg\:text-24 {
      font-size: 2.4rem
    }
  
    .lg\:text-28 {
      font-size: 2.8rem
    }
  
    .lg\:text-32 {
      font-size: 3.2rem
    }
  
    .lg\:text-36 {
      font-size: 3.6rem
    }
  
    .lg\:text-40 {
      font-size: 4rem
    }
  
    .lg\:text-44 {
      font-size: 4.4rem
    }
  
    .lg\:text-48 {
      font-size: 4.8rem
    }
  
    .lg\:text-52 {
      font-size: 5.2rem
    }
  
    .lg\:text-56 {
      font-size: 5.6rem
    }
  
    .lg\:text-60 {
      font-size: 6rem
    }
  
    .lg\:text-64 {
      font-size: 6.4rem
    }
  
    .lg\:text-68 {
      font-size: 6.8rem
    }
  
    .lg\:text-72 {
      font-size: 7.2rem
    }
  
    .lg\:text-96 {
      font-size: 9.6rem
    }
  
    .lg\:text-128 {
      font-size: 12.8rem
    }
  
    .lg\:text-xs {
      font-size: 1.2rem
    }
  
    .lg\:text-sm {
      font-size: 2.4rem
    }
  
    .lg\:text-base {
      font-size: 1.6rem
    }
  
    .lg\:text-lg {
      font-size: 1.8rem
    }
  
    .lg\:text-xl {
      font-size: 2rem
    }
  
    .lg\:text-2xl {
      font-size: 2.4rem
    }
  
    .lg\:text-3xl {
      font-size: 3rem
    }
  
    .lg\:text-4xl {
      font-size: 3.6rem
    }
  
    .lg\:text-5xl {
      font-size: 4.8rem
    }
  
    .lg\:text-6xl {
      font-size: 4rem
    }
  
    .lg\:italic {
      font-style: italic
    }
  
    .lg\:not-italic {
      font-style: normal
    }
  
    .lg\:hover\:italic:hover {
      font-style: italic
    }
  
    .lg\:hover\:not-italic:hover {
      font-style: normal
    }
  
    .lg\:focus\:italic:focus {
      font-style: italic
    }
  
    .lg\:focus\:not-italic:focus {
      font-style: normal
    }
  
    .lg\:uppercase {
      text-transform: uppercase
    }
  
    .lg\:lowercase {
      text-transform: lowercase
    }
  
    .lg\:capitalize {
      text-transform: capitalize
    }
  
    .lg\:normal-case {
      text-transform: none
    }
  
    .lg\:underline {
      text-decoration: underline
    }
  
    .lg\:line-through {
      text-decoration: line-through
    }
  
    .lg\:no-underline {
      text-decoration: none
    }
  
    .lg\:hover\:underline:hover {
      text-decoration: underline
    }
  
    .lg\:hover\:line-through:hover {
      text-decoration: line-through
    }
  
    .lg\:hover\:no-underline:hover {
      text-decoration: none
    }
  
    .lg\:focus\:underline:focus {
      text-decoration: underline
    }
  
    .lg\:focus\:line-through:focus {
      text-decoration: line-through
    }
  
    .lg\:focus\:no-underline:focus {
      text-decoration: none
    }
  
    .lg\:antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }
  
    .lg\:subpixel-antialiased {
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto
    }
  
    .lg\:tracking-tighter {
      letter-spacing: -0.05em
    }
  
    .lg\:tracking-tight {
      letter-spacing: -0.025em
    }
  
    .lg\:tracking-normal {
      letter-spacing: 0
    }
  
    .lg\:tracking-wide {
      letter-spacing: 0.025em
    }
  
    .lg\:tracking-wider {
      letter-spacing: 0.05em
    }
  
    .lg\:tracking-widest {
      letter-spacing: 0.1em
    }
  
    .lg\:select-none {
      -webkit-user-select: none;
              user-select: none
    }
  
    .lg\:select-text {
      -webkit-user-select: text;
              user-select: text
    }
  
    .lg\:select-all {
      -webkit-user-select: all;
              user-select: all
    }
  
    .lg\:select-auto {
      -webkit-user-select: auto;
              user-select: auto
    }
  
    .lg\:align-baseline {
      vertical-align: baseline
    }
  
    .lg\:align-top {
      vertical-align: top
    }
  
    .lg\:align-middle {
      vertical-align: middle
    }
  
    .lg\:align-bottom {
      vertical-align: bottom
    }
  
    .lg\:align-text-top {
      vertical-align: text-top
    }
  
    .lg\:align-text-bottom {
      vertical-align: text-bottom
    }
  
    .lg\:visible {
      visibility: visible
    }
  
    .lg\:invisible {
      visibility: hidden
    }
  
    .lg\:whitespace-normal {
      white-space: normal
    }
  
    .lg\:whitespace-no-wrap {
      white-space: nowrap
    }
  
    .lg\:whitespace-pre {
      white-space: pre
    }
  
    .lg\:whitespace-pre-line {
      white-space: pre-line
    }
  
    .lg\:whitespace-pre-wrap {
      white-space: pre-wrap
    }
  
    .lg\:break-normal {
      overflow-wrap: normal;
      word-break: normal
    }
  
    .lg\:break-words {
      overflow-wrap: break-word
    }
  
    .lg\:break-all {
      word-break: break-all
    }
  
    .lg\:truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
  
    .lg\:w-0 {
      width: 0
    }
  
    .lg\:w-1 {
      width: 0.25rem
    }
  
    .lg\:w-2 {
      width: 0.5rem
    }
  
    .lg\:w-3 {
      width: 0.75rem
    }
  
    .lg\:w-4 {
      width: 0.4rem
    }
  
    .lg\:w-5 {
      width: 1.25rem
    }
  
    .lg\:w-6 {
      width: 0.6rem
    }
  
    .lg\:w-8 {
      width: 0.8rem
    }
  
    .lg\:w-10 {
      width: 2.5rem
    }
  
    .lg\:w-12 {
      width: 1.2rem
    }
  
    .lg\:w-16 {
      width: 1.6rem
    }
  
    .lg\:w-20 {
      width: 2rem
    }
  
    .lg\:w-24 {
      width: 2.4rem
    }
  
    .lg\:w-28 {
      width: 2.8rem
    }
  
    .lg\:w-32 {
      width: 3.2rem
    }
  
    .lg\:w-36 {
      width: 3.6rem
    }
  
    .lg\:w-40 {
      width: 4rem
    }
  
    .lg\:w-44 {
      width: 4.4rem
    }
  
    .lg\:w-48 {
      width: 4.8rem
    }
  
    .lg\:w-52 {
      width: 5.2rem
    }
  
    .lg\:w-56 {
      width: 5.6rem
    }
  
    .lg\:w-60 {
      width: 6rem
    }
  
    .lg\:w-64 {
      width: 6.4rem
    }
  
    .lg\:w-68 {
      width: 6.8rem
    }
  
    .lg\:w-72 {
      width: 7.2rem
    }
  
    .lg\:w-76 {
      width: 7.6rem
    }
  
    .lg\:w-80 {
      width: 8rem
    }
  
    .lg\:w-84 {
      width: 8.4rem
    }
  
    .lg\:w-88 {
      width: 8.8rem
    }
  
    .lg\:w-92 {
      width: 9.2rem
    }
  
    .lg\:w-96 {
      width: 9.6rem
    }
  
    .lg\:w-128 {
      width: 12.8rem
    }
  
    .lg\:w-136 {
      width: 13.6rem
    }
  
    .lg\:w-160 {
      width: 16rem
    }
  
    .lg\:w-192 {
      width: 19.2rem
    }
  
    .lg\:w-200 {
      width: 20rem
    }
  
    .lg\:w-208 {
      width: 20.8rem
    }
  
    .lg\:w-216 {
      width: 21.6rem
    }
  
    .lg\:w-224 {
      width: 22.4rem
    }
  
    .lg\:w-256 {
      width: 25.6rem
    }
  
    .lg\:w-288 {
      width: 28.8rem
    }
  
    .lg\:w-320 {
      width: 32rem
    }
  
    .lg\:w-360 {
      width: 36rem
    }
  
    .lg\:w-384 {
      width: 38.4rem
    }
  
    .lg\:w-400 {
      width: 40rem
    }
  
    .lg\:w-512 {
      width: 51.2rem
    }
  
    .lg\:w-640 {
      width: 64rem
    }
  
    .lg\:w-auto {
      width: auto
    }
  
    .lg\:w-px {
      width: 1px
    }
  
    .lg\:w-xs {
      width: 32rem
    }
  
    .lg\:w-sm {
      width: 48rem
    }
  
    .lg\:w-md {
      width: 64rem
    }
  
    .lg\:w-lg {
      width: 80rem
    }
  
    .lg\:w-xl {
      width: 96rem
    }
  
    .lg\:w-2xl {
      width: 112rem
    }
  
    .lg\:w-3xl {
      width: 128rem
    }
  
    .lg\:w-4xl {
      width: 144rem
    }
  
    .lg\:w-5xl {
      width: 160rem
    }
  
    .lg\:w-1\/2 {
      width: 50%
    }
  
    .lg\:w-1\/3 {
      width: 33.33333%
    }
  
    .lg\:w-2\/3 {
      width: 66.66667%
    }
  
    .lg\:w-1\/4 {
      width: 25%
    }
  
    .lg\:w-2\/4 {
      width: 50%
    }
  
    .lg\:w-3\/4 {
      width: 75%
    }
  
    .lg\:w-1\/5 {
      width: 20%
    }
  
    .lg\:w-2\/5 {
      width: 40%
    }
  
    .lg\:w-3\/5 {
      width: 60%
    }
  
    .lg\:w-4\/5 {
      width: 80%
    }
  
    .lg\:w-1\/6 {
      width: 16.66667%
    }
  
    .lg\:w-2\/6 {
      width: 33.33333%
    }
  
    .lg\:w-3\/6 {
      width: 50%
    }
  
    .lg\:w-4\/6 {
      width: 66.66667%
    }
  
    .lg\:w-5\/6 {
      width: 83.33333%
    }
  
    .lg\:w-1\/12 {
      width: 8.33333%
    }
  
    .lg\:w-2\/12 {
      width: 16.66667%
    }
  
    .lg\:w-3\/12 {
      width: 25%
    }
  
    .lg\:w-4\/12 {
      width: 33.33333%
    }
  
    .lg\:w-5\/12 {
      width: 41.66667%
    }
  
    .lg\:w-6\/12 {
      width: 50%
    }
  
    .lg\:w-7\/12 {
      width: 58.33333%
    }
  
    .lg\:w-8\/12 {
      width: 66.66667%
    }
  
    .lg\:w-9\/12 {
      width: 75%
    }
  
    .lg\:w-10\/12 {
      width: 83.33333%
    }
  
    .lg\:w-11\/12 {
      width: 91.66667%
    }
  
    .lg\:w-full {
      width: 100%
    }
  
    .lg\:w-screen {
      width: 100vw
    }
  
    .lg\:z-0 {
      z-index: 0
    }
  
    .lg\:z-10 {
      z-index: 10
    }
  
    .lg\:z-20 {
      z-index: 20
    }
  
    .lg\:z-30 {
      z-index: 30
    }
  
    .lg\:z-40 {
      z-index: 40
    }
  
    .lg\:z-50 {
      z-index: 50
    }
  
    .lg\:z-99 {
      z-index: 99
    }
  
    .lg\:z-999 {
      z-index: 999
    }
  
    .lg\:z-9999 {
      z-index: 9999
    }
  
    .lg\:z-auto {
      z-index: auto
    }
  }
  
  @media (min-width: 1920px) {
    .xl\:appearance-none {
      -webkit-appearance: none;
              appearance: none
    }
  
    .xl\:bg-fixed {
      background-attachment: fixed
    }
  
    .xl\:bg-local {
      background-attachment: local
    }
  
    .xl\:bg-scroll {
      background-attachment: scroll
    }
  
    .xl\:bg-transparent {
      background-color: transparent
    }
  
    .xl\:bg-black {
      background-color: #22292F
    }
  
    .xl\:bg-white {
      background-color: #FFFFFF
    }
  
    .xl\:bg-gray-100 {
      background-color: #f7fafc
    }
  
    .xl\:bg-gray-200 {
      background-color: #edf2f7
    }
  
    .xl\:bg-gray-300 {
      background-color: #e2e8f0
    }
  
    .xl\:bg-gray-400 {
      background-color: #cbd5e0
    }
  
    .xl\:bg-gray-500 {
      background-color: #a0aec0
    }
  
    .xl\:bg-gray-600 {
      background-color: #718096
    }
  
    .xl\:bg-gray-700 {
      background-color: #4a5568
    }
  
    .xl\:bg-gray-800 {
      background-color: #2d3748
    }
  
    .xl\:bg-gray-900 {
      background-color: #1a202c
    }
  
    .xl\:bg-red {
      background-color: #E3342F
    }
  
    .xl\:bg-orange {
      background-color: #F6993F
    }
  
    .xl\:bg-yellow {
      background-color: #FFED4A
    }
  
    .xl\:bg-green {
      background-color: #38C172
    }
  
    .xl\:bg-teal {
      background-color: #4DC0B5
    }
  
    .xl\:bg-blue {
      background-color: #3490DC
    }
  
    .xl\:bg-indigo {
      background-color: #6574CD
    }
  
    .xl\:bg-purple {
      background-color: #9561E2
    }
  
    .xl\:bg-pink {
      background-color: #F66D9B
    }
  
    .xl\:bg-grey-darkest {
      background-color: #3D4852
    }
  
    .xl\:bg-grey-darker {
      background-color: #606F7B
    }
  
    .xl\:bg-grey-dark {
      background-color: #8795A1
    }
  
    .xl\:bg-grey {
      background-color: #B8C2CC
    }
  
    .xl\:bg-grey-light {
      background-color: #DAE1E7
    }
  
    .xl\:bg-grey-lighter {
      background-color: #F1F5F8
    }
  
    .xl\:bg-grey-lightest {
      background-color: #F8FAFC
    }
  
    .xl\:bg-red-darkest {
      background-color: #3B0D0C
    }
  
    .xl\:bg-red-darker {
      background-color: #621B18
    }
  
    .xl\:bg-red-dark {
      background-color: #CC1F1A
    }
  
    .xl\:bg-red-light {
      background-color: #EF5753
    }
  
    .xl\:bg-red-lighter {
      background-color: #F9ACAA
    }
  
    .xl\:bg-red-lightest {
      background-color: #FCEBEA
    }
  
    .xl\:bg-orange-darkest {
      background-color: #462A16
    }
  
    .xl\:bg-orange-darker {
      background-color: #613B1F
    }
  
    .xl\:bg-orange-dark {
      background-color: #DE751F
    }
  
    .xl\:bg-orange-light {
      background-color: #FAAD63
    }
  
    .xl\:bg-orange-lighter {
      background-color: #FCD9B6
    }
  
    .xl\:bg-orange-lightest {
      background-color: #FFF5EB
    }
  
    .xl\:bg-yellow-darkest {
      background-color: #453411
    }
  
    .xl\:bg-yellow-darker {
      background-color: #684F1D
    }
  
    .xl\:bg-yellow-dark {
      background-color: #F2D024
    }
  
    .xl\:bg-yellow-light {
      background-color: #FFF382
    }
  
    .xl\:bg-yellow-lighter {
      background-color: #FFF9C2
    }
  
    .xl\:bg-yellow-lightest {
      background-color: #FCFBEB
    }
  
    .xl\:bg-green-darkest {
      background-color: #0F2F21
    }
  
    .xl\:bg-green-darker {
      background-color: #1A4731
    }
  
    .xl\:bg-green-dark {
      background-color: #1F9D55
    }
  
    .xl\:bg-green-light {
      background-color: #51D88A
    }
  
    .xl\:bg-green-lighter {
      background-color: #A2F5BF
    }
  
    .xl\:bg-green-lightest {
      background-color: #E3FCEC
    }
  
    .xl\:bg-teal-darkest {
      background-color: #0D3331
    }
  
    .xl\:bg-teal-darker {
      background-color: #20504F
    }
  
    .xl\:bg-teal-dark {
      background-color: #38A89D
    }
  
    .xl\:bg-teal-light {
      background-color: #64D5CA
    }
  
    .xl\:bg-teal-lighter {
      background-color: #A0F0ED
    }
  
    .xl\:bg-teal-lightest {
      background-color: #E8FFFE
    }
  
    .xl\:bg-blue-darkest {
      background-color: #12283A
    }
  
    .xl\:bg-blue-darker {
      background-color: #1C3D5A
    }
  
    .xl\:bg-blue-dark {
      background-color: #2779BD
    }
  
    .xl\:bg-blue-light {
      background-color: #6CB2EB
    }
  
    .xl\:bg-blue-lighter {
      background-color: #BCDEFA
    }
  
    .xl\:bg-blue-lightest {
      background-color: #EFF8FF
    }
  
    .xl\:bg-indigo-darkest {
      background-color: #191E38
    }
  
    .xl\:bg-indigo-darker {
      background-color: #2F365F
    }
  
    .xl\:bg-indigo-dark {
      background-color: #5661B3
    }
  
    .xl\:bg-indigo-light {
      background-color: #7886D7
    }
  
    .xl\:bg-indigo-lighter {
      background-color: #B2B7FF
    }
  
    .xl\:bg-indigo-lightest {
      background-color: #E6E8FF
    }
  
    .xl\:bg-purple-darkest {
      background-color: #21183C
    }
  
    .xl\:bg-purple-darker {
      background-color: #382B5F
    }
  
    .xl\:bg-purple-dark {
      background-color: #794ACF
    }
  
    .xl\:bg-purple-light {
      background-color: #A779E9
    }
  
    .xl\:bg-purple-lighter {
      background-color: #D6BBFC
    }
  
    .xl\:bg-purple-lightest {
      background-color: #F3EBFF
    }
  
    .xl\:bg-pink-darkest {
      background-color: #451225
    }
  
    .xl\:bg-pink-darker {
      background-color: #6F213F
    }
  
    .xl\:bg-pink-dark {
      background-color: #EB5286
    }
  
    .xl\:bg-pink-light {
      background-color: #FA7EA8
    }
  
    .xl\:bg-pink-lighter {
      background-color: #FFBBCA
    }
  
    .xl\:bg-pink-lightest {
      background-color: #FFEBEF
    }
  
    .xl\:hover\:bg-transparent:hover {
      background-color: transparent
    }
  
    .xl\:hover\:bg-black:hover {
      background-color: #22292F
    }
  
    .xl\:hover\:bg-white:hover {
      background-color: #FFFFFF
    }
  
    .xl\:hover\:bg-gray-100:hover {
      background-color: #f7fafc
    }
  
    .xl\:hover\:bg-gray-200:hover {
      background-color: #edf2f7
    }
  
    .xl\:hover\:bg-gray-300:hover {
      background-color: #e2e8f0
    }
  
    .xl\:hover\:bg-gray-400:hover {
      background-color: #cbd5e0
    }
  
    .xl\:hover\:bg-gray-500:hover {
      background-color: #a0aec0
    }
  
    .xl\:hover\:bg-gray-600:hover {
      background-color: #718096
    }
  
    .xl\:hover\:bg-gray-700:hover {
      background-color: #4a5568
    }
  
    .xl\:hover\:bg-gray-800:hover {
      background-color: #2d3748
    }
  
    .xl\:hover\:bg-gray-900:hover {
      background-color: #1a202c
    }
  
    .xl\:hover\:bg-red:hover {
      background-color: #E3342F
    }
  
    .xl\:hover\:bg-orange:hover {
      background-color: #F6993F
    }
  
    .xl\:hover\:bg-yellow:hover {
      background-color: #FFED4A
    }
  
    .xl\:hover\:bg-green:hover {
      background-color: #38C172
    }
  
    .xl\:hover\:bg-teal:hover {
      background-color: #4DC0B5
    }
  
    .xl\:hover\:bg-blue:hover {
      background-color: #3490DC
    }
  
    .xl\:hover\:bg-indigo:hover {
      background-color: #6574CD
    }
  
    .xl\:hover\:bg-purple:hover {
      background-color: #9561E2
    }
  
    .xl\:hover\:bg-pink:hover {
      background-color: #F66D9B
    }
  
    .xl\:hover\:bg-grey-darkest:hover {
      background-color: #3D4852
    }
  
    .xl\:hover\:bg-grey-darker:hover {
      background-color: #606F7B
    }
  
    .xl\:hover\:bg-grey-dark:hover {
      background-color: #8795A1
    }
  
    .xl\:hover\:bg-grey:hover {
      background-color: #B8C2CC
    }
  
    .xl\:hover\:bg-grey-light:hover {
      background-color: #DAE1E7
    }
  
    .xl\:hover\:bg-grey-lighter:hover {
      background-color: #F1F5F8
    }
  
    .xl\:hover\:bg-grey-lightest:hover {
      background-color: #F8FAFC
    }
  
    .xl\:hover\:bg-red-darkest:hover {
      background-color: #3B0D0C
    }
  
    .xl\:hover\:bg-red-darker:hover {
      background-color: #621B18
    }
  
    .xl\:hover\:bg-red-dark:hover {
      background-color: #CC1F1A
    }
  
    .xl\:hover\:bg-red-light:hover {
      background-color: #EF5753
    }
  
    .xl\:hover\:bg-red-lighter:hover {
      background-color: #F9ACAA
    }
  
    .xl\:hover\:bg-red-lightest:hover {
      background-color: #FCEBEA
    }
  
    .xl\:hover\:bg-orange-darkest:hover {
      background-color: #462A16
    }
  
    .xl\:hover\:bg-orange-darker:hover {
      background-color: #613B1F
    }
  
    .xl\:hover\:bg-orange-dark:hover {
      background-color: #DE751F
    }
  
    .xl\:hover\:bg-orange-light:hover {
      background-color: #FAAD63
    }
  
    .xl\:hover\:bg-orange-lighter:hover {
      background-color: #FCD9B6
    }
  
    .xl\:hover\:bg-orange-lightest:hover {
      background-color: #FFF5EB
    }
  
    .xl\:hover\:bg-yellow-darkest:hover {
      background-color: #453411
    }
  
    .xl\:hover\:bg-yellow-darker:hover {
      background-color: #684F1D
    }
  
    .xl\:hover\:bg-yellow-dark:hover {
      background-color: #F2D024
    }
  
    .xl\:hover\:bg-yellow-light:hover {
      background-color: #FFF382
    }
  
    .xl\:hover\:bg-yellow-lighter:hover {
      background-color: #FFF9C2
    }
  
    .xl\:hover\:bg-yellow-lightest:hover {
      background-color: #FCFBEB
    }
  
    .xl\:hover\:bg-green-darkest:hover {
      background-color: #0F2F21
    }
  
    .xl\:hover\:bg-green-darker:hover {
      background-color: #1A4731
    }
  
    .xl\:hover\:bg-green-dark:hover {
      background-color: #1F9D55
    }
  
    .xl\:hover\:bg-green-light:hover {
      background-color: #51D88A
    }
  
    .xl\:hover\:bg-green-lighter:hover {
      background-color: #A2F5BF
    }
  
    .xl\:hover\:bg-green-lightest:hover {
      background-color: #E3FCEC
    }
  
    .xl\:hover\:bg-teal-darkest:hover {
      background-color: #0D3331
    }
  
    .xl\:hover\:bg-teal-darker:hover {
      background-color: #20504F
    }
  
    .xl\:hover\:bg-teal-dark:hover {
      background-color: #38A89D
    }
  
    .xl\:hover\:bg-teal-light:hover {
      background-color: #64D5CA
    }
  
    .xl\:hover\:bg-teal-lighter:hover {
      background-color: #A0F0ED
    }
  
    .xl\:hover\:bg-teal-lightest:hover {
      background-color: #E8FFFE
    }
  
    .xl\:hover\:bg-blue-darkest:hover {
      background-color: #12283A
    }
  
    .xl\:hover\:bg-blue-darker:hover {
      background-color: #1C3D5A
    }
  
    .xl\:hover\:bg-blue-dark:hover {
      background-color: #2779BD
    }
  
    .xl\:hover\:bg-blue-light:hover {
      background-color: #6CB2EB
    }
  
    .xl\:hover\:bg-blue-lighter:hover {
      background-color: #BCDEFA
    }
  
    .xl\:hover\:bg-blue-lightest:hover {
      background-color: #EFF8FF
    }
  
    .xl\:hover\:bg-indigo-darkest:hover {
      background-color: #191E38
    }
  
    .xl\:hover\:bg-indigo-darker:hover {
      background-color: #2F365F
    }
  
    .xl\:hover\:bg-indigo-dark:hover {
      background-color: #5661B3
    }
  
    .xl\:hover\:bg-indigo-light:hover {
      background-color: #7886D7
    }
  
    .xl\:hover\:bg-indigo-lighter:hover {
      background-color: #B2B7FF
    }
  
    .xl\:hover\:bg-indigo-lightest:hover {
      background-color: #E6E8FF
    }
  
    .xl\:hover\:bg-purple-darkest:hover {
      background-color: #21183C
    }
  
    .xl\:hover\:bg-purple-darker:hover {
      background-color: #382B5F
    }
  
    .xl\:hover\:bg-purple-dark:hover {
      background-color: #794ACF
    }
  
    .xl\:hover\:bg-purple-light:hover {
      background-color: #A779E9
    }
  
    .xl\:hover\:bg-purple-lighter:hover {
      background-color: #D6BBFC
    }
  
    .xl\:hover\:bg-purple-lightest:hover {
      background-color: #F3EBFF
    }
  
    .xl\:hover\:bg-pink-darkest:hover {
      background-color: #451225
    }
  
    .xl\:hover\:bg-pink-darker:hover {
      background-color: #6F213F
    }
  
    .xl\:hover\:bg-pink-dark:hover {
      background-color: #EB5286
    }
  
    .xl\:hover\:bg-pink-light:hover {
      background-color: #FA7EA8
    }
  
    .xl\:hover\:bg-pink-lighter:hover {
      background-color: #FFBBCA
    }
  
    .xl\:hover\:bg-pink-lightest:hover {
      background-color: #FFEBEF
    }
  
    .xl\:focus\:bg-transparent:focus {
      background-color: transparent
    }
  
    .xl\:focus\:bg-black:focus {
      background-color: #22292F
    }
  
    .xl\:focus\:bg-white:focus {
      background-color: #FFFFFF
    }
  
    .xl\:focus\:bg-gray-100:focus {
      background-color: #f7fafc
    }
  
    .xl\:focus\:bg-gray-200:focus {
      background-color: #edf2f7
    }
  
    .xl\:focus\:bg-gray-300:focus {
      background-color: #e2e8f0
    }
  
    .xl\:focus\:bg-gray-400:focus {
      background-color: #cbd5e0
    }
  
    .xl\:focus\:bg-gray-500:focus {
      background-color: #a0aec0
    }
  
    .xl\:focus\:bg-gray-600:focus {
      background-color: #718096
    }
  
    .xl\:focus\:bg-gray-700:focus {
      background-color: #4a5568
    }
  
    .xl\:focus\:bg-gray-800:focus {
      background-color: #2d3748
    }
  
    .xl\:focus\:bg-gray-900:focus {
      background-color: #1a202c
    }
  
    .xl\:focus\:bg-red:focus {
      background-color: #E3342F
    }
  
    .xl\:focus\:bg-orange:focus {
      background-color: #F6993F
    }
  
    .xl\:focus\:bg-yellow:focus {
      background-color: #FFED4A
    }
  
    .xl\:focus\:bg-green:focus {
      background-color: #38C172
    }
  
    .xl\:focus\:bg-teal:focus {
      background-color: #4DC0B5
    }
  
    .xl\:focus\:bg-blue:focus {
      background-color: #3490DC
    }
  
    .xl\:focus\:bg-indigo:focus {
      background-color: #6574CD
    }
  
    .xl\:focus\:bg-purple:focus {
      background-color: #9561E2
    }
  
    .xl\:focus\:bg-pink:focus {
      background-color: #F66D9B
    }
  
    .xl\:focus\:bg-grey-darkest:focus {
      background-color: #3D4852
    }
  
    .xl\:focus\:bg-grey-darker:focus {
      background-color: #606F7B
    }
  
    .xl\:focus\:bg-grey-dark:focus {
      background-color: #8795A1
    }
  
    .xl\:focus\:bg-grey:focus {
      background-color: #B8C2CC
    }
  
    .xl\:focus\:bg-grey-light:focus {
      background-color: #DAE1E7
    }
  
    .xl\:focus\:bg-grey-lighter:focus {
      background-color: #F1F5F8
    }
  
    .xl\:focus\:bg-grey-lightest:focus {
      background-color: #F8FAFC
    }
  
    .xl\:focus\:bg-red-darkest:focus {
      background-color: #3B0D0C
    }
  
    .xl\:focus\:bg-red-darker:focus {
      background-color: #621B18
    }
  
    .xl\:focus\:bg-red-dark:focus {
      background-color: #CC1F1A
    }
  
    .xl\:focus\:bg-red-light:focus {
      background-color: #EF5753
    }
  
    .xl\:focus\:bg-red-lighter:focus {
      background-color: #F9ACAA
    }
  
    .xl\:focus\:bg-red-lightest:focus {
      background-color: #FCEBEA
    }
  
    .xl\:focus\:bg-orange-darkest:focus {
      background-color: #462A16
    }
  
    .xl\:focus\:bg-orange-darker:focus {
      background-color: #613B1F
    }
  
    .xl\:focus\:bg-orange-dark:focus {
      background-color: #DE751F
    }
  
    .xl\:focus\:bg-orange-light:focus {
      background-color: #FAAD63
    }
  
    .xl\:focus\:bg-orange-lighter:focus {
      background-color: #FCD9B6
    }
  
    .xl\:focus\:bg-orange-lightest:focus {
      background-color: #FFF5EB
    }
  
    .xl\:focus\:bg-yellow-darkest:focus {
      background-color: #453411
    }
  
    .xl\:focus\:bg-yellow-darker:focus {
      background-color: #684F1D
    }
  
    .xl\:focus\:bg-yellow-dark:focus {
      background-color: #F2D024
    }
  
    .xl\:focus\:bg-yellow-light:focus {
      background-color: #FFF382
    }
  
    .xl\:focus\:bg-yellow-lighter:focus {
      background-color: #FFF9C2
    }
  
    .xl\:focus\:bg-yellow-lightest:focus {
      background-color: #FCFBEB
    }
  
    .xl\:focus\:bg-green-darkest:focus {
      background-color: #0F2F21
    }
  
    .xl\:focus\:bg-green-darker:focus {
      background-color: #1A4731
    }
  
    .xl\:focus\:bg-green-dark:focus {
      background-color: #1F9D55
    }
  
    .xl\:focus\:bg-green-light:focus {
      background-color: #51D88A
    }
  
    .xl\:focus\:bg-green-lighter:focus {
      background-color: #A2F5BF
    }
  
    .xl\:focus\:bg-green-lightest:focus {
      background-color: #E3FCEC
    }
  
    .xl\:focus\:bg-teal-darkest:focus {
      background-color: #0D3331
    }
  
    .xl\:focus\:bg-teal-darker:focus {
      background-color: #20504F
    }
  
    .xl\:focus\:bg-teal-dark:focus {
      background-color: #38A89D
    }
  
    .xl\:focus\:bg-teal-light:focus {
      background-color: #64D5CA
    }
  
    .xl\:focus\:bg-teal-lighter:focus {
      background-color: #A0F0ED
    }
  
    .xl\:focus\:bg-teal-lightest:focus {
      background-color: #E8FFFE
    }
  
    .xl\:focus\:bg-blue-darkest:focus {
      background-color: #12283A
    }
  
    .xl\:focus\:bg-blue-darker:focus {
      background-color: #1C3D5A
    }
  
    .xl\:focus\:bg-blue-dark:focus {
      background-color: #2779BD
    }
  
    .xl\:focus\:bg-blue-light:focus {
      background-color: #6CB2EB
    }
  
    .xl\:focus\:bg-blue-lighter:focus {
      background-color: #BCDEFA
    }
  
    .xl\:focus\:bg-blue-lightest:focus {
      background-color: #EFF8FF
    }
  
    .xl\:focus\:bg-indigo-darkest:focus {
      background-color: #191E38
    }
  
    .xl\:focus\:bg-indigo-darker:focus {
      background-color: #2F365F
    }
  
    .xl\:focus\:bg-indigo-dark:focus {
      background-color: #5661B3
    }
  
    .xl\:focus\:bg-indigo-light:focus {
      background-color: #7886D7
    }
  
    .xl\:focus\:bg-indigo-lighter:focus {
      background-color: #B2B7FF
    }
  
    .xl\:focus\:bg-indigo-lightest:focus {
      background-color: #E6E8FF
    }
  
    .xl\:focus\:bg-purple-darkest:focus {
      background-color: #21183C
    }
  
    .xl\:focus\:bg-purple-darker:focus {
      background-color: #382B5F
    }
  
    .xl\:focus\:bg-purple-dark:focus {
      background-color: #794ACF
    }
  
    .xl\:focus\:bg-purple-light:focus {
      background-color: #A779E9
    }
  
    .xl\:focus\:bg-purple-lighter:focus {
      background-color: #D6BBFC
    }
  
    .xl\:focus\:bg-purple-lightest:focus {
      background-color: #F3EBFF
    }
  
    .xl\:focus\:bg-pink-darkest:focus {
      background-color: #451225
    }
  
    .xl\:focus\:bg-pink-darker:focus {
      background-color: #6F213F
    }
  
    .xl\:focus\:bg-pink-dark:focus {
      background-color: #EB5286
    }
  
    .xl\:focus\:bg-pink-light:focus {
      background-color: #FA7EA8
    }
  
    .xl\:focus\:bg-pink-lighter:focus {
      background-color: #FFBBCA
    }
  
    .xl\:focus\:bg-pink-lightest:focus {
      background-color: #FFEBEF
    }
  
    .xl\:bg-bottom {
      background-position: bottom
    }
  
    .xl\:bg-center {
      background-position: center
    }
  
    .xl\:bg-left {
      background-position: left
    }
  
    .xl\:bg-left-bottom {
      background-position: left bottom
    }
  
    .xl\:bg-left-top {
      background-position: left top
    }
  
    .xl\:bg-right {
      background-position: right
    }
  
    .xl\:bg-right-bottom {
      background-position: right bottom
    }
  
    .xl\:bg-right-top {
      background-position: right top
    }
  
    .xl\:bg-top {
      background-position: top
    }
  
    .xl\:bg-repeat {
      background-repeat: repeat
    }
  
    .xl\:bg-no-repeat {
      background-repeat: no-repeat
    }
  
    .xl\:bg-repeat-x {
      background-repeat: repeat-x
    }
  
    .xl\:bg-repeat-y {
      background-repeat: repeat-y
    }
  
    .xl\:bg-repeat-round {
      background-repeat: round
    }
  
    .xl\:bg-repeat-space {
      background-repeat: space
    }
  
    .xl\:bg-auto {
      background-size: auto
    }
  
    .xl\:bg-cover {
      background-size: cover
    }
  
    .xl\:bg-contain {
      background-size: contain
    }
  
    .xl\:border-collapse {
      border-collapse: collapse
    }
  
    .xl\:border-separate {
      border-collapse: separate
    }
  
    .xl\:border-transparent {
      border-color: transparent
    }
  
    .xl\:border-black {
      border-color: #22292F
    }
  
    .xl\:border-white {
      border-color: #FFFFFF
    }
  
    .xl\:border-gray-100 {
      border-color: #f7fafc
    }
  
    .xl\:border-gray-200 {
      border-color: #edf2f7
    }
  
    .xl\:border-gray-300 {
      border-color: #e2e8f0
    }
  
    .xl\:border-gray-400 {
      border-color: #cbd5e0
    }
  
    .xl\:border-gray-500 {
      border-color: #a0aec0
    }
  
    .xl\:border-gray-600 {
      border-color: #718096
    }
  
    .xl\:border-gray-700 {
      border-color: #4a5568
    }
  
    .xl\:border-gray-800 {
      border-color: #2d3748
    }
  
    .xl\:border-gray-900 {
      border-color: #1a202c
    }
  
    .xl\:border-red {
      border-color: #E3342F
    }
  
    .xl\:border-orange {
      border-color: #F6993F
    }
  
    .xl\:border-yellow {
      border-color: #FFED4A
    }
  
    .xl\:border-green {
      border-color: #38C172
    }
  
    .xl\:border-teal {
      border-color: #4DC0B5
    }
  
    .xl\:border-blue {
      border-color: #3490DC
    }
  
    .xl\:border-indigo {
      border-color: #6574CD
    }
  
    .xl\:border-purple {
      border-color: #9561E2
    }
  
    .xl\:border-pink {
      border-color: #F66D9B
    }
  
    .xl\:border-grey-darkest {
      border-color: #3D4852
    }
  
    .xl\:border-grey-darker {
      border-color: #606F7B
    }
  
    .xl\:border-grey-dark {
      border-color: #8795A1
    }
  
    .xl\:border-grey {
      border-color: #B8C2CC
    }
  
    .xl\:border-grey-light {
      border-color: #DAE1E7
    }
  
    .xl\:border-grey-lighter {
      border-color: #F1F5F8
    }
  
    .xl\:border-grey-lightest {
      border-color: #F8FAFC
    }
  
    .xl\:border-red-darkest {
      border-color: #3B0D0C
    }
  
    .xl\:border-red-darker {
      border-color: #621B18
    }
  
    .xl\:border-red-dark {
      border-color: #CC1F1A
    }
  
    .xl\:border-red-light {
      border-color: #EF5753
    }
  
    .xl\:border-red-lighter {
      border-color: #F9ACAA
    }
  
    .xl\:border-red-lightest {
      border-color: #FCEBEA
    }
  
    .xl\:border-orange-darkest {
      border-color: #462A16
    }
  
    .xl\:border-orange-darker {
      border-color: #613B1F
    }
  
    .xl\:border-orange-dark {
      border-color: #DE751F
    }
  
    .xl\:border-orange-light {
      border-color: #FAAD63
    }
  
    .xl\:border-orange-lighter {
      border-color: #FCD9B6
    }
  
    .xl\:border-orange-lightest {
      border-color: #FFF5EB
    }
  
    .xl\:border-yellow-darkest {
      border-color: #453411
    }
  
    .xl\:border-yellow-darker {
      border-color: #684F1D
    }
  
    .xl\:border-yellow-dark {
      border-color: #F2D024
    }
  
    .xl\:border-yellow-light {
      border-color: #FFF382
    }
  
    .xl\:border-yellow-lighter {
      border-color: #FFF9C2
    }
  
    .xl\:border-yellow-lightest {
      border-color: #FCFBEB
    }
  
    .xl\:border-green-darkest {
      border-color: #0F2F21
    }
  
    .xl\:border-green-darker {
      border-color: #1A4731
    }
  
    .xl\:border-green-dark {
      border-color: #1F9D55
    }
  
    .xl\:border-green-light {
      border-color: #51D88A
    }
  
    .xl\:border-green-lighter {
      border-color: #A2F5BF
    }
  
    .xl\:border-green-lightest {
      border-color: #E3FCEC
    }
  
    .xl\:border-teal-darkest {
      border-color: #0D3331
    }
  
    .xl\:border-teal-darker {
      border-color: #20504F
    }
  
    .xl\:border-teal-dark {
      border-color: #38A89D
    }
  
    .xl\:border-teal-light {
      border-color: #64D5CA
    }
  
    .xl\:border-teal-lighter {
      border-color: #A0F0ED
    }
  
    .xl\:border-teal-lightest {
      border-color: #E8FFFE
    }
  
    .xl\:border-blue-darkest {
      border-color: #12283A
    }
  
    .xl\:border-blue-darker {
      border-color: #1C3D5A
    }
  
    .xl\:border-blue-dark {
      border-color: #2779BD
    }
  
    .xl\:border-blue-light {
      border-color: #6CB2EB
    }
  
    .xl\:border-blue-lighter {
      border-color: #BCDEFA
    }
  
    .xl\:border-blue-lightest {
      border-color: #EFF8FF
    }
  
    .xl\:border-indigo-darkest {
      border-color: #191E38
    }
  
    .xl\:border-indigo-darker {
      border-color: #2F365F
    }
  
    .xl\:border-indigo-dark {
      border-color: #5661B3
    }
  
    .xl\:border-indigo-light {
      border-color: #7886D7
    }
  
    .xl\:border-indigo-lighter {
      border-color: #B2B7FF
    }
  
    .xl\:border-indigo-lightest {
      border-color: #E6E8FF
    }
  
    .xl\:border-purple-darkest {
      border-color: #21183C
    }
  
    .xl\:border-purple-darker {
      border-color: #382B5F
    }
  
    .xl\:border-purple-dark {
      border-color: #794ACF
    }
  
    .xl\:border-purple-light {
      border-color: #A779E9
    }
  
    .xl\:border-purple-lighter {
      border-color: #D6BBFC
    }
  
    .xl\:border-purple-lightest {
      border-color: #F3EBFF
    }
  
    .xl\:border-pink-darkest {
      border-color: #451225
    }
  
    .xl\:border-pink-darker {
      border-color: #6F213F
    }
  
    .xl\:border-pink-dark {
      border-color: #EB5286
    }
  
    .xl\:border-pink-light {
      border-color: #FA7EA8
    }
  
    .xl\:border-pink-lighter {
      border-color: #FFBBCA
    }
  
    .xl\:border-pink-lightest {
      border-color: #FFEBEF
    }
  
    .xl\:hover\:border-transparent:hover {
      border-color: transparent
    }
  
    .xl\:hover\:border-black:hover {
      border-color: #22292F
    }
  
    .xl\:hover\:border-white:hover {
      border-color: #FFFFFF
    }
  
    .xl\:hover\:border-gray-100:hover {
      border-color: #f7fafc
    }
  
    .xl\:hover\:border-gray-200:hover {
      border-color: #edf2f7
    }
  
    .xl\:hover\:border-gray-300:hover {
      border-color: #e2e8f0
    }
  
    .xl\:hover\:border-gray-400:hover {
      border-color: #cbd5e0
    }
  
    .xl\:hover\:border-gray-500:hover {
      border-color: #a0aec0
    }
  
    .xl\:hover\:border-gray-600:hover {
      border-color: #718096
    }
  
    .xl\:hover\:border-gray-700:hover {
      border-color: #4a5568
    }
  
    .xl\:hover\:border-gray-800:hover {
      border-color: #2d3748
    }
  
    .xl\:hover\:border-gray-900:hover {
      border-color: #1a202c
    }
  
    .xl\:hover\:border-red:hover {
      border-color: #E3342F
    }
  
    .xl\:hover\:border-orange:hover {
      border-color: #F6993F
    }
  
    .xl\:hover\:border-yellow:hover {
      border-color: #FFED4A
    }
  
    .xl\:hover\:border-green:hover {
      border-color: #38C172
    }
  
    .xl\:hover\:border-teal:hover {
      border-color: #4DC0B5
    }
  
    .xl\:hover\:border-blue:hover {
      border-color: #3490DC
    }
  
    .xl\:hover\:border-indigo:hover {
      border-color: #6574CD
    }
  
    .xl\:hover\:border-purple:hover {
      border-color: #9561E2
    }
  
    .xl\:hover\:border-pink:hover {
      border-color: #F66D9B
    }
  
    .xl\:hover\:border-grey-darkest:hover {
      border-color: #3D4852
    }
  
    .xl\:hover\:border-grey-darker:hover {
      border-color: #606F7B
    }
  
    .xl\:hover\:border-grey-dark:hover {
      border-color: #8795A1
    }
  
    .xl\:hover\:border-grey:hover {
      border-color: #B8C2CC
    }
  
    .xl\:hover\:border-grey-light:hover {
      border-color: #DAE1E7
    }
  
    .xl\:hover\:border-grey-lighter:hover {
      border-color: #F1F5F8
    }
  
    .xl\:hover\:border-grey-lightest:hover {
      border-color: #F8FAFC
    }
  
    .xl\:hover\:border-red-darkest:hover {
      border-color: #3B0D0C
    }
  
    .xl\:hover\:border-red-darker:hover {
      border-color: #621B18
    }
  
    .xl\:hover\:border-red-dark:hover {
      border-color: #CC1F1A
    }
  
    .xl\:hover\:border-red-light:hover {
      border-color: #EF5753
    }
  
    .xl\:hover\:border-red-lighter:hover {
      border-color: #F9ACAA
    }
  
    .xl\:hover\:border-red-lightest:hover {
      border-color: #FCEBEA
    }
  
    .xl\:hover\:border-orange-darkest:hover {
      border-color: #462A16
    }
  
    .xl\:hover\:border-orange-darker:hover {
      border-color: #613B1F
    }
  
    .xl\:hover\:border-orange-dark:hover {
      border-color: #DE751F
    }
  
    .xl\:hover\:border-orange-light:hover {
      border-color: #FAAD63
    }
  
    .xl\:hover\:border-orange-lighter:hover {
      border-color: #FCD9B6
    }
  
    .xl\:hover\:border-orange-lightest:hover {
      border-color: #FFF5EB
    }
  
    .xl\:hover\:border-yellow-darkest:hover {
      border-color: #453411
    }
  
    .xl\:hover\:border-yellow-darker:hover {
      border-color: #684F1D
    }
  
    .xl\:hover\:border-yellow-dark:hover {
      border-color: #F2D024
    }
  
    .xl\:hover\:border-yellow-light:hover {
      border-color: #FFF382
    }
  
    .xl\:hover\:border-yellow-lighter:hover {
      border-color: #FFF9C2
    }
  
    .xl\:hover\:border-yellow-lightest:hover {
      border-color: #FCFBEB
    }
  
    .xl\:hover\:border-green-darkest:hover {
      border-color: #0F2F21
    }
  
    .xl\:hover\:border-green-darker:hover {
      border-color: #1A4731
    }
  
    .xl\:hover\:border-green-dark:hover {
      border-color: #1F9D55
    }
  
    .xl\:hover\:border-green-light:hover {
      border-color: #51D88A
    }
  
    .xl\:hover\:border-green-lighter:hover {
      border-color: #A2F5BF
    }
  
    .xl\:hover\:border-green-lightest:hover {
      border-color: #E3FCEC
    }
  
    .xl\:hover\:border-teal-darkest:hover {
      border-color: #0D3331
    }
  
    .xl\:hover\:border-teal-darker:hover {
      border-color: #20504F
    }
  
    .xl\:hover\:border-teal-dark:hover {
      border-color: #38A89D
    }
  
    .xl\:hover\:border-teal-light:hover {
      border-color: #64D5CA
    }
  
    .xl\:hover\:border-teal-lighter:hover {
      border-color: #A0F0ED
    }
  
    .xl\:hover\:border-teal-lightest:hover {
      border-color: #E8FFFE
    }
  
    .xl\:hover\:border-blue-darkest:hover {
      border-color: #12283A
    }
  
    .xl\:hover\:border-blue-darker:hover {
      border-color: #1C3D5A
    }
  
    .xl\:hover\:border-blue-dark:hover {
      border-color: #2779BD
    }
  
    .xl\:hover\:border-blue-light:hover {
      border-color: #6CB2EB
    }
  
    .xl\:hover\:border-blue-lighter:hover {
      border-color: #BCDEFA
    }
  
    .xl\:hover\:border-blue-lightest:hover {
      border-color: #EFF8FF
    }
  
    .xl\:hover\:border-indigo-darkest:hover {
      border-color: #191E38
    }
  
    .xl\:hover\:border-indigo-darker:hover {
      border-color: #2F365F
    }
  
    .xl\:hover\:border-indigo-dark:hover {
      border-color: #5661B3
    }
  
    .xl\:hover\:border-indigo-light:hover {
      border-color: #7886D7
    }
  
    .xl\:hover\:border-indigo-lighter:hover {
      border-color: #B2B7FF
    }
  
    .xl\:hover\:border-indigo-lightest:hover {
      border-color: #E6E8FF
    }
  
    .xl\:hover\:border-purple-darkest:hover {
      border-color: #21183C
    }
  
    .xl\:hover\:border-purple-darker:hover {
      border-color: #382B5F
    }
  
    .xl\:hover\:border-purple-dark:hover {
      border-color: #794ACF
    }
  
    .xl\:hover\:border-purple-light:hover {
      border-color: #A779E9
    }
  
    .xl\:hover\:border-purple-lighter:hover {
      border-color: #D6BBFC
    }
  
    .xl\:hover\:border-purple-lightest:hover {
      border-color: #F3EBFF
    }
  
    .xl\:hover\:border-pink-darkest:hover {
      border-color: #451225
    }
  
    .xl\:hover\:border-pink-darker:hover {
      border-color: #6F213F
    }
  
    .xl\:hover\:border-pink-dark:hover {
      border-color: #EB5286
    }
  
    .xl\:hover\:border-pink-light:hover {
      border-color: #FA7EA8
    }
  
    .xl\:hover\:border-pink-lighter:hover {
      border-color: #FFBBCA
    }
  
    .xl\:hover\:border-pink-lightest:hover {
      border-color: #FFEBEF
    }
  
    .xl\:focus\:border-transparent:focus {
      border-color: transparent
    }
  
    .xl\:focus\:border-black:focus {
      border-color: #22292F
    }
  
    .xl\:focus\:border-white:focus {
      border-color: #FFFFFF
    }
  
    .xl\:focus\:border-gray-100:focus {
      border-color: #f7fafc
    }
  
    .xl\:focus\:border-gray-200:focus {
      border-color: #edf2f7
    }
  
    .xl\:focus\:border-gray-300:focus {
      border-color: #e2e8f0
    }
  
    .xl\:focus\:border-gray-400:focus {
      border-color: #cbd5e0
    }
  
    .xl\:focus\:border-gray-500:focus {
      border-color: #a0aec0
    }
  
    .xl\:focus\:border-gray-600:focus {
      border-color: #718096
    }
  
    .xl\:focus\:border-gray-700:focus {
      border-color: #4a5568
    }
  
    .xl\:focus\:border-gray-800:focus {
      border-color: #2d3748
    }
  
    .xl\:focus\:border-gray-900:focus {
      border-color: #1a202c
    }
  
    .xl\:focus\:border-red:focus {
      border-color: #E3342F
    }
  
    .xl\:focus\:border-orange:focus {
      border-color: #F6993F
    }
  
    .xl\:focus\:border-yellow:focus {
      border-color: #FFED4A
    }
  
    .xl\:focus\:border-green:focus {
      border-color: #38C172
    }
  
    .xl\:focus\:border-teal:focus {
      border-color: #4DC0B5
    }
  
    .xl\:focus\:border-blue:focus {
      border-color: #3490DC
    }
  
    .xl\:focus\:border-indigo:focus {
      border-color: #6574CD
    }
  
    .xl\:focus\:border-purple:focus {
      border-color: #9561E2
    }
  
    .xl\:focus\:border-pink:focus {
      border-color: #F66D9B
    }
  
    .xl\:focus\:border-grey-darkest:focus {
      border-color: #3D4852
    }
  
    .xl\:focus\:border-grey-darker:focus {
      border-color: #606F7B
    }
  
    .xl\:focus\:border-grey-dark:focus {
      border-color: #8795A1
    }
  
    .xl\:focus\:border-grey:focus {
      border-color: #B8C2CC
    }
  
    .xl\:focus\:border-grey-light:focus {
      border-color: #DAE1E7
    }
  
    .xl\:focus\:border-grey-lighter:focus {
      border-color: #F1F5F8
    }
  
    .xl\:focus\:border-grey-lightest:focus {
      border-color: #F8FAFC
    }
  
    .xl\:focus\:border-red-darkest:focus {
      border-color: #3B0D0C
    }
  
    .xl\:focus\:border-red-darker:focus {
      border-color: #621B18
    }
  
    .xl\:focus\:border-red-dark:focus {
      border-color: #CC1F1A
    }
  
    .xl\:focus\:border-red-light:focus {
      border-color: #EF5753
    }
  
    .xl\:focus\:border-red-lighter:focus {
      border-color: #F9ACAA
    }
  
    .xl\:focus\:border-red-lightest:focus {
      border-color: #FCEBEA
    }
  
    .xl\:focus\:border-orange-darkest:focus {
      border-color: #462A16
    }
  
    .xl\:focus\:border-orange-darker:focus {
      border-color: #613B1F
    }
  
    .xl\:focus\:border-orange-dark:focus {
      border-color: #DE751F
    }
  
    .xl\:focus\:border-orange-light:focus {
      border-color: #FAAD63
    }
  
    .xl\:focus\:border-orange-lighter:focus {
      border-color: #FCD9B6
    }
  
    .xl\:focus\:border-orange-lightest:focus {
      border-color: #FFF5EB
    }
  
    .xl\:focus\:border-yellow-darkest:focus {
      border-color: #453411
    }
  
    .xl\:focus\:border-yellow-darker:focus {
      border-color: #684F1D
    }
  
    .xl\:focus\:border-yellow-dark:focus {
      border-color: #F2D024
    }
  
    .xl\:focus\:border-yellow-light:focus {
      border-color: #FFF382
    }
  
    .xl\:focus\:border-yellow-lighter:focus {
      border-color: #FFF9C2
    }
  
    .xl\:focus\:border-yellow-lightest:focus {
      border-color: #FCFBEB
    }
  
    .xl\:focus\:border-green-darkest:focus {
      border-color: #0F2F21
    }
  
    .xl\:focus\:border-green-darker:focus {
      border-color: #1A4731
    }
  
    .xl\:focus\:border-green-dark:focus {
      border-color: #1F9D55
    }
  
    .xl\:focus\:border-green-light:focus {
      border-color: #51D88A
    }
  
    .xl\:focus\:border-green-lighter:focus {
      border-color: #A2F5BF
    }
  
    .xl\:focus\:border-green-lightest:focus {
      border-color: #E3FCEC
    }
  
    .xl\:focus\:border-teal-darkest:focus {
      border-color: #0D3331
    }
  
    .xl\:focus\:border-teal-darker:focus {
      border-color: #20504F
    }
  
    .xl\:focus\:border-teal-dark:focus {
      border-color: #38A89D
    }
  
    .xl\:focus\:border-teal-light:focus {
      border-color: #64D5CA
    }
  
    .xl\:focus\:border-teal-lighter:focus {
      border-color: #A0F0ED
    }
  
    .xl\:focus\:border-teal-lightest:focus {
      border-color: #E8FFFE
    }
  
    .xl\:focus\:border-blue-darkest:focus {
      border-color: #12283A
    }
  
    .xl\:focus\:border-blue-darker:focus {
      border-color: #1C3D5A
    }
  
    .xl\:focus\:border-blue-dark:focus {
      border-color: #2779BD
    }
  
    .xl\:focus\:border-blue-light:focus {
      border-color: #6CB2EB
    }
  
    .xl\:focus\:border-blue-lighter:focus {
      border-color: #BCDEFA
    }
  
    .xl\:focus\:border-blue-lightest:focus {
      border-color: #EFF8FF
    }
  
    .xl\:focus\:border-indigo-darkest:focus {
      border-color: #191E38
    }
  
    .xl\:focus\:border-indigo-darker:focus {
      border-color: #2F365F
    }
  
    .xl\:focus\:border-indigo-dark:focus {
      border-color: #5661B3
    }
  
    .xl\:focus\:border-indigo-light:focus {
      border-color: #7886D7
    }
  
    .xl\:focus\:border-indigo-lighter:focus {
      border-color: #B2B7FF
    }
  
    .xl\:focus\:border-indigo-lightest:focus {
      border-color: #E6E8FF
    }
  
    .xl\:focus\:border-purple-darkest:focus {
      border-color: #21183C
    }
  
    .xl\:focus\:border-purple-darker:focus {
      border-color: #382B5F
    }
  
    .xl\:focus\:border-purple-dark:focus {
      border-color: #794ACF
    }
  
    .xl\:focus\:border-purple-light:focus {
      border-color: #A779E9
    }
  
    .xl\:focus\:border-purple-lighter:focus {
      border-color: #D6BBFC
    }
  
    .xl\:focus\:border-purple-lightest:focus {
      border-color: #F3EBFF
    }
  
    .xl\:focus\:border-pink-darkest:focus {
      border-color: #451225
    }
  
    .xl\:focus\:border-pink-darker:focus {
      border-color: #6F213F
    }
  
    .xl\:focus\:border-pink-dark:focus {
      border-color: #EB5286
    }
  
    .xl\:focus\:border-pink-light:focus {
      border-color: #FA7EA8
    }
  
    .xl\:focus\:border-pink-lighter:focus {
      border-color: #FFBBCA
    }
  
    .xl\:focus\:border-pink-lightest:focus {
      border-color: #FFEBEF
    }
  
    .xl\:rounded-2 {
      border-radius: .2rem
    }
  
    .xl\:rounded-4 {
      border-radius: .4rem
    }
  
    .xl\:rounded-6 {
      border-radius: .6rem
    }
  
    .xl\:rounded-8 {
      border-radius: .8rem
    }
  
    .xl\:rounded-12 {
      border-radius: 1.2rem
    }
  
    .xl\:rounded-16 {
      border-radius: 1.6rem
    }
  
    .xl\:rounded-20 {
      border-radius: 2rem
    }
  
    .xl\:rounded-24 {
      border-radius: 2.4rem
    }
  
    .xl\:rounded-28 {
      border-radius: 2.8rem
    }
  
    .xl\:rounded-32 {
      border-radius: 3.2rem
    }
  
    .xl\:rounded-none {
      border-radius: 0
    }
  
    .xl\:rounded-sm {
      border-radius: .2rem
    }
  
    .xl\:rounded {
      border-radius: .4rem
    }
  
    .xl\:rounded-lg {
      border-radius: .8rem
    }
  
    .xl\:rounded-full {
      border-radius: 9999px
    }
  
    .xl\:rounded-t-2 {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .xl\:rounded-r-2 {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .xl\:rounded-b-2 {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-l-2 {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-t-4 {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .xl\:rounded-r-4 {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .xl\:rounded-b-4 {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-l-4 {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-t-6 {
      border-top-left-radius: .6rem;
      border-top-right-radius: .6rem
    }
  
    .xl\:rounded-r-6 {
      border-top-right-radius: .6rem;
      border-bottom-right-radius: .6rem
    }
  
    .xl\:rounded-b-6 {
      border-bottom-right-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .xl\:rounded-l-6 {
      border-top-left-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .xl\:rounded-t-8 {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .xl\:rounded-r-8 {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .xl\:rounded-b-8 {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-l-8 {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-t-12 {
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem
    }
  
    .xl\:rounded-r-12 {
      border-top-right-radius: 1.2rem;
      border-bottom-right-radius: 1.2rem
    }
  
    .xl\:rounded-b-12 {
      border-bottom-right-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .xl\:rounded-l-12 {
      border-top-left-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .xl\:rounded-t-16 {
      border-top-left-radius: 1.6rem;
      border-top-right-radius: 1.6rem
    }
  
    .xl\:rounded-r-16 {
      border-top-right-radius: 1.6rem;
      border-bottom-right-radius: 1.6rem
    }
  
    .xl\:rounded-b-16 {
      border-bottom-right-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .xl\:rounded-l-16 {
      border-top-left-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .xl\:rounded-t-20 {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem
    }
  
    .xl\:rounded-r-20 {
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem
    }
  
    .xl\:rounded-b-20 {
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .xl\:rounded-l-20 {
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .xl\:rounded-t-24 {
      border-top-left-radius: 2.4rem;
      border-top-right-radius: 2.4rem
    }
  
    .xl\:rounded-r-24 {
      border-top-right-radius: 2.4rem;
      border-bottom-right-radius: 2.4rem
    }
  
    .xl\:rounded-b-24 {
      border-bottom-right-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .xl\:rounded-l-24 {
      border-top-left-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .xl\:rounded-t-28 {
      border-top-left-radius: 2.8rem;
      border-top-right-radius: 2.8rem
    }
  
    .xl\:rounded-r-28 {
      border-top-right-radius: 2.8rem;
      border-bottom-right-radius: 2.8rem
    }
  
    .xl\:rounded-b-28 {
      border-bottom-right-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .xl\:rounded-l-28 {
      border-top-left-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .xl\:rounded-t-32 {
      border-top-left-radius: 3.2rem;
      border-top-right-radius: 3.2rem
    }
  
    .xl\:rounded-r-32 {
      border-top-right-radius: 3.2rem;
      border-bottom-right-radius: 3.2rem
    }
  
    .xl\:rounded-b-32 {
      border-bottom-right-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .xl\:rounded-l-32 {
      border-top-left-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .xl\:rounded-t-none {
      border-top-left-radius: 0;
      border-top-right-radius: 0
    }
  
    .xl\:rounded-r-none {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0
    }
  
    .xl\:rounded-b-none {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .xl\:rounded-l-none {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .xl\:rounded-t-sm {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .xl\:rounded-r-sm {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .xl\:rounded-b-sm {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-l-sm {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-t {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .xl\:rounded-r {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .xl\:rounded-b {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-l {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-t-lg {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .xl\:rounded-r-lg {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .xl\:rounded-b-lg {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-l-lg {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-t-full {
      border-top-left-radius: 9999px;
      border-top-right-radius: 9999px
    }
  
    .xl\:rounded-r-full {
      border-top-right-radius: 9999px;
      border-bottom-right-radius: 9999px
    }
  
    .xl\:rounded-b-full {
      border-bottom-right-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .xl\:rounded-l-full {
      border-top-left-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .xl\:rounded-tl-2 {
      border-top-left-radius: .2rem
    }
  
    .xl\:rounded-tr-2 {
      border-top-right-radius: .2rem
    }
  
    .xl\:rounded-br-2 {
      border-bottom-right-radius: .2rem
    }
  
    .xl\:rounded-bl-2 {
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-tl-4 {
      border-top-left-radius: .4rem
    }
  
    .xl\:rounded-tr-4 {
      border-top-right-radius: .4rem
    }
  
    .xl\:rounded-br-4 {
      border-bottom-right-radius: .4rem
    }
  
    .xl\:rounded-bl-4 {
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-tl-6 {
      border-top-left-radius: .6rem
    }
  
    .xl\:rounded-tr-6 {
      border-top-right-radius: .6rem
    }
  
    .xl\:rounded-br-6 {
      border-bottom-right-radius: .6rem
    }
  
    .xl\:rounded-bl-6 {
      border-bottom-left-radius: .6rem
    }
  
    .xl\:rounded-tl-8 {
      border-top-left-radius: .8rem
    }
  
    .xl\:rounded-tr-8 {
      border-top-right-radius: .8rem
    }
  
    .xl\:rounded-br-8 {
      border-bottom-right-radius: .8rem
    }
  
    .xl\:rounded-bl-8 {
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-tl-12 {
      border-top-left-radius: 1.2rem
    }
  
    .xl\:rounded-tr-12 {
      border-top-right-radius: 1.2rem
    }
  
    .xl\:rounded-br-12 {
      border-bottom-right-radius: 1.2rem
    }
  
    .xl\:rounded-bl-12 {
      border-bottom-left-radius: 1.2rem
    }
  
    .xl\:rounded-tl-16 {
      border-top-left-radius: 1.6rem
    }
  
    .xl\:rounded-tr-16 {
      border-top-right-radius: 1.6rem
    }
  
    .xl\:rounded-br-16 {
      border-bottom-right-radius: 1.6rem
    }
  
    .xl\:rounded-bl-16 {
      border-bottom-left-radius: 1.6rem
    }
  
    .xl\:rounded-tl-20 {
      border-top-left-radius: 2rem
    }
  
    .xl\:rounded-tr-20 {
      border-top-right-radius: 2rem
    }
  
    .xl\:rounded-br-20 {
      border-bottom-right-radius: 2rem
    }
  
    .xl\:rounded-bl-20 {
      border-bottom-left-radius: 2rem
    }
  
    .xl\:rounded-tl-24 {
      border-top-left-radius: 2.4rem
    }
  
    .xl\:rounded-tr-24 {
      border-top-right-radius: 2.4rem
    }
  
    .xl\:rounded-br-24 {
      border-bottom-right-radius: 2.4rem
    }
  
    .xl\:rounded-bl-24 {
      border-bottom-left-radius: 2.4rem
    }
  
    .xl\:rounded-tl-28 {
      border-top-left-radius: 2.8rem
    }
  
    .xl\:rounded-tr-28 {
      border-top-right-radius: 2.8rem
    }
  
    .xl\:rounded-br-28 {
      border-bottom-right-radius: 2.8rem
    }
  
    .xl\:rounded-bl-28 {
      border-bottom-left-radius: 2.8rem
    }
  
    .xl\:rounded-tl-32 {
      border-top-left-radius: 3.2rem
    }
  
    .xl\:rounded-tr-32 {
      border-top-right-radius: 3.2rem
    }
  
    .xl\:rounded-br-32 {
      border-bottom-right-radius: 3.2rem
    }
  
    .xl\:rounded-bl-32 {
      border-bottom-left-radius: 3.2rem
    }
  
    .xl\:rounded-tl-none {
      border-top-left-radius: 0
    }
  
    .xl\:rounded-tr-none {
      border-top-right-radius: 0
    }
  
    .xl\:rounded-br-none {
      border-bottom-right-radius: 0
    }
  
    .xl\:rounded-bl-none {
      border-bottom-left-radius: 0
    }
  
    .xl\:rounded-tl-sm {
      border-top-left-radius: .2rem
    }
  
    .xl\:rounded-tr-sm {
      border-top-right-radius: .2rem
    }
  
    .xl\:rounded-br-sm {
      border-bottom-right-radius: .2rem
    }
  
    .xl\:rounded-bl-sm {
      border-bottom-left-radius: .2rem
    }
  
    .xl\:rounded-tl {
      border-top-left-radius: .4rem
    }
  
    .xl\:rounded-tr {
      border-top-right-radius: .4rem
    }
  
    .xl\:rounded-br {
      border-bottom-right-radius: .4rem
    }
  
    .xl\:rounded-bl {
      border-bottom-left-radius: .4rem
    }
  
    .xl\:rounded-tl-lg {
      border-top-left-radius: .8rem
    }
  
    .xl\:rounded-tr-lg {
      border-top-right-radius: .8rem
    }
  
    .xl\:rounded-br-lg {
      border-bottom-right-radius: .8rem
    }
  
    .xl\:rounded-bl-lg {
      border-bottom-left-radius: .8rem
    }
  
    .xl\:rounded-tl-full {
      border-top-left-radius: 9999px
    }
  
    .xl\:rounded-tr-full {
      border-top-right-radius: 9999px
    }
  
    .xl\:rounded-br-full {
      border-bottom-right-radius: 9999px
    }
  
    .xl\:rounded-bl-full {
      border-bottom-left-radius: 9999px
    }
  
    .xl\:border-solid {
      border-style: solid
    }
  
    .xl\:border-dashed {
      border-style: dashed
    }
  
    .xl\:border-dotted {
      border-style: dotted
    }
  
    .xl\:border-none {
      border-style: none
    }
  
    .xl\:border-0 {
      border-width: 0
    }
  
    .xl\:border-1 {
      border-width: 1px
    }
  
    .xl\:border-2 {
      border-width: 2px
    }
  
    .xl\:border-3 {
      border-width: 3px
    }
  
    .xl\:border-4 {
      border-width: 4px
    }
  
    .xl\:border-8 {
      border-width: 8px
    }
  
    .xl\:border {
      border-width: 1px
    }
  
    .xl\:border-t-0 {
      border-top-width: 0
    }
  
    .xl\:border-r-0 {
      border-right-width: 0
    }
  
    .xl\:border-b-0 {
      border-bottom-width: 0
    }
  
    .xl\:border-l-0 {
      border-left-width: 0
    }
  
    .xl\:border-t-1 {
      border-top-width: 1px
    }
  
    .xl\:border-r-1 {
      border-right-width: 1px
    }
  
    .xl\:border-b-1 {
      border-bottom-width: 1px
    }
  
    .xl\:border-l-1 {
      border-left-width: 1px
    }
  
    .xl\:border-t-2 {
      border-top-width: 2px
    }
  
    .xl\:border-r-2 {
      border-right-width: 2px
    }
  
    .xl\:border-b-2 {
      border-bottom-width: 2px
    }
  
    .xl\:border-l-2 {
      border-left-width: 2px
    }
  
    .xl\:border-t-3 {
      border-top-width: 3px
    }
  
    .xl\:border-r-3 {
      border-right-width: 3px
    }
  
    .xl\:border-b-3 {
      border-bottom-width: 3px
    }
  
    .xl\:border-l-3 {
      border-left-width: 3px
    }
  
    .xl\:border-t-4 {
      border-top-width: 4px
    }
  
    .xl\:border-r-4 {
      border-right-width: 4px
    }
  
    .xl\:border-b-4 {
      border-bottom-width: 4px
    }
  
    .xl\:border-l-4 {
      border-left-width: 4px
    }
  
    .xl\:border-t-8 {
      border-top-width: 8px
    }
  
    .xl\:border-r-8 {
      border-right-width: 8px
    }
  
    .xl\:border-b-8 {
      border-bottom-width: 8px
    }
  
    .xl\:border-l-8 {
      border-left-width: 8px
    }
  
    .xl\:border-t {
      border-top-width: 1px
    }
  
    .xl\:border-r {
      border-right-width: 1px
    }
  
    .xl\:border-b {
      border-bottom-width: 1px
    }
  
    .xl\:border-l {
      border-left-width: 1px
    }
  
    .xl\:cursor-auto {
      cursor: auto
    }
  
    .xl\:cursor-default {
      cursor: default
    }
  
    .xl\:cursor-pointer {
      cursor: pointer
    }
  
    .xl\:cursor-wait {
      cursor: wait
    }
  
    .xl\:cursor-text {
      cursor: text
    }
  
    .xl\:cursor-move {
      cursor: move
    }
  
    .xl\:cursor-not-allowed {
      cursor: not-allowed
    }
  
    .xl\:block {
      display: block
    }
  
    .xl\:inline-block {
      display: inline-block
    }
  
    .xl\:inline {
      display: inline
    }
  
    .xl\:flex {
      display: flex
    }
  
    .xl\:inline-flex {
      display: inline-flex
    }
  
    .xl\:table {
      display: table
    }
  
    .xl\:table-row {
      display: table-row
    }
  
    .xl\:table-cell {
      display: table-cell
    }
  
    .xl\:hidden {
      display: none
    }
  
    .xl\:hover\:block:hover {
      display: block
    }
  
    .xl\:hover\:inline-block:hover {
      display: inline-block
    }
  
    .xl\:hover\:inline:hover {
      display: inline
    }
  
    .xl\:hover\:flex:hover {
      display: flex
    }
  
    .xl\:hover\:inline-flex:hover {
      display: inline-flex
    }
  
    .xl\:hover\:table:hover {
      display: table
    }
  
    .xl\:hover\:table-row:hover {
      display: table-row
    }
  
    .xl\:hover\:table-cell:hover {
      display: table-cell
    }
  
    .xl\:hover\:hidden:hover {
      display: none
    }
  
    .xl\:focus\:block:focus {
      display: block
    }
  
    .xl\:focus\:inline-block:focus {
      display: inline-block
    }
  
    .xl\:focus\:inline:focus {
      display: inline
    }
  
    .xl\:focus\:flex:focus {
      display: flex
    }
  
    .xl\:focus\:inline-flex:focus {
      display: inline-flex
    }
  
    .xl\:focus\:table:focus {
      display: table
    }
  
    .xl\:focus\:table-row:focus {
      display: table-row
    }
  
    .xl\:focus\:table-cell:focus {
      display: table-cell
    }
  
    .xl\:focus\:hidden:focus {
      display: none
    }
  
    .xl\:flex-row {
      flex-direction: row
    }
  
    .xl\:flex-row-reverse {
      flex-direction: row-reverse
    }
  
    .xl\:flex-col {
      flex-direction: column
    }
  
    .xl\:flex-col-reverse {
      flex-direction: column-reverse
    }
  
    .xl\:flex-wrap {
      flex-wrap: wrap
    }
  
    .xl\:flex-wrap-reverse {
      flex-wrap: wrap-reverse
    }
  
    .xl\:flex-no-wrap {
      flex-wrap: nowrap
    }
  
    .xl\:items-start {
      align-items: flex-start
    }
  
    .xl\:items-end {
      align-items: flex-end
    }
  
    .xl\:items-center {
      align-items: center
    }
  
    .xl\:items-baseline {
      align-items: baseline
    }
  
    .xl\:items-stretch {
      align-items: stretch
    }
  
    .xl\:self-auto {
      align-self: auto
    }
  
    .xl\:self-start {
      align-self: flex-start
    }
  
    .xl\:self-end {
      align-self: flex-end
    }
  
    .xl\:self-center {
      align-self: center
    }
  
    .xl\:self-stretch {
      align-self: stretch
    }
  
    .xl\:justify-start {
      justify-content: flex-start
    }
  
    .xl\:justify-end {
      justify-content: flex-end
    }
  
    .xl\:justify-center {
      justify-content: center
    }
  
    .xl\:justify-between {
      justify-content: space-between
    }
  
    .xl\:justify-around {
      justify-content: space-around
    }
  
    .xl\:content-center {
      align-content: center
    }
  
    .xl\:content-start {
      align-content: flex-start
    }
  
    .xl\:content-end {
      align-content: flex-end
    }
  
    .xl\:content-between {
      align-content: space-between
    }
  
    .xl\:content-around {
      align-content: space-around
    }
  
    .xl\:flex-1 {
      flex: 1 1
    }
  
    .xl\:flex-auto {
      flex: 1 1 auto
    }
  
    .xl\:flex-initial {
      flex: 0 1 auto
    }
  
    .xl\:flex-none {
      flex: none
    }
  
    .xl\:flex-grow-0 {
      flex-grow: 0
    }
  
    .xl\:flex-grow {
      flex-grow: 1
    }
  
    .xl\:flex-shrink-0 {
      flex-shrink: 0
    }
  
    .xl\:flex-shrink {
      flex-shrink: 1
    }
  
    .xl\:order-1 {
      order: 1
    }
  
    .xl\:order-2 {
      order: 2
    }
  
    .xl\:order-3 {
      order: 3
    }
  
    .xl\:order-4 {
      order: 4
    }
  
    .xl\:order-5 {
      order: 5
    }
  
    .xl\:order-6 {
      order: 6
    }
  
    .xl\:order-7 {
      order: 7
    }
  
    .xl\:order-8 {
      order: 8
    }
  
    .xl\:order-9 {
      order: 9
    }
  
    .xl\:order-10 {
      order: 10
    }
  
    .xl\:order-11 {
      order: 11
    }
  
    .xl\:order-12 {
      order: 12
    }
  
    .xl\:order-first {
      order: -9999
    }
  
    .xl\:order-last {
      order: 9999
    }
  
    .xl\:order-none {
      order: 0
    }
  
    .xl\:float-right {
      float: right
    }
  
    .xl\:float-left {
      float: left
    }
  
    .xl\:float-none {
      float: none
    }
  
    .xl\:clearfix:after {
      content: "";
      display: table;
      clear: both
    }
  
    .xl\:font-sans {
      font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
    }
  
    .xl\:font-serif {
      font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
    }
  
    .xl\:font-mono {
      font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
    }
  
    .xl\:font-100 {
      font-weight: 100
    }
  
    .xl\:font-200 {
      font-weight: 200
    }
  
    .xl\:font-300 {
      font-weight: 300
    }
  
    .xl\:font-400 {
      font-weight: 400
    }
  
    .xl\:font-500 {
      font-weight: 500
    }
  
    .xl\:font-600 {
      font-weight: 600
    }
  
    .xl\:font-700 {
      font-weight: 700
    }
  
    .xl\:font-800 {
      font-weight: 800
    }
  
    .xl\:font-900 {
      font-weight: 900
    }
  
    .xl\:font-hairline {
      font-weight: 100
    }
  
    .xl\:font-thin {
      font-weight: 200
    }
  
    .xl\:font-light {
      font-weight: 300
    }
  
    .xl\:font-normal {
      font-weight: 400
    }
  
    .xl\:font-medium {
      font-weight: 500
    }
  
    .xl\:font-semibold {
      font-weight: 600
    }
  
    .xl\:font-bold {
      font-weight: 700
    }
  
    .xl\:font-extrabold {
      font-weight: 800
    }
  
    .xl\:font-black {
      font-weight: 900
    }
  
    .xl\:hover\:font-100:hover {
      font-weight: 100
    }
  
    .xl\:hover\:font-200:hover {
      font-weight: 200
    }
  
    .xl\:hover\:font-300:hover {
      font-weight: 300
    }
  
    .xl\:hover\:font-400:hover {
      font-weight: 400
    }
  
    .xl\:hover\:font-500:hover {
      font-weight: 500
    }
  
    .xl\:hover\:font-600:hover {
      font-weight: 600
    }
  
    .xl\:hover\:font-700:hover {
      font-weight: 700
    }
  
    .xl\:hover\:font-800:hover {
      font-weight: 800
    }
  
    .xl\:hover\:font-900:hover {
      font-weight: 900
    }
  
    .xl\:hover\:font-hairline:hover {
      font-weight: 100
    }
  
    .xl\:hover\:font-thin:hover {
      font-weight: 200
    }
  
    .xl\:hover\:font-light:hover {
      font-weight: 300
    }
  
    .xl\:hover\:font-normal:hover {
      font-weight: 400
    }
  
    .xl\:hover\:font-medium:hover {
      font-weight: 500
    }
  
    .xl\:hover\:font-semibold:hover {
      font-weight: 600
    }
  
    .xl\:hover\:font-bold:hover {
      font-weight: 700
    }
  
    .xl\:hover\:font-extrabold:hover {
      font-weight: 800
    }
  
    .xl\:hover\:font-black:hover {
      font-weight: 900
    }
  
    .xl\:focus\:font-100:focus {
      font-weight: 100
    }
  
    .xl\:focus\:font-200:focus {
      font-weight: 200
    }
  
    .xl\:focus\:font-300:focus {
      font-weight: 300
    }
  
    .xl\:focus\:font-400:focus {
      font-weight: 400
    }
  
    .xl\:focus\:font-500:focus {
      font-weight: 500
    }
  
    .xl\:focus\:font-600:focus {
      font-weight: 600
    }
  
    .xl\:focus\:font-700:focus {
      font-weight: 700
    }
  
    .xl\:focus\:font-800:focus {
      font-weight: 800
    }
  
    .xl\:focus\:font-900:focus {
      font-weight: 900
    }
  
    .xl\:focus\:font-hairline:focus {
      font-weight: 100
    }
  
    .xl\:focus\:font-thin:focus {
      font-weight: 200
    }
  
    .xl\:focus\:font-light:focus {
      font-weight: 300
    }
  
    .xl\:focus\:font-normal:focus {
      font-weight: 400
    }
  
    .xl\:focus\:font-medium:focus {
      font-weight: 500
    }
  
    .xl\:focus\:font-semibold:focus {
      font-weight: 600
    }
  
    .xl\:focus\:font-bold:focus {
      font-weight: 700
    }
  
    .xl\:focus\:font-extrabold:focus {
      font-weight: 800
    }
  
    .xl\:focus\:font-black:focus {
      font-weight: 900
    }
  
    .xl\:h-0 {
      height: 0
    }
  
    .xl\:h-1 {
      height: 0.25rem
    }
  
    .xl\:h-2 {
      height: 0.5rem
    }
  
    .xl\:h-3 {
      height: 0.75rem
    }
  
    .xl\:h-4 {
      height: 0.4rem
    }
  
    .xl\:h-5 {
      height: 1.25rem
    }
  
    .xl\:h-6 {
      height: 0.6rem
    }
  
    .xl\:h-8 {
      height: 0.8rem
    }
  
    .xl\:h-10 {
      height: 2.5rem
    }
  
    .xl\:h-12 {
      height: 1.2rem
    }
  
    .xl\:h-16 {
      height: 1.6rem
    }
  
    .xl\:h-20 {
      height: 2rem
    }
  
    .xl\:h-24 {
      height: 2.4rem
    }
  
    .xl\:h-28 {
      height: 2.8rem
    }
  
    .xl\:h-32 {
      height: 3.2rem
    }
  
    .xl\:h-36 {
      height: 3.6rem
    }
  
    .xl\:h-40 {
      height: 4rem
    }
  
    .xl\:h-44 {
      height: 4.4rem
    }
  
    .xl\:h-48 {
      height: 4.8rem
    }
  
    .xl\:h-52 {
      height: 5.2rem
    }
  
    .xl\:h-56 {
      height: 5.6rem
    }
  
    .xl\:h-60 {
      height: 6rem
    }
  
    .xl\:h-64 {
      height: 6.4rem
    }
  
    .xl\:h-68 {
      height: 6.8rem
    }
  
    .xl\:h-72 {
      height: 7.2rem
    }
  
    .xl\:h-76 {
      height: 7.6rem
    }
  
    .xl\:h-80 {
      height: 8rem
    }
  
    .xl\:h-84 {
      height: 8.4rem
    }
  
    .xl\:h-88 {
      height: 8.8rem
    }
  
    .xl\:h-92 {
      height: 9.2rem
    }
  
    .xl\:h-96 {
      height: 9.6rem
    }
  
    .xl\:h-128 {
      height: 12.8rem
    }
  
    .xl\:h-136 {
      height: 13.6rem
    }
  
    .xl\:h-160 {
      height: 16rem
    }
  
    .xl\:h-192 {
      height: 19.2rem
    }
  
    .xl\:h-200 {
      height: 20rem
    }
  
    .xl\:h-208 {
      height: 20.8rem
    }
  
    .xl\:h-216 {
      height: 21.6rem
    }
  
    .xl\:h-224 {
      height: 22.4rem
    }
  
    .xl\:h-256 {
      height: 25.6rem
    }
  
    .xl\:h-288 {
      height: 28.8rem
    }
  
    .xl\:h-320 {
      height: 32rem
    }
  
    .xl\:h-360 {
      height: 36rem
    }
  
    .xl\:h-384 {
      height: 38.4rem
    }
  
    .xl\:h-400 {
      height: 40rem
    }
  
    .xl\:h-512 {
      height: 51.2rem
    }
  
    .xl\:h-640 {
      height: 64rem
    }
  
    .xl\:h-auto {
      height: auto
    }
  
    .xl\:h-px {
      height: 1px
    }
  
    .xl\:h-xs {
      height: 32rem
    }
  
    .xl\:h-sm {
      height: 48rem
    }
  
    .xl\:h-md {
      height: 64rem
    }
  
    .xl\:h-lg {
      height: 80rem
    }
  
    .xl\:h-xl {
      height: 96rem
    }
  
    .xl\:h-2xl {
      height: 112rem
    }
  
    .xl\:h-3xl {
      height: 128rem
    }
  
    .xl\:h-4xl {
      height: 144rem
    }
  
    .xl\:h-5xl {
      height: 160rem
    }
  
    .xl\:h-full {
      height: 100%
    }
  
    .xl\:h-screen {
      height: 100vh
    }
  
    .xl\:leading-none {
      line-height: 1
    }
  
    .xl\:leading-tight {
      line-height: 1.25
    }
  
    .xl\:leading-snug {
      line-height: 1.375
    }
  
    .xl\:leading-normal {
      line-height: 1.5
    }
  
    .xl\:leading-relaxed {
      line-height: 1.625
    }
  
    .xl\:leading-loose {
      line-height: 2
    }
  
    .xl\:list-inside {
      list-style-position: inside
    }
  
    .xl\:list-outside {
      list-style-position: outside
    }
  
    .xl\:list-none {
      list-style-type: none
    }
  
    .xl\:list-disc {
      list-style-type: disc
    }
  
    .xl\:list-decimal {
      list-style-type: decimal
    }
  
    .xl\:m-0 {
      margin: 0
    }
  
    .xl\:m-1 {
      margin: 0.25rem
    }
  
    .xl\:m-2 {
      margin: 0.5rem
    }
  
    .xl\:m-3 {
      margin: 0.75rem
    }
  
    .xl\:m-4 {
      margin: 0.4rem
    }
  
    .xl\:m-5 {
      margin: 1.25rem
    }
  
    .xl\:m-6 {
      margin: 0.6rem
    }
  
    .xl\:m-8 {
      margin: 0.8rem
    }
  
    .xl\:m-10 {
      margin: 2.5rem
    }
  
    .xl\:m-12 {
      margin: 1.2rem
    }
  
    .xl\:m-16 {
      margin: 1.6rem
    }
  
    .xl\:m-20 {
      margin: 2rem
    }
  
    .xl\:m-24 {
      margin: 2.4rem
    }
  
    .xl\:m-28 {
      margin: 2.8rem
    }
  
    .xl\:m-32 {
      margin: 3.2rem
    }
  
    .xl\:m-36 {
      margin: 3.6rem
    }
  
    .xl\:m-40 {
      margin: 4rem
    }
  
    .xl\:m-44 {
      margin: 4.4rem
    }
  
    .xl\:m-48 {
      margin: 4.8rem
    }
  
    .xl\:m-52 {
      margin: 5.2rem
    }
  
    .xl\:m-56 {
      margin: 5.6rem
    }
  
    .xl\:m-60 {
      margin: 6rem
    }
  
    .xl\:m-64 {
      margin: 6.4rem
    }
  
    .xl\:m-68 {
      margin: 6.8rem
    }
  
    .xl\:m-72 {
      margin: 7.2rem
    }
  
    .xl\:m-76 {
      margin: 7.6rem
    }
  
    .xl\:m-80 {
      margin: 8rem
    }
  
    .xl\:m-84 {
      margin: 8.4rem
    }
  
    .xl\:m-88 {
      margin: 8.8rem
    }
  
    .xl\:m-92 {
      margin: 9.2rem
    }
  
    .xl\:m-96 {
      margin: 9.6rem
    }
  
    .xl\:m-128 {
      margin: 12.8rem
    }
  
    .xl\:m-136 {
      margin: 13.6rem
    }
  
    .xl\:m-160 {
      margin: 16rem
    }
  
    .xl\:m-192 {
      margin: 19.2rem
    }
  
    .xl\:m-200 {
      margin: 20rem
    }
  
    .xl\:m-208 {
      margin: 20.8rem
    }
  
    .xl\:m-216 {
      margin: 21.6rem
    }
  
    .xl\:m-224 {
      margin: 22.4rem
    }
  
    .xl\:m-256 {
      margin: 25.6rem
    }
  
    .xl\:m-288 {
      margin: 28.8rem
    }
  
    .xl\:m-320 {
      margin: 32rem
    }
  
    .xl\:m-360 {
      margin: 36rem
    }
  
    .xl\:m-384 {
      margin: 38.4rem
    }
  
    .xl\:m-400 {
      margin: 40rem
    }
  
    .xl\:m-512 {
      margin: 51.2rem
    }
  
    .xl\:m-640 {
      margin: 64rem
    }
  
    .xl\:m-auto {
      margin: auto
    }
  
    .xl\:m-px {
      margin: 1px
    }
  
    .xl\:m-xs {
      margin: 32rem
    }
  
    .xl\:m-sm {
      margin: 48rem
    }
  
    .xl\:m-md {
      margin: 64rem
    }
  
    .xl\:m-lg {
      margin: 80rem
    }
  
    .xl\:m-xl {
      margin: 96rem
    }
  
    .xl\:m-2xl {
      margin: 112rem
    }
  
    .xl\:m-3xl {
      margin: 128rem
    }
  
    .xl\:m-4xl {
      margin: 144rem
    }
  
    .xl\:m-5xl {
      margin: 160rem
    }
  
    .xl\:-m-1 {
      margin: -0.25rem
    }
  
    .xl\:-m-2 {
      margin: -0.5rem
    }
  
    .xl\:-m-3 {
      margin: -0.75rem
    }
  
    .xl\:-m-4 {
      margin: -0.4rem
    }
  
    .xl\:-m-5 {
      margin: -1.25rem
    }
  
    .xl\:-m-6 {
      margin: -0.6rem
    }
  
    .xl\:-m-8 {
      margin: -0.8rem
    }
  
    .xl\:-m-10 {
      margin: -2.5rem
    }
  
    .xl\:-m-12 {
      margin: -1.2rem
    }
  
    .xl\:-m-16 {
      margin: -1.6rem
    }
  
    .xl\:-m-20 {
      margin: -2rem
    }
  
    .xl\:-m-24 {
      margin: -2.4rem
    }
  
    .xl\:-m-28 {
      margin: -2.8rem
    }
  
    .xl\:-m-32 {
      margin: -3.2rem
    }
  
    .xl\:-m-36 {
      margin: -3.6rem
    }
  
    .xl\:-m-40 {
      margin: -4rem
    }
  
    .xl\:-m-44 {
      margin: -4.4rem
    }
  
    .xl\:-m-48 {
      margin: -4.8rem
    }
  
    .xl\:-m-52 {
      margin: -5.2rem
    }
  
    .xl\:-m-56 {
      margin: -5.6rem
    }
  
    .xl\:-m-60 {
      margin: -6rem
    }
  
    .xl\:-m-64 {
      margin: -6.4rem
    }
  
    .xl\:-m-68 {
      margin: -6.8rem
    }
  
    .xl\:-m-72 {
      margin: -7.2rem
    }
  
    .xl\:-m-76 {
      margin: -7.6rem
    }
  
    .xl\:-m-80 {
      margin: -8rem
    }
  
    .xl\:-m-84 {
      margin: -8.4rem
    }
  
    .xl\:-m-88 {
      margin: -8.8rem
    }
  
    .xl\:-m-92 {
      margin: -9.2rem
    }
  
    .xl\:-m-96 {
      margin: -9.6rem
    }
  
    .xl\:-m-128 {
      margin: -12.8rem
    }
  
    .xl\:-m-136 {
      margin: -13.6rem
    }
  
    .xl\:-m-160 {
      margin: -16rem
    }
  
    .xl\:-m-192 {
      margin: -19.2rem
    }
  
    .xl\:-m-200 {
      margin: -20rem
    }
  
    .xl\:-m-208 {
      margin: -20.8rem
    }
  
    .xl\:-m-216 {
      margin: -21.6rem
    }
  
    .xl\:-m-224 {
      margin: -22.4rem
    }
  
    .xl\:-m-256 {
      margin: -25.6rem
    }
  
    .xl\:-m-288 {
      margin: -28.8rem
    }
  
    .xl\:-m-320 {
      margin: -32rem
    }
  
    .xl\:-m-360 {
      margin: -36rem
    }
  
    .xl\:-m-384 {
      margin: -38.4rem
    }
  
    .xl\:-m-400 {
      margin: -40rem
    }
  
    .xl\:-m-512 {
      margin: -51.2rem
    }
  
    .xl\:-m-640 {
      margin: -64rem
    }
  
    .xl\:-m-px {
      margin: -1px
    }
  
    .xl\:-m-xs {
      margin: -32rem
    }
  
    .xl\:-m-sm {
      margin: -48rem
    }
  
    .xl\:-m-md {
      margin: -64rem
    }
  
    .xl\:-m-lg {
      margin: -80rem
    }
  
    .xl\:-m-xl {
      margin: -96rem
    }
  
    .xl\:-m-2xl {
      margin: -112rem
    }
  
    .xl\:-m-3xl {
      margin: -128rem
    }
  
    .xl\:-m-4xl {
      margin: -144rem
    }
  
    .xl\:-m-5xl {
      margin: -160rem
    }
  
    .xl\:-m-auto {
      margin: -auto
    }
  
    .xl\:my-0 {
      margin-top: 0;
      margin-bottom: 0
    }
  
    .xl\:mx-0 {
      margin-left: 0;
      margin-right: 0
    }
  
    .xl\:my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem
    }
  
    .xl\:mx-1 {
      margin-left: 0.25rem;
      margin-right: 0.25rem
    }
  
    .xl\:my-2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem
    }
  
    .xl\:mx-2 {
      margin-left: 0.5rem;
      margin-right: 0.5rem
    }
  
    .xl\:my-3 {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem
    }
  
    .xl\:mx-3 {
      margin-left: 0.75rem;
      margin-right: 0.75rem
    }
  
    .xl\:my-4 {
      margin-top: 0.4rem;
      margin-bottom: 0.4rem
    }
  
    .xl\:mx-4 {
      margin-left: 0.4rem;
      margin-right: 0.4rem
    }
  
    .xl\:my-5 {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem
    }
  
    .xl\:mx-5 {
      margin-left: 1.25rem;
      margin-right: 1.25rem
    }
  
    .xl\:my-6 {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem
    }
  
    .xl\:mx-6 {
      margin-left: 0.6rem;
      margin-right: 0.6rem
    }
  
    .xl\:my-8 {
      margin-top: 0.8rem;
      margin-bottom: 0.8rem
    }
  
    .xl\:mx-8 {
      margin-left: 0.8rem;
      margin-right: 0.8rem
    }
  
    .xl\:my-10 {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem
    }
  
    .xl\:mx-10 {
      margin-left: 2.5rem;
      margin-right: 2.5rem
    }
  
    .xl\:my-12 {
      margin-top: 1.2rem;
      margin-bottom: 1.2rem
    }
  
    .xl\:mx-12 {
      margin-left: 1.2rem;
      margin-right: 1.2rem
    }
  
    .xl\:my-16 {
      margin-top: 1.6rem;
      margin-bottom: 1.6rem
    }
  
    .xl\:mx-16 {
      margin-left: 1.6rem;
      margin-right: 1.6rem
    }
  
    .xl\:my-20 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
  
    .xl\:mx-20 {
      margin-left: 2rem;
      margin-right: 2rem
    }
  
    .xl\:my-24 {
      margin-top: 2.4rem;
      margin-bottom: 2.4rem
    }
  
    .xl\:mx-24 {
      margin-left: 2.4rem;
      margin-right: 2.4rem
    }
  
    .xl\:my-28 {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem
    }
  
    .xl\:mx-28 {
      margin-left: 2.8rem;
      margin-right: 2.8rem
    }
  
    .xl\:my-32 {
      margin-top: 3.2rem;
      margin-bottom: 3.2rem
    }
  
    .xl\:mx-32 {
      margin-left: 3.2rem;
      margin-right: 3.2rem
    }
  
    .xl\:my-36 {
      margin-top: 3.6rem;
      margin-bottom: 3.6rem
    }
  
    .xl\:mx-36 {
      margin-left: 3.6rem;
      margin-right: 3.6rem
    }
  
    .xl\:my-40 {
      margin-top: 4rem;
      margin-bottom: 4rem
    }
  
    .xl\:mx-40 {
      margin-left: 4rem;
      margin-right: 4rem
    }
  
    .xl\:my-44 {
      margin-top: 4.4rem;
      margin-bottom: 4.4rem
    }
  
    .xl\:mx-44 {
      margin-left: 4.4rem;
      margin-right: 4.4rem
    }
  
    .xl\:my-48 {
      margin-top: 4.8rem;
      margin-bottom: 4.8rem
    }
  
    .xl\:mx-48 {
      margin-left: 4.8rem;
      margin-right: 4.8rem
    }
  
    .xl\:my-52 {
      margin-top: 5.2rem;
      margin-bottom: 5.2rem
    }
  
    .xl\:mx-52 {
      margin-left: 5.2rem;
      margin-right: 5.2rem
    }
  
    .xl\:my-56 {
      margin-top: 5.6rem;
      margin-bottom: 5.6rem
    }
  
    .xl\:mx-56 {
      margin-left: 5.6rem;
      margin-right: 5.6rem
    }
  
    .xl\:my-60 {
      margin-top: 6rem;
      margin-bottom: 6rem
    }
  
    .xl\:mx-60 {
      margin-left: 6rem;
      margin-right: 6rem
    }
  
    .xl\:my-64 {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem
    }
  
    .xl\:mx-64 {
      margin-left: 6.4rem;
      margin-right: 6.4rem
    }
  
    .xl\:my-68 {
      margin-top: 6.8rem;
      margin-bottom: 6.8rem
    }
  
    .xl\:mx-68 {
      margin-left: 6.8rem;
      margin-right: 6.8rem
    }
  
    .xl\:my-72 {
      margin-top: 7.2rem;
      margin-bottom: 7.2rem
    }
  
    .xl\:mx-72 {
      margin-left: 7.2rem;
      margin-right: 7.2rem
    }
  
    .xl\:my-76 {
      margin-top: 7.6rem;
      margin-bottom: 7.6rem
    }
  
    .xl\:mx-76 {
      margin-left: 7.6rem;
      margin-right: 7.6rem
    }
  
    .xl\:my-80 {
      margin-top: 8rem;
      margin-bottom: 8rem
    }
  
    .xl\:mx-80 {
      margin-left: 8rem;
      margin-right: 8rem
    }
  
    .xl\:my-84 {
      margin-top: 8.4rem;
      margin-bottom: 8.4rem
    }
  
    .xl\:mx-84 {
      margin-left: 8.4rem;
      margin-right: 8.4rem
    }
  
    .xl\:my-88 {
      margin-top: 8.8rem;
      margin-bottom: 8.8rem
    }
  
    .xl\:mx-88 {
      margin-left: 8.8rem;
      margin-right: 8.8rem
    }
  
    .xl\:my-92 {
      margin-top: 9.2rem;
      margin-bottom: 9.2rem
    }
  
    .xl\:mx-92 {
      margin-left: 9.2rem;
      margin-right: 9.2rem
    }
  
    .xl\:my-96 {
      margin-top: 9.6rem;
      margin-bottom: 9.6rem
    }
  
    .xl\:mx-96 {
      margin-left: 9.6rem;
      margin-right: 9.6rem
    }
  
    .xl\:my-128 {
      margin-top: 12.8rem;
      margin-bottom: 12.8rem
    }
  
    .xl\:mx-128 {
      margin-left: 12.8rem;
      margin-right: 12.8rem
    }
  
    .xl\:my-136 {
      margin-top: 13.6rem;
      margin-bottom: 13.6rem
    }
  
    .xl\:mx-136 {
      margin-left: 13.6rem;
      margin-right: 13.6rem
    }
  
    .xl\:my-160 {
      margin-top: 16rem;
      margin-bottom: 16rem
    }
  
    .xl\:mx-160 {
      margin-left: 16rem;
      margin-right: 16rem
    }
  
    .xl\:my-192 {
      margin-top: 19.2rem;
      margin-bottom: 19.2rem
    }
  
    .xl\:mx-192 {
      margin-left: 19.2rem;
      margin-right: 19.2rem
    }
  
    .xl\:my-200 {
      margin-top: 20rem;
      margin-bottom: 20rem
    }
  
    .xl\:mx-200 {
      margin-left: 20rem;
      margin-right: 20rem
    }
  
    .xl\:my-208 {
      margin-top: 20.8rem;
      margin-bottom: 20.8rem
    }
  
    .xl\:mx-208 {
      margin-left: 20.8rem;
      margin-right: 20.8rem
    }
  
    .xl\:my-216 {
      margin-top: 21.6rem;
      margin-bottom: 21.6rem
    }
  
    .xl\:mx-216 {
      margin-left: 21.6rem;
      margin-right: 21.6rem
    }
  
    .xl\:my-224 {
      margin-top: 22.4rem;
      margin-bottom: 22.4rem
    }
  
    .xl\:mx-224 {
      margin-left: 22.4rem;
      margin-right: 22.4rem
    }
  
    .xl\:my-256 {
      margin-top: 25.6rem;
      margin-bottom: 25.6rem
    }
  
    .xl\:mx-256 {
      margin-left: 25.6rem;
      margin-right: 25.6rem
    }
  
    .xl\:my-288 {
      margin-top: 28.8rem;
      margin-bottom: 28.8rem
    }
  
    .xl\:mx-288 {
      margin-left: 28.8rem;
      margin-right: 28.8rem
    }
  
    .xl\:my-320 {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .xl\:mx-320 {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .xl\:my-360 {
      margin-top: 36rem;
      margin-bottom: 36rem
    }
  
    .xl\:mx-360 {
      margin-left: 36rem;
      margin-right: 36rem
    }
  
    .xl\:my-384 {
      margin-top: 38.4rem;
      margin-bottom: 38.4rem
    }
  
    .xl\:mx-384 {
      margin-left: 38.4rem;
      margin-right: 38.4rem
    }
  
    .xl\:my-400 {
      margin-top: 40rem;
      margin-bottom: 40rem
    }
  
    .xl\:mx-400 {
      margin-left: 40rem;
      margin-right: 40rem
    }
  
    .xl\:my-512 {
      margin-top: 51.2rem;
      margin-bottom: 51.2rem
    }
  
    .xl\:mx-512 {
      margin-left: 51.2rem;
      margin-right: 51.2rem
    }
  
    .xl\:my-640 {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .xl\:mx-640 {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .xl\:my-auto {
      margin-top: auto;
      margin-bottom: auto
    }
  
    .xl\:mx-auto {
      margin-left: auto;
      margin-right: auto
    }
  
    .xl\:my-px {
      margin-top: 1px;
      margin-bottom: 1px
    }
  
    .xl\:mx-px {
      margin-left: 1px;
      margin-right: 1px
    }
  
    .xl\:my-xs {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .xl\:mx-xs {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .xl\:my-sm {
      margin-top: 48rem;
      margin-bottom: 48rem
    }
  
    .xl\:mx-sm {
      margin-left: 48rem;
      margin-right: 48rem
    }
  
    .xl\:my-md {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .xl\:mx-md {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .xl\:my-lg {
      margin-top: 80rem;
      margin-bottom: 80rem
    }
  
    .xl\:mx-lg {
      margin-left: 80rem;
      margin-right: 80rem
    }
  
    .xl\:my-xl {
      margin-top: 96rem;
      margin-bottom: 96rem
    }
  
    .xl\:mx-xl {
      margin-left: 96rem;
      margin-right: 96rem
    }
  
    .xl\:my-2xl {
      margin-top: 112rem;
      margin-bottom: 112rem
    }
  
    .xl\:mx-2xl {
      margin-left: 112rem;
      margin-right: 112rem
    }
  
    .xl\:my-3xl {
      margin-top: 128rem;
      margin-bottom: 128rem
    }
  
    .xl\:mx-3xl {
      margin-left: 128rem;
      margin-right: 128rem
    }
  
    .xl\:my-4xl {
      margin-top: 144rem;
      margin-bottom: 144rem
    }
  
    .xl\:mx-4xl {
      margin-left: 144rem;
      margin-right: 144rem
    }
  
    .xl\:my-5xl {
      margin-top: 160rem;
      margin-bottom: 160rem
    }
  
    .xl\:mx-5xl {
      margin-left: 160rem;
      margin-right: 160rem
    }
  
    .xl\:-my-1 {
      margin-top: -0.25rem;
      margin-bottom: -0.25rem
    }
  
    .xl\:-mx-1 {
      margin-left: -0.25rem;
      margin-right: -0.25rem
    }
  
    .xl\:-my-2 {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem
    }
  
    .xl\:-mx-2 {
      margin-left: -0.5rem;
      margin-right: -0.5rem
    }
  
    .xl\:-my-3 {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem
    }
  
    .xl\:-mx-3 {
      margin-left: -0.75rem;
      margin-right: -0.75rem
    }
  
    .xl\:-my-4 {
      margin-top: -0.4rem;
      margin-bottom: -0.4rem
    }
  
    .xl\:-mx-4 {
      margin-left: -0.4rem;
      margin-right: -0.4rem
    }
  
    .xl\:-my-5 {
      margin-top: -1.25rem;
      margin-bottom: -1.25rem
    }
  
    .xl\:-mx-5 {
      margin-left: -1.25rem;
      margin-right: -1.25rem
    }
  
    .xl\:-my-6 {
      margin-top: -0.6rem;
      margin-bottom: -0.6rem
    }
  
    .xl\:-mx-6 {
      margin-left: -0.6rem;
      margin-right: -0.6rem
    }
  
    .xl\:-my-8 {
      margin-top: -0.8rem;
      margin-bottom: -0.8rem
    }
  
    .xl\:-mx-8 {
      margin-left: -0.8rem;
      margin-right: -0.8rem
    }
  
    .xl\:-my-10 {
      margin-top: -2.5rem;
      margin-bottom: -2.5rem
    }
  
    .xl\:-mx-10 {
      margin-left: -2.5rem;
      margin-right: -2.5rem
    }
  
    .xl\:-my-12 {
      margin-top: -1.2rem;
      margin-bottom: -1.2rem
    }
  
    .xl\:-mx-12 {
      margin-left: -1.2rem;
      margin-right: -1.2rem
    }
  
    .xl\:-my-16 {
      margin-top: -1.6rem;
      margin-bottom: -1.6rem
    }
  
    .xl\:-mx-16 {
      margin-left: -1.6rem;
      margin-right: -1.6rem
    }
  
    .xl\:-my-20 {
      margin-top: -2rem;
      margin-bottom: -2rem
    }
  
    .xl\:-mx-20 {
      margin-left: -2rem;
      margin-right: -2rem
    }
  
    .xl\:-my-24 {
      margin-top: -2.4rem;
      margin-bottom: -2.4rem
    }
  
    .xl\:-mx-24 {
      margin-left: -2.4rem;
      margin-right: -2.4rem
    }
  
    .xl\:-my-28 {
      margin-top: -2.8rem;
      margin-bottom: -2.8rem
    }
  
    .xl\:-mx-28 {
      margin-left: -2.8rem;
      margin-right: -2.8rem
    }
  
    .xl\:-my-32 {
      margin-top: -3.2rem;
      margin-bottom: -3.2rem
    }
  
    .xl\:-mx-32 {
      margin-left: -3.2rem;
      margin-right: -3.2rem
    }
  
    .xl\:-my-36 {
      margin-top: -3.6rem;
      margin-bottom: -3.6rem
    }
  
    .xl\:-mx-36 {
      margin-left: -3.6rem;
      margin-right: -3.6rem
    }
  
    .xl\:-my-40 {
      margin-top: -4rem;
      margin-bottom: -4rem
    }
  
    .xl\:-mx-40 {
      margin-left: -4rem;
      margin-right: -4rem
    }
  
    .xl\:-my-44 {
      margin-top: -4.4rem;
      margin-bottom: -4.4rem
    }
  
    .xl\:-mx-44 {
      margin-left: -4.4rem;
      margin-right: -4.4rem
    }
  
    .xl\:-my-48 {
      margin-top: -4.8rem;
      margin-bottom: -4.8rem
    }
  
    .xl\:-mx-48 {
      margin-left: -4.8rem;
      margin-right: -4.8rem
    }
  
    .xl\:-my-52 {
      margin-top: -5.2rem;
      margin-bottom: -5.2rem
    }
  
    .xl\:-mx-52 {
      margin-left: -5.2rem;
      margin-right: -5.2rem
    }
  
    .xl\:-my-56 {
      margin-top: -5.6rem;
      margin-bottom: -5.6rem
    }
  
    .xl\:-mx-56 {
      margin-left: -5.6rem;
      margin-right: -5.6rem
    }
  
    .xl\:-my-60 {
      margin-top: -6rem;
      margin-bottom: -6rem
    }
  
    .xl\:-mx-60 {
      margin-left: -6rem;
      margin-right: -6rem
    }
  
    .xl\:-my-64 {
      margin-top: -6.4rem;
      margin-bottom: -6.4rem
    }
  
    .xl\:-mx-64 {
      margin-left: -6.4rem;
      margin-right: -6.4rem
    }
  
    .xl\:-my-68 {
      margin-top: -6.8rem;
      margin-bottom: -6.8rem
    }
  
    .xl\:-mx-68 {
      margin-left: -6.8rem;
      margin-right: -6.8rem
    }
  
    .xl\:-my-72 {
      margin-top: -7.2rem;
      margin-bottom: -7.2rem
    }
  
    .xl\:-mx-72 {
      margin-left: -7.2rem;
      margin-right: -7.2rem
    }
  
    .xl\:-my-76 {
      margin-top: -7.6rem;
      margin-bottom: -7.6rem
    }
  
    .xl\:-mx-76 {
      margin-left: -7.6rem;
      margin-right: -7.6rem
    }
  
    .xl\:-my-80 {
      margin-top: -8rem;
      margin-bottom: -8rem
    }
  
    .xl\:-mx-80 {
      margin-left: -8rem;
      margin-right: -8rem
    }
  
    .xl\:-my-84 {
      margin-top: -8.4rem;
      margin-bottom: -8.4rem
    }
  
    .xl\:-mx-84 {
      margin-left: -8.4rem;
      margin-right: -8.4rem
    }
  
    .xl\:-my-88 {
      margin-top: -8.8rem;
      margin-bottom: -8.8rem
    }
  
    .xl\:-mx-88 {
      margin-left: -8.8rem;
      margin-right: -8.8rem
    }
  
    .xl\:-my-92 {
      margin-top: -9.2rem;
      margin-bottom: -9.2rem
    }
  
    .xl\:-mx-92 {
      margin-left: -9.2rem;
      margin-right: -9.2rem
    }
  
    .xl\:-my-96 {
      margin-top: -9.6rem;
      margin-bottom: -9.6rem
    }
  
    .xl\:-mx-96 {
      margin-left: -9.6rem;
      margin-right: -9.6rem
    }
  
    .xl\:-my-128 {
      margin-top: -12.8rem;
      margin-bottom: -12.8rem
    }
  
    .xl\:-mx-128 {
      margin-left: -12.8rem;
      margin-right: -12.8rem
    }
  
    .xl\:-my-136 {
      margin-top: -13.6rem;
      margin-bottom: -13.6rem
    }
  
    .xl\:-mx-136 {
      margin-left: -13.6rem;
      margin-right: -13.6rem
    }
  
    .xl\:-my-160 {
      margin-top: -16rem;
      margin-bottom: -16rem
    }
  
    .xl\:-mx-160 {
      margin-left: -16rem;
      margin-right: -16rem
    }
  
    .xl\:-my-192 {
      margin-top: -19.2rem;
      margin-bottom: -19.2rem
    }
  
    .xl\:-mx-192 {
      margin-left: -19.2rem;
      margin-right: -19.2rem
    }
  
    .xl\:-my-200 {
      margin-top: -20rem;
      margin-bottom: -20rem
    }
  
    .xl\:-mx-200 {
      margin-left: -20rem;
      margin-right: -20rem
    }
  
    .xl\:-my-208 {
      margin-top: -20.8rem;
      margin-bottom: -20.8rem
    }
  
    .xl\:-mx-208 {
      margin-left: -20.8rem;
      margin-right: -20.8rem
    }
  
    .xl\:-my-216 {
      margin-top: -21.6rem;
      margin-bottom: -21.6rem
    }
  
    .xl\:-mx-216 {
      margin-left: -21.6rem;
      margin-right: -21.6rem
    }
  
    .xl\:-my-224 {
      margin-top: -22.4rem;
      margin-bottom: -22.4rem
    }
  
    .xl\:-mx-224 {
      margin-left: -22.4rem;
      margin-right: -22.4rem
    }
  
    .xl\:-my-256 {
      margin-top: -25.6rem;
      margin-bottom: -25.6rem
    }
  
    .xl\:-mx-256 {
      margin-left: -25.6rem;
      margin-right: -25.6rem
    }
  
    .xl\:-my-288 {
      margin-top: -28.8rem;
      margin-bottom: -28.8rem
    }
  
    .xl\:-mx-288 {
      margin-left: -28.8rem;
      margin-right: -28.8rem
    }
  
    .xl\:-my-320 {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .xl\:-mx-320 {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .xl\:-my-360 {
      margin-top: -36rem;
      margin-bottom: -36rem
    }
  
    .xl\:-mx-360 {
      margin-left: -36rem;
      margin-right: -36rem
    }
  
    .xl\:-my-384 {
      margin-top: -38.4rem;
      margin-bottom: -38.4rem
    }
  
    .xl\:-mx-384 {
      margin-left: -38.4rem;
      margin-right: -38.4rem
    }
  
    .xl\:-my-400 {
      margin-top: -40rem;
      margin-bottom: -40rem
    }
  
    .xl\:-mx-400 {
      margin-left: -40rem;
      margin-right: -40rem
    }
  
    .xl\:-my-512 {
      margin-top: -51.2rem;
      margin-bottom: -51.2rem
    }
  
    .xl\:-mx-512 {
      margin-left: -51.2rem;
      margin-right: -51.2rem
    }
  
    .xl\:-my-640 {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .xl\:-mx-640 {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .xl\:-my-px {
      margin-top: -1px;
      margin-bottom: -1px
    }
  
    .xl\:-mx-px {
      margin-left: -1px;
      margin-right: -1px
    }
  
    .xl\:-my-xs {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .xl\:-mx-xs {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .xl\:-my-sm {
      margin-top: -48rem;
      margin-bottom: -48rem
    }
  
    .xl\:-mx-sm {
      margin-left: -48rem;
      margin-right: -48rem
    }
  
    .xl\:-my-md {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .xl\:-mx-md {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .xl\:-my-lg {
      margin-top: -80rem;
      margin-bottom: -80rem
    }
  
    .xl\:-mx-lg {
      margin-left: -80rem;
      margin-right: -80rem
    }
  
    .xl\:-my-xl {
      margin-top: -96rem;
      margin-bottom: -96rem
    }
  
    .xl\:-mx-xl {
      margin-left: -96rem;
      margin-right: -96rem
    }
  
    .xl\:-my-2xl {
      margin-top: -112rem;
      margin-bottom: -112rem
    }
  
    .xl\:-mx-2xl {
      margin-left: -112rem;
      margin-right: -112rem
    }
  
    .xl\:-my-3xl {
      margin-top: -128rem;
      margin-bottom: -128rem
    }
  
    .xl\:-mx-3xl {
      margin-left: -128rem;
      margin-right: -128rem
    }
  
    .xl\:-my-4xl {
      margin-top: -144rem;
      margin-bottom: -144rem
    }
  
    .xl\:-mx-4xl {
      margin-left: -144rem;
      margin-right: -144rem
    }
  
    .xl\:-my-5xl {
      margin-top: -160rem;
      margin-bottom: -160rem
    }
  
    .xl\:-mx-5xl {
      margin-left: -160rem;
      margin-right: -160rem
    }
  
    .xl\:-my-auto {
      margin-top: -auto;
      margin-bottom: -auto
    }
  
    .xl\:-mx-auto {
      margin-left: -auto;
      margin-right: -auto
    }
  
    .xl\:mt-0 {
      margin-top: 0
    }
  
    .xl\:mr-0 {
      margin-right: 0
    }
  
    .xl\:mb-0 {
      margin-bottom: 0
    }
  
    .xl\:ml-0 {
      margin-left: 0
    }
  
    .xl\:mt-1 {
      margin-top: 0.25rem
    }
  
    .xl\:mr-1 {
      margin-right: 0.25rem
    }
  
    .xl\:mb-1 {
      margin-bottom: 0.25rem
    }
  
    .xl\:ml-1 {
      margin-left: 0.25rem
    }
  
    .xl\:mt-2 {
      margin-top: 0.5rem
    }
  
    .xl\:mr-2 {
      margin-right: 0.5rem
    }
  
    .xl\:mb-2 {
      margin-bottom: 0.5rem
    }
  
    .xl\:ml-2 {
      margin-left: 0.5rem
    }
  
    .xl\:mt-3 {
      margin-top: 0.75rem
    }
  
    .xl\:mr-3 {
      margin-right: 0.75rem
    }
  
    .xl\:mb-3 {
      margin-bottom: 0.75rem
    }
  
    .xl\:ml-3 {
      margin-left: 0.75rem
    }
  
    .xl\:mt-4 {
      margin-top: 0.4rem
    }
  
    .xl\:mr-4 {
      margin-right: 0.4rem
    }
  
    .xl\:mb-4 {
      margin-bottom: 0.4rem
    }
  
    .xl\:ml-4 {
      margin-left: 0.4rem
    }
  
    .xl\:mt-5 {
      margin-top: 1.25rem
    }
  
    .xl\:mr-5 {
      margin-right: 1.25rem
    }
  
    .xl\:mb-5 {
      margin-bottom: 1.25rem
    }
  
    .xl\:ml-5 {
      margin-left: 1.25rem
    }
  
    .xl\:mt-6 {
      margin-top: 0.6rem
    }
  
    .xl\:mr-6 {
      margin-right: 0.6rem
    }
  
    .xl\:mb-6 {
      margin-bottom: 0.6rem
    }
  
    .xl\:ml-6 {
      margin-left: 0.6rem
    }
  
    .xl\:mt-8 {
      margin-top: 0.8rem
    }
  
    .xl\:mr-8 {
      margin-right: 0.8rem
    }
  
    .xl\:mb-8 {
      margin-bottom: 0.8rem
    }
  
    .xl\:ml-8 {
      margin-left: 0.8rem
    }
  
    .xl\:mt-10 {
      margin-top: 2.5rem
    }
  
    .xl\:mr-10 {
      margin-right: 2.5rem
    }
  
    .xl\:mb-10 {
      margin-bottom: 2.5rem
    }
  
    .xl\:ml-10 {
      margin-left: 2.5rem
    }
  
    .xl\:mt-12 {
      margin-top: 1.2rem
    }
  
    .xl\:mr-12 {
      margin-right: 1.2rem
    }
  
    .xl\:mb-12 {
      margin-bottom: 1.2rem
    }
  
    .xl\:ml-12 {
      margin-left: 1.2rem
    }
  
    .xl\:mt-16 {
      margin-top: 1.6rem
    }
  
    .xl\:mr-16 {
      margin-right: 1.6rem
    }
  
    .xl\:mb-16 {
      margin-bottom: 1.6rem
    }
  
    .xl\:ml-16 {
      margin-left: 1.6rem
    }
  
    .xl\:mt-20 {
      margin-top: 2rem
    }
  
    .xl\:mr-20 {
      margin-right: 2rem
    }
  
    .xl\:mb-20 {
      margin-bottom: 2rem
    }
  
    .xl\:ml-20 {
      margin-left: 2rem
    }
  
    .xl\:mt-24 {
      margin-top: 2.4rem
    }
  
    .xl\:mr-24 {
      margin-right: 2.4rem
    }
  
    .xl\:mb-24 {
      margin-bottom: 2.4rem
    }
  
    .xl\:ml-24 {
      margin-left: 2.4rem
    }
  
    .xl\:mt-28 {
      margin-top: 2.8rem
    }
  
    .xl\:mr-28 {
      margin-right: 2.8rem
    }
  
    .xl\:mb-28 {
      margin-bottom: 2.8rem
    }
  
    .xl\:ml-28 {
      margin-left: 2.8rem
    }
  
    .xl\:mt-32 {
      margin-top: 3.2rem
    }
  
    .xl\:mr-32 {
      margin-right: 3.2rem
    }
  
    .xl\:mb-32 {
      margin-bottom: 3.2rem
    }
  
    .xl\:ml-32 {
      margin-left: 3.2rem
    }
  
    .xl\:mt-36 {
      margin-top: 3.6rem
    }
  
    .xl\:mr-36 {
      margin-right: 3.6rem
    }
  
    .xl\:mb-36 {
      margin-bottom: 3.6rem
    }
  
    .xl\:ml-36 {
      margin-left: 3.6rem
    }
  
    .xl\:mt-40 {
      margin-top: 4rem
    }
  
    .xl\:mr-40 {
      margin-right: 4rem
    }
  
    .xl\:mb-40 {
      margin-bottom: 4rem
    }
  
    .xl\:ml-40 {
      margin-left: 4rem
    }
  
    .xl\:mt-44 {
      margin-top: 4.4rem
    }
  
    .xl\:mr-44 {
      margin-right: 4.4rem
    }
  
    .xl\:mb-44 {
      margin-bottom: 4.4rem
    }
  
    .xl\:ml-44 {
      margin-left: 4.4rem
    }
  
    .xl\:mt-48 {
      margin-top: 4.8rem
    }
  
    .xl\:mr-48 {
      margin-right: 4.8rem
    }
  
    .xl\:mb-48 {
      margin-bottom: 4.8rem
    }
  
    .xl\:ml-48 {
      margin-left: 4.8rem
    }
  
    .xl\:mt-52 {
      margin-top: 5.2rem
    }
  
    .xl\:mr-52 {
      margin-right: 5.2rem
    }
  
    .xl\:mb-52 {
      margin-bottom: 5.2rem
    }
  
    .xl\:ml-52 {
      margin-left: 5.2rem
    }
  
    .xl\:mt-56 {
      margin-top: 5.6rem
    }
  
    .xl\:mr-56 {
      margin-right: 5.6rem
    }
  
    .xl\:mb-56 {
      margin-bottom: 5.6rem
    }
  
    .xl\:ml-56 {
      margin-left: 5.6rem
    }
  
    .xl\:mt-60 {
      margin-top: 6rem
    }
  
    .xl\:mr-60 {
      margin-right: 6rem
    }
  
    .xl\:mb-60 {
      margin-bottom: 6rem
    }
  
    .xl\:ml-60 {
      margin-left: 6rem
    }
  
    .xl\:mt-64 {
      margin-top: 6.4rem
    }
  
    .xl\:mr-64 {
      margin-right: 6.4rem
    }
  
    .xl\:mb-64 {
      margin-bottom: 6.4rem
    }
  
    .xl\:ml-64 {
      margin-left: 6.4rem
    }
  
    .xl\:mt-68 {
      margin-top: 6.8rem
    }
  
    .xl\:mr-68 {
      margin-right: 6.8rem
    }
  
    .xl\:mb-68 {
      margin-bottom: 6.8rem
    }
  
    .xl\:ml-68 {
      margin-left: 6.8rem
    }
  
    .xl\:mt-72 {
      margin-top: 7.2rem
    }
  
    .xl\:mr-72 {
      margin-right: 7.2rem
    }
  
    .xl\:mb-72 {
      margin-bottom: 7.2rem
    }
  
    .xl\:ml-72 {
      margin-left: 7.2rem
    }
  
    .xl\:mt-76 {
      margin-top: 7.6rem
    }
  
    .xl\:mr-76 {
      margin-right: 7.6rem
    }
  
    .xl\:mb-76 {
      margin-bottom: 7.6rem
    }
  
    .xl\:ml-76 {
      margin-left: 7.6rem
    }
  
    .xl\:mt-80 {
      margin-top: 8rem
    }
  
    .xl\:mr-80 {
      margin-right: 8rem
    }
  
    .xl\:mb-80 {
      margin-bottom: 8rem
    }
  
    .xl\:ml-80 {
      margin-left: 8rem
    }
  
    .xl\:mt-84 {
      margin-top: 8.4rem
    }
  
    .xl\:mr-84 {
      margin-right: 8.4rem
    }
  
    .xl\:mb-84 {
      margin-bottom: 8.4rem
    }
  
    .xl\:ml-84 {
      margin-left: 8.4rem
    }
  
    .xl\:mt-88 {
      margin-top: 8.8rem
    }
  
    .xl\:mr-88 {
      margin-right: 8.8rem
    }
  
    .xl\:mb-88 {
      margin-bottom: 8.8rem
    }
  
    .xl\:ml-88 {
      margin-left: 8.8rem
    }
  
    .xl\:mt-92 {
      margin-top: 9.2rem
    }
  
    .xl\:mr-92 {
      margin-right: 9.2rem
    }
  
    .xl\:mb-92 {
      margin-bottom: 9.2rem
    }
  
    .xl\:ml-92 {
      margin-left: 9.2rem
    }
  
    .xl\:mt-96 {
      margin-top: 9.6rem
    }
  
    .xl\:mr-96 {
      margin-right: 9.6rem
    }
  
    .xl\:mb-96 {
      margin-bottom: 9.6rem
    }
  
    .xl\:ml-96 {
      margin-left: 9.6rem
    }
  
    .xl\:mt-128 {
      margin-top: 12.8rem
    }
  
    .xl\:mr-128 {
      margin-right: 12.8rem
    }
  
    .xl\:mb-128 {
      margin-bottom: 12.8rem
    }
  
    .xl\:ml-128 {
      margin-left: 12.8rem
    }
  
    .xl\:mt-136 {
      margin-top: 13.6rem
    }
  
    .xl\:mr-136 {
      margin-right: 13.6rem
    }
  
    .xl\:mb-136 {
      margin-bottom: 13.6rem
    }
  
    .xl\:ml-136 {
      margin-left: 13.6rem
    }
  
    .xl\:mt-160 {
      margin-top: 16rem
    }
  
    .xl\:mr-160 {
      margin-right: 16rem
    }
  
    .xl\:mb-160 {
      margin-bottom: 16rem
    }
  
    .xl\:ml-160 {
      margin-left: 16rem
    }
  
    .xl\:mt-192 {
      margin-top: 19.2rem
    }
  
    .xl\:mr-192 {
      margin-right: 19.2rem
    }
  
    .xl\:mb-192 {
      margin-bottom: 19.2rem
    }
  
    .xl\:ml-192 {
      margin-left: 19.2rem
    }
  
    .xl\:mt-200 {
      margin-top: 20rem
    }
  
    .xl\:mr-200 {
      margin-right: 20rem
    }
  
    .xl\:mb-200 {
      margin-bottom: 20rem
    }
  
    .xl\:ml-200 {
      margin-left: 20rem
    }
  
    .xl\:mt-208 {
      margin-top: 20.8rem
    }
  
    .xl\:mr-208 {
      margin-right: 20.8rem
    }
  
    .xl\:mb-208 {
      margin-bottom: 20.8rem
    }
  
    .xl\:ml-208 {
      margin-left: 20.8rem
    }
  
    .xl\:mt-216 {
      margin-top: 21.6rem
    }
  
    .xl\:mr-216 {
      margin-right: 21.6rem
    }
  
    .xl\:mb-216 {
      margin-bottom: 21.6rem
    }
  
    .xl\:ml-216 {
      margin-left: 21.6rem
    }
  
    .xl\:mt-224 {
      margin-top: 22.4rem
    }
  
    .xl\:mr-224 {
      margin-right: 22.4rem
    }
  
    .xl\:mb-224 {
      margin-bottom: 22.4rem
    }
  
    .xl\:ml-224 {
      margin-left: 22.4rem
    }
  
    .xl\:mt-256 {
      margin-top: 25.6rem
    }
  
    .xl\:mr-256 {
      margin-right: 25.6rem
    }
  
    .xl\:mb-256 {
      margin-bottom: 25.6rem
    }
  
    .xl\:ml-256 {
      margin-left: 25.6rem
    }
  
    .xl\:mt-288 {
      margin-top: 28.8rem
    }
  
    .xl\:mr-288 {
      margin-right: 28.8rem
    }
  
    .xl\:mb-288 {
      margin-bottom: 28.8rem
    }
  
    .xl\:ml-288 {
      margin-left: 28.8rem
    }
  
    .xl\:mt-320 {
      margin-top: 32rem
    }
  
    .xl\:mr-320 {
      margin-right: 32rem
    }
  
    .xl\:mb-320 {
      margin-bottom: 32rem
    }
  
    .xl\:ml-320 {
      margin-left: 32rem
    }
  
    .xl\:mt-360 {
      margin-top: 36rem
    }
  
    .xl\:mr-360 {
      margin-right: 36rem
    }
  
    .xl\:mb-360 {
      margin-bottom: 36rem
    }
  
    .xl\:ml-360 {
      margin-left: 36rem
    }
  
    .xl\:mt-384 {
      margin-top: 38.4rem
    }
  
    .xl\:mr-384 {
      margin-right: 38.4rem
    }
  
    .xl\:mb-384 {
      margin-bottom: 38.4rem
    }
  
    .xl\:ml-384 {
      margin-left: 38.4rem
    }
  
    .xl\:mt-400 {
      margin-top: 40rem
    }
  
    .xl\:mr-400 {
      margin-right: 40rem
    }
  
    .xl\:mb-400 {
      margin-bottom: 40rem
    }
  
    .xl\:ml-400 {
      margin-left: 40rem
    }
  
    .xl\:mt-512 {
      margin-top: 51.2rem
    }
  
    .xl\:mr-512 {
      margin-right: 51.2rem
    }
  
    .xl\:mb-512 {
      margin-bottom: 51.2rem
    }
  
    .xl\:ml-512 {
      margin-left: 51.2rem
    }
  
    .xl\:mt-640 {
      margin-top: 64rem
    }
  
    .xl\:mr-640 {
      margin-right: 64rem
    }
  
    .xl\:mb-640 {
      margin-bottom: 64rem
    }
  
    .xl\:ml-640 {
      margin-left: 64rem
    }
  
    .xl\:mt-auto {
      margin-top: auto
    }
  
    .xl\:mr-auto {
      margin-right: auto
    }
  
    .xl\:mb-auto {
      margin-bottom: auto
    }
  
    .xl\:ml-auto {
      margin-left: auto
    }
  
    .xl\:mt-px {
      margin-top: 1px
    }
  
    .xl\:mr-px {
      margin-right: 1px
    }
  
    .xl\:mb-px {
      margin-bottom: 1px
    }
  
    .xl\:ml-px {
      margin-left: 1px
    }
  
    .xl\:mt-xs {
      margin-top: 32rem
    }
  
    .xl\:mr-xs {
      margin-right: 32rem
    }
  
    .xl\:mb-xs {
      margin-bottom: 32rem
    }
  
    .xl\:ml-xs {
      margin-left: 32rem
    }
  
    .xl\:mt-sm {
      margin-top: 48rem
    }
  
    .xl\:mr-sm {
      margin-right: 48rem
    }
  
    .xl\:mb-sm {
      margin-bottom: 48rem
    }
  
    .xl\:ml-sm {
      margin-left: 48rem
    }
  
    .xl\:mt-md {
      margin-top: 64rem
    }
  
    .xl\:mr-md {
      margin-right: 64rem
    }
  
    .xl\:mb-md {
      margin-bottom: 64rem
    }
  
    .xl\:ml-md {
      margin-left: 64rem
    }
  
    .xl\:mt-lg {
      margin-top: 80rem
    }
  
    .xl\:mr-lg {
      margin-right: 80rem
    }
  
    .xl\:mb-lg {
      margin-bottom: 80rem
    }
  
    .xl\:ml-lg {
      margin-left: 80rem
    }
  
    .xl\:mt-xl {
      margin-top: 96rem
    }
  
    .xl\:mr-xl {
      margin-right: 96rem
    }
  
    .xl\:mb-xl {
      margin-bottom: 96rem
    }
  
    .xl\:ml-xl {
      margin-left: 96rem
    }
  
    .xl\:mt-2xl {
      margin-top: 112rem
    }
  
    .xl\:mr-2xl {
      margin-right: 112rem
    }
  
    .xl\:mb-2xl {
      margin-bottom: 112rem
    }
  
    .xl\:ml-2xl {
      margin-left: 112rem
    }
  
    .xl\:mt-3xl {
      margin-top: 128rem
    }
  
    .xl\:mr-3xl {
      margin-right: 128rem
    }
  
    .xl\:mb-3xl {
      margin-bottom: 128rem
    }
  
    .xl\:ml-3xl {
      margin-left: 128rem
    }
  
    .xl\:mt-4xl {
      margin-top: 144rem
    }
  
    .xl\:mr-4xl {
      margin-right: 144rem
    }
  
    .xl\:mb-4xl {
      margin-bottom: 144rem
    }
  
    .xl\:ml-4xl {
      margin-left: 144rem
    }
  
    .xl\:mt-5xl {
      margin-top: 160rem
    }
  
    .xl\:mr-5xl {
      margin-right: 160rem
    }
  
    .xl\:mb-5xl {
      margin-bottom: 160rem
    }
  
    .xl\:ml-5xl {
      margin-left: 160rem
    }
  
    .xl\:-mt-1 {
      margin-top: -0.25rem
    }
  
    .xl\:-mr-1 {
      margin-right: -0.25rem
    }
  
    .xl\:-mb-1 {
      margin-bottom: -0.25rem
    }
  
    .xl\:-ml-1 {
      margin-left: -0.25rem
    }
  
    .xl\:-mt-2 {
      margin-top: -0.5rem
    }
  
    .xl\:-mr-2 {
      margin-right: -0.5rem
    }
  
    .xl\:-mb-2 {
      margin-bottom: -0.5rem
    }
  
    .xl\:-ml-2 {
      margin-left: -0.5rem
    }
  
    .xl\:-mt-3 {
      margin-top: -0.75rem
    }
  
    .xl\:-mr-3 {
      margin-right: -0.75rem
    }
  
    .xl\:-mb-3 {
      margin-bottom: -0.75rem
    }
  
    .xl\:-ml-3 {
      margin-left: -0.75rem
    }
  
    .xl\:-mt-4 {
      margin-top: -0.4rem
    }
  
    .xl\:-mr-4 {
      margin-right: -0.4rem
    }
  
    .xl\:-mb-4 {
      margin-bottom: -0.4rem
    }
  
    .xl\:-ml-4 {
      margin-left: -0.4rem
    }
  
    .xl\:-mt-5 {
      margin-top: -1.25rem
    }
  
    .xl\:-mr-5 {
      margin-right: -1.25rem
    }
  
    .xl\:-mb-5 {
      margin-bottom: -1.25rem
    }
  
    .xl\:-ml-5 {
      margin-left: -1.25rem
    }
  
    .xl\:-mt-6 {
      margin-top: -0.6rem
    }
  
    .xl\:-mr-6 {
      margin-right: -0.6rem
    }
  
    .xl\:-mb-6 {
      margin-bottom: -0.6rem
    }
  
    .xl\:-ml-6 {
      margin-left: -0.6rem
    }
  
    .xl\:-mt-8 {
      margin-top: -0.8rem
    }
  
    .xl\:-mr-8 {
      margin-right: -0.8rem
    }
  
    .xl\:-mb-8 {
      margin-bottom: -0.8rem
    }
  
    .xl\:-ml-8 {
      margin-left: -0.8rem
    }
  
    .xl\:-mt-10 {
      margin-top: -2.5rem
    }
  
    .xl\:-mr-10 {
      margin-right: -2.5rem
    }
  
    .xl\:-mb-10 {
      margin-bottom: -2.5rem
    }
  
    .xl\:-ml-10 {
      margin-left: -2.5rem
    }
  
    .xl\:-mt-12 {
      margin-top: -1.2rem
    }
  
    .xl\:-mr-12 {
      margin-right: -1.2rem
    }
  
    .xl\:-mb-12 {
      margin-bottom: -1.2rem
    }
  
    .xl\:-ml-12 {
      margin-left: -1.2rem
    }
  
    .xl\:-mt-16 {
      margin-top: -1.6rem
    }
  
    .xl\:-mr-16 {
      margin-right: -1.6rem
    }
  
    .xl\:-mb-16 {
      margin-bottom: -1.6rem
    }
  
    .xl\:-ml-16 {
      margin-left: -1.6rem
    }
  
    .xl\:-mt-20 {
      margin-top: -2rem
    }
  
    .xl\:-mr-20 {
      margin-right: -2rem
    }
  
    .xl\:-mb-20 {
      margin-bottom: -2rem
    }
  
    .xl\:-ml-20 {
      margin-left: -2rem
    }
  
    .xl\:-mt-24 {
      margin-top: -2.4rem
    }
  
    .xl\:-mr-24 {
      margin-right: -2.4rem
    }
  
    .xl\:-mb-24 {
      margin-bottom: -2.4rem
    }
  
    .xl\:-ml-24 {
      margin-left: -2.4rem
    }
  
    .xl\:-mt-28 {
      margin-top: -2.8rem
    }
  
    .xl\:-mr-28 {
      margin-right: -2.8rem
    }
  
    .xl\:-mb-28 {
      margin-bottom: -2.8rem
    }
  
    .xl\:-ml-28 {
      margin-left: -2.8rem
    }
  
    .xl\:-mt-32 {
      margin-top: -3.2rem
    }
  
    .xl\:-mr-32 {
      margin-right: -3.2rem
    }
  
    .xl\:-mb-32 {
      margin-bottom: -3.2rem
    }
  
    .xl\:-ml-32 {
      margin-left: -3.2rem
    }
  
    .xl\:-mt-36 {
      margin-top: -3.6rem
    }
  
    .xl\:-mr-36 {
      margin-right: -3.6rem
    }
  
    .xl\:-mb-36 {
      margin-bottom: -3.6rem
    }
  
    .xl\:-ml-36 {
      margin-left: -3.6rem
    }
  
    .xl\:-mt-40 {
      margin-top: -4rem
    }
  
    .xl\:-mr-40 {
      margin-right: -4rem
    }
  
    .xl\:-mb-40 {
      margin-bottom: -4rem
    }
  
    .xl\:-ml-40 {
      margin-left: -4rem
    }
  
    .xl\:-mt-44 {
      margin-top: -4.4rem
    }
  
    .xl\:-mr-44 {
      margin-right: -4.4rem
    }
  
    .xl\:-mb-44 {
      margin-bottom: -4.4rem
    }
  
    .xl\:-ml-44 {
      margin-left: -4.4rem
    }
  
    .xl\:-mt-48 {
      margin-top: -4.8rem
    }
  
    .xl\:-mr-48 {
      margin-right: -4.8rem
    }
  
    .xl\:-mb-48 {
      margin-bottom: -4.8rem
    }
  
    .xl\:-ml-48 {
      margin-left: -4.8rem
    }
  
    .xl\:-mt-52 {
      margin-top: -5.2rem
    }
  
    .xl\:-mr-52 {
      margin-right: -5.2rem
    }
  
    .xl\:-mb-52 {
      margin-bottom: -5.2rem
    }
  
    .xl\:-ml-52 {
      margin-left: -5.2rem
    }
  
    .xl\:-mt-56 {
      margin-top: -5.6rem
    }
  
    .xl\:-mr-56 {
      margin-right: -5.6rem
    }
  
    .xl\:-mb-56 {
      margin-bottom: -5.6rem
    }
  
    .xl\:-ml-56 {
      margin-left: -5.6rem
    }
  
    .xl\:-mt-60 {
      margin-top: -6rem
    }
  
    .xl\:-mr-60 {
      margin-right: -6rem
    }
  
    .xl\:-mb-60 {
      margin-bottom: -6rem
    }
  
    .xl\:-ml-60 {
      margin-left: -6rem
    }
  
    .xl\:-mt-64 {
      margin-top: -6.4rem
    }
  
    .xl\:-mr-64 {
      margin-right: -6.4rem
    }
  
    .xl\:-mb-64 {
      margin-bottom: -6.4rem
    }
  
    .xl\:-ml-64 {
      margin-left: -6.4rem
    }
  
    .xl\:-mt-68 {
      margin-top: -6.8rem
    }
  
    .xl\:-mr-68 {
      margin-right: -6.8rem
    }
  
    .xl\:-mb-68 {
      margin-bottom: -6.8rem
    }
  
    .xl\:-ml-68 {
      margin-left: -6.8rem
    }
  
    .xl\:-mt-72 {
      margin-top: -7.2rem
    }
  
    .xl\:-mr-72 {
      margin-right: -7.2rem
    }
  
    .xl\:-mb-72 {
      margin-bottom: -7.2rem
    }
  
    .xl\:-ml-72 {
      margin-left: -7.2rem
    }
  
    .xl\:-mt-76 {
      margin-top: -7.6rem
    }
  
    .xl\:-mr-76 {
      margin-right: -7.6rem
    }
  
    .xl\:-mb-76 {
      margin-bottom: -7.6rem
    }
  
    .xl\:-ml-76 {
      margin-left: -7.6rem
    }
  
    .xl\:-mt-80 {
      margin-top: -8rem
    }
  
    .xl\:-mr-80 {
      margin-right: -8rem
    }
  
    .xl\:-mb-80 {
      margin-bottom: -8rem
    }
  
    .xl\:-ml-80 {
      margin-left: -8rem
    }
  
    .xl\:-mt-84 {
      margin-top: -8.4rem
    }
  
    .xl\:-mr-84 {
      margin-right: -8.4rem
    }
  
    .xl\:-mb-84 {
      margin-bottom: -8.4rem
    }
  
    .xl\:-ml-84 {
      margin-left: -8.4rem
    }
  
    .xl\:-mt-88 {
      margin-top: -8.8rem
    }
  
    .xl\:-mr-88 {
      margin-right: -8.8rem
    }
  
    .xl\:-mb-88 {
      margin-bottom: -8.8rem
    }
  
    .xl\:-ml-88 {
      margin-left: -8.8rem
    }
  
    .xl\:-mt-92 {
      margin-top: -9.2rem
    }
  
    .xl\:-mr-92 {
      margin-right: -9.2rem
    }
  
    .xl\:-mb-92 {
      margin-bottom: -9.2rem
    }
  
    .xl\:-ml-92 {
      margin-left: -9.2rem
    }
  
    .xl\:-mt-96 {
      margin-top: -9.6rem
    }
  
    .xl\:-mr-96 {
      margin-right: -9.6rem
    }
  
    .xl\:-mb-96 {
      margin-bottom: -9.6rem
    }
  
    .xl\:-ml-96 {
      margin-left: -9.6rem
    }
  
    .xl\:-mt-128 {
      margin-top: -12.8rem
    }
  
    .xl\:-mr-128 {
      margin-right: -12.8rem
    }
  
    .xl\:-mb-128 {
      margin-bottom: -12.8rem
    }
  
    .xl\:-ml-128 {
      margin-left: -12.8rem
    }
  
    .xl\:-mt-136 {
      margin-top: -13.6rem
    }
  
    .xl\:-mr-136 {
      margin-right: -13.6rem
    }
  
    .xl\:-mb-136 {
      margin-bottom: -13.6rem
    }
  
    .xl\:-ml-136 {
      margin-left: -13.6rem
    }
  
    .xl\:-mt-160 {
      margin-top: -16rem
    }
  
    .xl\:-mr-160 {
      margin-right: -16rem
    }
  
    .xl\:-mb-160 {
      margin-bottom: -16rem
    }
  
    .xl\:-ml-160 {
      margin-left: -16rem
    }
  
    .xl\:-mt-192 {
      margin-top: -19.2rem
    }
  
    .xl\:-mr-192 {
      margin-right: -19.2rem
    }
  
    .xl\:-mb-192 {
      margin-bottom: -19.2rem
    }
  
    .xl\:-ml-192 {
      margin-left: -19.2rem
    }
  
    .xl\:-mt-200 {
      margin-top: -20rem
    }
  
    .xl\:-mr-200 {
      margin-right: -20rem
    }
  
    .xl\:-mb-200 {
      margin-bottom: -20rem
    }
  
    .xl\:-ml-200 {
      margin-left: -20rem
    }
  
    .xl\:-mt-208 {
      margin-top: -20.8rem
    }
  
    .xl\:-mr-208 {
      margin-right: -20.8rem
    }
  
    .xl\:-mb-208 {
      margin-bottom: -20.8rem
    }
  
    .xl\:-ml-208 {
      margin-left: -20.8rem
    }
  
    .xl\:-mt-216 {
      margin-top: -21.6rem
    }
  
    .xl\:-mr-216 {
      margin-right: -21.6rem
    }
  
    .xl\:-mb-216 {
      margin-bottom: -21.6rem
    }
  
    .xl\:-ml-216 {
      margin-left: -21.6rem
    }
  
    .xl\:-mt-224 {
      margin-top: -22.4rem
    }
  
    .xl\:-mr-224 {
      margin-right: -22.4rem
    }
  
    .xl\:-mb-224 {
      margin-bottom: -22.4rem
    }
  
    .xl\:-ml-224 {
      margin-left: -22.4rem
    }
  
    .xl\:-mt-256 {
      margin-top: -25.6rem
    }
  
    .xl\:-mr-256 {
      margin-right: -25.6rem
    }
  
    .xl\:-mb-256 {
      margin-bottom: -25.6rem
    }
  
    .xl\:-ml-256 {
      margin-left: -25.6rem
    }
  
    .xl\:-mt-288 {
      margin-top: -28.8rem
    }
  
    .xl\:-mr-288 {
      margin-right: -28.8rem
    }
  
    .xl\:-mb-288 {
      margin-bottom: -28.8rem
    }
  
    .xl\:-ml-288 {
      margin-left: -28.8rem
    }
  
    .xl\:-mt-320 {
      margin-top: -32rem
    }
  
    .xl\:-mr-320 {
      margin-right: -32rem
    }
  
    .xl\:-mb-320 {
      margin-bottom: -32rem
    }
  
    .xl\:-ml-320 {
      margin-left: -32rem
    }
  
    .xl\:-mt-360 {
      margin-top: -36rem
    }
  
    .xl\:-mr-360 {
      margin-right: -36rem
    }
  
    .xl\:-mb-360 {
      margin-bottom: -36rem
    }
  
    .xl\:-ml-360 {
      margin-left: -36rem
    }
  
    .xl\:-mt-384 {
      margin-top: -38.4rem
    }
  
    .xl\:-mr-384 {
      margin-right: -38.4rem
    }
  
    .xl\:-mb-384 {
      margin-bottom: -38.4rem
    }
  
    .xl\:-ml-384 {
      margin-left: -38.4rem
    }
  
    .xl\:-mt-400 {
      margin-top: -40rem
    }
  
    .xl\:-mr-400 {
      margin-right: -40rem
    }
  
    .xl\:-mb-400 {
      margin-bottom: -40rem
    }
  
    .xl\:-ml-400 {
      margin-left: -40rem
    }
  
    .xl\:-mt-512 {
      margin-top: -51.2rem
    }
  
    .xl\:-mr-512 {
      margin-right: -51.2rem
    }
  
    .xl\:-mb-512 {
      margin-bottom: -51.2rem
    }
  
    .xl\:-ml-512 {
      margin-left: -51.2rem
    }
  
    .xl\:-mt-640 {
      margin-top: -64rem
    }
  
    .xl\:-mr-640 {
      margin-right: -64rem
    }
  
    .xl\:-mb-640 {
      margin-bottom: -64rem
    }
  
    .xl\:-ml-640 {
      margin-left: -64rem
    }
  
    .xl\:-mt-px {
      margin-top: -1px
    }
  
    .xl\:-mr-px {
      margin-right: -1px
    }
  
    .xl\:-mb-px {
      margin-bottom: -1px
    }
  
    .xl\:-ml-px {
      margin-left: -1px
    }
  
    .xl\:-mt-xs {
      margin-top: -32rem
    }
  
    .xl\:-mr-xs {
      margin-right: -32rem
    }
  
    .xl\:-mb-xs {
      margin-bottom: -32rem
    }
  
    .xl\:-ml-xs {
      margin-left: -32rem
    }
  
    .xl\:-mt-sm {
      margin-top: -48rem
    }
  
    .xl\:-mr-sm {
      margin-right: -48rem
    }
  
    .xl\:-mb-sm {
      margin-bottom: -48rem
    }
  
    .xl\:-ml-sm {
      margin-left: -48rem
    }
  
    .xl\:-mt-md {
      margin-top: -64rem
    }
  
    .xl\:-mr-md {
      margin-right: -64rem
    }
  
    .xl\:-mb-md {
      margin-bottom: -64rem
    }
  
    .xl\:-ml-md {
      margin-left: -64rem
    }
  
    .xl\:-mt-lg {
      margin-top: -80rem
    }
  
    .xl\:-mr-lg {
      margin-right: -80rem
    }
  
    .xl\:-mb-lg {
      margin-bottom: -80rem
    }
  
    .xl\:-ml-lg {
      margin-left: -80rem
    }
  
    .xl\:-mt-xl {
      margin-top: -96rem
    }
  
    .xl\:-mr-xl {
      margin-right: -96rem
    }
  
    .xl\:-mb-xl {
      margin-bottom: -96rem
    }
  
    .xl\:-ml-xl {
      margin-left: -96rem
    }
  
    .xl\:-mt-2xl {
      margin-top: -112rem
    }
  
    .xl\:-mr-2xl {
      margin-right: -112rem
    }
  
    .xl\:-mb-2xl {
      margin-bottom: -112rem
    }
  
    .xl\:-ml-2xl {
      margin-left: -112rem
    }
  
    .xl\:-mt-3xl {
      margin-top: -128rem
    }
  
    .xl\:-mr-3xl {
      margin-right: -128rem
    }
  
    .xl\:-mb-3xl {
      margin-bottom: -128rem
    }
  
    .xl\:-ml-3xl {
      margin-left: -128rem
    }
  
    .xl\:-mt-4xl {
      margin-top: -144rem
    }
  
    .xl\:-mr-4xl {
      margin-right: -144rem
    }
  
    .xl\:-mb-4xl {
      margin-bottom: -144rem
    }
  
    .xl\:-ml-4xl {
      margin-left: -144rem
    }
  
    .xl\:-mt-5xl {
      margin-top: -160rem
    }
  
    .xl\:-mr-5xl {
      margin-right: -160rem
    }
  
    .xl\:-mb-5xl {
      margin-bottom: -160rem
    }
  
    .xl\:-ml-5xl {
      margin-left: -160rem
    }
  
    .xl\:-mt-auto {
      margin-top: -auto
    }
  
    .xl\:-mr-auto {
      margin-right: -auto
    }
  
    .xl\:-mb-auto {
      margin-bottom: -auto
    }
  
    .xl\:-ml-auto {
      margin-left: -auto
    }
  
    .xl\:max-h-0 {
      max-height: 0
    }
  
    .xl\:max-h-1 {
      max-height: 0.25rem
    }
  
    .xl\:max-h-2 {
      max-height: 0.5rem
    }
  
    .xl\:max-h-3 {
      max-height: 0.75rem
    }
  
    .xl\:max-h-4 {
      max-height: 0.4rem
    }
  
    .xl\:max-h-5 {
      max-height: 1.25rem
    }
  
    .xl\:max-h-6 {
      max-height: 0.6rem
    }
  
    .xl\:max-h-8 {
      max-height: 0.8rem
    }
  
    .xl\:max-h-10 {
      max-height: 2.5rem
    }
  
    .xl\:max-h-12 {
      max-height: 1.2rem
    }
  
    .xl\:max-h-16 {
      max-height: 1.6rem
    }
  
    .xl\:max-h-20 {
      max-height: 2rem
    }
  
    .xl\:max-h-24 {
      max-height: 2.4rem
    }
  
    .xl\:max-h-28 {
      max-height: 2.8rem
    }
  
    .xl\:max-h-32 {
      max-height: 3.2rem
    }
  
    .xl\:max-h-36 {
      max-height: 3.6rem
    }
  
    .xl\:max-h-40 {
      max-height: 4rem
    }
  
    .xl\:max-h-44 {
      max-height: 4.4rem
    }
  
    .xl\:max-h-48 {
      max-height: 4.8rem
    }
  
    .xl\:max-h-52 {
      max-height: 5.2rem
    }
  
    .xl\:max-h-56 {
      max-height: 5.6rem
    }
  
    .xl\:max-h-60 {
      max-height: 6rem
    }
  
    .xl\:max-h-64 {
      max-height: 6.4rem
    }
  
    .xl\:max-h-68 {
      max-height: 6.8rem
    }
  
    .xl\:max-h-72 {
      max-height: 7.2rem
    }
  
    .xl\:max-h-76 {
      max-height: 7.6rem
    }
  
    .xl\:max-h-80 {
      max-height: 8rem
    }
  
    .xl\:max-h-84 {
      max-height: 8.4rem
    }
  
    .xl\:max-h-88 {
      max-height: 8.8rem
    }
  
    .xl\:max-h-92 {
      max-height: 9.2rem
    }
  
    .xl\:max-h-96 {
      max-height: 9.6rem
    }
  
    .xl\:max-h-128 {
      max-height: 12.8rem
    }
  
    .xl\:max-h-136 {
      max-height: 13.6rem
    }
  
    .xl\:max-h-160 {
      max-height: 16rem
    }
  
    .xl\:max-h-192 {
      max-height: 19.2rem
    }
  
    .xl\:max-h-200 {
      max-height: 20rem
    }
  
    .xl\:max-h-208 {
      max-height: 20.8rem
    }
  
    .xl\:max-h-216 {
      max-height: 21.6rem
    }
  
    .xl\:max-h-224 {
      max-height: 22.4rem
    }
  
    .xl\:max-h-256 {
      max-height: 25.6rem
    }
  
    .xl\:max-h-288 {
      max-height: 28.8rem
    }
  
    .xl\:max-h-320 {
      max-height: 32rem
    }
  
    .xl\:max-h-360 {
      max-height: 36rem
    }
  
    .xl\:max-h-384 {
      max-height: 38.4rem
    }
  
    .xl\:max-h-400 {
      max-height: 40rem
    }
  
    .xl\:max-h-512 {
      max-height: 51.2rem
    }
  
    .xl\:max-h-640 {
      max-height: 64rem
    }
  
    .xl\:max-h-full {
      max-height: 100%
    }
  
    .xl\:max-h-screen {
      max-height: 100vh
    }
  
    .xl\:max-h-auto {
      max-height: auto
    }
  
    .xl\:max-h-px {
      max-height: 1px
    }
  
    .xl\:max-h-xs {
      max-height: 32rem
    }
  
    .xl\:max-h-sm {
      max-height: 48rem
    }
  
    .xl\:max-h-md {
      max-height: 64rem
    }
  
    .xl\:max-h-lg {
      max-height: 80rem
    }
  
    .xl\:max-h-xl {
      max-height: 96rem
    }
  
    .xl\:max-h-2xl {
      max-height: 112rem
    }
  
    .xl\:max-h-3xl {
      max-height: 128rem
    }
  
    .xl\:max-h-4xl {
      max-height: 144rem
    }
  
    .xl\:max-h-5xl {
      max-height: 160rem
    }
  
    .xl\:max-w-0 {
      max-width: 0
    }
  
    .xl\:max-w-1 {
      max-width: 0.25rem
    }
  
    .xl\:max-w-2 {
      max-width: 0.5rem
    }
  
    .xl\:max-w-3 {
      max-width: 0.75rem
    }
  
    .xl\:max-w-4 {
      max-width: 0.4rem
    }
  
    .xl\:max-w-5 {
      max-width: 1.25rem
    }
  
    .xl\:max-w-6 {
      max-width: 0.6rem
    }
  
    .xl\:max-w-8 {
      max-width: 0.8rem
    }
  
    .xl\:max-w-10 {
      max-width: 2.5rem
    }
  
    .xl\:max-w-12 {
      max-width: 1.2rem
    }
  
    .xl\:max-w-16 {
      max-width: 1.6rem
    }
  
    .xl\:max-w-20 {
      max-width: 2rem
    }
  
    .xl\:max-w-24 {
      max-width: 2.4rem
    }
  
    .xl\:max-w-28 {
      max-width: 2.8rem
    }
  
    .xl\:max-w-32 {
      max-width: 3.2rem
    }
  
    .xl\:max-w-36 {
      max-width: 3.6rem
    }
  
    .xl\:max-w-40 {
      max-width: 4rem
    }
  
    .xl\:max-w-44 {
      max-width: 4.4rem
    }
  
    .xl\:max-w-48 {
      max-width: 4.8rem
    }
  
    .xl\:max-w-52 {
      max-width: 5.2rem
    }
  
    .xl\:max-w-56 {
      max-width: 5.6rem
    }
  
    .xl\:max-w-60 {
      max-width: 6rem
    }
  
    .xl\:max-w-64 {
      max-width: 6.4rem
    }
  
    .xl\:max-w-68 {
      max-width: 6.8rem
    }
  
    .xl\:max-w-72 {
      max-width: 7.2rem
    }
  
    .xl\:max-w-76 {
      max-width: 7.6rem
    }
  
    .xl\:max-w-80 {
      max-width: 8rem
    }
  
    .xl\:max-w-84 {
      max-width: 8.4rem
    }
  
    .xl\:max-w-88 {
      max-width: 8.8rem
    }
  
    .xl\:max-w-92 {
      max-width: 9.2rem
    }
  
    .xl\:max-w-96 {
      max-width: 9.6rem
    }
  
    .xl\:max-w-128 {
      max-width: 12.8rem
    }
  
    .xl\:max-w-136 {
      max-width: 13.6rem
    }
  
    .xl\:max-w-160 {
      max-width: 16rem
    }
  
    .xl\:max-w-192 {
      max-width: 19.2rem
    }
  
    .xl\:max-w-200 {
      max-width: 20rem
    }
  
    .xl\:max-w-208 {
      max-width: 20.8rem
    }
  
    .xl\:max-w-216 {
      max-width: 21.6rem
    }
  
    .xl\:max-w-224 {
      max-width: 22.4rem
    }
  
    .xl\:max-w-256 {
      max-width: 25.6rem
    }
  
    .xl\:max-w-288 {
      max-width: 28.8rem
    }
  
    .xl\:max-w-320 {
      max-width: 32rem
    }
  
    .xl\:max-w-360 {
      max-width: 36rem
    }
  
    .xl\:max-w-384 {
      max-width: 38.4rem
    }
  
    .xl\:max-w-400 {
      max-width: 40rem
    }
  
    .xl\:max-w-512 {
      max-width: 51.2rem
    }
  
    .xl\:max-w-640 {
      max-width: 64rem
    }
  
    .xl\:max-w-xs {
      max-width: 32rem
    }
  
    .xl\:max-w-sm {
      max-width: 48rem
    }
  
    .xl\:max-w-md {
      max-width: 64rem
    }
  
    .xl\:max-w-lg {
      max-width: 80rem
    }
  
    .xl\:max-w-xl {
      max-width: 96rem
    }
  
    .xl\:max-w-2xl {
      max-width: 112rem
    }
  
    .xl\:max-w-3xl {
      max-width: 128rem
    }
  
    .xl\:max-w-4xl {
      max-width: 144rem
    }
  
    .xl\:max-w-5xl {
      max-width: 160rem
    }
  
    .xl\:max-w-6xl {
      max-width: 72rem
    }
  
    .xl\:max-w-full {
      max-width: 100%
    }
  
    .xl\:max-w-px {
      max-width: 1px
    }
  
    .xl\:max-w-auto {
      max-width: auto
    }
  
    .xl\:max-w-screen {
      max-width: 100vw
    }
  
    .xl\:min-h-0 {
      min-height: 0
    }
  
    .xl\:min-h-1 {
      min-height: 0.25rem
    }
  
    .xl\:min-h-2 {
      min-height: 0.5rem
    }
  
    .xl\:min-h-3 {
      min-height: 0.75rem
    }
  
    .xl\:min-h-4 {
      min-height: 0.4rem
    }
  
    .xl\:min-h-5 {
      min-height: 1.25rem
    }
  
    .xl\:min-h-6 {
      min-height: 0.6rem
    }
  
    .xl\:min-h-8 {
      min-height: 0.8rem
    }
  
    .xl\:min-h-10 {
      min-height: 2.5rem
    }
  
    .xl\:min-h-12 {
      min-height: 1.2rem
    }
  
    .xl\:min-h-16 {
      min-height: 1.6rem
    }
  
    .xl\:min-h-20 {
      min-height: 2rem
    }
  
    .xl\:min-h-24 {
      min-height: 2.4rem
    }
  
    .xl\:min-h-28 {
      min-height: 2.8rem
    }
  
    .xl\:min-h-32 {
      min-height: 3.2rem
    }
  
    .xl\:min-h-36 {
      min-height: 3.6rem
    }
  
    .xl\:min-h-40 {
      min-height: 4rem
    }
  
    .xl\:min-h-44 {
      min-height: 4.4rem
    }
  
    .xl\:min-h-48 {
      min-height: 4.8rem
    }
  
    .xl\:min-h-52 {
      min-height: 5.2rem
    }
  
    .xl\:min-h-56 {
      min-height: 5.6rem
    }
  
    .xl\:min-h-60 {
      min-height: 6rem
    }
  
    .xl\:min-h-64 {
      min-height: 6.4rem
    }
  
    .xl\:min-h-68 {
      min-height: 6.8rem
    }
  
    .xl\:min-h-72 {
      min-height: 7.2rem
    }
  
    .xl\:min-h-76 {
      min-height: 7.6rem
    }
  
    .xl\:min-h-80 {
      min-height: 8rem
    }
  
    .xl\:min-h-84 {
      min-height: 8.4rem
    }
  
    .xl\:min-h-88 {
      min-height: 8.8rem
    }
  
    .xl\:min-h-92 {
      min-height: 9.2rem
    }
  
    .xl\:min-h-96 {
      min-height: 9.6rem
    }
  
    .xl\:min-h-128 {
      min-height: 12.8rem
    }
  
    .xl\:min-h-136 {
      min-height: 13.6rem
    }
  
    .xl\:min-h-160 {
      min-height: 16rem
    }
  
    .xl\:min-h-192 {
      min-height: 19.2rem
    }
  
    .xl\:min-h-200 {
      min-height: 20rem
    }
  
    .xl\:min-h-208 {
      min-height: 20.8rem
    }
  
    .xl\:min-h-216 {
      min-height: 21.6rem
    }
  
    .xl\:min-h-224 {
      min-height: 22.4rem
    }
  
    .xl\:min-h-256 {
      min-height: 25.6rem
    }
  
    .xl\:min-h-288 {
      min-height: 28.8rem
    }
  
    .xl\:min-h-320 {
      min-height: 32rem
    }
  
    .xl\:min-h-360 {
      min-height: 36rem
    }
  
    .xl\:min-h-384 {
      min-height: 38.4rem
    }
  
    .xl\:min-h-400 {
      min-height: 40rem
    }
  
    .xl\:min-h-512 {
      min-height: 51.2rem
    }
  
    .xl\:min-h-640 {
      min-height: 64rem
    }
  
    .xl\:min-h-full {
      min-height: 100%
    }
  
    .xl\:min-h-screen {
      min-height: 100vh
    }
  
    .xl\:min-h-auto {
      min-height: auto
    }
  
    .xl\:min-h-px {
      min-height: 1px
    }
  
    .xl\:min-h-xs {
      min-height: 32rem
    }
  
    .xl\:min-h-sm {
      min-height: 48rem
    }
  
    .xl\:min-h-md {
      min-height: 64rem
    }
  
    .xl\:min-h-lg {
      min-height: 80rem
    }
  
    .xl\:min-h-xl {
      min-height: 96rem
    }
  
    .xl\:min-h-2xl {
      min-height: 112rem
    }
  
    .xl\:min-h-3xl {
      min-height: 128rem
    }
  
    .xl\:min-h-4xl {
      min-height: 144rem
    }
  
    .xl\:min-h-5xl {
      min-height: 160rem
    }
  
    .xl\:min-w-0 {
      min-width: 0
    }
  
    .xl\:min-w-1 {
      min-width: 0.25rem
    }
  
    .xl\:min-w-2 {
      min-width: 0.5rem
    }
  
    .xl\:min-w-3 {
      min-width: 0.75rem
    }
  
    .xl\:min-w-4 {
      min-width: 0.4rem
    }
  
    .xl\:min-w-5 {
      min-width: 1.25rem
    }
  
    .xl\:min-w-6 {
      min-width: 0.6rem
    }
  
    .xl\:min-w-8 {
      min-width: 0.8rem
    }
  
    .xl\:min-w-10 {
      min-width: 2.5rem
    }
  
    .xl\:min-w-12 {
      min-width: 1.2rem
    }
  
    .xl\:min-w-16 {
      min-width: 1.6rem
    }
  
    .xl\:min-w-20 {
      min-width: 2rem
    }
  
    .xl\:min-w-24 {
      min-width: 2.4rem
    }
  
    .xl\:min-w-28 {
      min-width: 2.8rem
    }
  
    .xl\:min-w-32 {
      min-width: 3.2rem
    }
  
    .xl\:min-w-36 {
      min-width: 3.6rem
    }
  
    .xl\:min-w-40 {
      min-width: 4rem
    }
  
    .xl\:min-w-44 {
      min-width: 4.4rem
    }
  
    .xl\:min-w-48 {
      min-width: 4.8rem
    }
  
    .xl\:min-w-52 {
      min-width: 5.2rem
    }
  
    .xl\:min-w-56 {
      min-width: 5.6rem
    }
  
    .xl\:min-w-60 {
      min-width: 6rem
    }
  
    .xl\:min-w-64 {
      min-width: 6.4rem
    }
  
    .xl\:min-w-68 {
      min-width: 6.8rem
    }
  
    .xl\:min-w-72 {
      min-width: 7.2rem
    }
  
    .xl\:min-w-76 {
      min-width: 7.6rem
    }
  
    .xl\:min-w-80 {
      min-width: 8rem
    }
  
    .xl\:min-w-84 {
      min-width: 8.4rem
    }
  
    .xl\:min-w-88 {
      min-width: 8.8rem
    }
  
    .xl\:min-w-92 {
      min-width: 9.2rem
    }
  
    .xl\:min-w-96 {
      min-width: 9.6rem
    }
  
    .xl\:min-w-128 {
      min-width: 12.8rem
    }
  
    .xl\:min-w-136 {
      min-width: 13.6rem
    }
  
    .xl\:min-w-160 {
      min-width: 16rem
    }
  
    .xl\:min-w-192 {
      min-width: 19.2rem
    }
  
    .xl\:min-w-200 {
      min-width: 20rem
    }
  
    .xl\:min-w-208 {
      min-width: 20.8rem
    }
  
    .xl\:min-w-216 {
      min-width: 21.6rem
    }
  
    .xl\:min-w-224 {
      min-width: 22.4rem
    }
  
    .xl\:min-w-256 {
      min-width: 25.6rem
    }
  
    .xl\:min-w-288 {
      min-width: 28.8rem
    }
  
    .xl\:min-w-320 {
      min-width: 32rem
    }
  
    .xl\:min-w-360 {
      min-width: 36rem
    }
  
    .xl\:min-w-384 {
      min-width: 38.4rem
    }
  
    .xl\:min-w-400 {
      min-width: 40rem
    }
  
    .xl\:min-w-512 {
      min-width: 51.2rem
    }
  
    .xl\:min-w-640 {
      min-width: 64rem
    }
  
    .xl\:min-w-full {
      min-width: 100%
    }
  
    .xl\:min-w-px {
      min-width: 1px
    }
  
    .xl\:min-w-xs {
      min-width: 32rem
    }
  
    .xl\:min-w-sm {
      min-width: 48rem
    }
  
    .xl\:min-w-md {
      min-width: 64rem
    }
  
    .xl\:min-w-lg {
      min-width: 80rem
    }
  
    .xl\:min-w-xl {
      min-width: 96rem
    }
  
    .xl\:min-w-2xl {
      min-width: 112rem
    }
  
    .xl\:min-w-3xl {
      min-width: 128rem
    }
  
    .xl\:min-w-4xl {
      min-width: 144rem
    }
  
    .xl\:min-w-5xl {
      min-width: 160rem
    }
  
    .xl\:min-w-auto {
      min-width: auto
    }
  
    .xl\:min-w-screen {
      min-width: 100vw
    }
  
    .xl\:object-contain {
      object-fit: contain
    }
  
    .xl\:object-cover {
      object-fit: cover
    }
  
    .xl\:object-fill {
      object-fit: fill
    }
  
    .xl\:object-none {
      object-fit: none
    }
  
    .xl\:object-scale-down {
      object-fit: scale-down
    }
  
    .xl\:object-bottom {
      object-position: bottom
    }
  
    .xl\:object-center {
      object-position: center
    }
  
    .xl\:object-left {
      object-position: left
    }
  
    .xl\:object-left-bottom {
      object-position: left bottom
    }
  
    .xl\:object-left-top {
      object-position: left top
    }
  
    .xl\:object-right {
      object-position: right
    }
  
    .xl\:object-right-bottom {
      object-position: right bottom
    }
  
    .xl\:object-right-top {
      object-position: right top
    }
  
    .xl\:object-top {
      object-position: top
    }
  
    .xl\:opacity-0 {
      opacity: 0
    }
  
    .xl\:opacity-25 {
      opacity: 0.25
    }
  
    .xl\:opacity-50 {
      opacity: 0.5
    }
  
    .xl\:opacity-75 {
      opacity: 0.75
    }
  
    .xl\:opacity-100 {
      opacity: 1
    }
  
    .xl\:outline-none {
      outline: 0
    }
  
    .xl\:focus\:outline-none:focus {
      outline: 0
    }
  
    .xl\:overflow-auto {
      overflow: auto
    }
  
    .xl\:overflow-hidden {
      overflow: hidden
    }
  
    .xl\:overflow-visible {
      overflow: visible
    }
  
    .xl\:overflow-scroll {
      overflow: scroll
    }
  
    .xl\:overflow-x-auto {
      overflow-x: auto
    }
  
    .xl\:overflow-y-auto {
      overflow-y: auto
    }
  
    .xl\:overflow-x-hidden {
      overflow-x: hidden
    }
  
    .xl\:overflow-y-hidden {
      overflow-y: hidden
    }
  
    .xl\:overflow-x-visible {
      overflow-x: visible
    }
  
    .xl\:overflow-y-visible {
      overflow-y: visible
    }
  
    .xl\:overflow-x-scroll {
      overflow-x: scroll
    }
  
    .xl\:overflow-y-scroll {
      overflow-y: scroll
    }
  
    .xl\:scrolling-touch {
      -webkit-overflow-scrolling: touch
    }
  
    .xl\:scrolling-auto {
      -webkit-overflow-scrolling: auto
    }
  
    .xl\:p-0 {
      padding: 0
    }
  
    .xl\:p-1 {
      padding: 0.25rem
    }
  
    .xl\:p-2 {
      padding: 0.5rem
    }
  
    .xl\:p-3 {
      padding: 0.75rem
    }
  
    .xl\:p-4 {
      padding: 0.4rem
    }
  
    .xl\:p-5 {
      padding: 1.25rem
    }
  
    .xl\:p-6 {
      padding: 0.6rem
    }
  
    .xl\:p-8 {
      padding: 0.8rem
    }
  
    .xl\:p-10 {
      padding: 2.5rem
    }
  
    .xl\:p-12 {
      padding: 1.2rem
    }
  
    .xl\:p-16 {
      padding: 1.6rem
    }
  
    .xl\:p-20 {
      padding: 2rem
    }
  
    .xl\:p-24 {
      padding: 2.4rem
    }
  
    .xl\:p-28 {
      padding: 2.8rem
    }
  
    .xl\:p-32 {
      padding: 3.2rem
    }
  
    .xl\:p-36 {
      padding: 3.6rem
    }
  
    .xl\:p-40 {
      padding: 4rem
    }
  
    .xl\:p-44 {
      padding: 4.4rem
    }
  
    .xl\:p-48 {
      padding: 4.8rem
    }
  
    .xl\:p-52 {
      padding: 5.2rem
    }
  
    .xl\:p-56 {
      padding: 5.6rem
    }
  
    .xl\:p-60 {
      padding: 6rem
    }
  
    .xl\:p-64 {
      padding: 6.4rem
    }
  
    .xl\:p-68 {
      padding: 6.8rem
    }
  
    .xl\:p-72 {
      padding: 7.2rem
    }
  
    .xl\:p-76 {
      padding: 7.6rem
    }
  
    .xl\:p-80 {
      padding: 8rem
    }
  
    .xl\:p-84 {
      padding: 8.4rem
    }
  
    .xl\:p-88 {
      padding: 8.8rem
    }
  
    .xl\:p-92 {
      padding: 9.2rem
    }
  
    .xl\:p-96 {
      padding: 9.6rem
    }
  
    .xl\:p-128 {
      padding: 12.8rem
    }
  
    .xl\:p-136 {
      padding: 13.6rem
    }
  
    .xl\:p-160 {
      padding: 16rem
    }
  
    .xl\:p-192 {
      padding: 19.2rem
    }
  
    .xl\:p-200 {
      padding: 20rem
    }
  
    .xl\:p-208 {
      padding: 20.8rem
    }
  
    .xl\:p-216 {
      padding: 21.6rem
    }
  
    .xl\:p-224 {
      padding: 22.4rem
    }
  
    .xl\:p-256 {
      padding: 25.6rem
    }
  
    .xl\:p-288 {
      padding: 28.8rem
    }
  
    .xl\:p-320 {
      padding: 32rem
    }
  
    .xl\:p-360 {
      padding: 36rem
    }
  
    .xl\:p-384 {
      padding: 38.4rem
    }
  
    .xl\:p-400 {
      padding: 40rem
    }
  
    .xl\:p-512 {
      padding: 51.2rem
    }
  
    .xl\:p-640 {
      padding: 64rem
    }
  
    .xl\:p-px {
      padding: 1px
    }
  
    .xl\:p-xs {
      padding: 32rem
    }
  
    .xl\:p-sm {
      padding: 48rem
    }
  
    .xl\:p-md {
      padding: 64rem
    }
  
    .xl\:p-lg {
      padding: 80rem
    }
  
    .xl\:p-xl {
      padding: 96rem
    }
  
    .xl\:p-2xl {
      padding: 112rem
    }
  
    .xl\:p-3xl {
      padding: 128rem
    }
  
    .xl\:p-4xl {
      padding: 144rem
    }
  
    .xl\:p-5xl {
      padding: 160rem
    }
  
    .xl\:p-auto {
      padding: auto
    }
  
    .xl\:py-0 {
      padding-top: 0;
      padding-bottom: 0
    }
  
    .xl\:px-0 {
      padding-left: 0;
      padding-right: 0
    }
  
    .xl\:py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem
    }
  
    .xl\:px-1 {
      padding-left: 0.25rem;
      padding-right: 0.25rem
    }
  
    .xl\:py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem
    }
  
    .xl\:px-2 {
      padding-left: 0.5rem;
      padding-right: 0.5rem
    }
  
    .xl\:py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem
    }
  
    .xl\:px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem
    }
  
    .xl\:py-4 {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem
    }
  
    .xl\:px-4 {
      padding-left: 0.4rem;
      padding-right: 0.4rem
    }
  
    .xl\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem
    }
  
    .xl\:px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }
  
    .xl\:py-6 {
      padding-top: 0.6rem;
      padding-bottom: 0.6rem
    }
  
    .xl\:px-6 {
      padding-left: 0.6rem;
      padding-right: 0.6rem
    }
  
    .xl\:py-8 {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem
    }
  
    .xl\:px-8 {
      padding-left: 0.8rem;
      padding-right: 0.8rem
    }
  
    .xl\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
    }
  
    .xl\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
    }
  
    .xl\:py-12 {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem
    }
  
    .xl\:px-12 {
      padding-left: 1.2rem;
      padding-right: 1.2rem
    }
  
    .xl\:py-16 {
      padding-top: 1.6rem;
      padding-bottom: 1.6rem
    }
  
    .xl\:px-16 {
      padding-left: 1.6rem;
      padding-right: 1.6rem
    }
  
    .xl\:py-20 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }
  
    .xl\:px-20 {
      padding-left: 2rem;
      padding-right: 2rem
    }
  
    .xl\:py-24 {
      padding-top: 2.4rem;
      padding-bottom: 2.4rem
    }
  
    .xl\:px-24 {
      padding-left: 2.4rem;
      padding-right: 2.4rem
    }
  
    .xl\:py-28 {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem
    }
  
    .xl\:px-28 {
      padding-left: 2.8rem;
      padding-right: 2.8rem
    }
  
    .xl\:py-32 {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem
    }
  
    .xl\:px-32 {
      padding-left: 3.2rem;
      padding-right: 3.2rem
    }
  
    .xl\:py-36 {
      padding-top: 3.6rem;
      padding-bottom: 3.6rem
    }
  
    .xl\:px-36 {
      padding-left: 3.6rem;
      padding-right: 3.6rem
    }
  
    .xl\:py-40 {
      padding-top: 4rem;
      padding-bottom: 4rem
    }
  
    .xl\:px-40 {
      padding-left: 4rem;
      padding-right: 4rem
    }
  
    .xl\:py-44 {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem
    }
  
    .xl\:px-44 {
      padding-left: 4.4rem;
      padding-right: 4.4rem
    }
  
    .xl\:py-48 {
      padding-top: 4.8rem;
      padding-bottom: 4.8rem
    }
  
    .xl\:px-48 {
      padding-left: 4.8rem;
      padding-right: 4.8rem
    }
  
    .xl\:py-52 {
      padding-top: 5.2rem;
      padding-bottom: 5.2rem
    }
  
    .xl\:px-52 {
      padding-left: 5.2rem;
      padding-right: 5.2rem
    }
  
    .xl\:py-56 {
      padding-top: 5.6rem;
      padding-bottom: 5.6rem
    }
  
    .xl\:px-56 {
      padding-left: 5.6rem;
      padding-right: 5.6rem
    }
  
    .xl\:py-60 {
      padding-top: 6rem;
      padding-bottom: 6rem
    }
  
    .xl\:px-60 {
      padding-left: 6rem;
      padding-right: 6rem
    }
  
    .xl\:py-64 {
      padding-top: 6.4rem;
      padding-bottom: 6.4rem
    }
  
    .xl\:px-64 {
      padding-left: 6.4rem;
      padding-right: 6.4rem
    }
  
    .xl\:py-68 {
      padding-top: 6.8rem;
      padding-bottom: 6.8rem
    }
  
    .xl\:px-68 {
      padding-left: 6.8rem;
      padding-right: 6.8rem
    }
  
    .xl\:py-72 {
      padding-top: 7.2rem;
      padding-bottom: 7.2rem
    }
  
    .xl\:px-72 {
      padding-left: 7.2rem;
      padding-right: 7.2rem
    }
  
    .xl\:py-76 {
      padding-top: 7.6rem;
      padding-bottom: 7.6rem
    }
  
    .xl\:px-76 {
      padding-left: 7.6rem;
      padding-right: 7.6rem
    }
  
    .xl\:py-80 {
      padding-top: 8rem;
      padding-bottom: 8rem
    }
  
    .xl\:px-80 {
      padding-left: 8rem;
      padding-right: 8rem
    }
  
    .xl\:py-84 {
      padding-top: 8.4rem;
      padding-bottom: 8.4rem
    }
  
    .xl\:px-84 {
      padding-left: 8.4rem;
      padding-right: 8.4rem
    }
  
    .xl\:py-88 {
      padding-top: 8.8rem;
      padding-bottom: 8.8rem
    }
  
    .xl\:px-88 {
      padding-left: 8.8rem;
      padding-right: 8.8rem
    }
  
    .xl\:py-92 {
      padding-top: 9.2rem;
      padding-bottom: 9.2rem
    }
  
    .xl\:px-92 {
      padding-left: 9.2rem;
      padding-right: 9.2rem
    }
  
    .xl\:py-96 {
      padding-top: 9.6rem;
      padding-bottom: 9.6rem
    }
  
    .xl\:px-96 {
      padding-left: 9.6rem;
      padding-right: 9.6rem
    }
  
    .xl\:py-128 {
      padding-top: 12.8rem;
      padding-bottom: 12.8rem
    }
  
    .xl\:px-128 {
      padding-left: 12.8rem;
      padding-right: 12.8rem
    }
  
    .xl\:py-136 {
      padding-top: 13.6rem;
      padding-bottom: 13.6rem
    }
  
    .xl\:px-136 {
      padding-left: 13.6rem;
      padding-right: 13.6rem
    }
  
    .xl\:py-160 {
      padding-top: 16rem;
      padding-bottom: 16rem
    }
  
    .xl\:px-160 {
      padding-left: 16rem;
      padding-right: 16rem
    }
  
    .xl\:py-192 {
      padding-top: 19.2rem;
      padding-bottom: 19.2rem
    }
  
    .xl\:px-192 {
      padding-left: 19.2rem;
      padding-right: 19.2rem
    }
  
    .xl\:py-200 {
      padding-top: 20rem;
      padding-bottom: 20rem
    }
  
    .xl\:px-200 {
      padding-left: 20rem;
      padding-right: 20rem
    }
  
    .xl\:py-208 {
      padding-top: 20.8rem;
      padding-bottom: 20.8rem
    }
  
    .xl\:px-208 {
      padding-left: 20.8rem;
      padding-right: 20.8rem
    }
  
    .xl\:py-216 {
      padding-top: 21.6rem;
      padding-bottom: 21.6rem
    }
  
    .xl\:px-216 {
      padding-left: 21.6rem;
      padding-right: 21.6rem
    }
  
    .xl\:py-224 {
      padding-top: 22.4rem;
      padding-bottom: 22.4rem
    }
  
    .xl\:px-224 {
      padding-left: 22.4rem;
      padding-right: 22.4rem
    }
  
    .xl\:py-256 {
      padding-top: 25.6rem;
      padding-bottom: 25.6rem
    }
  
    .xl\:px-256 {
      padding-left: 25.6rem;
      padding-right: 25.6rem
    }
  
    .xl\:py-288 {
      padding-top: 28.8rem;
      padding-bottom: 28.8rem
    }
  
    .xl\:px-288 {
      padding-left: 28.8rem;
      padding-right: 28.8rem
    }
  
    .xl\:py-320 {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .xl\:px-320 {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .xl\:py-360 {
      padding-top: 36rem;
      padding-bottom: 36rem
    }
  
    .xl\:px-360 {
      padding-left: 36rem;
      padding-right: 36rem
    }
  
    .xl\:py-384 {
      padding-top: 38.4rem;
      padding-bottom: 38.4rem
    }
  
    .xl\:px-384 {
      padding-left: 38.4rem;
      padding-right: 38.4rem
    }
  
    .xl\:py-400 {
      padding-top: 40rem;
      padding-bottom: 40rem
    }
  
    .xl\:px-400 {
      padding-left: 40rem;
      padding-right: 40rem
    }
  
    .xl\:py-512 {
      padding-top: 51.2rem;
      padding-bottom: 51.2rem
    }
  
    .xl\:px-512 {
      padding-left: 51.2rem;
      padding-right: 51.2rem
    }
  
    .xl\:py-640 {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .xl\:px-640 {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .xl\:py-px {
      padding-top: 1px;
      padding-bottom: 1px
    }
  
    .xl\:px-px {
      padding-left: 1px;
      padding-right: 1px
    }
  
    .xl\:py-xs {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .xl\:px-xs {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .xl\:py-sm {
      padding-top: 48rem;
      padding-bottom: 48rem
    }
  
    .xl\:px-sm {
      padding-left: 48rem;
      padding-right: 48rem
    }
  
    .xl\:py-md {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .xl\:px-md {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .xl\:py-lg {
      padding-top: 80rem;
      padding-bottom: 80rem
    }
  
    .xl\:px-lg {
      padding-left: 80rem;
      padding-right: 80rem
    }
  
    .xl\:py-xl {
      padding-top: 96rem;
      padding-bottom: 96rem
    }
  
    .xl\:px-xl {
      padding-left: 96rem;
      padding-right: 96rem
    }
  
    .xl\:py-2xl {
      padding-top: 112rem;
      padding-bottom: 112rem
    }
  
    .xl\:px-2xl {
      padding-left: 112rem;
      padding-right: 112rem
    }
  
    .xl\:py-3xl {
      padding-top: 128rem;
      padding-bottom: 128rem
    }
  
    .xl\:px-3xl {
      padding-left: 128rem;
      padding-right: 128rem
    }
  
    .xl\:py-4xl {
      padding-top: 144rem;
      padding-bottom: 144rem
    }
  
    .xl\:px-4xl {
      padding-left: 144rem;
      padding-right: 144rem
    }
  
    .xl\:py-5xl {
      padding-top: 160rem;
      padding-bottom: 160rem
    }
  
    .xl\:px-5xl {
      padding-left: 160rem;
      padding-right: 160rem
    }
  
    .xl\:py-auto {
      padding-top: auto;
      padding-bottom: auto
    }
  
    .xl\:px-auto {
      padding-left: auto;
      padding-right: auto
    }
  
    .xl\:pt-0 {
      padding-top: 0
    }
  
    .xl\:pr-0 {
      padding-right: 0
    }
  
    .xl\:pb-0 {
      padding-bottom: 0
    }
  
    .xl\:pl-0 {
      padding-left: 0
    }
  
    .xl\:pt-1 {
      padding-top: 0.25rem
    }
  
    .xl\:pr-1 {
      padding-right: 0.25rem
    }
  
    .xl\:pb-1 {
      padding-bottom: 0.25rem
    }
  
    .xl\:pl-1 {
      padding-left: 0.25rem
    }
  
    .xl\:pt-2 {
      padding-top: 0.5rem
    }
  
    .xl\:pr-2 {
      padding-right: 0.5rem
    }
  
    .xl\:pb-2 {
      padding-bottom: 0.5rem
    }
  
    .xl\:pl-2 {
      padding-left: 0.5rem
    }
  
    .xl\:pt-3 {
      padding-top: 0.75rem
    }
  
    .xl\:pr-3 {
      padding-right: 0.75rem
    }
  
    .xl\:pb-3 {
      padding-bottom: 0.75rem
    }
  
    .xl\:pl-3 {
      padding-left: 0.75rem
    }
  
    .xl\:pt-4 {
      padding-top: 0.4rem
    }
  
    .xl\:pr-4 {
      padding-right: 0.4rem
    }
  
    .xl\:pb-4 {
      padding-bottom: 0.4rem
    }
  
    .xl\:pl-4 {
      padding-left: 0.4rem
    }
  
    .xl\:pt-5 {
      padding-top: 1.25rem
    }
  
    .xl\:pr-5 {
      padding-right: 1.25rem
    }
  
    .xl\:pb-5 {
      padding-bottom: 1.25rem
    }
  
    .xl\:pl-5 {
      padding-left: 1.25rem
    }
  
    .xl\:pt-6 {
      padding-top: 0.6rem
    }
  
    .xl\:pr-6 {
      padding-right: 0.6rem
    }
  
    .xl\:pb-6 {
      padding-bottom: 0.6rem
    }
  
    .xl\:pl-6 {
      padding-left: 0.6rem
    }
  
    .xl\:pt-8 {
      padding-top: 0.8rem
    }
  
    .xl\:pr-8 {
      padding-right: 0.8rem
    }
  
    .xl\:pb-8 {
      padding-bottom: 0.8rem
    }
  
    .xl\:pl-8 {
      padding-left: 0.8rem
    }
  
    .xl\:pt-10 {
      padding-top: 2.5rem
    }
  
    .xl\:pr-10 {
      padding-right: 2.5rem
    }
  
    .xl\:pb-10 {
      padding-bottom: 2.5rem
    }
  
    .xl\:pl-10 {
      padding-left: 2.5rem
    }
  
    .xl\:pt-12 {
      padding-top: 1.2rem
    }
  
    .xl\:pr-12 {
      padding-right: 1.2rem
    }
  
    .xl\:pb-12 {
      padding-bottom: 1.2rem
    }
  
    .xl\:pl-12 {
      padding-left: 1.2rem
    }
  
    .xl\:pt-16 {
      padding-top: 1.6rem
    }
  
    .xl\:pr-16 {
      padding-right: 1.6rem
    }
  
    .xl\:pb-16 {
      padding-bottom: 1.6rem
    }
  
    .xl\:pl-16 {
      padding-left: 1.6rem
    }
  
    .xl\:pt-20 {
      padding-top: 2rem
    }
  
    .xl\:pr-20 {
      padding-right: 2rem
    }
  
    .xl\:pb-20 {
      padding-bottom: 2rem
    }
  
    .xl\:pl-20 {
      padding-left: 2rem
    }
  
    .xl\:pt-24 {
      padding-top: 2.4rem
    }
  
    .xl\:pr-24 {
      padding-right: 2.4rem
    }
  
    .xl\:pb-24 {
      padding-bottom: 2.4rem
    }
  
    .xl\:pl-24 {
      padding-left: 2.4rem
    }
  
    .xl\:pt-28 {
      padding-top: 2.8rem
    }
  
    .xl\:pr-28 {
      padding-right: 2.8rem
    }
  
    .xl\:pb-28 {
      padding-bottom: 2.8rem
    }
  
    .xl\:pl-28 {
      padding-left: 2.8rem
    }
  
    .xl\:pt-32 {
      padding-top: 3.2rem
    }
  
    .xl\:pr-32 {
      padding-right: 3.2rem
    }
  
    .xl\:pb-32 {
      padding-bottom: 3.2rem
    }
  
    .xl\:pl-32 {
      padding-left: 3.2rem
    }
  
    .xl\:pt-36 {
      padding-top: 3.6rem
    }
  
    .xl\:pr-36 {
      padding-right: 3.6rem
    }
  
    .xl\:pb-36 {
      padding-bottom: 3.6rem
    }
  
    .xl\:pl-36 {
      padding-left: 3.6rem
    }
  
    .xl\:pt-40 {
      padding-top: 4rem
    }
  
    .xl\:pr-40 {
      padding-right: 4rem
    }
  
    .xl\:pb-40 {
      padding-bottom: 4rem
    }
  
    .xl\:pl-40 {
      padding-left: 4rem
    }
  
    .xl\:pt-44 {
      padding-top: 4.4rem
    }
  
    .xl\:pr-44 {
      padding-right: 4.4rem
    }
  
    .xl\:pb-44 {
      padding-bottom: 4.4rem
    }
  
    .xl\:pl-44 {
      padding-left: 4.4rem
    }
  
    .xl\:pt-48 {
      padding-top: 4.8rem
    }
  
    .xl\:pr-48 {
      padding-right: 4.8rem
    }
  
    .xl\:pb-48 {
      padding-bottom: 4.8rem
    }
  
    .xl\:pl-48 {
      padding-left: 4.8rem
    }
  
    .xl\:pt-52 {
      padding-top: 5.2rem
    }
  
    .xl\:pr-52 {
      padding-right: 5.2rem
    }
  
    .xl\:pb-52 {
      padding-bottom: 5.2rem
    }
  
    .xl\:pl-52 {
      padding-left: 5.2rem
    }
  
    .xl\:pt-56 {
      padding-top: 5.6rem
    }
  
    .xl\:pr-56 {
      padding-right: 5.6rem
    }
  
    .xl\:pb-56 {
      padding-bottom: 5.6rem
    }
  
    .xl\:pl-56 {
      padding-left: 5.6rem
    }
  
    .xl\:pt-60 {
      padding-top: 6rem
    }
  
    .xl\:pr-60 {
      padding-right: 6rem
    }
  
    .xl\:pb-60 {
      padding-bottom: 6rem
    }
  
    .xl\:pl-60 {
      padding-left: 6rem
    }
  
    .xl\:pt-64 {
      padding-top: 6.4rem
    }
  
    .xl\:pr-64 {
      padding-right: 6.4rem
    }
  
    .xl\:pb-64 {
      padding-bottom: 6.4rem
    }
  
    .xl\:pl-64 {
      padding-left: 6.4rem
    }
  
    .xl\:pt-68 {
      padding-top: 6.8rem
    }
  
    .xl\:pr-68 {
      padding-right: 6.8rem
    }
  
    .xl\:pb-68 {
      padding-bottom: 6.8rem
    }
  
    .xl\:pl-68 {
      padding-left: 6.8rem
    }
  
    .xl\:pt-72 {
      padding-top: 7.2rem
    }
  
    .xl\:pr-72 {
      padding-right: 7.2rem
    }
  
    .xl\:pb-72 {
      padding-bottom: 7.2rem
    }
  
    .xl\:pl-72 {
      padding-left: 7.2rem
    }
  
    .xl\:pt-76 {
      padding-top: 7.6rem
    }
  
    .xl\:pr-76 {
      padding-right: 7.6rem
    }
  
    .xl\:pb-76 {
      padding-bottom: 7.6rem
    }
  
    .xl\:pl-76 {
      padding-left: 7.6rem
    }
  
    .xl\:pt-80 {
      padding-top: 8rem
    }
  
    .xl\:pr-80 {
      padding-right: 8rem
    }
  
    .xl\:pb-80 {
      padding-bottom: 8rem
    }
  
    .xl\:pl-80 {
      padding-left: 8rem
    }
  
    .xl\:pt-84 {
      padding-top: 8.4rem
    }
  
    .xl\:pr-84 {
      padding-right: 8.4rem
    }
  
    .xl\:pb-84 {
      padding-bottom: 8.4rem
    }
  
    .xl\:pl-84 {
      padding-left: 8.4rem
    }
  
    .xl\:pt-88 {
      padding-top: 8.8rem
    }
  
    .xl\:pr-88 {
      padding-right: 8.8rem
    }
  
    .xl\:pb-88 {
      padding-bottom: 8.8rem
    }
  
    .xl\:pl-88 {
      padding-left: 8.8rem
    }
  
    .xl\:pt-92 {
      padding-top: 9.2rem
    }
  
    .xl\:pr-92 {
      padding-right: 9.2rem
    }
  
    .xl\:pb-92 {
      padding-bottom: 9.2rem
    }
  
    .xl\:pl-92 {
      padding-left: 9.2rem
    }
  
    .xl\:pt-96 {
      padding-top: 9.6rem
    }
  
    .xl\:pr-96 {
      padding-right: 9.6rem
    }
  
    .xl\:pb-96 {
      padding-bottom: 9.6rem
    }
  
    .xl\:pl-96 {
      padding-left: 9.6rem
    }
  
    .xl\:pt-128 {
      padding-top: 12.8rem
    }
  
    .xl\:pr-128 {
      padding-right: 12.8rem
    }
  
    .xl\:pb-128 {
      padding-bottom: 12.8rem
    }
  
    .xl\:pl-128 {
      padding-left: 12.8rem
    }
  
    .xl\:pt-136 {
      padding-top: 13.6rem
    }
  
    .xl\:pr-136 {
      padding-right: 13.6rem
    }
  
    .xl\:pb-136 {
      padding-bottom: 13.6rem
    }
  
    .xl\:pl-136 {
      padding-left: 13.6rem
    }
  
    .xl\:pt-160 {
      padding-top: 16rem
    }
  
    .xl\:pr-160 {
      padding-right: 16rem
    }
  
    .xl\:pb-160 {
      padding-bottom: 16rem
    }
  
    .xl\:pl-160 {
      padding-left: 16rem
    }
  
    .xl\:pt-192 {
      padding-top: 19.2rem
    }
  
    .xl\:pr-192 {
      padding-right: 19.2rem
    }
  
    .xl\:pb-192 {
      padding-bottom: 19.2rem
    }
  
    .xl\:pl-192 {
      padding-left: 19.2rem
    }
  
    .xl\:pt-200 {
      padding-top: 20rem
    }
  
    .xl\:pr-200 {
      padding-right: 20rem
    }
  
    .xl\:pb-200 {
      padding-bottom: 20rem
    }
  
    .xl\:pl-200 {
      padding-left: 20rem
    }
  
    .xl\:pt-208 {
      padding-top: 20.8rem
    }
  
    .xl\:pr-208 {
      padding-right: 20.8rem
    }
  
    .xl\:pb-208 {
      padding-bottom: 20.8rem
    }
  
    .xl\:pl-208 {
      padding-left: 20.8rem
    }
  
    .xl\:pt-216 {
      padding-top: 21.6rem
    }
  
    .xl\:pr-216 {
      padding-right: 21.6rem
    }
  
    .xl\:pb-216 {
      padding-bottom: 21.6rem
    }
  
    .xl\:pl-216 {
      padding-left: 21.6rem
    }
  
    .xl\:pt-224 {
      padding-top: 22.4rem
    }
  
    .xl\:pr-224 {
      padding-right: 22.4rem
    }
  
    .xl\:pb-224 {
      padding-bottom: 22.4rem
    }
  
    .xl\:pl-224 {
      padding-left: 22.4rem
    }
  
    .xl\:pt-256 {
      padding-top: 25.6rem
    }
  
    .xl\:pr-256 {
      padding-right: 25.6rem
    }
  
    .xl\:pb-256 {
      padding-bottom: 25.6rem
    }
  
    .xl\:pl-256 {
      padding-left: 25.6rem
    }
  
    .xl\:pt-288 {
      padding-top: 28.8rem
    }
  
    .xl\:pr-288 {
      padding-right: 28.8rem
    }
  
    .xl\:pb-288 {
      padding-bottom: 28.8rem
    }
  
    .xl\:pl-288 {
      padding-left: 28.8rem
    }
  
    .xl\:pt-320 {
      padding-top: 32rem
    }
  
    .xl\:pr-320 {
      padding-right: 32rem
    }
  
    .xl\:pb-320 {
      padding-bottom: 32rem
    }
  
    .xl\:pl-320 {
      padding-left: 32rem
    }
  
    .xl\:pt-360 {
      padding-top: 36rem
    }
  
    .xl\:pr-360 {
      padding-right: 36rem
    }
  
    .xl\:pb-360 {
      padding-bottom: 36rem
    }
  
    .xl\:pl-360 {
      padding-left: 36rem
    }
  
    .xl\:pt-384 {
      padding-top: 38.4rem
    }
  
    .xl\:pr-384 {
      padding-right: 38.4rem
    }
  
    .xl\:pb-384 {
      padding-bottom: 38.4rem
    }
  
    .xl\:pl-384 {
      padding-left: 38.4rem
    }
  
    .xl\:pt-400 {
      padding-top: 40rem
    }
  
    .xl\:pr-400 {
      padding-right: 40rem
    }
  
    .xl\:pb-400 {
      padding-bottom: 40rem
    }
  
    .xl\:pl-400 {
      padding-left: 40rem
    }
  
    .xl\:pt-512 {
      padding-top: 51.2rem
    }
  
    .xl\:pr-512 {
      padding-right: 51.2rem
    }
  
    .xl\:pb-512 {
      padding-bottom: 51.2rem
    }
  
    .xl\:pl-512 {
      padding-left: 51.2rem
    }
  
    .xl\:pt-640 {
      padding-top: 64rem
    }
  
    .xl\:pr-640 {
      padding-right: 64rem
    }
  
    .xl\:pb-640 {
      padding-bottom: 64rem
    }
  
    .xl\:pl-640 {
      padding-left: 64rem
    }
  
    .xl\:pt-px {
      padding-top: 1px
    }
  
    .xl\:pr-px {
      padding-right: 1px
    }
  
    .xl\:pb-px {
      padding-bottom: 1px
    }
  
    .xl\:pl-px {
      padding-left: 1px
    }
  
    .xl\:pt-xs {
      padding-top: 32rem
    }
  
    .xl\:pr-xs {
      padding-right: 32rem
    }
  
    .xl\:pb-xs {
      padding-bottom: 32rem
    }
  
    .xl\:pl-xs {
      padding-left: 32rem
    }
  
    .xl\:pt-sm {
      padding-top: 48rem
    }
  
    .xl\:pr-sm {
      padding-right: 48rem
    }
  
    .xl\:pb-sm {
      padding-bottom: 48rem
    }
  
    .xl\:pl-sm {
      padding-left: 48rem
    }
  
    .xl\:pt-md {
      padding-top: 64rem
    }
  
    .xl\:pr-md {
      padding-right: 64rem
    }
  
    .xl\:pb-md {
      padding-bottom: 64rem
    }
  
    .xl\:pl-md {
      padding-left: 64rem
    }
  
    .xl\:pt-lg {
      padding-top: 80rem
    }
  
    .xl\:pr-lg {
      padding-right: 80rem
    }
  
    .xl\:pb-lg {
      padding-bottom: 80rem
    }
  
    .xl\:pl-lg {
      padding-left: 80rem
    }
  
    .xl\:pt-xl {
      padding-top: 96rem
    }
  
    .xl\:pr-xl {
      padding-right: 96rem
    }
  
    .xl\:pb-xl {
      padding-bottom: 96rem
    }
  
    .xl\:pl-xl {
      padding-left: 96rem
    }
  
    .xl\:pt-2xl {
      padding-top: 112rem
    }
  
    .xl\:pr-2xl {
      padding-right: 112rem
    }
  
    .xl\:pb-2xl {
      padding-bottom: 112rem
    }
  
    .xl\:pl-2xl {
      padding-left: 112rem
    }
  
    .xl\:pt-3xl {
      padding-top: 128rem
    }
  
    .xl\:pr-3xl {
      padding-right: 128rem
    }
  
    .xl\:pb-3xl {
      padding-bottom: 128rem
    }
  
    .xl\:pl-3xl {
      padding-left: 128rem
    }
  
    .xl\:pt-4xl {
      padding-top: 144rem
    }
  
    .xl\:pr-4xl {
      padding-right: 144rem
    }
  
    .xl\:pb-4xl {
      padding-bottom: 144rem
    }
  
    .xl\:pl-4xl {
      padding-left: 144rem
    }
  
    .xl\:pt-5xl {
      padding-top: 160rem
    }
  
    .xl\:pr-5xl {
      padding-right: 160rem
    }
  
    .xl\:pb-5xl {
      padding-bottom: 160rem
    }
  
    .xl\:pl-5xl {
      padding-left: 160rem
    }
  
    .xl\:pt-auto {
      padding-top: auto
    }
  
    .xl\:pr-auto {
      padding-right: auto
    }
  
    .xl\:pb-auto {
      padding-bottom: auto
    }
  
    .xl\:pl-auto {
      padding-left: auto
    }
  
    .xl\:pointer-events-none {
      pointer-events: none
    }
  
    .xl\:pointer-events-auto {
      pointer-events: auto
    }
  
    .xl\:static {
      position: static
    }
  
    .xl\:fixed {
      position: fixed
    }
  
    .xl\:absolute {
      position: absolute
    }
  
    .xl\:relative {
      position: relative
    }
  
    .xl\:sticky {
      position: -webkit-sticky;
      position: sticky
    }
  
    .xl\:inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0
    }
  
    .xl\:inset-auto {
      top: auto;
      right: auto;
      bottom: auto;
      left: auto
    }
  
    .xl\:inset-y-0 {
      top: 0;
      bottom: 0
    }
  
    .xl\:inset-x-0 {
      right: 0;
      left: 0
    }
  
    .xl\:inset-y-auto {
      top: auto;
      bottom: auto
    }
  
    .xl\:inset-x-auto {
      right: auto;
      left: auto
    }
  
    .xl\:top-0 {
      top: 0
    }
  
    .xl\:right-0 {
      right: 0
    }
  
    .xl\:bottom-0 {
      bottom: 0
    }
  
    .xl\:left-0 {
      left: 0
    }
  
    .xl\:top-auto {
      top: auto
    }
  
    .xl\:right-auto {
      right: auto
    }
  
    .xl\:bottom-auto {
      bottom: auto
    }
  
    .xl\:left-auto {
      left: auto
    }
  
    .xl\:resize-none {
      resize: none
    }
  
    .xl\:resize-y {
      resize: vertical
    }
  
    .xl\:resize-x {
      resize: horizontal
    }
  
    .xl\:resize {
      resize: both
    }
  
    .xl\:shadow-0 {
      box-shadow: none
    }
  
    .xl\:shadow-1 {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-2 {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-3 {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-4 {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-5 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-6 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-7 {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-8 {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-9 {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-10 {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-11 {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-12 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-13 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-14 {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-15 {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-16 {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-17 {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-18 {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-19 {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-20 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-21 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-22 {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-23 {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow-24 {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:shadow {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .xl\:shadow-md {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:shadow-lg {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .xl\:shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .xl\:shadow-inner {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .xl\:shadow-outline {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .xl\:shadow-none {
      box-shadow: none
    }
  
    .xl\:hover\:shadow-0:hover {
      box-shadow: none
    }
  
    .xl\:hover\:shadow-1:hover {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-2:hover {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-3:hover {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-4:hover {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-5:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-6:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-7:hover {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-8:hover {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-9:hover {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-10:hover {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-11:hover {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-12:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-13:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-14:hover {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-15:hover {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-16:hover {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-17:hover {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-18:hover {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-19:hover {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-20:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-21:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-22:hover {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-23:hover {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow-24:hover {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:hover\:shadow:hover {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .xl\:hover\:shadow-md:hover {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:hover\:shadow-lg:hover {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:hover\:shadow-xl:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .xl\:hover\:shadow-2xl:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .xl\:hover\:shadow-inner:hover {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .xl\:hover\:shadow-outline:hover {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .xl\:hover\:shadow-none:hover {
      box-shadow: none
    }
  
    .xl\:focus\:shadow-0:focus {
      box-shadow: none
    }
  
    .xl\:focus\:shadow-1:focus {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-2:focus {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-3:focus {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-4:focus {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-5:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-6:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-7:focus {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-8:focus {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-9:focus {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-10:focus {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-11:focus {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-12:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-13:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-14:focus {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-15:focus {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-16:focus {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-17:focus {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-18:focus {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-19:focus {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-20:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-21:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-22:focus {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-23:focus {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow-24:focus {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .xl\:focus\:shadow:focus {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .xl\:focus\:shadow-md:focus {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:focus\:shadow-lg:focus {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .xl\:focus\:shadow-xl:focus {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .xl\:focus\:shadow-2xl:focus {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .xl\:focus\:shadow-inner:focus {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .xl\:focus\:shadow-outline:focus {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .xl\:focus\:shadow-none:focus {
      box-shadow: none
    }
  
    .xl\:fill-current {
      fill: currentColor
    }
  
    .xl\:stroke-current {
      stroke: currentColor
    }
  
    .xl\:table-auto {
      table-layout: auto
    }
  
    .xl\:table-fixed {
      table-layout: fixed
    }
  
    .xl\:text-left {
      text-align: left
    }
  
    .xl\:text-center {
      text-align: center
    }
  
    .xl\:text-right {
      text-align: right
    }
  
    .xl\:text-justify {
      text-align: justify
    }
  
    .xl\:text-transparent {
      color: transparent
    }
  
    .xl\:text-black {
      color: #22292F
    }
  
    .xl\:text-white {
      color: #FFFFFF
    }
  
    .xl\:text-gray-100 {
      color: #f7fafc
    }
  
    .xl\:text-gray-200 {
      color: #edf2f7
    }
  
    .xl\:text-gray-300 {
      color: #e2e8f0
    }
  
    .xl\:text-gray-400 {
      color: #cbd5e0
    }
  
    .xl\:text-gray-500 {
      color: #a0aec0
    }
  
    .xl\:text-gray-600 {
      color: #718096
    }
  
    .xl\:text-gray-700 {
      color: #4a5568
    }
  
    .xl\:text-gray-800 {
      color: #2d3748
    }
  
    .xl\:text-gray-900 {
      color: #1a202c
    }
  
    .xl\:text-red {
      color: #E3342F
    }
  
    .xl\:text-orange {
      color: #F6993F
    }
  
    .xl\:text-yellow {
      color: #FFED4A
    }
  
    .xl\:text-green {
      color: #38C172
    }
  
    .xl\:text-teal {
      color: #4DC0B5
    }
  
    .xl\:text-blue {
      color: #3490DC
    }
  
    .xl\:text-indigo {
      color: #6574CD
    }
  
    .xl\:text-purple {
      color: #9561E2
    }
  
    .xl\:text-pink {
      color: #F66D9B
    }
  
    .xl\:text-grey-darkest {
      color: #3D4852
    }
  
    .xl\:text-grey-darker {
      color: #606F7B
    }
  
    .xl\:text-grey-dark {
      color: #8795A1
    }
  
    .xl\:text-grey {
      color: #B8C2CC
    }
  
    .xl\:text-grey-light {
      color: #DAE1E7
    }
  
    .xl\:text-grey-lighter {
      color: #F1F5F8
    }
  
    .xl\:text-grey-lightest {
      color: #F8FAFC
    }
  
    .xl\:text-red-darkest {
      color: #3B0D0C
    }
  
    .xl\:text-red-darker {
      color: #621B18
    }
  
    .xl\:text-red-dark {
      color: #CC1F1A
    }
  
    .xl\:text-red-light {
      color: #EF5753
    }
  
    .xl\:text-red-lighter {
      color: #F9ACAA
    }
  
    .xl\:text-red-lightest {
      color: #FCEBEA
    }
  
    .xl\:text-orange-darkest {
      color: #462A16
    }
  
    .xl\:text-orange-darker {
      color: #613B1F
    }
  
    .xl\:text-orange-dark {
      color: #DE751F
    }
  
    .xl\:text-orange-light {
      color: #FAAD63
    }
  
    .xl\:text-orange-lighter {
      color: #FCD9B6
    }
  
    .xl\:text-orange-lightest {
      color: #FFF5EB
    }
  
    .xl\:text-yellow-darkest {
      color: #453411
    }
  
    .xl\:text-yellow-darker {
      color: #684F1D
    }
  
    .xl\:text-yellow-dark {
      color: #F2D024
    }
  
    .xl\:text-yellow-light {
      color: #FFF382
    }
  
    .xl\:text-yellow-lighter {
      color: #FFF9C2
    }
  
    .xl\:text-yellow-lightest {
      color: #FCFBEB
    }
  
    .xl\:text-green-darkest {
      color: #0F2F21
    }
  
    .xl\:text-green-darker {
      color: #1A4731
    }
  
    .xl\:text-green-dark {
      color: #1F9D55
    }
  
    .xl\:text-green-light {
      color: #51D88A
    }
  
    .xl\:text-green-lighter {
      color: #A2F5BF
    }
  
    .xl\:text-green-lightest {
      color: #E3FCEC
    }
  
    .xl\:text-teal-darkest {
      color: #0D3331
    }
  
    .xl\:text-teal-darker {
      color: #20504F
    }
  
    .xl\:text-teal-dark {
      color: #38A89D
    }
  
    .xl\:text-teal-light {
      color: #64D5CA
    }
  
    .xl\:text-teal-lighter {
      color: #A0F0ED
    }
  
    .xl\:text-teal-lightest {
      color: #E8FFFE
    }
  
    .xl\:text-blue-darkest {
      color: #12283A
    }
  
    .xl\:text-blue-darker {
      color: #1C3D5A
    }
  
    .xl\:text-blue-dark {
      color: #2779BD
    }
  
    .xl\:text-blue-light {
      color: #6CB2EB
    }
  
    .xl\:text-blue-lighter {
      color: #BCDEFA
    }
  
    .xl\:text-blue-lightest {
      color: #EFF8FF
    }
  
    .xl\:text-indigo-darkest {
      color: #191E38
    }
  
    .xl\:text-indigo-darker {
      color: #2F365F
    }
  
    .xl\:text-indigo-dark {
      color: #5661B3
    }
  
    .xl\:text-indigo-light {
      color: #7886D7
    }
  
    .xl\:text-indigo-lighter {
      color: #B2B7FF
    }
  
    .xl\:text-indigo-lightest {
      color: #E6E8FF
    }
  
    .xl\:text-purple-darkest {
      color: #21183C
    }
  
    .xl\:text-purple-darker {
      color: #382B5F
    }
  
    .xl\:text-purple-dark {
      color: #794ACF
    }
  
    .xl\:text-purple-light {
      color: #A779E9
    }
  
    .xl\:text-purple-lighter {
      color: #D6BBFC
    }
  
    .xl\:text-purple-lightest {
      color: #F3EBFF
    }
  
    .xl\:text-pink-darkest {
      color: #451225
    }
  
    .xl\:text-pink-darker {
      color: #6F213F
    }
  
    .xl\:text-pink-dark {
      color: #EB5286
    }
  
    .xl\:text-pink-light {
      color: #FA7EA8
    }
  
    .xl\:text-pink-lighter {
      color: #FFBBCA
    }
  
    .xl\:text-pink-lightest {
      color: #FFEBEF
    }
  
    .xl\:hover\:text-transparent:hover {
      color: transparent
    }
  
    .xl\:hover\:text-black:hover {
      color: #22292F
    }
  
    .xl\:hover\:text-white:hover {
      color: #FFFFFF
    }
  
    .xl\:hover\:text-gray-100:hover {
      color: #f7fafc
    }
  
    .xl\:hover\:text-gray-200:hover {
      color: #edf2f7
    }
  
    .xl\:hover\:text-gray-300:hover {
      color: #e2e8f0
    }
  
    .xl\:hover\:text-gray-400:hover {
      color: #cbd5e0
    }
  
    .xl\:hover\:text-gray-500:hover {
      color: #a0aec0
    }
  
    .xl\:hover\:text-gray-600:hover {
      color: #718096
    }
  
    .xl\:hover\:text-gray-700:hover {
      color: #4a5568
    }
  
    .xl\:hover\:text-gray-800:hover {
      color: #2d3748
    }
  
    .xl\:hover\:text-gray-900:hover {
      color: #1a202c
    }
  
    .xl\:hover\:text-red:hover {
      color: #E3342F
    }
  
    .xl\:hover\:text-orange:hover {
      color: #F6993F
    }
  
    .xl\:hover\:text-yellow:hover {
      color: #FFED4A
    }
  
    .xl\:hover\:text-green:hover {
      color: #38C172
    }
  
    .xl\:hover\:text-teal:hover {
      color: #4DC0B5
    }
  
    .xl\:hover\:text-blue:hover {
      color: #3490DC
    }
  
    .xl\:hover\:text-indigo:hover {
      color: #6574CD
    }
  
    .xl\:hover\:text-purple:hover {
      color: #9561E2
    }
  
    .xl\:hover\:text-pink:hover {
      color: #F66D9B
    }
  
    .xl\:hover\:text-grey-darkest:hover {
      color: #3D4852
    }
  
    .xl\:hover\:text-grey-darker:hover {
      color: #606F7B
    }
  
    .xl\:hover\:text-grey-dark:hover {
      color: #8795A1
    }
  
    .xl\:hover\:text-grey:hover {
      color: #B8C2CC
    }
  
    .xl\:hover\:text-grey-light:hover {
      color: #DAE1E7
    }
  
    .xl\:hover\:text-grey-lighter:hover {
      color: #F1F5F8
    }
  
    .xl\:hover\:text-grey-lightest:hover {
      color: #F8FAFC
    }
  
    .xl\:hover\:text-red-darkest:hover {
      color: #3B0D0C
    }
  
    .xl\:hover\:text-red-darker:hover {
      color: #621B18
    }
  
    .xl\:hover\:text-red-dark:hover {
      color: #CC1F1A
    }
  
    .xl\:hover\:text-red-light:hover {
      color: #EF5753
    }
  
    .xl\:hover\:text-red-lighter:hover {
      color: #F9ACAA
    }
  
    .xl\:hover\:text-red-lightest:hover {
      color: #FCEBEA
    }
  
    .xl\:hover\:text-orange-darkest:hover {
      color: #462A16
    }
  
    .xl\:hover\:text-orange-darker:hover {
      color: #613B1F
    }
  
    .xl\:hover\:text-orange-dark:hover {
      color: #DE751F
    }
  
    .xl\:hover\:text-orange-light:hover {
      color: #FAAD63
    }
  
    .xl\:hover\:text-orange-lighter:hover {
      color: #FCD9B6
    }
  
    .xl\:hover\:text-orange-lightest:hover {
      color: #FFF5EB
    }
  
    .xl\:hover\:text-yellow-darkest:hover {
      color: #453411
    }
  
    .xl\:hover\:text-yellow-darker:hover {
      color: #684F1D
    }
  
    .xl\:hover\:text-yellow-dark:hover {
      color: #F2D024
    }
  
    .xl\:hover\:text-yellow-light:hover {
      color: #FFF382
    }
  
    .xl\:hover\:text-yellow-lighter:hover {
      color: #FFF9C2
    }
  
    .xl\:hover\:text-yellow-lightest:hover {
      color: #FCFBEB
    }
  
    .xl\:hover\:text-green-darkest:hover {
      color: #0F2F21
    }
  
    .xl\:hover\:text-green-darker:hover {
      color: #1A4731
    }
  
    .xl\:hover\:text-green-dark:hover {
      color: #1F9D55
    }
  
    .xl\:hover\:text-green-light:hover {
      color: #51D88A
    }
  
    .xl\:hover\:text-green-lighter:hover {
      color: #A2F5BF
    }
  
    .xl\:hover\:text-green-lightest:hover {
      color: #E3FCEC
    }
  
    .xl\:hover\:text-teal-darkest:hover {
      color: #0D3331
    }
  
    .xl\:hover\:text-teal-darker:hover {
      color: #20504F
    }
  
    .xl\:hover\:text-teal-dark:hover {
      color: #38A89D
    }
  
    .xl\:hover\:text-teal-light:hover {
      color: #64D5CA
    }
  
    .xl\:hover\:text-teal-lighter:hover {
      color: #A0F0ED
    }
  
    .xl\:hover\:text-teal-lightest:hover {
      color: #E8FFFE
    }
  
    .xl\:hover\:text-blue-darkest:hover {
      color: #12283A
    }
  
    .xl\:hover\:text-blue-darker:hover {
      color: #1C3D5A
    }
  
    .xl\:hover\:text-blue-dark:hover {
      color: #2779BD
    }
  
    .xl\:hover\:text-blue-light:hover {
      color: #6CB2EB
    }
  
    .xl\:hover\:text-blue-lighter:hover {
      color: #BCDEFA
    }
  
    .xl\:hover\:text-blue-lightest:hover {
      color: #EFF8FF
    }
  
    .xl\:hover\:text-indigo-darkest:hover {
      color: #191E38
    }
  
    .xl\:hover\:text-indigo-darker:hover {
      color: #2F365F
    }
  
    .xl\:hover\:text-indigo-dark:hover {
      color: #5661B3
    }
  
    .xl\:hover\:text-indigo-light:hover {
      color: #7886D7
    }
  
    .xl\:hover\:text-indigo-lighter:hover {
      color: #B2B7FF
    }
  
    .xl\:hover\:text-indigo-lightest:hover {
      color: #E6E8FF
    }
  
    .xl\:hover\:text-purple-darkest:hover {
      color: #21183C
    }
  
    .xl\:hover\:text-purple-darker:hover {
      color: #382B5F
    }
  
    .xl\:hover\:text-purple-dark:hover {
      color: #794ACF
    }
  
    .xl\:hover\:text-purple-light:hover {
      color: #A779E9
    }
  
    .xl\:hover\:text-purple-lighter:hover {
      color: #D6BBFC
    }
  
    .xl\:hover\:text-purple-lightest:hover {
      color: #F3EBFF
    }
  
    .xl\:hover\:text-pink-darkest:hover {
      color: #451225
    }
  
    .xl\:hover\:text-pink-darker:hover {
      color: #6F213F
    }
  
    .xl\:hover\:text-pink-dark:hover {
      color: #EB5286
    }
  
    .xl\:hover\:text-pink-light:hover {
      color: #FA7EA8
    }
  
    .xl\:hover\:text-pink-lighter:hover {
      color: #FFBBCA
    }
  
    .xl\:hover\:text-pink-lightest:hover {
      color: #FFEBEF
    }
  
    .xl\:focus\:text-transparent:focus {
      color: transparent
    }
  
    .xl\:focus\:text-black:focus {
      color: #22292F
    }
  
    .xl\:focus\:text-white:focus {
      color: #FFFFFF
    }
  
    .xl\:focus\:text-gray-100:focus {
      color: #f7fafc
    }
  
    .xl\:focus\:text-gray-200:focus {
      color: #edf2f7
    }
  
    .xl\:focus\:text-gray-300:focus {
      color: #e2e8f0
    }
  
    .xl\:focus\:text-gray-400:focus {
      color: #cbd5e0
    }
  
    .xl\:focus\:text-gray-500:focus {
      color: #a0aec0
    }
  
    .xl\:focus\:text-gray-600:focus {
      color: #718096
    }
  
    .xl\:focus\:text-gray-700:focus {
      color: #4a5568
    }
  
    .xl\:focus\:text-gray-800:focus {
      color: #2d3748
    }
  
    .xl\:focus\:text-gray-900:focus {
      color: #1a202c
    }
  
    .xl\:focus\:text-red:focus {
      color: #E3342F
    }
  
    .xl\:focus\:text-orange:focus {
      color: #F6993F
    }
  
    .xl\:focus\:text-yellow:focus {
      color: #FFED4A
    }
  
    .xl\:focus\:text-green:focus {
      color: #38C172
    }
  
    .xl\:focus\:text-teal:focus {
      color: #4DC0B5
    }
  
    .xl\:focus\:text-blue:focus {
      color: #3490DC
    }
  
    .xl\:focus\:text-indigo:focus {
      color: #6574CD
    }
  
    .xl\:focus\:text-purple:focus {
      color: #9561E2
    }
  
    .xl\:focus\:text-pink:focus {
      color: #F66D9B
    }
  
    .xl\:focus\:text-grey-darkest:focus {
      color: #3D4852
    }
  
    .xl\:focus\:text-grey-darker:focus {
      color: #606F7B
    }
  
    .xl\:focus\:text-grey-dark:focus {
      color: #8795A1
    }
  
    .xl\:focus\:text-grey:focus {
      color: #B8C2CC
    }
  
    .xl\:focus\:text-grey-light:focus {
      color: #DAE1E7
    }
  
    .xl\:focus\:text-grey-lighter:focus {
      color: #F1F5F8
    }
  
    .xl\:focus\:text-grey-lightest:focus {
      color: #F8FAFC
    }
  
    .xl\:focus\:text-red-darkest:focus {
      color: #3B0D0C
    }
  
    .xl\:focus\:text-red-darker:focus {
      color: #621B18
    }
  
    .xl\:focus\:text-red-dark:focus {
      color: #CC1F1A
    }
  
    .xl\:focus\:text-red-light:focus {
      color: #EF5753
    }
  
    .xl\:focus\:text-red-lighter:focus {
      color: #F9ACAA
    }
  
    .xl\:focus\:text-red-lightest:focus {
      color: #FCEBEA
    }
  
    .xl\:focus\:text-orange-darkest:focus {
      color: #462A16
    }
  
    .xl\:focus\:text-orange-darker:focus {
      color: #613B1F
    }
  
    .xl\:focus\:text-orange-dark:focus {
      color: #DE751F
    }
  
    .xl\:focus\:text-orange-light:focus {
      color: #FAAD63
    }
  
    .xl\:focus\:text-orange-lighter:focus {
      color: #FCD9B6
    }
  
    .xl\:focus\:text-orange-lightest:focus {
      color: #FFF5EB
    }
  
    .xl\:focus\:text-yellow-darkest:focus {
      color: #453411
    }
  
    .xl\:focus\:text-yellow-darker:focus {
      color: #684F1D
    }
  
    .xl\:focus\:text-yellow-dark:focus {
      color: #F2D024
    }
  
    .xl\:focus\:text-yellow-light:focus {
      color: #FFF382
    }
  
    .xl\:focus\:text-yellow-lighter:focus {
      color: #FFF9C2
    }
  
    .xl\:focus\:text-yellow-lightest:focus {
      color: #FCFBEB
    }
  
    .xl\:focus\:text-green-darkest:focus {
      color: #0F2F21
    }
  
    .xl\:focus\:text-green-darker:focus {
      color: #1A4731
    }
  
    .xl\:focus\:text-green-dark:focus {
      color: #1F9D55
    }
  
    .xl\:focus\:text-green-light:focus {
      color: #51D88A
    }
  
    .xl\:focus\:text-green-lighter:focus {
      color: #A2F5BF
    }
  
    .xl\:focus\:text-green-lightest:focus {
      color: #E3FCEC
    }
  
    .xl\:focus\:text-teal-darkest:focus {
      color: #0D3331
    }
  
    .xl\:focus\:text-teal-darker:focus {
      color: #20504F
    }
  
    .xl\:focus\:text-teal-dark:focus {
      color: #38A89D
    }
  
    .xl\:focus\:text-teal-light:focus {
      color: #64D5CA
    }
  
    .xl\:focus\:text-teal-lighter:focus {
      color: #A0F0ED
    }
  
    .xl\:focus\:text-teal-lightest:focus {
      color: #E8FFFE
    }
  
    .xl\:focus\:text-blue-darkest:focus {
      color: #12283A
    }
  
    .xl\:focus\:text-blue-darker:focus {
      color: #1C3D5A
    }
  
    .xl\:focus\:text-blue-dark:focus {
      color: #2779BD
    }
  
    .xl\:focus\:text-blue-light:focus {
      color: #6CB2EB
    }
  
    .xl\:focus\:text-blue-lighter:focus {
      color: #BCDEFA
    }
  
    .xl\:focus\:text-blue-lightest:focus {
      color: #EFF8FF
    }
  
    .xl\:focus\:text-indigo-darkest:focus {
      color: #191E38
    }
  
    .xl\:focus\:text-indigo-darker:focus {
      color: #2F365F
    }
  
    .xl\:focus\:text-indigo-dark:focus {
      color: #5661B3
    }
  
    .xl\:focus\:text-indigo-light:focus {
      color: #7886D7
    }
  
    .xl\:focus\:text-indigo-lighter:focus {
      color: #B2B7FF
    }
  
    .xl\:focus\:text-indigo-lightest:focus {
      color: #E6E8FF
    }
  
    .xl\:focus\:text-purple-darkest:focus {
      color: #21183C
    }
  
    .xl\:focus\:text-purple-darker:focus {
      color: #382B5F
    }
  
    .xl\:focus\:text-purple-dark:focus {
      color: #794ACF
    }
  
    .xl\:focus\:text-purple-light:focus {
      color: #A779E9
    }
  
    .xl\:focus\:text-purple-lighter:focus {
      color: #D6BBFC
    }
  
    .xl\:focus\:text-purple-lightest:focus {
      color: #F3EBFF
    }
  
    .xl\:focus\:text-pink-darkest:focus {
      color: #451225
    }
  
    .xl\:focus\:text-pink-darker:focus {
      color: #6F213F
    }
  
    .xl\:focus\:text-pink-dark:focus {
      color: #EB5286
    }
  
    .xl\:focus\:text-pink-light:focus {
      color: #FA7EA8
    }
  
    .xl\:focus\:text-pink-lighter:focus {
      color: #FFBBCA
    }
  
    .xl\:focus\:text-pink-lightest:focus {
      color: #FFEBEF
    }
  
    .xl\:text-10 {
      font-size: 1rem
    }
  
    .xl\:text-11 {
      font-size: 1.1rem
    }
  
    .xl\:text-12 {
      font-size: 1.2rem
    }
  
    .xl\:text-13 {
      font-size: 1.3rem
    }
  
    .xl\:text-14 {
      font-size: 1.4rem
    }
  
    .xl\:text-15 {
      font-size: 1.5rem
    }
  
    .xl\:text-16 {
      font-size: 1.6rem
    }
  
    .xl\:text-17 {
      font-size: 1.7rem
    }
  
    .xl\:text-18 {
      font-size: 1.8rem
    }
  
    .xl\:text-19 {
      font-size: 1.9rem
    }
  
    .xl\:text-20 {
      font-size: 2rem
    }
  
    .xl\:text-24 {
      font-size: 2.4rem
    }
  
    .xl\:text-28 {
      font-size: 2.8rem
    }
  
    .xl\:text-32 {
      font-size: 3.2rem
    }
  
    .xl\:text-36 {
      font-size: 3.6rem
    }
  
    .xl\:text-40 {
      font-size: 4rem
    }
  
    .xl\:text-44 {
      font-size: 4.4rem
    }
  
    .xl\:text-48 {
      font-size: 4.8rem
    }
  
    .xl\:text-52 {
      font-size: 5.2rem
    }
  
    .xl\:text-56 {
      font-size: 5.6rem
    }
  
    .xl\:text-60 {
      font-size: 6rem
    }
  
    .xl\:text-64 {
      font-size: 6.4rem
    }
  
    .xl\:text-68 {
      font-size: 6.8rem
    }
  
    .xl\:text-72 {
      font-size: 7.2rem
    }
  
    .xl\:text-96 {
      font-size: 9.6rem
    }
  
    .xl\:text-128 {
      font-size: 12.8rem
    }
  
    .xl\:text-xs {
      font-size: 1.2rem
    }
  
    .xl\:text-sm {
      font-size: 2.4rem
    }
  
    .xl\:text-base {
      font-size: 1.6rem
    }
  
    .xl\:text-lg {
      font-size: 1.8rem
    }
  
    .xl\:text-xl {
      font-size: 2rem
    }
  
    .xl\:text-2xl {
      font-size: 2.4rem
    }
  
    .xl\:text-3xl {
      font-size: 3rem
    }
  
    .xl\:text-4xl {
      font-size: 3.6rem
    }
  
    .xl\:text-5xl {
      font-size: 4.8rem
    }
  
    .xl\:text-6xl {
      font-size: 4rem
    }
  
    .xl\:italic {
      font-style: italic
    }
  
    .xl\:not-italic {
      font-style: normal
    }
  
    .xl\:hover\:italic:hover {
      font-style: italic
    }
  
    .xl\:hover\:not-italic:hover {
      font-style: normal
    }
  
    .xl\:focus\:italic:focus {
      font-style: italic
    }
  
    .xl\:focus\:not-italic:focus {
      font-style: normal
    }
  
    .xl\:uppercase {
      text-transform: uppercase
    }
  
    .xl\:lowercase {
      text-transform: lowercase
    }
  
    .xl\:capitalize {
      text-transform: capitalize
    }
  
    .xl\:normal-case {
      text-transform: none
    }
  
    .xl\:underline {
      text-decoration: underline
    }
  
    .xl\:line-through {
      text-decoration: line-through
    }
  
    .xl\:no-underline {
      text-decoration: none
    }
  
    .xl\:hover\:underline:hover {
      text-decoration: underline
    }
  
    .xl\:hover\:line-through:hover {
      text-decoration: line-through
    }
  
    .xl\:hover\:no-underline:hover {
      text-decoration: none
    }
  
    .xl\:focus\:underline:focus {
      text-decoration: underline
    }
  
    .xl\:focus\:line-through:focus {
      text-decoration: line-through
    }
  
    .xl\:focus\:no-underline:focus {
      text-decoration: none
    }
  
    .xl\:antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }
  
    .xl\:subpixel-antialiased {
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto
    }
  
    .xl\:tracking-tighter {
      letter-spacing: -0.05em
    }
  
    .xl\:tracking-tight {
      letter-spacing: -0.025em
    }
  
    .xl\:tracking-normal {
      letter-spacing: 0
    }
  
    .xl\:tracking-wide {
      letter-spacing: 0.025em
    }
  
    .xl\:tracking-wider {
      letter-spacing: 0.05em
    }
  
    .xl\:tracking-widest {
      letter-spacing: 0.1em
    }
  
    .xl\:select-none {
      -webkit-user-select: none;
              user-select: none
    }
  
    .xl\:select-text {
      -webkit-user-select: text;
              user-select: text
    }
  
    .xl\:select-all {
      -webkit-user-select: all;
              user-select: all
    }
  
    .xl\:select-auto {
      -webkit-user-select: auto;
              user-select: auto
    }
  
    .xl\:align-baseline {
      vertical-align: baseline
    }
  
    .xl\:align-top {
      vertical-align: top
    }
  
    .xl\:align-middle {
      vertical-align: middle
    }
  
    .xl\:align-bottom {
      vertical-align: bottom
    }
  
    .xl\:align-text-top {
      vertical-align: text-top
    }
  
    .xl\:align-text-bottom {
      vertical-align: text-bottom
    }
  
    .xl\:visible {
      visibility: visible
    }
  
    .xl\:invisible {
      visibility: hidden
    }
  
    .xl\:whitespace-normal {
      white-space: normal
    }
  
    .xl\:whitespace-no-wrap {
      white-space: nowrap
    }
  
    .xl\:whitespace-pre {
      white-space: pre
    }
  
    .xl\:whitespace-pre-line {
      white-space: pre-line
    }
  
    .xl\:whitespace-pre-wrap {
      white-space: pre-wrap
    }
  
    .xl\:break-normal {
      overflow-wrap: normal;
      word-break: normal
    }
  
    .xl\:break-words {
      overflow-wrap: break-word
    }
  
    .xl\:break-all {
      word-break: break-all
    }
  
    .xl\:truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
  
    .xl\:w-0 {
      width: 0
    }
  
    .xl\:w-1 {
      width: 0.25rem
    }
  
    .xl\:w-2 {
      width: 0.5rem
    }
  
    .xl\:w-3 {
      width: 0.75rem
    }
  
    .xl\:w-4 {
      width: 0.4rem
    }
  
    .xl\:w-5 {
      width: 1.25rem
    }
  
    .xl\:w-6 {
      width: 0.6rem
    }
  
    .xl\:w-8 {
      width: 0.8rem
    }
  
    .xl\:w-10 {
      width: 2.5rem
    }
  
    .xl\:w-12 {
      width: 1.2rem
    }
  
    .xl\:w-16 {
      width: 1.6rem
    }
  
    .xl\:w-20 {
      width: 2rem
    }
  
    .xl\:w-24 {
      width: 2.4rem
    }
  
    .xl\:w-28 {
      width: 2.8rem
    }
  
    .xl\:w-32 {
      width: 3.2rem
    }
  
    .xl\:w-36 {
      width: 3.6rem
    }
  
    .xl\:w-40 {
      width: 4rem
    }
  
    .xl\:w-44 {
      width: 4.4rem
    }
  
    .xl\:w-48 {
      width: 4.8rem
    }
  
    .xl\:w-52 {
      width: 5.2rem
    }
  
    .xl\:w-56 {
      width: 5.6rem
    }
  
    .xl\:w-60 {
      width: 6rem
    }
  
    .xl\:w-64 {
      width: 6.4rem
    }
  
    .xl\:w-68 {
      width: 6.8rem
    }
  
    .xl\:w-72 {
      width: 7.2rem
    }
  
    .xl\:w-76 {
      width: 7.6rem
    }
  
    .xl\:w-80 {
      width: 8rem
    }
  
    .xl\:w-84 {
      width: 8.4rem
    }
  
    .xl\:w-88 {
      width: 8.8rem
    }
  
    .xl\:w-92 {
      width: 9.2rem
    }
  
    .xl\:w-96 {
      width: 9.6rem
    }
  
    .xl\:w-128 {
      width: 12.8rem
    }
  
    .xl\:w-136 {
      width: 13.6rem
    }
  
    .xl\:w-160 {
      width: 16rem
    }
  
    .xl\:w-192 {
      width: 19.2rem
    }
  
    .xl\:w-200 {
      width: 20rem
    }
  
    .xl\:w-208 {
      width: 20.8rem
    }
  
    .xl\:w-216 {
      width: 21.6rem
    }
  
    .xl\:w-224 {
      width: 22.4rem
    }
  
    .xl\:w-256 {
      width: 25.6rem
    }
  
    .xl\:w-288 {
      width: 28.8rem
    }
  
    .xl\:w-320 {
      width: 32rem
    }
  
    .xl\:w-360 {
      width: 36rem
    }
  
    .xl\:w-384 {
      width: 38.4rem
    }
  
    .xl\:w-400 {
      width: 40rem
    }
  
    .xl\:w-512 {
      width: 51.2rem
    }
  
    .xl\:w-640 {
      width: 64rem
    }
  
    .xl\:w-auto {
      width: auto
    }
  
    .xl\:w-px {
      width: 1px
    }
  
    .xl\:w-xs {
      width: 32rem
    }
  
    .xl\:w-sm {
      width: 48rem
    }
  
    .xl\:w-md {
      width: 64rem
    }
  
    .xl\:w-lg {
      width: 80rem
    }
  
    .xl\:w-xl {
      width: 96rem
    }
  
    .xl\:w-2xl {
      width: 112rem
    }
  
    .xl\:w-3xl {
      width: 128rem
    }
  
    .xl\:w-4xl {
      width: 144rem
    }
  
    .xl\:w-5xl {
      width: 160rem
    }
  
    .xl\:w-1\/2 {
      width: 50%
    }
  
    .xl\:w-1\/3 {
      width: 33.33333%
    }
  
    .xl\:w-2\/3 {
      width: 66.66667%
    }
  
    .xl\:w-1\/4 {
      width: 25%
    }
  
    .xl\:w-2\/4 {
      width: 50%
    }
  
    .xl\:w-3\/4 {
      width: 75%
    }
  
    .xl\:w-1\/5 {
      width: 20%
    }
  
    .xl\:w-2\/5 {
      width: 40%
    }
  
    .xl\:w-3\/5 {
      width: 60%
    }
  
    .xl\:w-4\/5 {
      width: 80%
    }
  
    .xl\:w-1\/6 {
      width: 16.66667%
    }
  
    .xl\:w-2\/6 {
      width: 33.33333%
    }
  
    .xl\:w-3\/6 {
      width: 50%
    }
  
    .xl\:w-4\/6 {
      width: 66.66667%
    }
  
    .xl\:w-5\/6 {
      width: 83.33333%
    }
  
    .xl\:w-1\/12 {
      width: 8.33333%
    }
  
    .xl\:w-2\/12 {
      width: 16.66667%
    }
  
    .xl\:w-3\/12 {
      width: 25%
    }
  
    .xl\:w-4\/12 {
      width: 33.33333%
    }
  
    .xl\:w-5\/12 {
      width: 41.66667%
    }
  
    .xl\:w-6\/12 {
      width: 50%
    }
  
    .xl\:w-7\/12 {
      width: 58.33333%
    }
  
    .xl\:w-8\/12 {
      width: 66.66667%
    }
  
    .xl\:w-9\/12 {
      width: 75%
    }
  
    .xl\:w-10\/12 {
      width: 83.33333%
    }
  
    .xl\:w-11\/12 {
      width: 91.66667%
    }
  
    .xl\:w-full {
      width: 100%
    }
  
    .xl\:w-screen {
      width: 100vw
    }
  
    .xl\:z-0 {
      z-index: 0
    }
  
    .xl\:z-10 {
      z-index: 10
    }
  
    .xl\:z-20 {
      z-index: 20
    }
  
    .xl\:z-30 {
      z-index: 30
    }
  
    .xl\:z-40 {
      z-index: 40
    }
  
    .xl\:z-50 {
      z-index: 50
    }
  
    .xl\:z-99 {
      z-index: 99
    }
  
    .xl\:z-999 {
      z-index: 999
    }
  
    .xl\:z-9999 {
      z-index: 9999
    }
  
    .xl\:z-auto {
      z-index: auto
    }
  }
  
  @media print {
    .print\:appearance-none {
      -webkit-appearance: none;
              appearance: none
    }
  
    .print\:bg-fixed {
      background-attachment: fixed
    }
  
    .print\:bg-local {
      background-attachment: local
    }
  
    .print\:bg-scroll {
      background-attachment: scroll
    }
  
    .print\:bg-transparent {
      background-color: transparent
    }
  
    .print\:bg-black {
      background-color: #22292F
    }
  
    .print\:bg-white {
      background-color: #FFFFFF
    }
  
    .print\:bg-gray-100 {
      background-color: #f7fafc
    }
  
    .print\:bg-gray-200 {
      background-color: #edf2f7
    }
  
    .print\:bg-gray-300 {
      background-color: #e2e8f0
    }
  
    .print\:bg-gray-400 {
      background-color: #cbd5e0
    }
  
    .print\:bg-gray-500 {
      background-color: #a0aec0
    }
  
    .print\:bg-gray-600 {
      background-color: #718096
    }
  
    .print\:bg-gray-700 {
      background-color: #4a5568
    }
  
    .print\:bg-gray-800 {
      background-color: #2d3748
    }
  
    .print\:bg-gray-900 {
      background-color: #1a202c
    }
  
    .print\:bg-red {
      background-color: #E3342F
    }
  
    .print\:bg-orange {
      background-color: #F6993F
    }
  
    .print\:bg-yellow {
      background-color: #FFED4A
    }
  
    .print\:bg-green {
      background-color: #38C172
    }
  
    .print\:bg-teal {
      background-color: #4DC0B5
    }
  
    .print\:bg-blue {
      background-color: #3490DC
    }
  
    .print\:bg-indigo {
      background-color: #6574CD
    }
  
    .print\:bg-purple {
      background-color: #9561E2
    }
  
    .print\:bg-pink {
      background-color: #F66D9B
    }
  
    .print\:bg-grey-darkest {
      background-color: #3D4852
    }
  
    .print\:bg-grey-darker {
      background-color: #606F7B
    }
  
    .print\:bg-grey-dark {
      background-color: #8795A1
    }
  
    .print\:bg-grey {
      background-color: #B8C2CC
    }
  
    .print\:bg-grey-light {
      background-color: #DAE1E7
    }
  
    .print\:bg-grey-lighter {
      background-color: #F1F5F8
    }
  
    .print\:bg-grey-lightest {
      background-color: #F8FAFC
    }
  
    .print\:bg-red-darkest {
      background-color: #3B0D0C
    }
  
    .print\:bg-red-darker {
      background-color: #621B18
    }
  
    .print\:bg-red-dark {
      background-color: #CC1F1A
    }
  
    .print\:bg-red-light {
      background-color: #EF5753
    }
  
    .print\:bg-red-lighter {
      background-color: #F9ACAA
    }
  
    .print\:bg-red-lightest {
      background-color: #FCEBEA
    }
  
    .print\:bg-orange-darkest {
      background-color: #462A16
    }
  
    .print\:bg-orange-darker {
      background-color: #613B1F
    }
  
    .print\:bg-orange-dark {
      background-color: #DE751F
    }
  
    .print\:bg-orange-light {
      background-color: #FAAD63
    }
  
    .print\:bg-orange-lighter {
      background-color: #FCD9B6
    }
  
    .print\:bg-orange-lightest {
      background-color: #FFF5EB
    }
  
    .print\:bg-yellow-darkest {
      background-color: #453411
    }
  
    .print\:bg-yellow-darker {
      background-color: #684F1D
    }
  
    .print\:bg-yellow-dark {
      background-color: #F2D024
    }
  
    .print\:bg-yellow-light {
      background-color: #FFF382
    }
  
    .print\:bg-yellow-lighter {
      background-color: #FFF9C2
    }
  
    .print\:bg-yellow-lightest {
      background-color: #FCFBEB
    }
  
    .print\:bg-green-darkest {
      background-color: #0F2F21
    }
  
    .print\:bg-green-darker {
      background-color: #1A4731
    }
  
    .print\:bg-green-dark {
      background-color: #1F9D55
    }
  
    .print\:bg-green-light {
      background-color: #51D88A
    }
  
    .print\:bg-green-lighter {
      background-color: #A2F5BF
    }
  
    .print\:bg-green-lightest {
      background-color: #E3FCEC
    }
  
    .print\:bg-teal-darkest {
      background-color: #0D3331
    }
  
    .print\:bg-teal-darker {
      background-color: #20504F
    }
  
    .print\:bg-teal-dark {
      background-color: #38A89D
    }
  
    .print\:bg-teal-light {
      background-color: #64D5CA
    }
  
    .print\:bg-teal-lighter {
      background-color: #A0F0ED
    }
  
    .print\:bg-teal-lightest {
      background-color: #E8FFFE
    }
  
    .print\:bg-blue-darkest {
      background-color: #12283A
    }
  
    .print\:bg-blue-darker {
      background-color: #1C3D5A
    }
  
    .print\:bg-blue-dark {
      background-color: #2779BD
    }
  
    .print\:bg-blue-light {
      background-color: #6CB2EB
    }
  
    .print\:bg-blue-lighter {
      background-color: #BCDEFA
    }
  
    .print\:bg-blue-lightest {
      background-color: #EFF8FF
    }
  
    .print\:bg-indigo-darkest {
      background-color: #191E38
    }
  
    .print\:bg-indigo-darker {
      background-color: #2F365F
    }
  
    .print\:bg-indigo-dark {
      background-color: #5661B3
    }
  
    .print\:bg-indigo-light {
      background-color: #7886D7
    }
  
    .print\:bg-indigo-lighter {
      background-color: #B2B7FF
    }
  
    .print\:bg-indigo-lightest {
      background-color: #E6E8FF
    }
  
    .print\:bg-purple-darkest {
      background-color: #21183C
    }
  
    .print\:bg-purple-darker {
      background-color: #382B5F
    }
  
    .print\:bg-purple-dark {
      background-color: #794ACF
    }
  
    .print\:bg-purple-light {
      background-color: #A779E9
    }
  
    .print\:bg-purple-lighter {
      background-color: #D6BBFC
    }
  
    .print\:bg-purple-lightest {
      background-color: #F3EBFF
    }
  
    .print\:bg-pink-darkest {
      background-color: #451225
    }
  
    .print\:bg-pink-darker {
      background-color: #6F213F
    }
  
    .print\:bg-pink-dark {
      background-color: #EB5286
    }
  
    .print\:bg-pink-light {
      background-color: #FA7EA8
    }
  
    .print\:bg-pink-lighter {
      background-color: #FFBBCA
    }
  
    .print\:bg-pink-lightest {
      background-color: #FFEBEF
    }
  
    .print\:hover\:bg-transparent:hover {
      background-color: transparent
    }
  
    .print\:hover\:bg-black:hover {
      background-color: #22292F
    }
  
    .print\:hover\:bg-white:hover {
      background-color: #FFFFFF
    }
  
    .print\:hover\:bg-gray-100:hover {
      background-color: #f7fafc
    }
  
    .print\:hover\:bg-gray-200:hover {
      background-color: #edf2f7
    }
  
    .print\:hover\:bg-gray-300:hover {
      background-color: #e2e8f0
    }
  
    .print\:hover\:bg-gray-400:hover {
      background-color: #cbd5e0
    }
  
    .print\:hover\:bg-gray-500:hover {
      background-color: #a0aec0
    }
  
    .print\:hover\:bg-gray-600:hover {
      background-color: #718096
    }
  
    .print\:hover\:bg-gray-700:hover {
      background-color: #4a5568
    }
  
    .print\:hover\:bg-gray-800:hover {
      background-color: #2d3748
    }
  
    .print\:hover\:bg-gray-900:hover {
      background-color: #1a202c
    }
  
    .print\:hover\:bg-red:hover {
      background-color: #E3342F
    }
  
    .print\:hover\:bg-orange:hover {
      background-color: #F6993F
    }
  
    .print\:hover\:bg-yellow:hover {
      background-color: #FFED4A
    }
  
    .print\:hover\:bg-green:hover {
      background-color: #38C172
    }
  
    .print\:hover\:bg-teal:hover {
      background-color: #4DC0B5
    }
  
    .print\:hover\:bg-blue:hover {
      background-color: #3490DC
    }
  
    .print\:hover\:bg-indigo:hover {
      background-color: #6574CD
    }
  
    .print\:hover\:bg-purple:hover {
      background-color: #9561E2
    }
  
    .print\:hover\:bg-pink:hover {
      background-color: #F66D9B
    }
  
    .print\:hover\:bg-grey-darkest:hover {
      background-color: #3D4852
    }
  
    .print\:hover\:bg-grey-darker:hover {
      background-color: #606F7B
    }
  
    .print\:hover\:bg-grey-dark:hover {
      background-color: #8795A1
    }
  
    .print\:hover\:bg-grey:hover {
      background-color: #B8C2CC
    }
  
    .print\:hover\:bg-grey-light:hover {
      background-color: #DAE1E7
    }
  
    .print\:hover\:bg-grey-lighter:hover {
      background-color: #F1F5F8
    }
  
    .print\:hover\:bg-grey-lightest:hover {
      background-color: #F8FAFC
    }
  
    .print\:hover\:bg-red-darkest:hover {
      background-color: #3B0D0C
    }
  
    .print\:hover\:bg-red-darker:hover {
      background-color: #621B18
    }
  
    .print\:hover\:bg-red-dark:hover {
      background-color: #CC1F1A
    }
  
    .print\:hover\:bg-red-light:hover {
      background-color: #EF5753
    }
  
    .print\:hover\:bg-red-lighter:hover {
      background-color: #F9ACAA
    }
  
    .print\:hover\:bg-red-lightest:hover {
      background-color: #FCEBEA
    }
  
    .print\:hover\:bg-orange-darkest:hover {
      background-color: #462A16
    }
  
    .print\:hover\:bg-orange-darker:hover {
      background-color: #613B1F
    }
  
    .print\:hover\:bg-orange-dark:hover {
      background-color: #DE751F
    }
  
    .print\:hover\:bg-orange-light:hover {
      background-color: #FAAD63
    }
  
    .print\:hover\:bg-orange-lighter:hover {
      background-color: #FCD9B6
    }
  
    .print\:hover\:bg-orange-lightest:hover {
      background-color: #FFF5EB
    }
  
    .print\:hover\:bg-yellow-darkest:hover {
      background-color: #453411
    }
  
    .print\:hover\:bg-yellow-darker:hover {
      background-color: #684F1D
    }
  
    .print\:hover\:bg-yellow-dark:hover {
      background-color: #F2D024
    }
  
    .print\:hover\:bg-yellow-light:hover {
      background-color: #FFF382
    }
  
    .print\:hover\:bg-yellow-lighter:hover {
      background-color: #FFF9C2
    }
  
    .print\:hover\:bg-yellow-lightest:hover {
      background-color: #FCFBEB
    }
  
    .print\:hover\:bg-green-darkest:hover {
      background-color: #0F2F21
    }
  
    .print\:hover\:bg-green-darker:hover {
      background-color: #1A4731
    }
  
    .print\:hover\:bg-green-dark:hover {
      background-color: #1F9D55
    }
  
    .print\:hover\:bg-green-light:hover {
      background-color: #51D88A
    }
  
    .print\:hover\:bg-green-lighter:hover {
      background-color: #A2F5BF
    }
  
    .print\:hover\:bg-green-lightest:hover {
      background-color: #E3FCEC
    }
  
    .print\:hover\:bg-teal-darkest:hover {
      background-color: #0D3331
    }
  
    .print\:hover\:bg-teal-darker:hover {
      background-color: #20504F
    }
  
    .print\:hover\:bg-teal-dark:hover {
      background-color: #38A89D
    }
  
    .print\:hover\:bg-teal-light:hover {
      background-color: #64D5CA
    }
  
    .print\:hover\:bg-teal-lighter:hover {
      background-color: #A0F0ED
    }
  
    .print\:hover\:bg-teal-lightest:hover {
      background-color: #E8FFFE
    }
  
    .print\:hover\:bg-blue-darkest:hover {
      background-color: #12283A
    }
  
    .print\:hover\:bg-blue-darker:hover {
      background-color: #1C3D5A
    }
  
    .print\:hover\:bg-blue-dark:hover {
      background-color: #2779BD
    }
  
    .print\:hover\:bg-blue-light:hover {
      background-color: #6CB2EB
    }
  
    .print\:hover\:bg-blue-lighter:hover {
      background-color: #BCDEFA
    }
  
    .print\:hover\:bg-blue-lightest:hover {
      background-color: #EFF8FF
    }
  
    .print\:hover\:bg-indigo-darkest:hover {
      background-color: #191E38
    }
  
    .print\:hover\:bg-indigo-darker:hover {
      background-color: #2F365F
    }
  
    .print\:hover\:bg-indigo-dark:hover {
      background-color: #5661B3
    }
  
    .print\:hover\:bg-indigo-light:hover {
      background-color: #7886D7
    }
  
    .print\:hover\:bg-indigo-lighter:hover {
      background-color: #B2B7FF
    }
  
    .print\:hover\:bg-indigo-lightest:hover {
      background-color: #E6E8FF
    }
  
    .print\:hover\:bg-purple-darkest:hover {
      background-color: #21183C
    }
  
    .print\:hover\:bg-purple-darker:hover {
      background-color: #382B5F
    }
  
    .print\:hover\:bg-purple-dark:hover {
      background-color: #794ACF
    }
  
    .print\:hover\:bg-purple-light:hover {
      background-color: #A779E9
    }
  
    .print\:hover\:bg-purple-lighter:hover {
      background-color: #D6BBFC
    }
  
    .print\:hover\:bg-purple-lightest:hover {
      background-color: #F3EBFF
    }
  
    .print\:hover\:bg-pink-darkest:hover {
      background-color: #451225
    }
  
    .print\:hover\:bg-pink-darker:hover {
      background-color: #6F213F
    }
  
    .print\:hover\:bg-pink-dark:hover {
      background-color: #EB5286
    }
  
    .print\:hover\:bg-pink-light:hover {
      background-color: #FA7EA8
    }
  
    .print\:hover\:bg-pink-lighter:hover {
      background-color: #FFBBCA
    }
  
    .print\:hover\:bg-pink-lightest:hover {
      background-color: #FFEBEF
    }
  
    .print\:focus\:bg-transparent:focus {
      background-color: transparent
    }
  
    .print\:focus\:bg-black:focus {
      background-color: #22292F
    }
  
    .print\:focus\:bg-white:focus {
      background-color: #FFFFFF
    }
  
    .print\:focus\:bg-gray-100:focus {
      background-color: #f7fafc
    }
  
    .print\:focus\:bg-gray-200:focus {
      background-color: #edf2f7
    }
  
    .print\:focus\:bg-gray-300:focus {
      background-color: #e2e8f0
    }
  
    .print\:focus\:bg-gray-400:focus {
      background-color: #cbd5e0
    }
  
    .print\:focus\:bg-gray-500:focus {
      background-color: #a0aec0
    }
  
    .print\:focus\:bg-gray-600:focus {
      background-color: #718096
    }
  
    .print\:focus\:bg-gray-700:focus {
      background-color: #4a5568
    }
  
    .print\:focus\:bg-gray-800:focus {
      background-color: #2d3748
    }
  
    .print\:focus\:bg-gray-900:focus {
      background-color: #1a202c
    }
  
    .print\:focus\:bg-red:focus {
      background-color: #E3342F
    }
  
    .print\:focus\:bg-orange:focus {
      background-color: #F6993F
    }
  
    .print\:focus\:bg-yellow:focus {
      background-color: #FFED4A
    }
  
    .print\:focus\:bg-green:focus {
      background-color: #38C172
    }
  
    .print\:focus\:bg-teal:focus {
      background-color: #4DC0B5
    }
  
    .print\:focus\:bg-blue:focus {
      background-color: #3490DC
    }
  
    .print\:focus\:bg-indigo:focus {
      background-color: #6574CD
    }
  
    .print\:focus\:bg-purple:focus {
      background-color: #9561E2
    }
  
    .print\:focus\:bg-pink:focus {
      background-color: #F66D9B
    }
  
    .print\:focus\:bg-grey-darkest:focus {
      background-color: #3D4852
    }
  
    .print\:focus\:bg-grey-darker:focus {
      background-color: #606F7B
    }
  
    .print\:focus\:bg-grey-dark:focus {
      background-color: #8795A1
    }
  
    .print\:focus\:bg-grey:focus {
      background-color: #B8C2CC
    }
  
    .print\:focus\:bg-grey-light:focus {
      background-color: #DAE1E7
    }
  
    .print\:focus\:bg-grey-lighter:focus {
      background-color: #F1F5F8
    }
  
    .print\:focus\:bg-grey-lightest:focus {
      background-color: #F8FAFC
    }
  
    .print\:focus\:bg-red-darkest:focus {
      background-color: #3B0D0C
    }
  
    .print\:focus\:bg-red-darker:focus {
      background-color: #621B18
    }
  
    .print\:focus\:bg-red-dark:focus {
      background-color: #CC1F1A
    }
  
    .print\:focus\:bg-red-light:focus {
      background-color: #EF5753
    }
  
    .print\:focus\:bg-red-lighter:focus {
      background-color: #F9ACAA
    }
  
    .print\:focus\:bg-red-lightest:focus {
      background-color: #FCEBEA
    }
  
    .print\:focus\:bg-orange-darkest:focus {
      background-color: #462A16
    }
  
    .print\:focus\:bg-orange-darker:focus {
      background-color: #613B1F
    }
  
    .print\:focus\:bg-orange-dark:focus {
      background-color: #DE751F
    }
  
    .print\:focus\:bg-orange-light:focus {
      background-color: #FAAD63
    }
  
    .print\:focus\:bg-orange-lighter:focus {
      background-color: #FCD9B6
    }
  
    .print\:focus\:bg-orange-lightest:focus {
      background-color: #FFF5EB
    }
  
    .print\:focus\:bg-yellow-darkest:focus {
      background-color: #453411
    }
  
    .print\:focus\:bg-yellow-darker:focus {
      background-color: #684F1D
    }
  
    .print\:focus\:bg-yellow-dark:focus {
      background-color: #F2D024
    }
  
    .print\:focus\:bg-yellow-light:focus {
      background-color: #FFF382
    }
  
    .print\:focus\:bg-yellow-lighter:focus {
      background-color: #FFF9C2
    }
  
    .print\:focus\:bg-yellow-lightest:focus {
      background-color: #FCFBEB
    }
  
    .print\:focus\:bg-green-darkest:focus {
      background-color: #0F2F21
    }
  
    .print\:focus\:bg-green-darker:focus {
      background-color: #1A4731
    }
  
    .print\:focus\:bg-green-dark:focus {
      background-color: #1F9D55
    }
  
    .print\:focus\:bg-green-light:focus {
      background-color: #51D88A
    }
  
    .print\:focus\:bg-green-lighter:focus {
      background-color: #A2F5BF
    }
  
    .print\:focus\:bg-green-lightest:focus {
      background-color: #E3FCEC
    }
  
    .print\:focus\:bg-teal-darkest:focus {
      background-color: #0D3331
    }
  
    .print\:focus\:bg-teal-darker:focus {
      background-color: #20504F
    }
  
    .print\:focus\:bg-teal-dark:focus {
      background-color: #38A89D
    }
  
    .print\:focus\:bg-teal-light:focus {
      background-color: #64D5CA
    }
  
    .print\:focus\:bg-teal-lighter:focus {
      background-color: #A0F0ED
    }
  
    .print\:focus\:bg-teal-lightest:focus {
      background-color: #E8FFFE
    }
  
    .print\:focus\:bg-blue-darkest:focus {
      background-color: #12283A
    }
  
    .print\:focus\:bg-blue-darker:focus {
      background-color: #1C3D5A
    }
  
    .print\:focus\:bg-blue-dark:focus {
      background-color: #2779BD
    }
  
    .print\:focus\:bg-blue-light:focus {
      background-color: #6CB2EB
    }
  
    .print\:focus\:bg-blue-lighter:focus {
      background-color: #BCDEFA
    }
  
    .print\:focus\:bg-blue-lightest:focus {
      background-color: #EFF8FF
    }
  
    .print\:focus\:bg-indigo-darkest:focus {
      background-color: #191E38
    }
  
    .print\:focus\:bg-indigo-darker:focus {
      background-color: #2F365F
    }
  
    .print\:focus\:bg-indigo-dark:focus {
      background-color: #5661B3
    }
  
    .print\:focus\:bg-indigo-light:focus {
      background-color: #7886D7
    }
  
    .print\:focus\:bg-indigo-lighter:focus {
      background-color: #B2B7FF
    }
  
    .print\:focus\:bg-indigo-lightest:focus {
      background-color: #E6E8FF
    }
  
    .print\:focus\:bg-purple-darkest:focus {
      background-color: #21183C
    }
  
    .print\:focus\:bg-purple-darker:focus {
      background-color: #382B5F
    }
  
    .print\:focus\:bg-purple-dark:focus {
      background-color: #794ACF
    }
  
    .print\:focus\:bg-purple-light:focus {
      background-color: #A779E9
    }
  
    .print\:focus\:bg-purple-lighter:focus {
      background-color: #D6BBFC
    }
  
    .print\:focus\:bg-purple-lightest:focus {
      background-color: #F3EBFF
    }
  
    .print\:focus\:bg-pink-darkest:focus {
      background-color: #451225
    }
  
    .print\:focus\:bg-pink-darker:focus {
      background-color: #6F213F
    }
  
    .print\:focus\:bg-pink-dark:focus {
      background-color: #EB5286
    }
  
    .print\:focus\:bg-pink-light:focus {
      background-color: #FA7EA8
    }
  
    .print\:focus\:bg-pink-lighter:focus {
      background-color: #FFBBCA
    }
  
    .print\:focus\:bg-pink-lightest:focus {
      background-color: #FFEBEF
    }
  
    .print\:bg-bottom {
      background-position: bottom
    }
  
    .print\:bg-center {
      background-position: center
    }
  
    .print\:bg-left {
      background-position: left
    }
  
    .print\:bg-left-bottom {
      background-position: left bottom
    }
  
    .print\:bg-left-top {
      background-position: left top
    }
  
    .print\:bg-right {
      background-position: right
    }
  
    .print\:bg-right-bottom {
      background-position: right bottom
    }
  
    .print\:bg-right-top {
      background-position: right top
    }
  
    .print\:bg-top {
      background-position: top
    }
  
    .print\:bg-repeat {
      background-repeat: repeat
    }
  
    .print\:bg-no-repeat {
      background-repeat: no-repeat
    }
  
    .print\:bg-repeat-x {
      background-repeat: repeat-x
    }
  
    .print\:bg-repeat-y {
      background-repeat: repeat-y
    }
  
    .print\:bg-repeat-round {
      background-repeat: round
    }
  
    .print\:bg-repeat-space {
      background-repeat: space
    }
  
    .print\:bg-auto {
      background-size: auto
    }
  
    .print\:bg-cover {
      background-size: cover
    }
  
    .print\:bg-contain {
      background-size: contain
    }
  
    .print\:border-collapse {
      border-collapse: collapse
    }
  
    .print\:border-separate {
      border-collapse: separate
    }
  
    .print\:border-transparent {
      border-color: transparent
    }
  
    .print\:border-black {
      border-color: #22292F
    }
  
    .print\:border-white {
      border-color: #FFFFFF
    }
  
    .print\:border-gray-100 {
      border-color: #f7fafc
    }
  
    .print\:border-gray-200 {
      border-color: #edf2f7
    }
  
    .print\:border-gray-300 {
      border-color: #e2e8f0
    }
  
    .print\:border-gray-400 {
      border-color: #cbd5e0
    }
  
    .print\:border-gray-500 {
      border-color: #a0aec0
    }
  
    .print\:border-gray-600 {
      border-color: #718096
    }
  
    .print\:border-gray-700 {
      border-color: #4a5568
    }
  
    .print\:border-gray-800 {
      border-color: #2d3748
    }
  
    .print\:border-gray-900 {
      border-color: #1a202c
    }
  
    .print\:border-red {
      border-color: #E3342F
    }
  
    .print\:border-orange {
      border-color: #F6993F
    }
  
    .print\:border-yellow {
      border-color: #FFED4A
    }
  
    .print\:border-green {
      border-color: #38C172
    }
  
    .print\:border-teal {
      border-color: #4DC0B5
    }
  
    .print\:border-blue {
      border-color: #3490DC
    }
  
    .print\:border-indigo {
      border-color: #6574CD
    }
  
    .print\:border-purple {
      border-color: #9561E2
    }
  
    .print\:border-pink {
      border-color: #F66D9B
    }
  
    .print\:border-grey-darkest {
      border-color: #3D4852
    }
  
    .print\:border-grey-darker {
      border-color: #606F7B
    }
  
    .print\:border-grey-dark {
      border-color: #8795A1
    }
  
    .print\:border-grey {
      border-color: #B8C2CC
    }
  
    .print\:border-grey-light {
      border-color: #DAE1E7
    }
  
    .print\:border-grey-lighter {
      border-color: #F1F5F8
    }
  
    .print\:border-grey-lightest {
      border-color: #F8FAFC
    }
  
    .print\:border-red-darkest {
      border-color: #3B0D0C
    }
  
    .print\:border-red-darker {
      border-color: #621B18
    }
  
    .print\:border-red-dark {
      border-color: #CC1F1A
    }
  
    .print\:border-red-light {
      border-color: #EF5753
    }
  
    .print\:border-red-lighter {
      border-color: #F9ACAA
    }
  
    .print\:border-red-lightest {
      border-color: #FCEBEA
    }
  
    .print\:border-orange-darkest {
      border-color: #462A16
    }
  
    .print\:border-orange-darker {
      border-color: #613B1F
    }
  
    .print\:border-orange-dark {
      border-color: #DE751F
    }
  
    .print\:border-orange-light {
      border-color: #FAAD63
    }
  
    .print\:border-orange-lighter {
      border-color: #FCD9B6
    }
  
    .print\:border-orange-lightest {
      border-color: #FFF5EB
    }
  
    .print\:border-yellow-darkest {
      border-color: #453411
    }
  
    .print\:border-yellow-darker {
      border-color: #684F1D
    }
  
    .print\:border-yellow-dark {
      border-color: #F2D024
    }
  
    .print\:border-yellow-light {
      border-color: #FFF382
    }
  
    .print\:border-yellow-lighter {
      border-color: #FFF9C2
    }
  
    .print\:border-yellow-lightest {
      border-color: #FCFBEB
    }
  
    .print\:border-green-darkest {
      border-color: #0F2F21
    }
  
    .print\:border-green-darker {
      border-color: #1A4731
    }
  
    .print\:border-green-dark {
      border-color: #1F9D55
    }
  
    .print\:border-green-light {
      border-color: #51D88A
    }
  
    .print\:border-green-lighter {
      border-color: #A2F5BF
    }
  
    .print\:border-green-lightest {
      border-color: #E3FCEC
    }
  
    .print\:border-teal-darkest {
      border-color: #0D3331
    }
  
    .print\:border-teal-darker {
      border-color: #20504F
    }
  
    .print\:border-teal-dark {
      border-color: #38A89D
    }
  
    .print\:border-teal-light {
      border-color: #64D5CA
    }
  
    .print\:border-teal-lighter {
      border-color: #A0F0ED
    }
  
    .print\:border-teal-lightest {
      border-color: #E8FFFE
    }
  
    .print\:border-blue-darkest {
      border-color: #12283A
    }
  
    .print\:border-blue-darker {
      border-color: #1C3D5A
    }
  
    .print\:border-blue-dark {
      border-color: #2779BD
    }
  
    .print\:border-blue-light {
      border-color: #6CB2EB
    }
  
    .print\:border-blue-lighter {
      border-color: #BCDEFA
    }
  
    .print\:border-blue-lightest {
      border-color: #EFF8FF
    }
  
    .print\:border-indigo-darkest {
      border-color: #191E38
    }
  
    .print\:border-indigo-darker {
      border-color: #2F365F
    }
  
    .print\:border-indigo-dark {
      border-color: #5661B3
    }
  
    .print\:border-indigo-light {
      border-color: #7886D7
    }
  
    .print\:border-indigo-lighter {
      border-color: #B2B7FF
    }
  
    .print\:border-indigo-lightest {
      border-color: #E6E8FF
    }
  
    .print\:border-purple-darkest {
      border-color: #21183C
    }
  
    .print\:border-purple-darker {
      border-color: #382B5F
    }
  
    .print\:border-purple-dark {
      border-color: #794ACF
    }
  
    .print\:border-purple-light {
      border-color: #A779E9
    }
  
    .print\:border-purple-lighter {
      border-color: #D6BBFC
    }
  
    .print\:border-purple-lightest {
      border-color: #F3EBFF
    }
  
    .print\:border-pink-darkest {
      border-color: #451225
    }
  
    .print\:border-pink-darker {
      border-color: #6F213F
    }
  
    .print\:border-pink-dark {
      border-color: #EB5286
    }
  
    .print\:border-pink-light {
      border-color: #FA7EA8
    }
  
    .print\:border-pink-lighter {
      border-color: #FFBBCA
    }
  
    .print\:border-pink-lightest {
      border-color: #FFEBEF
    }
  
    .print\:hover\:border-transparent:hover {
      border-color: transparent
    }
  
    .print\:hover\:border-black:hover {
      border-color: #22292F
    }
  
    .print\:hover\:border-white:hover {
      border-color: #FFFFFF
    }
  
    .print\:hover\:border-gray-100:hover {
      border-color: #f7fafc
    }
  
    .print\:hover\:border-gray-200:hover {
      border-color: #edf2f7
    }
  
    .print\:hover\:border-gray-300:hover {
      border-color: #e2e8f0
    }
  
    .print\:hover\:border-gray-400:hover {
      border-color: #cbd5e0
    }
  
    .print\:hover\:border-gray-500:hover {
      border-color: #a0aec0
    }
  
    .print\:hover\:border-gray-600:hover {
      border-color: #718096
    }
  
    .print\:hover\:border-gray-700:hover {
      border-color: #4a5568
    }
  
    .print\:hover\:border-gray-800:hover {
      border-color: #2d3748
    }
  
    .print\:hover\:border-gray-900:hover {
      border-color: #1a202c
    }
  
    .print\:hover\:border-red:hover {
      border-color: #E3342F
    }
  
    .print\:hover\:border-orange:hover {
      border-color: #F6993F
    }
  
    .print\:hover\:border-yellow:hover {
      border-color: #FFED4A
    }
  
    .print\:hover\:border-green:hover {
      border-color: #38C172
    }
  
    .print\:hover\:border-teal:hover {
      border-color: #4DC0B5
    }
  
    .print\:hover\:border-blue:hover {
      border-color: #3490DC
    }
  
    .print\:hover\:border-indigo:hover {
      border-color: #6574CD
    }
  
    .print\:hover\:border-purple:hover {
      border-color: #9561E2
    }
  
    .print\:hover\:border-pink:hover {
      border-color: #F66D9B
    }
  
    .print\:hover\:border-grey-darkest:hover {
      border-color: #3D4852
    }
  
    .print\:hover\:border-grey-darker:hover {
      border-color: #606F7B
    }
  
    .print\:hover\:border-grey-dark:hover {
      border-color: #8795A1
    }
  
    .print\:hover\:border-grey:hover {
      border-color: #B8C2CC
    }
  
    .print\:hover\:border-grey-light:hover {
      border-color: #DAE1E7
    }
  
    .print\:hover\:border-grey-lighter:hover {
      border-color: #F1F5F8
    }
  
    .print\:hover\:border-grey-lightest:hover {
      border-color: #F8FAFC
    }
  
    .print\:hover\:border-red-darkest:hover {
      border-color: #3B0D0C
    }
  
    .print\:hover\:border-red-darker:hover {
      border-color: #621B18
    }
  
    .print\:hover\:border-red-dark:hover {
      border-color: #CC1F1A
    }
  
    .print\:hover\:border-red-light:hover {
      border-color: #EF5753
    }
  
    .print\:hover\:border-red-lighter:hover {
      border-color: #F9ACAA
    }
  
    .print\:hover\:border-red-lightest:hover {
      border-color: #FCEBEA
    }
  
    .print\:hover\:border-orange-darkest:hover {
      border-color: #462A16
    }
  
    .print\:hover\:border-orange-darker:hover {
      border-color: #613B1F
    }
  
    .print\:hover\:border-orange-dark:hover {
      border-color: #DE751F
    }
  
    .print\:hover\:border-orange-light:hover {
      border-color: #FAAD63
    }
  
    .print\:hover\:border-orange-lighter:hover {
      border-color: #FCD9B6
    }
  
    .print\:hover\:border-orange-lightest:hover {
      border-color: #FFF5EB
    }
  
    .print\:hover\:border-yellow-darkest:hover {
      border-color: #453411
    }
  
    .print\:hover\:border-yellow-darker:hover {
      border-color: #684F1D
    }
  
    .print\:hover\:border-yellow-dark:hover {
      border-color: #F2D024
    }
  
    .print\:hover\:border-yellow-light:hover {
      border-color: #FFF382
    }
  
    .print\:hover\:border-yellow-lighter:hover {
      border-color: #FFF9C2
    }
  
    .print\:hover\:border-yellow-lightest:hover {
      border-color: #FCFBEB
    }
  
    .print\:hover\:border-green-darkest:hover {
      border-color: #0F2F21
    }
  
    .print\:hover\:border-green-darker:hover {
      border-color: #1A4731
    }
  
    .print\:hover\:border-green-dark:hover {
      border-color: #1F9D55
    }
  
    .print\:hover\:border-green-light:hover {
      border-color: #51D88A
    }
  
    .print\:hover\:border-green-lighter:hover {
      border-color: #A2F5BF
    }
  
    .print\:hover\:border-green-lightest:hover {
      border-color: #E3FCEC
    }
  
    .print\:hover\:border-teal-darkest:hover {
      border-color: #0D3331
    }
  
    .print\:hover\:border-teal-darker:hover {
      border-color: #20504F
    }
  
    .print\:hover\:border-teal-dark:hover {
      border-color: #38A89D
    }
  
    .print\:hover\:border-teal-light:hover {
      border-color: #64D5CA
    }
  
    .print\:hover\:border-teal-lighter:hover {
      border-color: #A0F0ED
    }
  
    .print\:hover\:border-teal-lightest:hover {
      border-color: #E8FFFE
    }
  
    .print\:hover\:border-blue-darkest:hover {
      border-color: #12283A
    }
  
    .print\:hover\:border-blue-darker:hover {
      border-color: #1C3D5A
    }
  
    .print\:hover\:border-blue-dark:hover {
      border-color: #2779BD
    }
  
    .print\:hover\:border-blue-light:hover {
      border-color: #6CB2EB
    }
  
    .print\:hover\:border-blue-lighter:hover {
      border-color: #BCDEFA
    }
  
    .print\:hover\:border-blue-lightest:hover {
      border-color: #EFF8FF
    }
  
    .print\:hover\:border-indigo-darkest:hover {
      border-color: #191E38
    }
  
    .print\:hover\:border-indigo-darker:hover {
      border-color: #2F365F
    }
  
    .print\:hover\:border-indigo-dark:hover {
      border-color: #5661B3
    }
  
    .print\:hover\:border-indigo-light:hover {
      border-color: #7886D7
    }
  
    .print\:hover\:border-indigo-lighter:hover {
      border-color: #B2B7FF
    }
  
    .print\:hover\:border-indigo-lightest:hover {
      border-color: #E6E8FF
    }
  
    .print\:hover\:border-purple-darkest:hover {
      border-color: #21183C
    }
  
    .print\:hover\:border-purple-darker:hover {
      border-color: #382B5F
    }
  
    .print\:hover\:border-purple-dark:hover {
      border-color: #794ACF
    }
  
    .print\:hover\:border-purple-light:hover {
      border-color: #A779E9
    }
  
    .print\:hover\:border-purple-lighter:hover {
      border-color: #D6BBFC
    }
  
    .print\:hover\:border-purple-lightest:hover {
      border-color: #F3EBFF
    }
  
    .print\:hover\:border-pink-darkest:hover {
      border-color: #451225
    }
  
    .print\:hover\:border-pink-darker:hover {
      border-color: #6F213F
    }
  
    .print\:hover\:border-pink-dark:hover {
      border-color: #EB5286
    }
  
    .print\:hover\:border-pink-light:hover {
      border-color: #FA7EA8
    }
  
    .print\:hover\:border-pink-lighter:hover {
      border-color: #FFBBCA
    }
  
    .print\:hover\:border-pink-lightest:hover {
      border-color: #FFEBEF
    }
  
    .print\:focus\:border-transparent:focus {
      border-color: transparent
    }
  
    .print\:focus\:border-black:focus {
      border-color: #22292F
    }
  
    .print\:focus\:border-white:focus {
      border-color: #FFFFFF
    }
  
    .print\:focus\:border-gray-100:focus {
      border-color: #f7fafc
    }
  
    .print\:focus\:border-gray-200:focus {
      border-color: #edf2f7
    }
  
    .print\:focus\:border-gray-300:focus {
      border-color: #e2e8f0
    }
  
    .print\:focus\:border-gray-400:focus {
      border-color: #cbd5e0
    }
  
    .print\:focus\:border-gray-500:focus {
      border-color: #a0aec0
    }
  
    .print\:focus\:border-gray-600:focus {
      border-color: #718096
    }
  
    .print\:focus\:border-gray-700:focus {
      border-color: #4a5568
    }
  
    .print\:focus\:border-gray-800:focus {
      border-color: #2d3748
    }
  
    .print\:focus\:border-gray-900:focus {
      border-color: #1a202c
    }
  
    .print\:focus\:border-red:focus {
      border-color: #E3342F
    }
  
    .print\:focus\:border-orange:focus {
      border-color: #F6993F
    }
  
    .print\:focus\:border-yellow:focus {
      border-color: #FFED4A
    }
  
    .print\:focus\:border-green:focus {
      border-color: #38C172
    }
  
    .print\:focus\:border-teal:focus {
      border-color: #4DC0B5
    }
  
    .print\:focus\:border-blue:focus {
      border-color: #3490DC
    }
  
    .print\:focus\:border-indigo:focus {
      border-color: #6574CD
    }
  
    .print\:focus\:border-purple:focus {
      border-color: #9561E2
    }
  
    .print\:focus\:border-pink:focus {
      border-color: #F66D9B
    }
  
    .print\:focus\:border-grey-darkest:focus {
      border-color: #3D4852
    }
  
    .print\:focus\:border-grey-darker:focus {
      border-color: #606F7B
    }
  
    .print\:focus\:border-grey-dark:focus {
      border-color: #8795A1
    }
  
    .print\:focus\:border-grey:focus {
      border-color: #B8C2CC
    }
  
    .print\:focus\:border-grey-light:focus {
      border-color: #DAE1E7
    }
  
    .print\:focus\:border-grey-lighter:focus {
      border-color: #F1F5F8
    }
  
    .print\:focus\:border-grey-lightest:focus {
      border-color: #F8FAFC
    }
  
    .print\:focus\:border-red-darkest:focus {
      border-color: #3B0D0C
    }
  
    .print\:focus\:border-red-darker:focus {
      border-color: #621B18
    }
  
    .print\:focus\:border-red-dark:focus {
      border-color: #CC1F1A
    }
  
    .print\:focus\:border-red-light:focus {
      border-color: #EF5753
    }
  
    .print\:focus\:border-red-lighter:focus {
      border-color: #F9ACAA
    }
  
    .print\:focus\:border-red-lightest:focus {
      border-color: #FCEBEA
    }
  
    .print\:focus\:border-orange-darkest:focus {
      border-color: #462A16
    }
  
    .print\:focus\:border-orange-darker:focus {
      border-color: #613B1F
    }
  
    .print\:focus\:border-orange-dark:focus {
      border-color: #DE751F
    }
  
    .print\:focus\:border-orange-light:focus {
      border-color: #FAAD63
    }
  
    .print\:focus\:border-orange-lighter:focus {
      border-color: #FCD9B6
    }
  
    .print\:focus\:border-orange-lightest:focus {
      border-color: #FFF5EB
    }
  
    .print\:focus\:border-yellow-darkest:focus {
      border-color: #453411
    }
  
    .print\:focus\:border-yellow-darker:focus {
      border-color: #684F1D
    }
  
    .print\:focus\:border-yellow-dark:focus {
      border-color: #F2D024
    }
  
    .print\:focus\:border-yellow-light:focus {
      border-color: #FFF382
    }
  
    .print\:focus\:border-yellow-lighter:focus {
      border-color: #FFF9C2
    }
  
    .print\:focus\:border-yellow-lightest:focus {
      border-color: #FCFBEB
    }
  
    .print\:focus\:border-green-darkest:focus {
      border-color: #0F2F21
    }
  
    .print\:focus\:border-green-darker:focus {
      border-color: #1A4731
    }
  
    .print\:focus\:border-green-dark:focus {
      border-color: #1F9D55
    }
  
    .print\:focus\:border-green-light:focus {
      border-color: #51D88A
    }
  
    .print\:focus\:border-green-lighter:focus {
      border-color: #A2F5BF
    }
  
    .print\:focus\:border-green-lightest:focus {
      border-color: #E3FCEC
    }
  
    .print\:focus\:border-teal-darkest:focus {
      border-color: #0D3331
    }
  
    .print\:focus\:border-teal-darker:focus {
      border-color: #20504F
    }
  
    .print\:focus\:border-teal-dark:focus {
      border-color: #38A89D
    }
  
    .print\:focus\:border-teal-light:focus {
      border-color: #64D5CA
    }
  
    .print\:focus\:border-teal-lighter:focus {
      border-color: #A0F0ED
    }
  
    .print\:focus\:border-teal-lightest:focus {
      border-color: #E8FFFE
    }
  
    .print\:focus\:border-blue-darkest:focus {
      border-color: #12283A
    }
  
    .print\:focus\:border-blue-darker:focus {
      border-color: #1C3D5A
    }
  
    .print\:focus\:border-blue-dark:focus {
      border-color: #2779BD
    }
  
    .print\:focus\:border-blue-light:focus {
      border-color: #6CB2EB
    }
  
    .print\:focus\:border-blue-lighter:focus {
      border-color: #BCDEFA
    }
  
    .print\:focus\:border-blue-lightest:focus {
      border-color: #EFF8FF
    }
  
    .print\:focus\:border-indigo-darkest:focus {
      border-color: #191E38
    }
  
    .print\:focus\:border-indigo-darker:focus {
      border-color: #2F365F
    }
  
    .print\:focus\:border-indigo-dark:focus {
      border-color: #5661B3
    }
  
    .print\:focus\:border-indigo-light:focus {
      border-color: #7886D7
    }
  
    .print\:focus\:border-indigo-lighter:focus {
      border-color: #B2B7FF
    }
  
    .print\:focus\:border-indigo-lightest:focus {
      border-color: #E6E8FF
    }
  
    .print\:focus\:border-purple-darkest:focus {
      border-color: #21183C
    }
  
    .print\:focus\:border-purple-darker:focus {
      border-color: #382B5F
    }
  
    .print\:focus\:border-purple-dark:focus {
      border-color: #794ACF
    }
  
    .print\:focus\:border-purple-light:focus {
      border-color: #A779E9
    }
  
    .print\:focus\:border-purple-lighter:focus {
      border-color: #D6BBFC
    }
  
    .print\:focus\:border-purple-lightest:focus {
      border-color: #F3EBFF
    }
  
    .print\:focus\:border-pink-darkest:focus {
      border-color: #451225
    }
  
    .print\:focus\:border-pink-darker:focus {
      border-color: #6F213F
    }
  
    .print\:focus\:border-pink-dark:focus {
      border-color: #EB5286
    }
  
    .print\:focus\:border-pink-light:focus {
      border-color: #FA7EA8
    }
  
    .print\:focus\:border-pink-lighter:focus {
      border-color: #FFBBCA
    }
  
    .print\:focus\:border-pink-lightest:focus {
      border-color: #FFEBEF
    }
  
    .print\:rounded-2 {
      border-radius: .2rem
    }
  
    .print\:rounded-4 {
      border-radius: .4rem
    }
  
    .print\:rounded-6 {
      border-radius: .6rem
    }
  
    .print\:rounded-8 {
      border-radius: .8rem
    }
  
    .print\:rounded-12 {
      border-radius: 1.2rem
    }
  
    .print\:rounded-16 {
      border-radius: 1.6rem
    }
  
    .print\:rounded-20 {
      border-radius: 2rem
    }
  
    .print\:rounded-24 {
      border-radius: 2.4rem
    }
  
    .print\:rounded-28 {
      border-radius: 2.8rem
    }
  
    .print\:rounded-32 {
      border-radius: 3.2rem
    }
  
    .print\:rounded-none {
      border-radius: 0
    }
  
    .print\:rounded-sm {
      border-radius: .2rem
    }
  
    .print\:rounded {
      border-radius: .4rem
    }
  
    .print\:rounded-lg {
      border-radius: .8rem
    }
  
    .print\:rounded-full {
      border-radius: 9999px
    }
  
    .print\:rounded-t-2 {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .print\:rounded-r-2 {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .print\:rounded-b-2 {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-l-2 {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-t-4 {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .print\:rounded-r-4 {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .print\:rounded-b-4 {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-l-4 {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-t-6 {
      border-top-left-radius: .6rem;
      border-top-right-radius: .6rem
    }
  
    .print\:rounded-r-6 {
      border-top-right-radius: .6rem;
      border-bottom-right-radius: .6rem
    }
  
    .print\:rounded-b-6 {
      border-bottom-right-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .print\:rounded-l-6 {
      border-top-left-radius: .6rem;
      border-bottom-left-radius: .6rem
    }
  
    .print\:rounded-t-8 {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .print\:rounded-r-8 {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .print\:rounded-b-8 {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-l-8 {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-t-12 {
      border-top-left-radius: 1.2rem;
      border-top-right-radius: 1.2rem
    }
  
    .print\:rounded-r-12 {
      border-top-right-radius: 1.2rem;
      border-bottom-right-radius: 1.2rem
    }
  
    .print\:rounded-b-12 {
      border-bottom-right-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .print\:rounded-l-12 {
      border-top-left-radius: 1.2rem;
      border-bottom-left-radius: 1.2rem
    }
  
    .print\:rounded-t-16 {
      border-top-left-radius: 1.6rem;
      border-top-right-radius: 1.6rem
    }
  
    .print\:rounded-r-16 {
      border-top-right-radius: 1.6rem;
      border-bottom-right-radius: 1.6rem
    }
  
    .print\:rounded-b-16 {
      border-bottom-right-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .print\:rounded-l-16 {
      border-top-left-radius: 1.6rem;
      border-bottom-left-radius: 1.6rem
    }
  
    .print\:rounded-t-20 {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem
    }
  
    .print\:rounded-r-20 {
      border-top-right-radius: 2rem;
      border-bottom-right-radius: 2rem
    }
  
    .print\:rounded-b-20 {
      border-bottom-right-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .print\:rounded-l-20 {
      border-top-left-radius: 2rem;
      border-bottom-left-radius: 2rem
    }
  
    .print\:rounded-t-24 {
      border-top-left-radius: 2.4rem;
      border-top-right-radius: 2.4rem
    }
  
    .print\:rounded-r-24 {
      border-top-right-radius: 2.4rem;
      border-bottom-right-radius: 2.4rem
    }
  
    .print\:rounded-b-24 {
      border-bottom-right-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .print\:rounded-l-24 {
      border-top-left-radius: 2.4rem;
      border-bottom-left-radius: 2.4rem
    }
  
    .print\:rounded-t-28 {
      border-top-left-radius: 2.8rem;
      border-top-right-radius: 2.8rem
    }
  
    .print\:rounded-r-28 {
      border-top-right-radius: 2.8rem;
      border-bottom-right-radius: 2.8rem
    }
  
    .print\:rounded-b-28 {
      border-bottom-right-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .print\:rounded-l-28 {
      border-top-left-radius: 2.8rem;
      border-bottom-left-radius: 2.8rem
    }
  
    .print\:rounded-t-32 {
      border-top-left-radius: 3.2rem;
      border-top-right-radius: 3.2rem
    }
  
    .print\:rounded-r-32 {
      border-top-right-radius: 3.2rem;
      border-bottom-right-radius: 3.2rem
    }
  
    .print\:rounded-b-32 {
      border-bottom-right-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .print\:rounded-l-32 {
      border-top-left-radius: 3.2rem;
      border-bottom-left-radius: 3.2rem
    }
  
    .print\:rounded-t-none {
      border-top-left-radius: 0;
      border-top-right-radius: 0
    }
  
    .print\:rounded-r-none {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0
    }
  
    .print\:rounded-b-none {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .print\:rounded-l-none {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0
    }
  
    .print\:rounded-t-sm {
      border-top-left-radius: .2rem;
      border-top-right-radius: .2rem
    }
  
    .print\:rounded-r-sm {
      border-top-right-radius: .2rem;
      border-bottom-right-radius: .2rem
    }
  
    .print\:rounded-b-sm {
      border-bottom-right-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-l-sm {
      border-top-left-radius: .2rem;
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-t {
      border-top-left-radius: .4rem;
      border-top-right-radius: .4rem
    }
  
    .print\:rounded-r {
      border-top-right-radius: .4rem;
      border-bottom-right-radius: .4rem
    }
  
    .print\:rounded-b {
      border-bottom-right-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-l {
      border-top-left-radius: .4rem;
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-t-lg {
      border-top-left-radius: .8rem;
      border-top-right-radius: .8rem
    }
  
    .print\:rounded-r-lg {
      border-top-right-radius: .8rem;
      border-bottom-right-radius: .8rem
    }
  
    .print\:rounded-b-lg {
      border-bottom-right-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-l-lg {
      border-top-left-radius: .8rem;
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-t-full {
      border-top-left-radius: 9999px;
      border-top-right-radius: 9999px
    }
  
    .print\:rounded-r-full {
      border-top-right-radius: 9999px;
      border-bottom-right-radius: 9999px
    }
  
    .print\:rounded-b-full {
      border-bottom-right-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .print\:rounded-l-full {
      border-top-left-radius: 9999px;
      border-bottom-left-radius: 9999px
    }
  
    .print\:rounded-tl-2 {
      border-top-left-radius: .2rem
    }
  
    .print\:rounded-tr-2 {
      border-top-right-radius: .2rem
    }
  
    .print\:rounded-br-2 {
      border-bottom-right-radius: .2rem
    }
  
    .print\:rounded-bl-2 {
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-tl-4 {
      border-top-left-radius: .4rem
    }
  
    .print\:rounded-tr-4 {
      border-top-right-radius: .4rem
    }
  
    .print\:rounded-br-4 {
      border-bottom-right-radius: .4rem
    }
  
    .print\:rounded-bl-4 {
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-tl-6 {
      border-top-left-radius: .6rem
    }
  
    .print\:rounded-tr-6 {
      border-top-right-radius: .6rem
    }
  
    .print\:rounded-br-6 {
      border-bottom-right-radius: .6rem
    }
  
    .print\:rounded-bl-6 {
      border-bottom-left-radius: .6rem
    }
  
    .print\:rounded-tl-8 {
      border-top-left-radius: .8rem
    }
  
    .print\:rounded-tr-8 {
      border-top-right-radius: .8rem
    }
  
    .print\:rounded-br-8 {
      border-bottom-right-radius: .8rem
    }
  
    .print\:rounded-bl-8 {
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-tl-12 {
      border-top-left-radius: 1.2rem
    }
  
    .print\:rounded-tr-12 {
      border-top-right-radius: 1.2rem
    }
  
    .print\:rounded-br-12 {
      border-bottom-right-radius: 1.2rem
    }
  
    .print\:rounded-bl-12 {
      border-bottom-left-radius: 1.2rem
    }
  
    .print\:rounded-tl-16 {
      border-top-left-radius: 1.6rem
    }
  
    .print\:rounded-tr-16 {
      border-top-right-radius: 1.6rem
    }
  
    .print\:rounded-br-16 {
      border-bottom-right-radius: 1.6rem
    }
  
    .print\:rounded-bl-16 {
      border-bottom-left-radius: 1.6rem
    }
  
    .print\:rounded-tl-20 {
      border-top-left-radius: 2rem
    }
  
    .print\:rounded-tr-20 {
      border-top-right-radius: 2rem
    }
  
    .print\:rounded-br-20 {
      border-bottom-right-radius: 2rem
    }
  
    .print\:rounded-bl-20 {
      border-bottom-left-radius: 2rem
    }
  
    .print\:rounded-tl-24 {
      border-top-left-radius: 2.4rem
    }
  
    .print\:rounded-tr-24 {
      border-top-right-radius: 2.4rem
    }
  
    .print\:rounded-br-24 {
      border-bottom-right-radius: 2.4rem
    }
  
    .print\:rounded-bl-24 {
      border-bottom-left-radius: 2.4rem
    }
  
    .print\:rounded-tl-28 {
      border-top-left-radius: 2.8rem
    }
  
    .print\:rounded-tr-28 {
      border-top-right-radius: 2.8rem
    }
  
    .print\:rounded-br-28 {
      border-bottom-right-radius: 2.8rem
    }
  
    .print\:rounded-bl-28 {
      border-bottom-left-radius: 2.8rem
    }
  
    .print\:rounded-tl-32 {
      border-top-left-radius: 3.2rem
    }
  
    .print\:rounded-tr-32 {
      border-top-right-radius: 3.2rem
    }
  
    .print\:rounded-br-32 {
      border-bottom-right-radius: 3.2rem
    }
  
    .print\:rounded-bl-32 {
      border-bottom-left-radius: 3.2rem
    }
  
    .print\:rounded-tl-none {
      border-top-left-radius: 0
    }
  
    .print\:rounded-tr-none {
      border-top-right-radius: 0
    }
  
    .print\:rounded-br-none {
      border-bottom-right-radius: 0
    }
  
    .print\:rounded-bl-none {
      border-bottom-left-radius: 0
    }
  
    .print\:rounded-tl-sm {
      border-top-left-radius: .2rem
    }
  
    .print\:rounded-tr-sm {
      border-top-right-radius: .2rem
    }
  
    .print\:rounded-br-sm {
      border-bottom-right-radius: .2rem
    }
  
    .print\:rounded-bl-sm {
      border-bottom-left-radius: .2rem
    }
  
    .print\:rounded-tl {
      border-top-left-radius: .4rem
    }
  
    .print\:rounded-tr {
      border-top-right-radius: .4rem
    }
  
    .print\:rounded-br {
      border-bottom-right-radius: .4rem
    }
  
    .print\:rounded-bl {
      border-bottom-left-radius: .4rem
    }
  
    .print\:rounded-tl-lg {
      border-top-left-radius: .8rem
    }
  
    .print\:rounded-tr-lg {
      border-top-right-radius: .8rem
    }
  
    .print\:rounded-br-lg {
      border-bottom-right-radius: .8rem
    }
  
    .print\:rounded-bl-lg {
      border-bottom-left-radius: .8rem
    }
  
    .print\:rounded-tl-full {
      border-top-left-radius: 9999px
    }
  
    .print\:rounded-tr-full {
      border-top-right-radius: 9999px
    }
  
    .print\:rounded-br-full {
      border-bottom-right-radius: 9999px
    }
  
    .print\:rounded-bl-full {
      border-bottom-left-radius: 9999px
    }
  
    .print\:border-solid {
      border-style: solid
    }
  
    .print\:border-dashed {
      border-style: dashed
    }
  
    .print\:border-dotted {
      border-style: dotted
    }
  
    .print\:border-none {
      border-style: none
    }
  
    .print\:border-0 {
      border-width: 0
    }
  
    .print\:border-1 {
      border-width: 1px
    }
  
    .print\:border-2 {
      border-width: 2px
    }
  
    .print\:border-3 {
      border-width: 3px
    }
  
    .print\:border-4 {
      border-width: 4px
    }
  
    .print\:border-8 {
      border-width: 8px
    }
  
    .print\:border {
      border-width: 1px
    }
  
    .print\:border-t-0 {
      border-top-width: 0
    }
  
    .print\:border-r-0 {
      border-right-width: 0
    }
  
    .print\:border-b-0 {
      border-bottom-width: 0
    }
  
    .print\:border-l-0 {
      border-left-width: 0
    }
  
    .print\:border-t-1 {
      border-top-width: 1px
    }
  
    .print\:border-r-1 {
      border-right-width: 1px
    }
  
    .print\:border-b-1 {
      border-bottom-width: 1px
    }
  
    .print\:border-l-1 {
      border-left-width: 1px
    }
  
    .print\:border-t-2 {
      border-top-width: 2px
    }
  
    .print\:border-r-2 {
      border-right-width: 2px
    }
  
    .print\:border-b-2 {
      border-bottom-width: 2px
    }
  
    .print\:border-l-2 {
      border-left-width: 2px
    }
  
    .print\:border-t-3 {
      border-top-width: 3px
    }
  
    .print\:border-r-3 {
      border-right-width: 3px
    }
  
    .print\:border-b-3 {
      border-bottom-width: 3px
    }
  
    .print\:border-l-3 {
      border-left-width: 3px
    }
  
    .print\:border-t-4 {
      border-top-width: 4px
    }
  
    .print\:border-r-4 {
      border-right-width: 4px
    }
  
    .print\:border-b-4 {
      border-bottom-width: 4px
    }
  
    .print\:border-l-4 {
      border-left-width: 4px
    }
  
    .print\:border-t-8 {
      border-top-width: 8px
    }
  
    .print\:border-r-8 {
      border-right-width: 8px
    }
  
    .print\:border-b-8 {
      border-bottom-width: 8px
    }
  
    .print\:border-l-8 {
      border-left-width: 8px
    }
  
    .print\:border-t {
      border-top-width: 1px
    }
  
    .print\:border-r {
      border-right-width: 1px
    }
  
    .print\:border-b {
      border-bottom-width: 1px
    }
  
    .print\:border-l {
      border-left-width: 1px
    }
  
    .print\:cursor-auto {
      cursor: auto
    }
  
    .print\:cursor-default {
      cursor: default
    }
  
    .print\:cursor-pointer {
      cursor: pointer
    }
  
    .print\:cursor-wait {
      cursor: wait
    }
  
    .print\:cursor-text {
      cursor: text
    }
  
    .print\:cursor-move {
      cursor: move
    }
  
    .print\:cursor-not-allowed {
      cursor: not-allowed
    }
  
    .print\:block {
      display: block
    }
  
    .print\:inline-block {
      display: inline-block
    }
  
    .print\:inline {
      display: inline
    }
  
    .print\:flex {
      display: flex
    }
  
    .print\:inline-flex {
      display: inline-flex
    }
  
    .print\:table {
      display: table
    }
  
    .print\:table-row {
      display: table-row
    }
  
    .print\:table-cell {
      display: table-cell
    }
  
    .print\:hidden {
      display: none
    }
  
    .print\:hover\:block:hover {
      display: block
    }
  
    .print\:hover\:inline-block:hover {
      display: inline-block
    }
  
    .print\:hover\:inline:hover {
      display: inline
    }
  
    .print\:hover\:flex:hover {
      display: flex
    }
  
    .print\:hover\:inline-flex:hover {
      display: inline-flex
    }
  
    .print\:hover\:table:hover {
      display: table
    }
  
    .print\:hover\:table-row:hover {
      display: table-row
    }
  
    .print\:hover\:table-cell:hover {
      display: table-cell
    }
  
    .print\:hover\:hidden:hover {
      display: none
    }
  
    .print\:focus\:block:focus {
      display: block
    }
  
    .print\:focus\:inline-block:focus {
      display: inline-block
    }
  
    .print\:focus\:inline:focus {
      display: inline
    }
  
    .print\:focus\:flex:focus {
      display: flex
    }
  
    .print\:focus\:inline-flex:focus {
      display: inline-flex
    }
  
    .print\:focus\:table:focus {
      display: table
    }
  
    .print\:focus\:table-row:focus {
      display: table-row
    }
  
    .print\:focus\:table-cell:focus {
      display: table-cell
    }
  
    .print\:focus\:hidden:focus {
      display: none
    }
  
    .print\:flex-row {
      flex-direction: row
    }
  
    .print\:flex-row-reverse {
      flex-direction: row-reverse
    }
  
    .print\:flex-col {
      flex-direction: column
    }
  
    .print\:flex-col-reverse {
      flex-direction: column-reverse
    }
  
    .print\:flex-wrap {
      flex-wrap: wrap
    }
  
    .print\:flex-wrap-reverse {
      flex-wrap: wrap-reverse
    }
  
    .print\:flex-no-wrap {
      flex-wrap: nowrap
    }
  
    .print\:items-start {
      align-items: flex-start
    }
  
    .print\:items-end {
      align-items: flex-end
    }
  
    .print\:items-center {
      align-items: center
    }
  
    .print\:items-baseline {
      align-items: baseline
    }
  
    .print\:items-stretch {
      align-items: stretch
    }
  
    .print\:self-auto {
      align-self: auto
    }
  
    .print\:self-start {
      align-self: flex-start
    }
  
    .print\:self-end {
      align-self: flex-end
    }
  
    .print\:self-center {
      align-self: center
    }
  
    .print\:self-stretch {
      align-self: stretch
    }
  
    .print\:justify-start {
      justify-content: flex-start
    }
  
    .print\:justify-end {
      justify-content: flex-end
    }
  
    .print\:justify-center {
      justify-content: center
    }
  
    .print\:justify-between {
      justify-content: space-between
    }
  
    .print\:justify-around {
      justify-content: space-around
    }
  
    .print\:content-center {
      align-content: center
    }
  
    .print\:content-start {
      align-content: flex-start
    }
  
    .print\:content-end {
      align-content: flex-end
    }
  
    .print\:content-between {
      align-content: space-between
    }
  
    .print\:content-around {
      align-content: space-around
    }
  
    .print\:flex-1 {
      flex: 1 1
    }
  
    .print\:flex-auto {
      flex: 1 1 auto
    }
  
    .print\:flex-initial {
      flex: 0 1 auto
    }
  
    .print\:flex-none {
      flex: none
    }
  
    .print\:flex-grow-0 {
      flex-grow: 0
    }
  
    .print\:flex-grow {
      flex-grow: 1
    }
  
    .print\:flex-shrink-0 {
      flex-shrink: 0
    }
  
    .print\:flex-shrink {
      flex-shrink: 1
    }
  
    .print\:order-1 {
      order: 1
    }
  
    .print\:order-2 {
      order: 2
    }
  
    .print\:order-3 {
      order: 3
    }
  
    .print\:order-4 {
      order: 4
    }
  
    .print\:order-5 {
      order: 5
    }
  
    .print\:order-6 {
      order: 6
    }
  
    .print\:order-7 {
      order: 7
    }
  
    .print\:order-8 {
      order: 8
    }
  
    .print\:order-9 {
      order: 9
    }
  
    .print\:order-10 {
      order: 10
    }
  
    .print\:order-11 {
      order: 11
    }
  
    .print\:order-12 {
      order: 12
    }
  
    .print\:order-first {
      order: -9999
    }
  
    .print\:order-last {
      order: 9999
    }
  
    .print\:order-none {
      order: 0
    }
  
    .print\:float-right {
      float: right
    }
  
    .print\:float-left {
      float: left
    }
  
    .print\:float-none {
      float: none
    }
  
    .print\:clearfix:after {
      content: "";
      display: table;
      clear: both
    }
  
    .print\:font-sans {
      font-family: Muli, Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
    }
  
    .print\:font-serif {
      font-family: Constantia, Lucida Bright, Lucidabright, Lucida Serif, Lucida, DejaVu Serif, Bitstream Vera Serif, Liberation Serif, Georgia, serif
    }
  
    .print\:font-mono {
      font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
    }
  
    .print\:font-100 {
      font-weight: 100
    }
  
    .print\:font-200 {
      font-weight: 200
    }
  
    .print\:font-300 {
      font-weight: 300
    }
  
    .print\:font-400 {
      font-weight: 400
    }
  
    .print\:font-500 {
      font-weight: 500
    }
  
    .print\:font-600 {
      font-weight: 600
    }
  
    .print\:font-700 {
      font-weight: 700
    }
  
    .print\:font-800 {
      font-weight: 800
    }
  
    .print\:font-900 {
      font-weight: 900
    }
  
    .print\:font-hairline {
      font-weight: 100
    }
  
    .print\:font-thin {
      font-weight: 200
    }
  
    .print\:font-light {
      font-weight: 300
    }
  
    .print\:font-normal {
      font-weight: 400
    }
  
    .print\:font-medium {
      font-weight: 500
    }
  
    .print\:font-semibold {
      font-weight: 600
    }
  
    .print\:font-bold {
      font-weight: 700
    }
  
    .print\:font-extrabold {
      font-weight: 800
    }
  
    .print\:font-black {
      font-weight: 900
    }
  
    .print\:hover\:font-100:hover {
      font-weight: 100
    }
  
    .print\:hover\:font-200:hover {
      font-weight: 200
    }
  
    .print\:hover\:font-300:hover {
      font-weight: 300
    }
  
    .print\:hover\:font-400:hover {
      font-weight: 400
    }
  
    .print\:hover\:font-500:hover {
      font-weight: 500
    }
  
    .print\:hover\:font-600:hover {
      font-weight: 600
    }
  
    .print\:hover\:font-700:hover {
      font-weight: 700
    }
  
    .print\:hover\:font-800:hover {
      font-weight: 800
    }
  
    .print\:hover\:font-900:hover {
      font-weight: 900
    }
  
    .print\:hover\:font-hairline:hover {
      font-weight: 100
    }
  
    .print\:hover\:font-thin:hover {
      font-weight: 200
    }
  
    .print\:hover\:font-light:hover {
      font-weight: 300
    }
  
    .print\:hover\:font-normal:hover {
      font-weight: 400
    }
  
    .print\:hover\:font-medium:hover {
      font-weight: 500
    }
  
    .print\:hover\:font-semibold:hover {
      font-weight: 600
    }
  
    .print\:hover\:font-bold:hover {
      font-weight: 700
    }
  
    .print\:hover\:font-extrabold:hover {
      font-weight: 800
    }
  
    .print\:hover\:font-black:hover {
      font-weight: 900
    }
  
    .print\:focus\:font-100:focus {
      font-weight: 100
    }
  
    .print\:focus\:font-200:focus {
      font-weight: 200
    }
  
    .print\:focus\:font-300:focus {
      font-weight: 300
    }
  
    .print\:focus\:font-400:focus {
      font-weight: 400
    }
  
    .print\:focus\:font-500:focus {
      font-weight: 500
    }
  
    .print\:focus\:font-600:focus {
      font-weight: 600
    }
  
    .print\:focus\:font-700:focus {
      font-weight: 700
    }
  
    .print\:focus\:font-800:focus {
      font-weight: 800
    }
  
    .print\:focus\:font-900:focus {
      font-weight: 900
    }
  
    .print\:focus\:font-hairline:focus {
      font-weight: 100
    }
  
    .print\:focus\:font-thin:focus {
      font-weight: 200
    }
  
    .print\:focus\:font-light:focus {
      font-weight: 300
    }
  
    .print\:focus\:font-normal:focus {
      font-weight: 400
    }
  
    .print\:focus\:font-medium:focus {
      font-weight: 500
    }
  
    .print\:focus\:font-semibold:focus {
      font-weight: 600
    }
  
    .print\:focus\:font-bold:focus {
      font-weight: 700
    }
  
    .print\:focus\:font-extrabold:focus {
      font-weight: 800
    }
  
    .print\:focus\:font-black:focus {
      font-weight: 900
    }
  
    .print\:h-0 {
      height: 0
    }
  
    .print\:h-1 {
      height: 0.25rem
    }
  
    .print\:h-2 {
      height: 0.5rem
    }
  
    .print\:h-3 {
      height: 0.75rem
    }
  
    .print\:h-4 {
      height: 0.4rem
    }
  
    .print\:h-5 {
      height: 1.25rem
    }
  
    .print\:h-6 {
      height: 0.6rem
    }
  
    .print\:h-8 {
      height: 0.8rem
    }
  
    .print\:h-10 {
      height: 2.5rem
    }
  
    .print\:h-12 {
      height: 1.2rem
    }
  
    .print\:h-16 {
      height: 1.6rem
    }
  
    .print\:h-20 {
      height: 2rem
    }
  
    .print\:h-24 {
      height: 2.4rem
    }
  
    .print\:h-28 {
      height: 2.8rem
    }
  
    .print\:h-32 {
      height: 3.2rem
    }
  
    .print\:h-36 {
      height: 3.6rem
    }
  
    .print\:h-40 {
      height: 4rem
    }
  
    .print\:h-44 {
      height: 4.4rem
    }
  
    .print\:h-48 {
      height: 4.8rem
    }
  
    .print\:h-52 {
      height: 5.2rem
    }
  
    .print\:h-56 {
      height: 5.6rem
    }
  
    .print\:h-60 {
      height: 6rem
    }
  
    .print\:h-64 {
      height: 6.4rem
    }
  
    .print\:h-68 {
      height: 6.8rem
    }
  
    .print\:h-72 {
      height: 7.2rem
    }
  
    .print\:h-76 {
      height: 7.6rem
    }
  
    .print\:h-80 {
      height: 8rem
    }
  
    .print\:h-84 {
      height: 8.4rem
    }
  
    .print\:h-88 {
      height: 8.8rem
    }
  
    .print\:h-92 {
      height: 9.2rem
    }
  
    .print\:h-96 {
      height: 9.6rem
    }
  
    .print\:h-128 {
      height: 12.8rem
    }
  
    .print\:h-136 {
      height: 13.6rem
    }
  
    .print\:h-160 {
      height: 16rem
    }
  
    .print\:h-192 {
      height: 19.2rem
    }
  
    .print\:h-200 {
      height: 20rem
    }
  
    .print\:h-208 {
      height: 20.8rem
    }
  
    .print\:h-216 {
      height: 21.6rem
    }
  
    .print\:h-224 {
      height: 22.4rem
    }
  
    .print\:h-256 {
      height: 25.6rem
    }
  
    .print\:h-288 {
      height: 28.8rem
    }
  
    .print\:h-320 {
      height: 32rem
    }
  
    .print\:h-360 {
      height: 36rem
    }
  
    .print\:h-384 {
      height: 38.4rem
    }
  
    .print\:h-400 {
      height: 40rem
    }
  
    .print\:h-512 {
      height: 51.2rem
    }
  
    .print\:h-640 {
      height: 64rem
    }
  
    .print\:h-auto {
      height: auto
    }
  
    .print\:h-px {
      height: 1px
    }
  
    .print\:h-xs {
      height: 32rem
    }
  
    .print\:h-sm {
      height: 48rem
    }
  
    .print\:h-md {
      height: 64rem
    }
  
    .print\:h-lg {
      height: 80rem
    }
  
    .print\:h-xl {
      height: 96rem
    }
  
    .print\:h-2xl {
      height: 112rem
    }
  
    .print\:h-3xl {
      height: 128rem
    }
  
    .print\:h-4xl {
      height: 144rem
    }
  
    .print\:h-5xl {
      height: 160rem
    }
  
    .print\:h-full {
      height: 100%
    }
  
    .print\:h-screen {
      height: 100vh
    }
  
    .print\:leading-none {
      line-height: 1
    }
  
    .print\:leading-tight {
      line-height: 1.25
    }
  
    .print\:leading-snug {
      line-height: 1.375
    }
  
    .print\:leading-normal {
      line-height: 1.5
    }
  
    .print\:leading-relaxed {
      line-height: 1.625
    }
  
    .print\:leading-loose {
      line-height: 2
    }
  
    .print\:list-inside {
      list-style-position: inside
    }
  
    .print\:list-outside {
      list-style-position: outside
    }
  
    .print\:list-none {
      list-style-type: none
    }
  
    .print\:list-disc {
      list-style-type: disc
    }
  
    .print\:list-decimal {
      list-style-type: decimal
    }
  
    .print\:m-0 {
      margin: 0
    }
  
    .print\:m-1 {
      margin: 0.25rem
    }
  
    .print\:m-2 {
      margin: 0.5rem
    }
  
    .print\:m-3 {
      margin: 0.75rem
    }
  
    .print\:m-4 {
      margin: 0.4rem
    }
  
    .print\:m-5 {
      margin: 1.25rem
    }
  
    .print\:m-6 {
      margin: 0.6rem
    }
  
    .print\:m-8 {
      margin: 0.8rem
    }
  
    .print\:m-10 {
      margin: 2.5rem
    }
  
    .print\:m-12 {
      margin: 1.2rem
    }
  
    .print\:m-16 {
      margin: 1.6rem
    }
  
    .print\:m-20 {
      margin: 2rem
    }
  
    .print\:m-24 {
      margin: 2.4rem
    }
  
    .print\:m-28 {
      margin: 2.8rem
    }
  
    .print\:m-32 {
      margin: 3.2rem
    }
  
    .print\:m-36 {
      margin: 3.6rem
    }
  
    .print\:m-40 {
      margin: 4rem
    }
  
    .print\:m-44 {
      margin: 4.4rem
    }
  
    .print\:m-48 {
      margin: 4.8rem
    }
  
    .print\:m-52 {
      margin: 5.2rem
    }
  
    .print\:m-56 {
      margin: 5.6rem
    }
  
    .print\:m-60 {
      margin: 6rem
    }
  
    .print\:m-64 {
      margin: 6.4rem
    }
  
    .print\:m-68 {
      margin: 6.8rem
    }
  
    .print\:m-72 {
      margin: 7.2rem
    }
  
    .print\:m-76 {
      margin: 7.6rem
    }
  
    .print\:m-80 {
      margin: 8rem
    }
  
    .print\:m-84 {
      margin: 8.4rem
    }
  
    .print\:m-88 {
      margin: 8.8rem
    }
  
    .print\:m-92 {
      margin: 9.2rem
    }
  
    .print\:m-96 {
      margin: 9.6rem
    }
  
    .print\:m-128 {
      margin: 12.8rem
    }
  
    .print\:m-136 {
      margin: 13.6rem
    }
  
    .print\:m-160 {
      margin: 16rem
    }
  
    .print\:m-192 {
      margin: 19.2rem
    }
  
    .print\:m-200 {
      margin: 20rem
    }
  
    .print\:m-208 {
      margin: 20.8rem
    }
  
    .print\:m-216 {
      margin: 21.6rem
    }
  
    .print\:m-224 {
      margin: 22.4rem
    }
  
    .print\:m-256 {
      margin: 25.6rem
    }
  
    .print\:m-288 {
      margin: 28.8rem
    }
  
    .print\:m-320 {
      margin: 32rem
    }
  
    .print\:m-360 {
      margin: 36rem
    }
  
    .print\:m-384 {
      margin: 38.4rem
    }
  
    .print\:m-400 {
      margin: 40rem
    }
  
    .print\:m-512 {
      margin: 51.2rem
    }
  
    .print\:m-640 {
      margin: 64rem
    }
  
    .print\:m-auto {
      margin: auto
    }
  
    .print\:m-px {
      margin: 1px
    }
  
    .print\:m-xs {
      margin: 32rem
    }
  
    .print\:m-sm {
      margin: 48rem
    }
  
    .print\:m-md {
      margin: 64rem
    }
  
    .print\:m-lg {
      margin: 80rem
    }
  
    .print\:m-xl {
      margin: 96rem
    }
  
    .print\:m-2xl {
      margin: 112rem
    }
  
    .print\:m-3xl {
      margin: 128rem
    }
  
    .print\:m-4xl {
      margin: 144rem
    }
  
    .print\:m-5xl {
      margin: 160rem
    }
  
    .print\:-m-1 {
      margin: -0.25rem
    }
  
    .print\:-m-2 {
      margin: -0.5rem
    }
  
    .print\:-m-3 {
      margin: -0.75rem
    }
  
    .print\:-m-4 {
      margin: -0.4rem
    }
  
    .print\:-m-5 {
      margin: -1.25rem
    }
  
    .print\:-m-6 {
      margin: -0.6rem
    }
  
    .print\:-m-8 {
      margin: -0.8rem
    }
  
    .print\:-m-10 {
      margin: -2.5rem
    }
  
    .print\:-m-12 {
      margin: -1.2rem
    }
  
    .print\:-m-16 {
      margin: -1.6rem
    }
  
    .print\:-m-20 {
      margin: -2rem
    }
  
    .print\:-m-24 {
      margin: -2.4rem
    }
  
    .print\:-m-28 {
      margin: -2.8rem
    }
  
    .print\:-m-32 {
      margin: -3.2rem
    }
  
    .print\:-m-36 {
      margin: -3.6rem
    }
  
    .print\:-m-40 {
      margin: -4rem
    }
  
    .print\:-m-44 {
      margin: -4.4rem
    }
  
    .print\:-m-48 {
      margin: -4.8rem
    }
  
    .print\:-m-52 {
      margin: -5.2rem
    }
  
    .print\:-m-56 {
      margin: -5.6rem
    }
  
    .print\:-m-60 {
      margin: -6rem
    }
  
    .print\:-m-64 {
      margin: -6.4rem
    }
  
    .print\:-m-68 {
      margin: -6.8rem
    }
  
    .print\:-m-72 {
      margin: -7.2rem
    }
  
    .print\:-m-76 {
      margin: -7.6rem
    }
  
    .print\:-m-80 {
      margin: -8rem
    }
  
    .print\:-m-84 {
      margin: -8.4rem
    }
  
    .print\:-m-88 {
      margin: -8.8rem
    }
  
    .print\:-m-92 {
      margin: -9.2rem
    }
  
    .print\:-m-96 {
      margin: -9.6rem
    }
  
    .print\:-m-128 {
      margin: -12.8rem
    }
  
    .print\:-m-136 {
      margin: -13.6rem
    }
  
    .print\:-m-160 {
      margin: -16rem
    }
  
    .print\:-m-192 {
      margin: -19.2rem
    }
  
    .print\:-m-200 {
      margin: -20rem
    }
  
    .print\:-m-208 {
      margin: -20.8rem
    }
  
    .print\:-m-216 {
      margin: -21.6rem
    }
  
    .print\:-m-224 {
      margin: -22.4rem
    }
  
    .print\:-m-256 {
      margin: -25.6rem
    }
  
    .print\:-m-288 {
      margin: -28.8rem
    }
  
    .print\:-m-320 {
      margin: -32rem
    }
  
    .print\:-m-360 {
      margin: -36rem
    }
  
    .print\:-m-384 {
      margin: -38.4rem
    }
  
    .print\:-m-400 {
      margin: -40rem
    }
  
    .print\:-m-512 {
      margin: -51.2rem
    }
  
    .print\:-m-640 {
      margin: -64rem
    }
  
    .print\:-m-px {
      margin: -1px
    }
  
    .print\:-m-xs {
      margin: -32rem
    }
  
    .print\:-m-sm {
      margin: -48rem
    }
  
    .print\:-m-md {
      margin: -64rem
    }
  
    .print\:-m-lg {
      margin: -80rem
    }
  
    .print\:-m-xl {
      margin: -96rem
    }
  
    .print\:-m-2xl {
      margin: -112rem
    }
  
    .print\:-m-3xl {
      margin: -128rem
    }
  
    .print\:-m-4xl {
      margin: -144rem
    }
  
    .print\:-m-5xl {
      margin: -160rem
    }
  
    .print\:-m-auto {
      margin: -auto
    }
  
    .print\:my-0 {
      margin-top: 0;
      margin-bottom: 0
    }
  
    .print\:mx-0 {
      margin-left: 0;
      margin-right: 0
    }
  
    .print\:my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem
    }
  
    .print\:mx-1 {
      margin-left: 0.25rem;
      margin-right: 0.25rem
    }
  
    .print\:my-2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem
    }
  
    .print\:mx-2 {
      margin-left: 0.5rem;
      margin-right: 0.5rem
    }
  
    .print\:my-3 {
      margin-top: 0.75rem;
      margin-bottom: 0.75rem
    }
  
    .print\:mx-3 {
      margin-left: 0.75rem;
      margin-right: 0.75rem
    }
  
    .print\:my-4 {
      margin-top: 0.4rem;
      margin-bottom: 0.4rem
    }
  
    .print\:mx-4 {
      margin-left: 0.4rem;
      margin-right: 0.4rem
    }
  
    .print\:my-5 {
      margin-top: 1.25rem;
      margin-bottom: 1.25rem
    }
  
    .print\:mx-5 {
      margin-left: 1.25rem;
      margin-right: 1.25rem
    }
  
    .print\:my-6 {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem
    }
  
    .print\:mx-6 {
      margin-left: 0.6rem;
      margin-right: 0.6rem
    }
  
    .print\:my-8 {
      margin-top: 0.8rem;
      margin-bottom: 0.8rem
    }
  
    .print\:mx-8 {
      margin-left: 0.8rem;
      margin-right: 0.8rem
    }
  
    .print\:my-10 {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem
    }
  
    .print\:mx-10 {
      margin-left: 2.5rem;
      margin-right: 2.5rem
    }
  
    .print\:my-12 {
      margin-top: 1.2rem;
      margin-bottom: 1.2rem
    }
  
    .print\:mx-12 {
      margin-left: 1.2rem;
      margin-right: 1.2rem
    }
  
    .print\:my-16 {
      margin-top: 1.6rem;
      margin-bottom: 1.6rem
    }
  
    .print\:mx-16 {
      margin-left: 1.6rem;
      margin-right: 1.6rem
    }
  
    .print\:my-20 {
      margin-top: 2rem;
      margin-bottom: 2rem
    }
  
    .print\:mx-20 {
      margin-left: 2rem;
      margin-right: 2rem
    }
  
    .print\:my-24 {
      margin-top: 2.4rem;
      margin-bottom: 2.4rem
    }
  
    .print\:mx-24 {
      margin-left: 2.4rem;
      margin-right: 2.4rem
    }
  
    .print\:my-28 {
      margin-top: 2.8rem;
      margin-bottom: 2.8rem
    }
  
    .print\:mx-28 {
      margin-left: 2.8rem;
      margin-right: 2.8rem
    }
  
    .print\:my-32 {
      margin-top: 3.2rem;
      margin-bottom: 3.2rem
    }
  
    .print\:mx-32 {
      margin-left: 3.2rem;
      margin-right: 3.2rem
    }
  
    .print\:my-36 {
      margin-top: 3.6rem;
      margin-bottom: 3.6rem
    }
  
    .print\:mx-36 {
      margin-left: 3.6rem;
      margin-right: 3.6rem
    }
  
    .print\:my-40 {
      margin-top: 4rem;
      margin-bottom: 4rem
    }
  
    .print\:mx-40 {
      margin-left: 4rem;
      margin-right: 4rem
    }
  
    .print\:my-44 {
      margin-top: 4.4rem;
      margin-bottom: 4.4rem
    }
  
    .print\:mx-44 {
      margin-left: 4.4rem;
      margin-right: 4.4rem
    }
  
    .print\:my-48 {
      margin-top: 4.8rem;
      margin-bottom: 4.8rem
    }
  
    .print\:mx-48 {
      margin-left: 4.8rem;
      margin-right: 4.8rem
    }
  
    .print\:my-52 {
      margin-top: 5.2rem;
      margin-bottom: 5.2rem
    }
  
    .print\:mx-52 {
      margin-left: 5.2rem;
      margin-right: 5.2rem
    }
  
    .print\:my-56 {
      margin-top: 5.6rem;
      margin-bottom: 5.6rem
    }
  
    .print\:mx-56 {
      margin-left: 5.6rem;
      margin-right: 5.6rem
    }
  
    .print\:my-60 {
      margin-top: 6rem;
      margin-bottom: 6rem
    }
  
    .print\:mx-60 {
      margin-left: 6rem;
      margin-right: 6rem
    }
  
    .print\:my-64 {
      margin-top: 6.4rem;
      margin-bottom: 6.4rem
    }
  
    .print\:mx-64 {
      margin-left: 6.4rem;
      margin-right: 6.4rem
    }
  
    .print\:my-68 {
      margin-top: 6.8rem;
      margin-bottom: 6.8rem
    }
  
    .print\:mx-68 {
      margin-left: 6.8rem;
      margin-right: 6.8rem
    }
  
    .print\:my-72 {
      margin-top: 7.2rem;
      margin-bottom: 7.2rem
    }
  
    .print\:mx-72 {
      margin-left: 7.2rem;
      margin-right: 7.2rem
    }
  
    .print\:my-76 {
      margin-top: 7.6rem;
      margin-bottom: 7.6rem
    }
  
    .print\:mx-76 {
      margin-left: 7.6rem;
      margin-right: 7.6rem
    }
  
    .print\:my-80 {
      margin-top: 8rem;
      margin-bottom: 8rem
    }
  
    .print\:mx-80 {
      margin-left: 8rem;
      margin-right: 8rem
    }
  
    .print\:my-84 {
      margin-top: 8.4rem;
      margin-bottom: 8.4rem
    }
  
    .print\:mx-84 {
      margin-left: 8.4rem;
      margin-right: 8.4rem
    }
  
    .print\:my-88 {
      margin-top: 8.8rem;
      margin-bottom: 8.8rem
    }
  
    .print\:mx-88 {
      margin-left: 8.8rem;
      margin-right: 8.8rem
    }
  
    .print\:my-92 {
      margin-top: 9.2rem;
      margin-bottom: 9.2rem
    }
  
    .print\:mx-92 {
      margin-left: 9.2rem;
      margin-right: 9.2rem
    }
  
    .print\:my-96 {
      margin-top: 9.6rem;
      margin-bottom: 9.6rem
    }
  
    .print\:mx-96 {
      margin-left: 9.6rem;
      margin-right: 9.6rem
    }
  
    .print\:my-128 {
      margin-top: 12.8rem;
      margin-bottom: 12.8rem
    }
  
    .print\:mx-128 {
      margin-left: 12.8rem;
      margin-right: 12.8rem
    }
  
    .print\:my-136 {
      margin-top: 13.6rem;
      margin-bottom: 13.6rem
    }
  
    .print\:mx-136 {
      margin-left: 13.6rem;
      margin-right: 13.6rem
    }
  
    .print\:my-160 {
      margin-top: 16rem;
      margin-bottom: 16rem
    }
  
    .print\:mx-160 {
      margin-left: 16rem;
      margin-right: 16rem
    }
  
    .print\:my-192 {
      margin-top: 19.2rem;
      margin-bottom: 19.2rem
    }
  
    .print\:mx-192 {
      margin-left: 19.2rem;
      margin-right: 19.2rem
    }
  
    .print\:my-200 {
      margin-top: 20rem;
      margin-bottom: 20rem
    }
  
    .print\:mx-200 {
      margin-left: 20rem;
      margin-right: 20rem
    }
  
    .print\:my-208 {
      margin-top: 20.8rem;
      margin-bottom: 20.8rem
    }
  
    .print\:mx-208 {
      margin-left: 20.8rem;
      margin-right: 20.8rem
    }
  
    .print\:my-216 {
      margin-top: 21.6rem;
      margin-bottom: 21.6rem
    }
  
    .print\:mx-216 {
      margin-left: 21.6rem;
      margin-right: 21.6rem
    }
  
    .print\:my-224 {
      margin-top: 22.4rem;
      margin-bottom: 22.4rem
    }
  
    .print\:mx-224 {
      margin-left: 22.4rem;
      margin-right: 22.4rem
    }
  
    .print\:my-256 {
      margin-top: 25.6rem;
      margin-bottom: 25.6rem
    }
  
    .print\:mx-256 {
      margin-left: 25.6rem;
      margin-right: 25.6rem
    }
  
    .print\:my-288 {
      margin-top: 28.8rem;
      margin-bottom: 28.8rem
    }
  
    .print\:mx-288 {
      margin-left: 28.8rem;
      margin-right: 28.8rem
    }
  
    .print\:my-320 {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .print\:mx-320 {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .print\:my-360 {
      margin-top: 36rem;
      margin-bottom: 36rem
    }
  
    .print\:mx-360 {
      margin-left: 36rem;
      margin-right: 36rem
    }
  
    .print\:my-384 {
      margin-top: 38.4rem;
      margin-bottom: 38.4rem
    }
  
    .print\:mx-384 {
      margin-left: 38.4rem;
      margin-right: 38.4rem
    }
  
    .print\:my-400 {
      margin-top: 40rem;
      margin-bottom: 40rem
    }
  
    .print\:mx-400 {
      margin-left: 40rem;
      margin-right: 40rem
    }
  
    .print\:my-512 {
      margin-top: 51.2rem;
      margin-bottom: 51.2rem
    }
  
    .print\:mx-512 {
      margin-left: 51.2rem;
      margin-right: 51.2rem
    }
  
    .print\:my-640 {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .print\:mx-640 {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .print\:my-auto {
      margin-top: auto;
      margin-bottom: auto
    }
  
    .print\:mx-auto {
      margin-left: auto;
      margin-right: auto
    }
  
    .print\:my-px {
      margin-top: 1px;
      margin-bottom: 1px
    }
  
    .print\:mx-px {
      margin-left: 1px;
      margin-right: 1px
    }
  
    .print\:my-xs {
      margin-top: 32rem;
      margin-bottom: 32rem
    }
  
    .print\:mx-xs {
      margin-left: 32rem;
      margin-right: 32rem
    }
  
    .print\:my-sm {
      margin-top: 48rem;
      margin-bottom: 48rem
    }
  
    .print\:mx-sm {
      margin-left: 48rem;
      margin-right: 48rem
    }
  
    .print\:my-md {
      margin-top: 64rem;
      margin-bottom: 64rem
    }
  
    .print\:mx-md {
      margin-left: 64rem;
      margin-right: 64rem
    }
  
    .print\:my-lg {
      margin-top: 80rem;
      margin-bottom: 80rem
    }
  
    .print\:mx-lg {
      margin-left: 80rem;
      margin-right: 80rem
    }
  
    .print\:my-xl {
      margin-top: 96rem;
      margin-bottom: 96rem
    }
  
    .print\:mx-xl {
      margin-left: 96rem;
      margin-right: 96rem
    }
  
    .print\:my-2xl {
      margin-top: 112rem;
      margin-bottom: 112rem
    }
  
    .print\:mx-2xl {
      margin-left: 112rem;
      margin-right: 112rem
    }
  
    .print\:my-3xl {
      margin-top: 128rem;
      margin-bottom: 128rem
    }
  
    .print\:mx-3xl {
      margin-left: 128rem;
      margin-right: 128rem
    }
  
    .print\:my-4xl {
      margin-top: 144rem;
      margin-bottom: 144rem
    }
  
    .print\:mx-4xl {
      margin-left: 144rem;
      margin-right: 144rem
    }
  
    .print\:my-5xl {
      margin-top: 160rem;
      margin-bottom: 160rem
    }
  
    .print\:mx-5xl {
      margin-left: 160rem;
      margin-right: 160rem
    }
  
    .print\:-my-1 {
      margin-top: -0.25rem;
      margin-bottom: -0.25rem
    }
  
    .print\:-mx-1 {
      margin-left: -0.25rem;
      margin-right: -0.25rem
    }
  
    .print\:-my-2 {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem
    }
  
    .print\:-mx-2 {
      margin-left: -0.5rem;
      margin-right: -0.5rem
    }
  
    .print\:-my-3 {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem
    }
  
    .print\:-mx-3 {
      margin-left: -0.75rem;
      margin-right: -0.75rem
    }
  
    .print\:-my-4 {
      margin-top: -0.4rem;
      margin-bottom: -0.4rem
    }
  
    .print\:-mx-4 {
      margin-left: -0.4rem;
      margin-right: -0.4rem
    }
  
    .print\:-my-5 {
      margin-top: -1.25rem;
      margin-bottom: -1.25rem
    }
  
    .print\:-mx-5 {
      margin-left: -1.25rem;
      margin-right: -1.25rem
    }
  
    .print\:-my-6 {
      margin-top: -0.6rem;
      margin-bottom: -0.6rem
    }
  
    .print\:-mx-6 {
      margin-left: -0.6rem;
      margin-right: -0.6rem
    }
  
    .print\:-my-8 {
      margin-top: -0.8rem;
      margin-bottom: -0.8rem
    }
  
    .print\:-mx-8 {
      margin-left: -0.8rem;
      margin-right: -0.8rem
    }
  
    .print\:-my-10 {
      margin-top: -2.5rem;
      margin-bottom: -2.5rem
    }
  
    .print\:-mx-10 {
      margin-left: -2.5rem;
      margin-right: -2.5rem
    }
  
    .print\:-my-12 {
      margin-top: -1.2rem;
      margin-bottom: -1.2rem
    }
  
    .print\:-mx-12 {
      margin-left: -1.2rem;
      margin-right: -1.2rem
    }
  
    .print\:-my-16 {
      margin-top: -1.6rem;
      margin-bottom: -1.6rem
    }
  
    .print\:-mx-16 {
      margin-left: -1.6rem;
      margin-right: -1.6rem
    }
  
    .print\:-my-20 {
      margin-top: -2rem;
      margin-bottom: -2rem
    }
  
    .print\:-mx-20 {
      margin-left: -2rem;
      margin-right: -2rem
    }
  
    .print\:-my-24 {
      margin-top: -2.4rem;
      margin-bottom: -2.4rem
    }
  
    .print\:-mx-24 {
      margin-left: -2.4rem;
      margin-right: -2.4rem
    }
  
    .print\:-my-28 {
      margin-top: -2.8rem;
      margin-bottom: -2.8rem
    }
  
    .print\:-mx-28 {
      margin-left: -2.8rem;
      margin-right: -2.8rem
    }
  
    .print\:-my-32 {
      margin-top: -3.2rem;
      margin-bottom: -3.2rem
    }
  
    .print\:-mx-32 {
      margin-left: -3.2rem;
      margin-right: -3.2rem
    }
  
    .print\:-my-36 {
      margin-top: -3.6rem;
      margin-bottom: -3.6rem
    }
  
    .print\:-mx-36 {
      margin-left: -3.6rem;
      margin-right: -3.6rem
    }
  
    .print\:-my-40 {
      margin-top: -4rem;
      margin-bottom: -4rem
    }
  
    .print\:-mx-40 {
      margin-left: -4rem;
      margin-right: -4rem
    }
  
    .print\:-my-44 {
      margin-top: -4.4rem;
      margin-bottom: -4.4rem
    }
  
    .print\:-mx-44 {
      margin-left: -4.4rem;
      margin-right: -4.4rem
    }
  
    .print\:-my-48 {
      margin-top: -4.8rem;
      margin-bottom: -4.8rem
    }
  
    .print\:-mx-48 {
      margin-left: -4.8rem;
      margin-right: -4.8rem
    }
  
    .print\:-my-52 {
      margin-top: -5.2rem;
      margin-bottom: -5.2rem
    }
  
    .print\:-mx-52 {
      margin-left: -5.2rem;
      margin-right: -5.2rem
    }
  
    .print\:-my-56 {
      margin-top: -5.6rem;
      margin-bottom: -5.6rem
    }
  
    .print\:-mx-56 {
      margin-left: -5.6rem;
      margin-right: -5.6rem
    }
  
    .print\:-my-60 {
      margin-top: -6rem;
      margin-bottom: -6rem
    }
  
    .print\:-mx-60 {
      margin-left: -6rem;
      margin-right: -6rem
    }
  
    .print\:-my-64 {
      margin-top: -6.4rem;
      margin-bottom: -6.4rem
    }
  
    .print\:-mx-64 {
      margin-left: -6.4rem;
      margin-right: -6.4rem
    }
  
    .print\:-my-68 {
      margin-top: -6.8rem;
      margin-bottom: -6.8rem
    }
  
    .print\:-mx-68 {
      margin-left: -6.8rem;
      margin-right: -6.8rem
    }
  
    .print\:-my-72 {
      margin-top: -7.2rem;
      margin-bottom: -7.2rem
    }
  
    .print\:-mx-72 {
      margin-left: -7.2rem;
      margin-right: -7.2rem
    }
  
    .print\:-my-76 {
      margin-top: -7.6rem;
      margin-bottom: -7.6rem
    }
  
    .print\:-mx-76 {
      margin-left: -7.6rem;
      margin-right: -7.6rem
    }
  
    .print\:-my-80 {
      margin-top: -8rem;
      margin-bottom: -8rem
    }
  
    .print\:-mx-80 {
      margin-left: -8rem;
      margin-right: -8rem
    }
  
    .print\:-my-84 {
      margin-top: -8.4rem;
      margin-bottom: -8.4rem
    }
  
    .print\:-mx-84 {
      margin-left: -8.4rem;
      margin-right: -8.4rem
    }
  
    .print\:-my-88 {
      margin-top: -8.8rem;
      margin-bottom: -8.8rem
    }
  
    .print\:-mx-88 {
      margin-left: -8.8rem;
      margin-right: -8.8rem
    }
  
    .print\:-my-92 {
      margin-top: -9.2rem;
      margin-bottom: -9.2rem
    }
  
    .print\:-mx-92 {
      margin-left: -9.2rem;
      margin-right: -9.2rem
    }
  
    .print\:-my-96 {
      margin-top: -9.6rem;
      margin-bottom: -9.6rem
    }
  
    .print\:-mx-96 {
      margin-left: -9.6rem;
      margin-right: -9.6rem
    }
  
    .print\:-my-128 {
      margin-top: -12.8rem;
      margin-bottom: -12.8rem
    }
  
    .print\:-mx-128 {
      margin-left: -12.8rem;
      margin-right: -12.8rem
    }
  
    .print\:-my-136 {
      margin-top: -13.6rem;
      margin-bottom: -13.6rem
    }
  
    .print\:-mx-136 {
      margin-left: -13.6rem;
      margin-right: -13.6rem
    }
  
    .print\:-my-160 {
      margin-top: -16rem;
      margin-bottom: -16rem
    }
  
    .print\:-mx-160 {
      margin-left: -16rem;
      margin-right: -16rem
    }
  
    .print\:-my-192 {
      margin-top: -19.2rem;
      margin-bottom: -19.2rem
    }
  
    .print\:-mx-192 {
      margin-left: -19.2rem;
      margin-right: -19.2rem
    }
  
    .print\:-my-200 {
      margin-top: -20rem;
      margin-bottom: -20rem
    }
  
    .print\:-mx-200 {
      margin-left: -20rem;
      margin-right: -20rem
    }
  
    .print\:-my-208 {
      margin-top: -20.8rem;
      margin-bottom: -20.8rem
    }
  
    .print\:-mx-208 {
      margin-left: -20.8rem;
      margin-right: -20.8rem
    }
  
    .print\:-my-216 {
      margin-top: -21.6rem;
      margin-bottom: -21.6rem
    }
  
    .print\:-mx-216 {
      margin-left: -21.6rem;
      margin-right: -21.6rem
    }
  
    .print\:-my-224 {
      margin-top: -22.4rem;
      margin-bottom: -22.4rem
    }
  
    .print\:-mx-224 {
      margin-left: -22.4rem;
      margin-right: -22.4rem
    }
  
    .print\:-my-256 {
      margin-top: -25.6rem;
      margin-bottom: -25.6rem
    }
  
    .print\:-mx-256 {
      margin-left: -25.6rem;
      margin-right: -25.6rem
    }
  
    .print\:-my-288 {
      margin-top: -28.8rem;
      margin-bottom: -28.8rem
    }
  
    .print\:-mx-288 {
      margin-left: -28.8rem;
      margin-right: -28.8rem
    }
  
    .print\:-my-320 {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .print\:-mx-320 {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .print\:-my-360 {
      margin-top: -36rem;
      margin-bottom: -36rem
    }
  
    .print\:-mx-360 {
      margin-left: -36rem;
      margin-right: -36rem
    }
  
    .print\:-my-384 {
      margin-top: -38.4rem;
      margin-bottom: -38.4rem
    }
  
    .print\:-mx-384 {
      margin-left: -38.4rem;
      margin-right: -38.4rem
    }
  
    .print\:-my-400 {
      margin-top: -40rem;
      margin-bottom: -40rem
    }
  
    .print\:-mx-400 {
      margin-left: -40rem;
      margin-right: -40rem
    }
  
    .print\:-my-512 {
      margin-top: -51.2rem;
      margin-bottom: -51.2rem
    }
  
    .print\:-mx-512 {
      margin-left: -51.2rem;
      margin-right: -51.2rem
    }
  
    .print\:-my-640 {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .print\:-mx-640 {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .print\:-my-px {
      margin-top: -1px;
      margin-bottom: -1px
    }
  
    .print\:-mx-px {
      margin-left: -1px;
      margin-right: -1px
    }
  
    .print\:-my-xs {
      margin-top: -32rem;
      margin-bottom: -32rem
    }
  
    .print\:-mx-xs {
      margin-left: -32rem;
      margin-right: -32rem
    }
  
    .print\:-my-sm {
      margin-top: -48rem;
      margin-bottom: -48rem
    }
  
    .print\:-mx-sm {
      margin-left: -48rem;
      margin-right: -48rem
    }
  
    .print\:-my-md {
      margin-top: -64rem;
      margin-bottom: -64rem
    }
  
    .print\:-mx-md {
      margin-left: -64rem;
      margin-right: -64rem
    }
  
    .print\:-my-lg {
      margin-top: -80rem;
      margin-bottom: -80rem
    }
  
    .print\:-mx-lg {
      margin-left: -80rem;
      margin-right: -80rem
    }
  
    .print\:-my-xl {
      margin-top: -96rem;
      margin-bottom: -96rem
    }
  
    .print\:-mx-xl {
      margin-left: -96rem;
      margin-right: -96rem
    }
  
    .print\:-my-2xl {
      margin-top: -112rem;
      margin-bottom: -112rem
    }
  
    .print\:-mx-2xl {
      margin-left: -112rem;
      margin-right: -112rem
    }
  
    .print\:-my-3xl {
      margin-top: -128rem;
      margin-bottom: -128rem
    }
  
    .print\:-mx-3xl {
      margin-left: -128rem;
      margin-right: -128rem
    }
  
    .print\:-my-4xl {
      margin-top: -144rem;
      margin-bottom: -144rem
    }
  
    .print\:-mx-4xl {
      margin-left: -144rem;
      margin-right: -144rem
    }
  
    .print\:-my-5xl {
      margin-top: -160rem;
      margin-bottom: -160rem
    }
  
    .print\:-mx-5xl {
      margin-left: -160rem;
      margin-right: -160rem
    }
  
    .print\:-my-auto {
      margin-top: -auto;
      margin-bottom: -auto
    }
  
    .print\:-mx-auto {
      margin-left: -auto;
      margin-right: -auto
    }
  
    .print\:mt-0 {
      margin-top: 0
    }
  
    .print\:mr-0 {
      margin-right: 0
    }
  
    .print\:mb-0 {
      margin-bottom: 0
    }
  
    .print\:ml-0 {
      margin-left: 0
    }
  
    .print\:mt-1 {
      margin-top: 0.25rem
    }
  
    .print\:mr-1 {
      margin-right: 0.25rem
    }
  
    .print\:mb-1 {
      margin-bottom: 0.25rem
    }
  
    .print\:ml-1 {
      margin-left: 0.25rem
    }
  
    .print\:mt-2 {
      margin-top: 0.5rem
    }
  
    .print\:mr-2 {
      margin-right: 0.5rem
    }
  
    .print\:mb-2 {
      margin-bottom: 0.5rem
    }
  
    .print\:ml-2 {
      margin-left: 0.5rem
    }
  
    .print\:mt-3 {
      margin-top: 0.75rem
    }
  
    .print\:mr-3 {
      margin-right: 0.75rem
    }
  
    .print\:mb-3 {
      margin-bottom: 0.75rem
    }
  
    .print\:ml-3 {
      margin-left: 0.75rem
    }
  
    .print\:mt-4 {
      margin-top: 0.4rem
    }
  
    .print\:mr-4 {
      margin-right: 0.4rem
    }
  
    .print\:mb-4 {
      margin-bottom: 0.4rem
    }
  
    .print\:ml-4 {
      margin-left: 0.4rem
    }
  
    .print\:mt-5 {
      margin-top: 1.25rem
    }
  
    .print\:mr-5 {
      margin-right: 1.25rem
    }
  
    .print\:mb-5 {
      margin-bottom: 1.25rem
    }
  
    .print\:ml-5 {
      margin-left: 1.25rem
    }
  
    .print\:mt-6 {
      margin-top: 0.6rem
    }
  
    .print\:mr-6 {
      margin-right: 0.6rem
    }
  
    .print\:mb-6 {
      margin-bottom: 0.6rem
    }
  
    .print\:ml-6 {
      margin-left: 0.6rem
    }
  
    .print\:mt-8 {
      margin-top: 0.8rem
    }
  
    .print\:mr-8 {
      margin-right: 0.8rem
    }
  
    .print\:mb-8 {
      margin-bottom: 0.8rem
    }
  
    .print\:ml-8 {
      margin-left: 0.8rem
    }
  
    .print\:mt-10 {
      margin-top: 2.5rem
    }
  
    .print\:mr-10 {
      margin-right: 2.5rem
    }
  
    .print\:mb-10 {
      margin-bottom: 2.5rem
    }
  
    .print\:ml-10 {
      margin-left: 2.5rem
    }
  
    .print\:mt-12 {
      margin-top: 1.2rem
    }
  
    .print\:mr-12 {
      margin-right: 1.2rem
    }
  
    .print\:mb-12 {
      margin-bottom: 1.2rem
    }
  
    .print\:ml-12 {
      margin-left: 1.2rem
    }
  
    .print\:mt-16 {
      margin-top: 1.6rem
    }
  
    .print\:mr-16 {
      margin-right: 1.6rem
    }
  
    .print\:mb-16 {
      margin-bottom: 1.6rem
    }
  
    .print\:ml-16 {
      margin-left: 1.6rem
    }
  
    .print\:mt-20 {
      margin-top: 2rem
    }
  
    .print\:mr-20 {
      margin-right: 2rem
    }
  
    .print\:mb-20 {
      margin-bottom: 2rem
    }
  
    .print\:ml-20 {
      margin-left: 2rem
    }
  
    .print\:mt-24 {
      margin-top: 2.4rem
    }
  
    .print\:mr-24 {
      margin-right: 2.4rem
    }
  
    .print\:mb-24 {
      margin-bottom: 2.4rem
    }
  
    .print\:ml-24 {
      margin-left: 2.4rem
    }
  
    .print\:mt-28 {
      margin-top: 2.8rem
    }
  
    .print\:mr-28 {
      margin-right: 2.8rem
    }
  
    .print\:mb-28 {
      margin-bottom: 2.8rem
    }
  
    .print\:ml-28 {
      margin-left: 2.8rem
    }
  
    .print\:mt-32 {
      margin-top: 3.2rem
    }
  
    .print\:mr-32 {
      margin-right: 3.2rem
    }
  
    .print\:mb-32 {
      margin-bottom: 3.2rem
    }
  
    .print\:ml-32 {
      margin-left: 3.2rem
    }
  
    .print\:mt-36 {
      margin-top: 3.6rem
    }
  
    .print\:mr-36 {
      margin-right: 3.6rem
    }
  
    .print\:mb-36 {
      margin-bottom: 3.6rem
    }
  
    .print\:ml-36 {
      margin-left: 3.6rem
    }
  
    .print\:mt-40 {
      margin-top: 4rem
    }
  
    .print\:mr-40 {
      margin-right: 4rem
    }
  
    .print\:mb-40 {
      margin-bottom: 4rem
    }
  
    .print\:ml-40 {
      margin-left: 4rem
    }
  
    .print\:mt-44 {
      margin-top: 4.4rem
    }
  
    .print\:mr-44 {
      margin-right: 4.4rem
    }
  
    .print\:mb-44 {
      margin-bottom: 4.4rem
    }
  
    .print\:ml-44 {
      margin-left: 4.4rem
    }
  
    .print\:mt-48 {
      margin-top: 4.8rem
    }
  
    .print\:mr-48 {
      margin-right: 4.8rem
    }
  
    .print\:mb-48 {
      margin-bottom: 4.8rem
    }
  
    .print\:ml-48 {
      margin-left: 4.8rem
    }
  
    .print\:mt-52 {
      margin-top: 5.2rem
    }
  
    .print\:mr-52 {
      margin-right: 5.2rem
    }
  
    .print\:mb-52 {
      margin-bottom: 5.2rem
    }
  
    .print\:ml-52 {
      margin-left: 5.2rem
    }
  
    .print\:mt-56 {
      margin-top: 5.6rem
    }
  
    .print\:mr-56 {
      margin-right: 5.6rem
    }
  
    .print\:mb-56 {
      margin-bottom: 5.6rem
    }
  
    .print\:ml-56 {
      margin-left: 5.6rem
    }
  
    .print\:mt-60 {
      margin-top: 6rem
    }
  
    .print\:mr-60 {
      margin-right: 6rem
    }
  
    .print\:mb-60 {
      margin-bottom: 6rem
    }
  
    .print\:ml-60 {
      margin-left: 6rem
    }
  
    .print\:mt-64 {
      margin-top: 6.4rem
    }
  
    .print\:mr-64 {
      margin-right: 6.4rem
    }
  
    .print\:mb-64 {
      margin-bottom: 6.4rem
    }
  
    .print\:ml-64 {
      margin-left: 6.4rem
    }
  
    .print\:mt-68 {
      margin-top: 6.8rem
    }
  
    .print\:mr-68 {
      margin-right: 6.8rem
    }
  
    .print\:mb-68 {
      margin-bottom: 6.8rem
    }
  
    .print\:ml-68 {
      margin-left: 6.8rem
    }
  
    .print\:mt-72 {
      margin-top: 7.2rem
    }
  
    .print\:mr-72 {
      margin-right: 7.2rem
    }
  
    .print\:mb-72 {
      margin-bottom: 7.2rem
    }
  
    .print\:ml-72 {
      margin-left: 7.2rem
    }
  
    .print\:mt-76 {
      margin-top: 7.6rem
    }
  
    .print\:mr-76 {
      margin-right: 7.6rem
    }
  
    .print\:mb-76 {
      margin-bottom: 7.6rem
    }
  
    .print\:ml-76 {
      margin-left: 7.6rem
    }
  
    .print\:mt-80 {
      margin-top: 8rem
    }
  
    .print\:mr-80 {
      margin-right: 8rem
    }
  
    .print\:mb-80 {
      margin-bottom: 8rem
    }
  
    .print\:ml-80 {
      margin-left: 8rem
    }
  
    .print\:mt-84 {
      margin-top: 8.4rem
    }
  
    .print\:mr-84 {
      margin-right: 8.4rem
    }
  
    .print\:mb-84 {
      margin-bottom: 8.4rem
    }
  
    .print\:ml-84 {
      margin-left: 8.4rem
    }
  
    .print\:mt-88 {
      margin-top: 8.8rem
    }
  
    .print\:mr-88 {
      margin-right: 8.8rem
    }
  
    .print\:mb-88 {
      margin-bottom: 8.8rem
    }
  
    .print\:ml-88 {
      margin-left: 8.8rem
    }
  
    .print\:mt-92 {
      margin-top: 9.2rem
    }
  
    .print\:mr-92 {
      margin-right: 9.2rem
    }
  
    .print\:mb-92 {
      margin-bottom: 9.2rem
    }
  
    .print\:ml-92 {
      margin-left: 9.2rem
    }
  
    .print\:mt-96 {
      margin-top: 9.6rem
    }
  
    .print\:mr-96 {
      margin-right: 9.6rem
    }
  
    .print\:mb-96 {
      margin-bottom: 9.6rem
    }
  
    .print\:ml-96 {
      margin-left: 9.6rem
    }
  
    .print\:mt-128 {
      margin-top: 12.8rem
    }
  
    .print\:mr-128 {
      margin-right: 12.8rem
    }
  
    .print\:mb-128 {
      margin-bottom: 12.8rem
    }
  
    .print\:ml-128 {
      margin-left: 12.8rem
    }
  
    .print\:mt-136 {
      margin-top: 13.6rem
    }
  
    .print\:mr-136 {
      margin-right: 13.6rem
    }
  
    .print\:mb-136 {
      margin-bottom: 13.6rem
    }
  
    .print\:ml-136 {
      margin-left: 13.6rem
    }
  
    .print\:mt-160 {
      margin-top: 16rem
    }
  
    .print\:mr-160 {
      margin-right: 16rem
    }
  
    .print\:mb-160 {
      margin-bottom: 16rem
    }
  
    .print\:ml-160 {
      margin-left: 16rem
    }
  
    .print\:mt-192 {
      margin-top: 19.2rem
    }
  
    .print\:mr-192 {
      margin-right: 19.2rem
    }
  
    .print\:mb-192 {
      margin-bottom: 19.2rem
    }
  
    .print\:ml-192 {
      margin-left: 19.2rem
    }
  
    .print\:mt-200 {
      margin-top: 20rem
    }
  
    .print\:mr-200 {
      margin-right: 20rem
    }
  
    .print\:mb-200 {
      margin-bottom: 20rem
    }
  
    .print\:ml-200 {
      margin-left: 20rem
    }
  
    .print\:mt-208 {
      margin-top: 20.8rem
    }
  
    .print\:mr-208 {
      margin-right: 20.8rem
    }
  
    .print\:mb-208 {
      margin-bottom: 20.8rem
    }
  
    .print\:ml-208 {
      margin-left: 20.8rem
    }
  
    .print\:mt-216 {
      margin-top: 21.6rem
    }
  
    .print\:mr-216 {
      margin-right: 21.6rem
    }
  
    .print\:mb-216 {
      margin-bottom: 21.6rem
    }
  
    .print\:ml-216 {
      margin-left: 21.6rem
    }
  
    .print\:mt-224 {
      margin-top: 22.4rem
    }
  
    .print\:mr-224 {
      margin-right: 22.4rem
    }
  
    .print\:mb-224 {
      margin-bottom: 22.4rem
    }
  
    .print\:ml-224 {
      margin-left: 22.4rem
    }
  
    .print\:mt-256 {
      margin-top: 25.6rem
    }
  
    .print\:mr-256 {
      margin-right: 25.6rem
    }
  
    .print\:mb-256 {
      margin-bottom: 25.6rem
    }
  
    .print\:ml-256 {
      margin-left: 25.6rem
    }
  
    .print\:mt-288 {
      margin-top: 28.8rem
    }
  
    .print\:mr-288 {
      margin-right: 28.8rem
    }
  
    .print\:mb-288 {
      margin-bottom: 28.8rem
    }
  
    .print\:ml-288 {
      margin-left: 28.8rem
    }
  
    .print\:mt-320 {
      margin-top: 32rem
    }
  
    .print\:mr-320 {
      margin-right: 32rem
    }
  
    .print\:mb-320 {
      margin-bottom: 32rem
    }
  
    .print\:ml-320 {
      margin-left: 32rem
    }
  
    .print\:mt-360 {
      margin-top: 36rem
    }
  
    .print\:mr-360 {
      margin-right: 36rem
    }
  
    .print\:mb-360 {
      margin-bottom: 36rem
    }
  
    .print\:ml-360 {
      margin-left: 36rem
    }
  
    .print\:mt-384 {
      margin-top: 38.4rem
    }
  
    .print\:mr-384 {
      margin-right: 38.4rem
    }
  
    .print\:mb-384 {
      margin-bottom: 38.4rem
    }
  
    .print\:ml-384 {
      margin-left: 38.4rem
    }
  
    .print\:mt-400 {
      margin-top: 40rem
    }
  
    .print\:mr-400 {
      margin-right: 40rem
    }
  
    .print\:mb-400 {
      margin-bottom: 40rem
    }
  
    .print\:ml-400 {
      margin-left: 40rem
    }
  
    .print\:mt-512 {
      margin-top: 51.2rem
    }
  
    .print\:mr-512 {
      margin-right: 51.2rem
    }
  
    .print\:mb-512 {
      margin-bottom: 51.2rem
    }
  
    .print\:ml-512 {
      margin-left: 51.2rem
    }
  
    .print\:mt-640 {
      margin-top: 64rem
    }
  
    .print\:mr-640 {
      margin-right: 64rem
    }
  
    .print\:mb-640 {
      margin-bottom: 64rem
    }
  
    .print\:ml-640 {
      margin-left: 64rem
    }
  
    .print\:mt-auto {
      margin-top: auto
    }
  
    .print\:mr-auto {
      margin-right: auto
    }
  
    .print\:mb-auto {
      margin-bottom: auto
    }
  
    .print\:ml-auto {
      margin-left: auto
    }
  
    .print\:mt-px {
      margin-top: 1px
    }
  
    .print\:mr-px {
      margin-right: 1px
    }
  
    .print\:mb-px {
      margin-bottom: 1px
    }
  
    .print\:ml-px {
      margin-left: 1px
    }
  
    .print\:mt-xs {
      margin-top: 32rem
    }
  
    .print\:mr-xs {
      margin-right: 32rem
    }
  
    .print\:mb-xs {
      margin-bottom: 32rem
    }
  
    .print\:ml-xs {
      margin-left: 32rem
    }
  
    .print\:mt-sm {
      margin-top: 48rem
    }
  
    .print\:mr-sm {
      margin-right: 48rem
    }
  
    .print\:mb-sm {
      margin-bottom: 48rem
    }
  
    .print\:ml-sm {
      margin-left: 48rem
    }
  
    .print\:mt-md {
      margin-top: 64rem
    }
  
    .print\:mr-md {
      margin-right: 64rem
    }
  
    .print\:mb-md {
      margin-bottom: 64rem
    }
  
    .print\:ml-md {
      margin-left: 64rem
    }
  
    .print\:mt-lg {
      margin-top: 80rem
    }
  
    .print\:mr-lg {
      margin-right: 80rem
    }
  
    .print\:mb-lg {
      margin-bottom: 80rem
    }
  
    .print\:ml-lg {
      margin-left: 80rem
    }
  
    .print\:mt-xl {
      margin-top: 96rem
    }
  
    .print\:mr-xl {
      margin-right: 96rem
    }
  
    .print\:mb-xl {
      margin-bottom: 96rem
    }
  
    .print\:ml-xl {
      margin-left: 96rem
    }
  
    .print\:mt-2xl {
      margin-top: 112rem
    }
  
    .print\:mr-2xl {
      margin-right: 112rem
    }
  
    .print\:mb-2xl {
      margin-bottom: 112rem
    }
  
    .print\:ml-2xl {
      margin-left: 112rem
    }
  
    .print\:mt-3xl {
      margin-top: 128rem
    }
  
    .print\:mr-3xl {
      margin-right: 128rem
    }
  
    .print\:mb-3xl {
      margin-bottom: 128rem
    }
  
    .print\:ml-3xl {
      margin-left: 128rem
    }
  
    .print\:mt-4xl {
      margin-top: 144rem
    }
  
    .print\:mr-4xl {
      margin-right: 144rem
    }
  
    .print\:mb-4xl {
      margin-bottom: 144rem
    }
  
    .print\:ml-4xl {
      margin-left: 144rem
    }
  
    .print\:mt-5xl {
      margin-top: 160rem
    }
  
    .print\:mr-5xl {
      margin-right: 160rem
    }
  
    .print\:mb-5xl {
      margin-bottom: 160rem
    }
  
    .print\:ml-5xl {
      margin-left: 160rem
    }
  
    .print\:-mt-1 {
      margin-top: -0.25rem
    }
  
    .print\:-mr-1 {
      margin-right: -0.25rem
    }
  
    .print\:-mb-1 {
      margin-bottom: -0.25rem
    }
  
    .print\:-ml-1 {
      margin-left: -0.25rem
    }
  
    .print\:-mt-2 {
      margin-top: -0.5rem
    }
  
    .print\:-mr-2 {
      margin-right: -0.5rem
    }
  
    .print\:-mb-2 {
      margin-bottom: -0.5rem
    }
  
    .print\:-ml-2 {
      margin-left: -0.5rem
    }
  
    .print\:-mt-3 {
      margin-top: -0.75rem
    }
  
    .print\:-mr-3 {
      margin-right: -0.75rem
    }
  
    .print\:-mb-3 {
      margin-bottom: -0.75rem
    }
  
    .print\:-ml-3 {
      margin-left: -0.75rem
    }
  
    .print\:-mt-4 {
      margin-top: -0.4rem
    }
  
    .print\:-mr-4 {
      margin-right: -0.4rem
    }
  
    .print\:-mb-4 {
      margin-bottom: -0.4rem
    }
  
    .print\:-ml-4 {
      margin-left: -0.4rem
    }
  
    .print\:-mt-5 {
      margin-top: -1.25rem
    }
  
    .print\:-mr-5 {
      margin-right: -1.25rem
    }
  
    .print\:-mb-5 {
      margin-bottom: -1.25rem
    }
  
    .print\:-ml-5 {
      margin-left: -1.25rem
    }
  
    .print\:-mt-6 {
      margin-top: -0.6rem
    }
  
    .print\:-mr-6 {
      margin-right: -0.6rem
    }
  
    .print\:-mb-6 {
      margin-bottom: -0.6rem
    }
  
    .print\:-ml-6 {
      margin-left: -0.6rem
    }
  
    .print\:-mt-8 {
      margin-top: -0.8rem
    }
  
    .print\:-mr-8 {
      margin-right: -0.8rem
    }
  
    .print\:-mb-8 {
      margin-bottom: -0.8rem
    }
  
    .print\:-ml-8 {
      margin-left: -0.8rem
    }
  
    .print\:-mt-10 {
      margin-top: -2.5rem
    }
  
    .print\:-mr-10 {
      margin-right: -2.5rem
    }
  
    .print\:-mb-10 {
      margin-bottom: -2.5rem
    }
  
    .print\:-ml-10 {
      margin-left: -2.5rem
    }
  
    .print\:-mt-12 {
      margin-top: -1.2rem
    }
  
    .print\:-mr-12 {
      margin-right: -1.2rem
    }
  
    .print\:-mb-12 {
      margin-bottom: -1.2rem
    }
  
    .print\:-ml-12 {
      margin-left: -1.2rem
    }
  
    .print\:-mt-16 {
      margin-top: -1.6rem
    }
  
    .print\:-mr-16 {
      margin-right: -1.6rem
    }
  
    .print\:-mb-16 {
      margin-bottom: -1.6rem
    }
  
    .print\:-ml-16 {
      margin-left: -1.6rem
    }
  
    .print\:-mt-20 {
      margin-top: -2rem
    }
  
    .print\:-mr-20 {
      margin-right: -2rem
    }
  
    .print\:-mb-20 {
      margin-bottom: -2rem
    }
  
    .print\:-ml-20 {
      margin-left: -2rem
    }
  
    .print\:-mt-24 {
      margin-top: -2.4rem
    }
  
    .print\:-mr-24 {
      margin-right: -2.4rem
    }
  
    .print\:-mb-24 {
      margin-bottom: -2.4rem
    }
  
    .print\:-ml-24 {
      margin-left: -2.4rem
    }
  
    .print\:-mt-28 {
      margin-top: -2.8rem
    }
  
    .print\:-mr-28 {
      margin-right: -2.8rem
    }
  
    .print\:-mb-28 {
      margin-bottom: -2.8rem
    }
  
    .print\:-ml-28 {
      margin-left: -2.8rem
    }
  
    .print\:-mt-32 {
      margin-top: -3.2rem
    }
  
    .print\:-mr-32 {
      margin-right: -3.2rem
    }
  
    .print\:-mb-32 {
      margin-bottom: -3.2rem
    }
  
    .print\:-ml-32 {
      margin-left: -3.2rem
    }
  
    .print\:-mt-36 {
      margin-top: -3.6rem
    }
  
    .print\:-mr-36 {
      margin-right: -3.6rem
    }
  
    .print\:-mb-36 {
      margin-bottom: -3.6rem
    }
  
    .print\:-ml-36 {
      margin-left: -3.6rem
    }
  
    .print\:-mt-40 {
      margin-top: -4rem
    }
  
    .print\:-mr-40 {
      margin-right: -4rem
    }
  
    .print\:-mb-40 {
      margin-bottom: -4rem
    }
  
    .print\:-ml-40 {
      margin-left: -4rem
    }
  
    .print\:-mt-44 {
      margin-top: -4.4rem
    }
  
    .print\:-mr-44 {
      margin-right: -4.4rem
    }
  
    .print\:-mb-44 {
      margin-bottom: -4.4rem
    }
  
    .print\:-ml-44 {
      margin-left: -4.4rem
    }
  
    .print\:-mt-48 {
      margin-top: -4.8rem
    }
  
    .print\:-mr-48 {
      margin-right: -4.8rem
    }
  
    .print\:-mb-48 {
      margin-bottom: -4.8rem
    }
  
    .print\:-ml-48 {
      margin-left: -4.8rem
    }
  
    .print\:-mt-52 {
      margin-top: -5.2rem
    }
  
    .print\:-mr-52 {
      margin-right: -5.2rem
    }
  
    .print\:-mb-52 {
      margin-bottom: -5.2rem
    }
  
    .print\:-ml-52 {
      margin-left: -5.2rem
    }
  
    .print\:-mt-56 {
      margin-top: -5.6rem
    }
  
    .print\:-mr-56 {
      margin-right: -5.6rem
    }
  
    .print\:-mb-56 {
      margin-bottom: -5.6rem
    }
  
    .print\:-ml-56 {
      margin-left: -5.6rem
    }
  
    .print\:-mt-60 {
      margin-top: -6rem
    }
  
    .print\:-mr-60 {
      margin-right: -6rem
    }
  
    .print\:-mb-60 {
      margin-bottom: -6rem
    }
  
    .print\:-ml-60 {
      margin-left: -6rem
    }
  
    .print\:-mt-64 {
      margin-top: -6.4rem
    }
  
    .print\:-mr-64 {
      margin-right: -6.4rem
    }
  
    .print\:-mb-64 {
      margin-bottom: -6.4rem
    }
  
    .print\:-ml-64 {
      margin-left: -6.4rem
    }
  
    .print\:-mt-68 {
      margin-top: -6.8rem
    }
  
    .print\:-mr-68 {
      margin-right: -6.8rem
    }
  
    .print\:-mb-68 {
      margin-bottom: -6.8rem
    }
  
    .print\:-ml-68 {
      margin-left: -6.8rem
    }
  
    .print\:-mt-72 {
      margin-top: -7.2rem
    }
  
    .print\:-mr-72 {
      margin-right: -7.2rem
    }
  
    .print\:-mb-72 {
      margin-bottom: -7.2rem
    }
  
    .print\:-ml-72 {
      margin-left: -7.2rem
    }
  
    .print\:-mt-76 {
      margin-top: -7.6rem
    }
  
    .print\:-mr-76 {
      margin-right: -7.6rem
    }
  
    .print\:-mb-76 {
      margin-bottom: -7.6rem
    }
  
    .print\:-ml-76 {
      margin-left: -7.6rem
    }
  
    .print\:-mt-80 {
      margin-top: -8rem
    }
  
    .print\:-mr-80 {
      margin-right: -8rem
    }
  
    .print\:-mb-80 {
      margin-bottom: -8rem
    }
  
    .print\:-ml-80 {
      margin-left: -8rem
    }
  
    .print\:-mt-84 {
      margin-top: -8.4rem
    }
  
    .print\:-mr-84 {
      margin-right: -8.4rem
    }
  
    .print\:-mb-84 {
      margin-bottom: -8.4rem
    }
  
    .print\:-ml-84 {
      margin-left: -8.4rem
    }
  
    .print\:-mt-88 {
      margin-top: -8.8rem
    }
  
    .print\:-mr-88 {
      margin-right: -8.8rem
    }
  
    .print\:-mb-88 {
      margin-bottom: -8.8rem
    }
  
    .print\:-ml-88 {
      margin-left: -8.8rem
    }
  
    .print\:-mt-92 {
      margin-top: -9.2rem
    }
  
    .print\:-mr-92 {
      margin-right: -9.2rem
    }
  
    .print\:-mb-92 {
      margin-bottom: -9.2rem
    }
  
    .print\:-ml-92 {
      margin-left: -9.2rem
    }
  
    .print\:-mt-96 {
      margin-top: -9.6rem
    }
  
    .print\:-mr-96 {
      margin-right: -9.6rem
    }
  
    .print\:-mb-96 {
      margin-bottom: -9.6rem
    }
  
    .print\:-ml-96 {
      margin-left: -9.6rem
    }
  
    .print\:-mt-128 {
      margin-top: -12.8rem
    }
  
    .print\:-mr-128 {
      margin-right: -12.8rem
    }
  
    .print\:-mb-128 {
      margin-bottom: -12.8rem
    }
  
    .print\:-ml-128 {
      margin-left: -12.8rem
    }
  
    .print\:-mt-136 {
      margin-top: -13.6rem
    }
  
    .print\:-mr-136 {
      margin-right: -13.6rem
    }
  
    .print\:-mb-136 {
      margin-bottom: -13.6rem
    }
  
    .print\:-ml-136 {
      margin-left: -13.6rem
    }
  
    .print\:-mt-160 {
      margin-top: -16rem
    }
  
    .print\:-mr-160 {
      margin-right: -16rem
    }
  
    .print\:-mb-160 {
      margin-bottom: -16rem
    }
  
    .print\:-ml-160 {
      margin-left: -16rem
    }
  
    .print\:-mt-192 {
      margin-top: -19.2rem
    }
  
    .print\:-mr-192 {
      margin-right: -19.2rem
    }
  
    .print\:-mb-192 {
      margin-bottom: -19.2rem
    }
  
    .print\:-ml-192 {
      margin-left: -19.2rem
    }
  
    .print\:-mt-200 {
      margin-top: -20rem
    }
  
    .print\:-mr-200 {
      margin-right: -20rem
    }
  
    .print\:-mb-200 {
      margin-bottom: -20rem
    }
  
    .print\:-ml-200 {
      margin-left: -20rem
    }
  
    .print\:-mt-208 {
      margin-top: -20.8rem
    }
  
    .print\:-mr-208 {
      margin-right: -20.8rem
    }
  
    .print\:-mb-208 {
      margin-bottom: -20.8rem
    }
  
    .print\:-ml-208 {
      margin-left: -20.8rem
    }
  
    .print\:-mt-216 {
      margin-top: -21.6rem
    }
  
    .print\:-mr-216 {
      margin-right: -21.6rem
    }
  
    .print\:-mb-216 {
      margin-bottom: -21.6rem
    }
  
    .print\:-ml-216 {
      margin-left: -21.6rem
    }
  
    .print\:-mt-224 {
      margin-top: -22.4rem
    }
  
    .print\:-mr-224 {
      margin-right: -22.4rem
    }
  
    .print\:-mb-224 {
      margin-bottom: -22.4rem
    }
  
    .print\:-ml-224 {
      margin-left: -22.4rem
    }
  
    .print\:-mt-256 {
      margin-top: -25.6rem
    }
  
    .print\:-mr-256 {
      margin-right: -25.6rem
    }
  
    .print\:-mb-256 {
      margin-bottom: -25.6rem
    }
  
    .print\:-ml-256 {
      margin-left: -25.6rem
    }
  
    .print\:-mt-288 {
      margin-top: -28.8rem
    }
  
    .print\:-mr-288 {
      margin-right: -28.8rem
    }
  
    .print\:-mb-288 {
      margin-bottom: -28.8rem
    }
  
    .print\:-ml-288 {
      margin-left: -28.8rem
    }
  
    .print\:-mt-320 {
      margin-top: -32rem
    }
  
    .print\:-mr-320 {
      margin-right: -32rem
    }
  
    .print\:-mb-320 {
      margin-bottom: -32rem
    }
  
    .print\:-ml-320 {
      margin-left: -32rem
    }
  
    .print\:-mt-360 {
      margin-top: -36rem
    }
  
    .print\:-mr-360 {
      margin-right: -36rem
    }
  
    .print\:-mb-360 {
      margin-bottom: -36rem
    }
  
    .print\:-ml-360 {
      margin-left: -36rem
    }
  
    .print\:-mt-384 {
      margin-top: -38.4rem
    }
  
    .print\:-mr-384 {
      margin-right: -38.4rem
    }
  
    .print\:-mb-384 {
      margin-bottom: -38.4rem
    }
  
    .print\:-ml-384 {
      margin-left: -38.4rem
    }
  
    .print\:-mt-400 {
      margin-top: -40rem
    }
  
    .print\:-mr-400 {
      margin-right: -40rem
    }
  
    .print\:-mb-400 {
      margin-bottom: -40rem
    }
  
    .print\:-ml-400 {
      margin-left: -40rem
    }
  
    .print\:-mt-512 {
      margin-top: -51.2rem
    }
  
    .print\:-mr-512 {
      margin-right: -51.2rem
    }
  
    .print\:-mb-512 {
      margin-bottom: -51.2rem
    }
  
    .print\:-ml-512 {
      margin-left: -51.2rem
    }
  
    .print\:-mt-640 {
      margin-top: -64rem
    }
  
    .print\:-mr-640 {
      margin-right: -64rem
    }
  
    .print\:-mb-640 {
      margin-bottom: -64rem
    }
  
    .print\:-ml-640 {
      margin-left: -64rem
    }
  
    .print\:-mt-px {
      margin-top: -1px
    }
  
    .print\:-mr-px {
      margin-right: -1px
    }
  
    .print\:-mb-px {
      margin-bottom: -1px
    }
  
    .print\:-ml-px {
      margin-left: -1px
    }
  
    .print\:-mt-xs {
      margin-top: -32rem
    }
  
    .print\:-mr-xs {
      margin-right: -32rem
    }
  
    .print\:-mb-xs {
      margin-bottom: -32rem
    }
  
    .print\:-ml-xs {
      margin-left: -32rem
    }
  
    .print\:-mt-sm {
      margin-top: -48rem
    }
  
    .print\:-mr-sm {
      margin-right: -48rem
    }
  
    .print\:-mb-sm {
      margin-bottom: -48rem
    }
  
    .print\:-ml-sm {
      margin-left: -48rem
    }
  
    .print\:-mt-md {
      margin-top: -64rem
    }
  
    .print\:-mr-md {
      margin-right: -64rem
    }
  
    .print\:-mb-md {
      margin-bottom: -64rem
    }
  
    .print\:-ml-md {
      margin-left: -64rem
    }
  
    .print\:-mt-lg {
      margin-top: -80rem
    }
  
    .print\:-mr-lg {
      margin-right: -80rem
    }
  
    .print\:-mb-lg {
      margin-bottom: -80rem
    }
  
    .print\:-ml-lg {
      margin-left: -80rem
    }
  
    .print\:-mt-xl {
      margin-top: -96rem
    }
  
    .print\:-mr-xl {
      margin-right: -96rem
    }
  
    .print\:-mb-xl {
      margin-bottom: -96rem
    }
  
    .print\:-ml-xl {
      margin-left: -96rem
    }
  
    .print\:-mt-2xl {
      margin-top: -112rem
    }
  
    .print\:-mr-2xl {
      margin-right: -112rem
    }
  
    .print\:-mb-2xl {
      margin-bottom: -112rem
    }
  
    .print\:-ml-2xl {
      margin-left: -112rem
    }
  
    .print\:-mt-3xl {
      margin-top: -128rem
    }
  
    .print\:-mr-3xl {
      margin-right: -128rem
    }
  
    .print\:-mb-3xl {
      margin-bottom: -128rem
    }
  
    .print\:-ml-3xl {
      margin-left: -128rem
    }
  
    .print\:-mt-4xl {
      margin-top: -144rem
    }
  
    .print\:-mr-4xl {
      margin-right: -144rem
    }
  
    .print\:-mb-4xl {
      margin-bottom: -144rem
    }
  
    .print\:-ml-4xl {
      margin-left: -144rem
    }
  
    .print\:-mt-5xl {
      margin-top: -160rem
    }
  
    .print\:-mr-5xl {
      margin-right: -160rem
    }
  
    .print\:-mb-5xl {
      margin-bottom: -160rem
    }
  
    .print\:-ml-5xl {
      margin-left: -160rem
    }
  
    .print\:-mt-auto {
      margin-top: -auto
    }
  
    .print\:-mr-auto {
      margin-right: -auto
    }
  
    .print\:-mb-auto {
      margin-bottom: -auto
    }
  
    .print\:-ml-auto {
      margin-left: -auto
    }
  
    .print\:max-h-0 {
      max-height: 0
    }
  
    .print\:max-h-1 {
      max-height: 0.25rem
    }
  
    .print\:max-h-2 {
      max-height: 0.5rem
    }
  
    .print\:max-h-3 {
      max-height: 0.75rem
    }
  
    .print\:max-h-4 {
      max-height: 0.4rem
    }
  
    .print\:max-h-5 {
      max-height: 1.25rem
    }
  
    .print\:max-h-6 {
      max-height: 0.6rem
    }
  
    .print\:max-h-8 {
      max-height: 0.8rem
    }
  
    .print\:max-h-10 {
      max-height: 2.5rem
    }
  
    .print\:max-h-12 {
      max-height: 1.2rem
    }
  
    .print\:max-h-16 {
      max-height: 1.6rem
    }
  
    .print\:max-h-20 {
      max-height: 2rem
    }
  
    .print\:max-h-24 {
      max-height: 2.4rem
    }
  
    .print\:max-h-28 {
      max-height: 2.8rem
    }
  
    .print\:max-h-32 {
      max-height: 3.2rem
    }
  
    .print\:max-h-36 {
      max-height: 3.6rem
    }
  
    .print\:max-h-40 {
      max-height: 4rem
    }
  
    .print\:max-h-44 {
      max-height: 4.4rem
    }
  
    .print\:max-h-48 {
      max-height: 4.8rem
    }
  
    .print\:max-h-52 {
      max-height: 5.2rem
    }
  
    .print\:max-h-56 {
      max-height: 5.6rem
    }
  
    .print\:max-h-60 {
      max-height: 6rem
    }
  
    .print\:max-h-64 {
      max-height: 6.4rem
    }
  
    .print\:max-h-68 {
      max-height: 6.8rem
    }
  
    .print\:max-h-72 {
      max-height: 7.2rem
    }
  
    .print\:max-h-76 {
      max-height: 7.6rem
    }
  
    .print\:max-h-80 {
      max-height: 8rem
    }
  
    .print\:max-h-84 {
      max-height: 8.4rem
    }
  
    .print\:max-h-88 {
      max-height: 8.8rem
    }
  
    .print\:max-h-92 {
      max-height: 9.2rem
    }
  
    .print\:max-h-96 {
      max-height: 9.6rem
    }
  
    .print\:max-h-128 {
      max-height: 12.8rem
    }
  
    .print\:max-h-136 {
      max-height: 13.6rem
    }
  
    .print\:max-h-160 {
      max-height: 16rem
    }
  
    .print\:max-h-192 {
      max-height: 19.2rem
    }
  
    .print\:max-h-200 {
      max-height: 20rem
    }
  
    .print\:max-h-208 {
      max-height: 20.8rem
    }
  
    .print\:max-h-216 {
      max-height: 21.6rem
    }
  
    .print\:max-h-224 {
      max-height: 22.4rem
    }
  
    .print\:max-h-256 {
      max-height: 25.6rem
    }
  
    .print\:max-h-288 {
      max-height: 28.8rem
    }
  
    .print\:max-h-320 {
      max-height: 32rem
    }
  
    .print\:max-h-360 {
      max-height: 36rem
    }
  
    .print\:max-h-384 {
      max-height: 38.4rem
    }
  
    .print\:max-h-400 {
      max-height: 40rem
    }
  
    .print\:max-h-512 {
      max-height: 51.2rem
    }
  
    .print\:max-h-640 {
      max-height: 64rem
    }
  
    .print\:max-h-full {
      max-height: 100%
    }
  
    .print\:max-h-screen {
      max-height: 100vh
    }
  
    .print\:max-h-auto {
      max-height: auto
    }
  
    .print\:max-h-px {
      max-height: 1px
    }
  
    .print\:max-h-xs {
      max-height: 32rem
    }
  
    .print\:max-h-sm {
      max-height: 48rem
    }
  
    .print\:max-h-md {
      max-height: 64rem
    }
  
    .print\:max-h-lg {
      max-height: 80rem
    }
  
    .print\:max-h-xl {
      max-height: 96rem
    }
  
    .print\:max-h-2xl {
      max-height: 112rem
    }
  
    .print\:max-h-3xl {
      max-height: 128rem
    }
  
    .print\:max-h-4xl {
      max-height: 144rem
    }
  
    .print\:max-h-5xl {
      max-height: 160rem
    }
  
    .print\:max-w-0 {
      max-width: 0
    }
  
    .print\:max-w-1 {
      max-width: 0.25rem
    }
  
    .print\:max-w-2 {
      max-width: 0.5rem
    }
  
    .print\:max-w-3 {
      max-width: 0.75rem
    }
  
    .print\:max-w-4 {
      max-width: 0.4rem
    }
  
    .print\:max-w-5 {
      max-width: 1.25rem
    }
  
    .print\:max-w-6 {
      max-width: 0.6rem
    }
  
    .print\:max-w-8 {
      max-width: 0.8rem
    }
  
    .print\:max-w-10 {
      max-width: 2.5rem
    }
  
    .print\:max-w-12 {
      max-width: 1.2rem
    }
  
    .print\:max-w-16 {
      max-width: 1.6rem
    }
  
    .print\:max-w-20 {
      max-width: 2rem
    }
  
    .print\:max-w-24 {
      max-width: 2.4rem
    }
  
    .print\:max-w-28 {
      max-width: 2.8rem
    }
  
    .print\:max-w-32 {
      max-width: 3.2rem
    }
  
    .print\:max-w-36 {
      max-width: 3.6rem
    }
  
    .print\:max-w-40 {
      max-width: 4rem
    }
  
    .print\:max-w-44 {
      max-width: 4.4rem
    }
  
    .print\:max-w-48 {
      max-width: 4.8rem
    }
  
    .print\:max-w-52 {
      max-width: 5.2rem
    }
  
    .print\:max-w-56 {
      max-width: 5.6rem
    }
  
    .print\:max-w-60 {
      max-width: 6rem
    }
  
    .print\:max-w-64 {
      max-width: 6.4rem
    }
  
    .print\:max-w-68 {
      max-width: 6.8rem
    }
  
    .print\:max-w-72 {
      max-width: 7.2rem
    }
  
    .print\:max-w-76 {
      max-width: 7.6rem
    }
  
    .print\:max-w-80 {
      max-width: 8rem
    }
  
    .print\:max-w-84 {
      max-width: 8.4rem
    }
  
    .print\:max-w-88 {
      max-width: 8.8rem
    }
  
    .print\:max-w-92 {
      max-width: 9.2rem
    }
  
    .print\:max-w-96 {
      max-width: 9.6rem
    }
  
    .print\:max-w-128 {
      max-width: 12.8rem
    }
  
    .print\:max-w-136 {
      max-width: 13.6rem
    }
  
    .print\:max-w-160 {
      max-width: 16rem
    }
  
    .print\:max-w-192 {
      max-width: 19.2rem
    }
  
    .print\:max-w-200 {
      max-width: 20rem
    }
  
    .print\:max-w-208 {
      max-width: 20.8rem
    }
  
    .print\:max-w-216 {
      max-width: 21.6rem
    }
  
    .print\:max-w-224 {
      max-width: 22.4rem
    }
  
    .print\:max-w-256 {
      max-width: 25.6rem
    }
  
    .print\:max-w-288 {
      max-width: 28.8rem
    }
  
    .print\:max-w-320 {
      max-width: 32rem
    }
  
    .print\:max-w-360 {
      max-width: 36rem
    }
  
    .print\:max-w-384 {
      max-width: 38.4rem
    }
  
    .print\:max-w-400 {
      max-width: 40rem
    }
  
    .print\:max-w-512 {
      max-width: 51.2rem
    }
  
    .print\:max-w-640 {
      max-width: 64rem
    }
  
    .print\:max-w-xs {
      max-width: 32rem
    }
  
    .print\:max-w-sm {
      max-width: 48rem
    }
  
    .print\:max-w-md {
      max-width: 64rem
    }
  
    .print\:max-w-lg {
      max-width: 80rem
    }
  
    .print\:max-w-xl {
      max-width: 96rem
    }
  
    .print\:max-w-2xl {
      max-width: 112rem
    }
  
    .print\:max-w-3xl {
      max-width: 128rem
    }
  
    .print\:max-w-4xl {
      max-width: 144rem
    }
  
    .print\:max-w-5xl {
      max-width: 160rem
    }
  
    .print\:max-w-6xl {
      max-width: 72rem
    }
  
    .print\:max-w-full {
      max-width: 100%
    }
  
    .print\:max-w-px {
      max-width: 1px
    }
  
    .print\:max-w-auto {
      max-width: auto
    }
  
    .print\:max-w-screen {
      max-width: 100vw
    }
  
    .print\:min-h-0 {
      min-height: 0
    }
  
    .print\:min-h-1 {
      min-height: 0.25rem
    }
  
    .print\:min-h-2 {
      min-height: 0.5rem
    }
  
    .print\:min-h-3 {
      min-height: 0.75rem
    }
  
    .print\:min-h-4 {
      min-height: 0.4rem
    }
  
    .print\:min-h-5 {
      min-height: 1.25rem
    }
  
    .print\:min-h-6 {
      min-height: 0.6rem
    }
  
    .print\:min-h-8 {
      min-height: 0.8rem
    }
  
    .print\:min-h-10 {
      min-height: 2.5rem
    }
  
    .print\:min-h-12 {
      min-height: 1.2rem
    }
  
    .print\:min-h-16 {
      min-height: 1.6rem
    }
  
    .print\:min-h-20 {
      min-height: 2rem
    }
  
    .print\:min-h-24 {
      min-height: 2.4rem
    }
  
    .print\:min-h-28 {
      min-height: 2.8rem
    }
  
    .print\:min-h-32 {
      min-height: 3.2rem
    }
  
    .print\:min-h-36 {
      min-height: 3.6rem
    }
  
    .print\:min-h-40 {
      min-height: 4rem
    }
  
    .print\:min-h-44 {
      min-height: 4.4rem
    }
  
    .print\:min-h-48 {
      min-height: 4.8rem
    }
  
    .print\:min-h-52 {
      min-height: 5.2rem
    }
  
    .print\:min-h-56 {
      min-height: 5.6rem
    }
  
    .print\:min-h-60 {
      min-height: 6rem
    }
  
    .print\:min-h-64 {
      min-height: 6.4rem
    }
  
    .print\:min-h-68 {
      min-height: 6.8rem
    }
  
    .print\:min-h-72 {
      min-height: 7.2rem
    }
  
    .print\:min-h-76 {
      min-height: 7.6rem
    }
  
    .print\:min-h-80 {
      min-height: 8rem
    }
  
    .print\:min-h-84 {
      min-height: 8.4rem
    }
  
    .print\:min-h-88 {
      min-height: 8.8rem
    }
  
    .print\:min-h-92 {
      min-height: 9.2rem
    }
  
    .print\:min-h-96 {
      min-height: 9.6rem
    }
  
    .print\:min-h-128 {
      min-height: 12.8rem
    }
  
    .print\:min-h-136 {
      min-height: 13.6rem
    }
  
    .print\:min-h-160 {
      min-height: 16rem
    }
  
    .print\:min-h-192 {
      min-height: 19.2rem
    }
  
    .print\:min-h-200 {
      min-height: 20rem
    }
  
    .print\:min-h-208 {
      min-height: 20.8rem
    }
  
    .print\:min-h-216 {
      min-height: 21.6rem
    }
  
    .print\:min-h-224 {
      min-height: 22.4rem
    }
  
    .print\:min-h-256 {
      min-height: 25.6rem
    }
  
    .print\:min-h-288 {
      min-height: 28.8rem
    }
  
    .print\:min-h-320 {
      min-height: 32rem
    }
  
    .print\:min-h-360 {
      min-height: 36rem
    }
  
    .print\:min-h-384 {
      min-height: 38.4rem
    }
  
    .print\:min-h-400 {
      min-height: 40rem
    }
  
    .print\:min-h-512 {
      min-height: 51.2rem
    }
  
    .print\:min-h-640 {
      min-height: 64rem
    }
  
    .print\:min-h-full {
      min-height: 100%
    }
  
    .print\:min-h-screen {
      min-height: 100vh
    }
  
    .print\:min-h-auto {
      min-height: auto
    }
  
    .print\:min-h-px {
      min-height: 1px
    }
  
    .print\:min-h-xs {
      min-height: 32rem
    }
  
    .print\:min-h-sm {
      min-height: 48rem
    }
  
    .print\:min-h-md {
      min-height: 64rem
    }
  
    .print\:min-h-lg {
      min-height: 80rem
    }
  
    .print\:min-h-xl {
      min-height: 96rem
    }
  
    .print\:min-h-2xl {
      min-height: 112rem
    }
  
    .print\:min-h-3xl {
      min-height: 128rem
    }
  
    .print\:min-h-4xl {
      min-height: 144rem
    }
  
    .print\:min-h-5xl {
      min-height: 160rem
    }
  
    .print\:min-w-0 {
      min-width: 0
    }
  
    .print\:min-w-1 {
      min-width: 0.25rem
    }
  
    .print\:min-w-2 {
      min-width: 0.5rem
    }
  
    .print\:min-w-3 {
      min-width: 0.75rem
    }
  
    .print\:min-w-4 {
      min-width: 0.4rem
    }
  
    .print\:min-w-5 {
      min-width: 1.25rem
    }
  
    .print\:min-w-6 {
      min-width: 0.6rem
    }
  
    .print\:min-w-8 {
      min-width: 0.8rem
    }
  
    .print\:min-w-10 {
      min-width: 2.5rem
    }
  
    .print\:min-w-12 {
      min-width: 1.2rem
    }
  
    .print\:min-w-16 {
      min-width: 1.6rem
    }
  
    .print\:min-w-20 {
      min-width: 2rem
    }
  
    .print\:min-w-24 {
      min-width: 2.4rem
    }
  
    .print\:min-w-28 {
      min-width: 2.8rem
    }
  
    .print\:min-w-32 {
      min-width: 3.2rem
    }
  
    .print\:min-w-36 {
      min-width: 3.6rem
    }
  
    .print\:min-w-40 {
      min-width: 4rem
    }
  
    .print\:min-w-44 {
      min-width: 4.4rem
    }
  
    .print\:min-w-48 {
      min-width: 4.8rem
    }
  
    .print\:min-w-52 {
      min-width: 5.2rem
    }
  
    .print\:min-w-56 {
      min-width: 5.6rem
    }
  
    .print\:min-w-60 {
      min-width: 6rem
    }
  
    .print\:min-w-64 {
      min-width: 6.4rem
    }
  
    .print\:min-w-68 {
      min-width: 6.8rem
    }
  
    .print\:min-w-72 {
      min-width: 7.2rem
    }
  
    .print\:min-w-76 {
      min-width: 7.6rem
    }
  
    .print\:min-w-80 {
      min-width: 8rem
    }
  
    .print\:min-w-84 {
      min-width: 8.4rem
    }
  
    .print\:min-w-88 {
      min-width: 8.8rem
    }
  
    .print\:min-w-92 {
      min-width: 9.2rem
    }
  
    .print\:min-w-96 {
      min-width: 9.6rem
    }
  
    .print\:min-w-128 {
      min-width: 12.8rem
    }
  
    .print\:min-w-136 {
      min-width: 13.6rem
    }
  
    .print\:min-w-160 {
      min-width: 16rem
    }
  
    .print\:min-w-192 {
      min-width: 19.2rem
    }
  
    .print\:min-w-200 {
      min-width: 20rem
    }
  
    .print\:min-w-208 {
      min-width: 20.8rem
    }
  
    .print\:min-w-216 {
      min-width: 21.6rem
    }
  
    .print\:min-w-224 {
      min-width: 22.4rem
    }
  
    .print\:min-w-256 {
      min-width: 25.6rem
    }
  
    .print\:min-w-288 {
      min-width: 28.8rem
    }
  
    .print\:min-w-320 {
      min-width: 32rem
    }
  
    .print\:min-w-360 {
      min-width: 36rem
    }
  
    .print\:min-w-384 {
      min-width: 38.4rem
    }
  
    .print\:min-w-400 {
      min-width: 40rem
    }
  
    .print\:min-w-512 {
      min-width: 51.2rem
    }
  
    .print\:min-w-640 {
      min-width: 64rem
    }
  
    .print\:min-w-full {
      min-width: 100%
    }
  
    .print\:min-w-px {
      min-width: 1px
    }
  
    .print\:min-w-xs {
      min-width: 32rem
    }
  
    .print\:min-w-sm {
      min-width: 48rem
    }
  
    .print\:min-w-md {
      min-width: 64rem
    }
  
    .print\:min-w-lg {
      min-width: 80rem
    }
  
    .print\:min-w-xl {
      min-width: 96rem
    }
  
    .print\:min-w-2xl {
      min-width: 112rem
    }
  
    .print\:min-w-3xl {
      min-width: 128rem
    }
  
    .print\:min-w-4xl {
      min-width: 144rem
    }
  
    .print\:min-w-5xl {
      min-width: 160rem
    }
  
    .print\:min-w-auto {
      min-width: auto
    }
  
    .print\:min-w-screen {
      min-width: 100vw
    }
  
    .print\:object-contain {
      object-fit: contain
    }
  
    .print\:object-cover {
      object-fit: cover
    }
  
    .print\:object-fill {
      object-fit: fill
    }
  
    .print\:object-none {
      object-fit: none
    }
  
    .print\:object-scale-down {
      object-fit: scale-down
    }
  
    .print\:object-bottom {
      object-position: bottom
    }
  
    .print\:object-center {
      object-position: center
    }
  
    .print\:object-left {
      object-position: left
    }
  
    .print\:object-left-bottom {
      object-position: left bottom
    }
  
    .print\:object-left-top {
      object-position: left top
    }
  
    .print\:object-right {
      object-position: right
    }
  
    .print\:object-right-bottom {
      object-position: right bottom
    }
  
    .print\:object-right-top {
      object-position: right top
    }
  
    .print\:object-top {
      object-position: top
    }
  
    .print\:opacity-0 {
      opacity: 0
    }
  
    .print\:opacity-25 {
      opacity: 0.25
    }
  
    .print\:opacity-50 {
      opacity: 0.5
    }
  
    .print\:opacity-75 {
      opacity: 0.75
    }
  
    .print\:opacity-100 {
      opacity: 1
    }
  
    .print\:outline-none {
      outline: 0
    }
  
    .print\:focus\:outline-none:focus {
      outline: 0
    }
  
    .print\:overflow-auto {
      overflow: auto
    }
  
    .print\:overflow-hidden {
      overflow: hidden
    }
  
    .print\:overflow-visible {
      overflow: visible
    }
  
    .print\:overflow-scroll {
      overflow: scroll
    }
  
    .print\:overflow-x-auto {
      overflow-x: auto
    }
  
    .print\:overflow-y-auto {
      overflow-y: auto
    }
  
    .print\:overflow-x-hidden {
      overflow-x: hidden
    }
  
    .print\:overflow-y-hidden {
      overflow-y: hidden
    }
  
    .print\:overflow-x-visible {
      overflow-x: visible
    }
  
    .print\:overflow-y-visible {
      overflow-y: visible
    }
  
    .print\:overflow-x-scroll {
      overflow-x: scroll
    }
  
    .print\:overflow-y-scroll {
      overflow-y: scroll
    }
  
    .print\:scrolling-touch {
      -webkit-overflow-scrolling: touch
    }
  
    .print\:scrolling-auto {
      -webkit-overflow-scrolling: auto
    }
  
    .print\:p-0 {
      padding: 0
    }
  
    .print\:p-1 {
      padding: 0.25rem
    }
  
    .print\:p-2 {
      padding: 0.5rem
    }
  
    .print\:p-3 {
      padding: 0.75rem
    }
  
    .print\:p-4 {
      padding: 0.4rem
    }
  
    .print\:p-5 {
      padding: 1.25rem
    }
  
    .print\:p-6 {
      padding: 0.6rem
    }
  
    .print\:p-8 {
      padding: 0.8rem
    }
  
    .print\:p-10 {
      padding: 2.5rem
    }
  
    .print\:p-12 {
      padding: 1.2rem
    }
  
    .print\:p-16 {
      padding: 1.6rem
    }
  
    .print\:p-20 {
      padding: 2rem
    }
  
    .print\:p-24 {
      padding: 2.4rem
    }
  
    .print\:p-28 {
      padding: 2.8rem
    }
  
    .print\:p-32 {
      padding: 3.2rem
    }
  
    .print\:p-36 {
      padding: 3.6rem
    }
  
    .print\:p-40 {
      padding: 4rem
    }
  
    .print\:p-44 {
      padding: 4.4rem
    }
  
    .print\:p-48 {
      padding: 4.8rem
    }
  
    .print\:p-52 {
      padding: 5.2rem
    }
  
    .print\:p-56 {
      padding: 5.6rem
    }
  
    .print\:p-60 {
      padding: 6rem
    }
  
    .print\:p-64 {
      padding: 6.4rem
    }
  
    .print\:p-68 {
      padding: 6.8rem
    }
  
    .print\:p-72 {
      padding: 7.2rem
    }
  
    .print\:p-76 {
      padding: 7.6rem
    }
  
    .print\:p-80 {
      padding: 8rem
    }
  
    .print\:p-84 {
      padding: 8.4rem
    }
  
    .print\:p-88 {
      padding: 8.8rem
    }
  
    .print\:p-92 {
      padding: 9.2rem
    }
  
    .print\:p-96 {
      padding: 9.6rem
    }
  
    .print\:p-128 {
      padding: 12.8rem
    }
  
    .print\:p-136 {
      padding: 13.6rem
    }
  
    .print\:p-160 {
      padding: 16rem
    }
  
    .print\:p-192 {
      padding: 19.2rem
    }
  
    .print\:p-200 {
      padding: 20rem
    }
  
    .print\:p-208 {
      padding: 20.8rem
    }
  
    .print\:p-216 {
      padding: 21.6rem
    }
  
    .print\:p-224 {
      padding: 22.4rem
    }
  
    .print\:p-256 {
      padding: 25.6rem
    }
  
    .print\:p-288 {
      padding: 28.8rem
    }
  
    .print\:p-320 {
      padding: 32rem
    }
  
    .print\:p-360 {
      padding: 36rem
    }
  
    .print\:p-384 {
      padding: 38.4rem
    }
  
    .print\:p-400 {
      padding: 40rem
    }
  
    .print\:p-512 {
      padding: 51.2rem
    }
  
    .print\:p-640 {
      padding: 64rem
    }
  
    .print\:p-px {
      padding: 1px
    }
  
    .print\:p-xs {
      padding: 32rem
    }
  
    .print\:p-sm {
      padding: 48rem
    }
  
    .print\:p-md {
      padding: 64rem
    }
  
    .print\:p-lg {
      padding: 80rem
    }
  
    .print\:p-xl {
      padding: 96rem
    }
  
    .print\:p-2xl {
      padding: 112rem
    }
  
    .print\:p-3xl {
      padding: 128rem
    }
  
    .print\:p-4xl {
      padding: 144rem
    }
  
    .print\:p-5xl {
      padding: 160rem
    }
  
    .print\:p-auto {
      padding: auto
    }
  
    .print\:py-0 {
      padding-top: 0;
      padding-bottom: 0
    }
  
    .print\:px-0 {
      padding-left: 0;
      padding-right: 0
    }
  
    .print\:py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem
    }
  
    .print\:px-1 {
      padding-left: 0.25rem;
      padding-right: 0.25rem
    }
  
    .print\:py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem
    }
  
    .print\:px-2 {
      padding-left: 0.5rem;
      padding-right: 0.5rem
    }
  
    .print\:py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem
    }
  
    .print\:px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem
    }
  
    .print\:py-4 {
      padding-top: 0.4rem;
      padding-bottom: 0.4rem
    }
  
    .print\:px-4 {
      padding-left: 0.4rem;
      padding-right: 0.4rem
    }
  
    .print\:py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem
    }
  
    .print\:px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem
    }
  
    .print\:py-6 {
      padding-top: 0.6rem;
      padding-bottom: 0.6rem
    }
  
    .print\:px-6 {
      padding-left: 0.6rem;
      padding-right: 0.6rem
    }
  
    .print\:py-8 {
      padding-top: 0.8rem;
      padding-bottom: 0.8rem
    }
  
    .print\:px-8 {
      padding-left: 0.8rem;
      padding-right: 0.8rem
    }
  
    .print\:py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem
    }
  
    .print\:px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem
    }
  
    .print\:py-12 {
      padding-top: 1.2rem;
      padding-bottom: 1.2rem
    }
  
    .print\:px-12 {
      padding-left: 1.2rem;
      padding-right: 1.2rem
    }
  
    .print\:py-16 {
      padding-top: 1.6rem;
      padding-bottom: 1.6rem
    }
  
    .print\:px-16 {
      padding-left: 1.6rem;
      padding-right: 1.6rem
    }
  
    .print\:py-20 {
      padding-top: 2rem;
      padding-bottom: 2rem
    }
  
    .print\:px-20 {
      padding-left: 2rem;
      padding-right: 2rem
    }
  
    .print\:py-24 {
      padding-top: 2.4rem;
      padding-bottom: 2.4rem
    }
  
    .print\:px-24 {
      padding-left: 2.4rem;
      padding-right: 2.4rem
    }
  
    .print\:py-28 {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem
    }
  
    .print\:px-28 {
      padding-left: 2.8rem;
      padding-right: 2.8rem
    }
  
    .print\:py-32 {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem
    }
  
    .print\:px-32 {
      padding-left: 3.2rem;
      padding-right: 3.2rem
    }
  
    .print\:py-36 {
      padding-top: 3.6rem;
      padding-bottom: 3.6rem
    }
  
    .print\:px-36 {
      padding-left: 3.6rem;
      padding-right: 3.6rem
    }
  
    .print\:py-40 {
      padding-top: 4rem;
      padding-bottom: 4rem
    }
  
    .print\:px-40 {
      padding-left: 4rem;
      padding-right: 4rem
    }
  
    .print\:py-44 {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem
    }
  
    .print\:px-44 {
      padding-left: 4.4rem;
      padding-right: 4.4rem
    }
  
    .print\:py-48 {
      padding-top: 4.8rem;
      padding-bottom: 4.8rem
    }
  
    .print\:px-48 {
      padding-left: 4.8rem;
      padding-right: 4.8rem
    }
  
    .print\:py-52 {
      padding-top: 5.2rem;
      padding-bottom: 5.2rem
    }
  
    .print\:px-52 {
      padding-left: 5.2rem;
      padding-right: 5.2rem
    }
  
    .print\:py-56 {
      padding-top: 5.6rem;
      padding-bottom: 5.6rem
    }
  
    .print\:px-56 {
      padding-left: 5.6rem;
      padding-right: 5.6rem
    }
  
    .print\:py-60 {
      padding-top: 6rem;
      padding-bottom: 6rem
    }
  
    .print\:px-60 {
      padding-left: 6rem;
      padding-right: 6rem
    }
  
    .print\:py-64 {
      padding-top: 6.4rem;
      padding-bottom: 6.4rem
    }
  
    .print\:px-64 {
      padding-left: 6.4rem;
      padding-right: 6.4rem
    }
  
    .print\:py-68 {
      padding-top: 6.8rem;
      padding-bottom: 6.8rem
    }
  
    .print\:px-68 {
      padding-left: 6.8rem;
      padding-right: 6.8rem
    }
  
    .print\:py-72 {
      padding-top: 7.2rem;
      padding-bottom: 7.2rem
    }
  
    .print\:px-72 {
      padding-left: 7.2rem;
      padding-right: 7.2rem
    }
  
    .print\:py-76 {
      padding-top: 7.6rem;
      padding-bottom: 7.6rem
    }
  
    .print\:px-76 {
      padding-left: 7.6rem;
      padding-right: 7.6rem
    }
  
    .print\:py-80 {
      padding-top: 8rem;
      padding-bottom: 8rem
    }
  
    .print\:px-80 {
      padding-left: 8rem;
      padding-right: 8rem
    }
  
    .print\:py-84 {
      padding-top: 8.4rem;
      padding-bottom: 8.4rem
    }
  
    .print\:px-84 {
      padding-left: 8.4rem;
      padding-right: 8.4rem
    }
  
    .print\:py-88 {
      padding-top: 8.8rem;
      padding-bottom: 8.8rem
    }
  
    .print\:px-88 {
      padding-left: 8.8rem;
      padding-right: 8.8rem
    }
  
    .print\:py-92 {
      padding-top: 9.2rem;
      padding-bottom: 9.2rem
    }
  
    .print\:px-92 {
      padding-left: 9.2rem;
      padding-right: 9.2rem
    }
  
    .print\:py-96 {
      padding-top: 9.6rem;
      padding-bottom: 9.6rem
    }
  
    .print\:px-96 {
      padding-left: 9.6rem;
      padding-right: 9.6rem
    }
  
    .print\:py-128 {
      padding-top: 12.8rem;
      padding-bottom: 12.8rem
    }
  
    .print\:px-128 {
      padding-left: 12.8rem;
      padding-right: 12.8rem
    }
  
    .print\:py-136 {
      padding-top: 13.6rem;
      padding-bottom: 13.6rem
    }
  
    .print\:px-136 {
      padding-left: 13.6rem;
      padding-right: 13.6rem
    }
  
    .print\:py-160 {
      padding-top: 16rem;
      padding-bottom: 16rem
    }
  
    .print\:px-160 {
      padding-left: 16rem;
      padding-right: 16rem
    }
  
    .print\:py-192 {
      padding-top: 19.2rem;
      padding-bottom: 19.2rem
    }
  
    .print\:px-192 {
      padding-left: 19.2rem;
      padding-right: 19.2rem
    }
  
    .print\:py-200 {
      padding-top: 20rem;
      padding-bottom: 20rem
    }
  
    .print\:px-200 {
      padding-left: 20rem;
      padding-right: 20rem
    }
  
    .print\:py-208 {
      padding-top: 20.8rem;
      padding-bottom: 20.8rem
    }
  
    .print\:px-208 {
      padding-left: 20.8rem;
      padding-right: 20.8rem
    }
  
    .print\:py-216 {
      padding-top: 21.6rem;
      padding-bottom: 21.6rem
    }
  
    .print\:px-216 {
      padding-left: 21.6rem;
      padding-right: 21.6rem
    }
  
    .print\:py-224 {
      padding-top: 22.4rem;
      padding-bottom: 22.4rem
    }
  
    .print\:px-224 {
      padding-left: 22.4rem;
      padding-right: 22.4rem
    }
  
    .print\:py-256 {
      padding-top: 25.6rem;
      padding-bottom: 25.6rem
    }
  
    .print\:px-256 {
      padding-left: 25.6rem;
      padding-right: 25.6rem
    }
  
    .print\:py-288 {
      padding-top: 28.8rem;
      padding-bottom: 28.8rem
    }
  
    .print\:px-288 {
      padding-left: 28.8rem;
      padding-right: 28.8rem
    }
  
    .print\:py-320 {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .print\:px-320 {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .print\:py-360 {
      padding-top: 36rem;
      padding-bottom: 36rem
    }
  
    .print\:px-360 {
      padding-left: 36rem;
      padding-right: 36rem
    }
  
    .print\:py-384 {
      padding-top: 38.4rem;
      padding-bottom: 38.4rem
    }
  
    .print\:px-384 {
      padding-left: 38.4rem;
      padding-right: 38.4rem
    }
  
    .print\:py-400 {
      padding-top: 40rem;
      padding-bottom: 40rem
    }
  
    .print\:px-400 {
      padding-left: 40rem;
      padding-right: 40rem
    }
  
    .print\:py-512 {
      padding-top: 51.2rem;
      padding-bottom: 51.2rem
    }
  
    .print\:px-512 {
      padding-left: 51.2rem;
      padding-right: 51.2rem
    }
  
    .print\:py-640 {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .print\:px-640 {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .print\:py-px {
      padding-top: 1px;
      padding-bottom: 1px
    }
  
    .print\:px-px {
      padding-left: 1px;
      padding-right: 1px
    }
  
    .print\:py-xs {
      padding-top: 32rem;
      padding-bottom: 32rem
    }
  
    .print\:px-xs {
      padding-left: 32rem;
      padding-right: 32rem
    }
  
    .print\:py-sm {
      padding-top: 48rem;
      padding-bottom: 48rem
    }
  
    .print\:px-sm {
      padding-left: 48rem;
      padding-right: 48rem
    }
  
    .print\:py-md {
      padding-top: 64rem;
      padding-bottom: 64rem
    }
  
    .print\:px-md {
      padding-left: 64rem;
      padding-right: 64rem
    }
  
    .print\:py-lg {
      padding-top: 80rem;
      padding-bottom: 80rem
    }
  
    .print\:px-lg {
      padding-left: 80rem;
      padding-right: 80rem
    }
  
    .print\:py-xl {
      padding-top: 96rem;
      padding-bottom: 96rem
    }
  
    .print\:px-xl {
      padding-left: 96rem;
      padding-right: 96rem
    }
  
    .print\:py-2xl {
      padding-top: 112rem;
      padding-bottom: 112rem
    }
  
    .print\:px-2xl {
      padding-left: 112rem;
      padding-right: 112rem
    }
  
    .print\:py-3xl {
      padding-top: 128rem;
      padding-bottom: 128rem
    }
  
    .print\:px-3xl {
      padding-left: 128rem;
      padding-right: 128rem
    }
  
    .print\:py-4xl {
      padding-top: 144rem;
      padding-bottom: 144rem
    }
  
    .print\:px-4xl {
      padding-left: 144rem;
      padding-right: 144rem
    }
  
    .print\:py-5xl {
      padding-top: 160rem;
      padding-bottom: 160rem
    }
  
    .print\:px-5xl {
      padding-left: 160rem;
      padding-right: 160rem
    }
  
    .print\:py-auto {
      padding-top: auto;
      padding-bottom: auto
    }
  
    .print\:px-auto {
      padding-left: auto;
      padding-right: auto
    }
  
    .print\:pt-0 {
      padding-top: 0
    }
  
    .print\:pr-0 {
      padding-right: 0
    }
  
    .print\:pb-0 {
      padding-bottom: 0
    }
  
    .print\:pl-0 {
      padding-left: 0
    }
  
    .print\:pt-1 {
      padding-top: 0.25rem
    }
  
    .print\:pr-1 {
      padding-right: 0.25rem
    }
  
    .print\:pb-1 {
      padding-bottom: 0.25rem
    }
  
    .print\:pl-1 {
      padding-left: 0.25rem
    }
  
    .print\:pt-2 {
      padding-top: 0.5rem
    }
  
    .print\:pr-2 {
      padding-right: 0.5rem
    }
  
    .print\:pb-2 {
      padding-bottom: 0.5rem
    }
  
    .print\:pl-2 {
      padding-left: 0.5rem
    }
  
    .print\:pt-3 {
      padding-top: 0.75rem
    }
  
    .print\:pr-3 {
      padding-right: 0.75rem
    }
  
    .print\:pb-3 {
      padding-bottom: 0.75rem
    }
  
    .print\:pl-3 {
      padding-left: 0.75rem
    }
  
    .print\:pt-4 {
      padding-top: 0.4rem
    }
  
    .print\:pr-4 {
      padding-right: 0.4rem
    }
  
    .print\:pb-4 {
      padding-bottom: 0.4rem
    }
  
    .print\:pl-4 {
      padding-left: 0.4rem
    }
  
    .print\:pt-5 {
      padding-top: 1.25rem
    }
  
    .print\:pr-5 {
      padding-right: 1.25rem
    }
  
    .print\:pb-5 {
      padding-bottom: 1.25rem
    }
  
    .print\:pl-5 {
      padding-left: 1.25rem
    }
  
    .print\:pt-6 {
      padding-top: 0.6rem
    }
  
    .print\:pr-6 {
      padding-right: 0.6rem
    }
  
    .print\:pb-6 {
      padding-bottom: 0.6rem
    }
  
    .print\:pl-6 {
      padding-left: 0.6rem
    }
  
    .print\:pt-8 {
      padding-top: 0.8rem
    }
  
    .print\:pr-8 {
      padding-right: 0.8rem
    }
  
    .print\:pb-8 {
      padding-bottom: 0.8rem
    }
  
    .print\:pl-8 {
      padding-left: 0.8rem
    }
  
    .print\:pt-10 {
      padding-top: 2.5rem
    }
  
    .print\:pr-10 {
      padding-right: 2.5rem
    }
  
    .print\:pb-10 {
      padding-bottom: 2.5rem
    }
  
    .print\:pl-10 {
      padding-left: 2.5rem
    }
  
    .print\:pt-12 {
      padding-top: 1.2rem
    }
  
    .print\:pr-12 {
      padding-right: 1.2rem
    }
  
    .print\:pb-12 {
      padding-bottom: 1.2rem
    }
  
    .print\:pl-12 {
      padding-left: 1.2rem
    }
  
    .print\:pt-16 {
      padding-top: 1.6rem
    }
  
    .print\:pr-16 {
      padding-right: 1.6rem
    }
  
    .print\:pb-16 {
      padding-bottom: 1.6rem
    }
  
    .print\:pl-16 {
      padding-left: 1.6rem
    }
  
    .print\:pt-20 {
      padding-top: 2rem
    }
  
    .print\:pr-20 {
      padding-right: 2rem
    }
  
    .print\:pb-20 {
      padding-bottom: 2rem
    }
  
    .print\:pl-20 {
      padding-left: 2rem
    }
  
    .print\:pt-24 {
      padding-top: 2.4rem
    }
  
    .print\:pr-24 {
      padding-right: 2.4rem
    }
  
    .print\:pb-24 {
      padding-bottom: 2.4rem
    }
  
    .print\:pl-24 {
      padding-left: 2.4rem
    }
  
    .print\:pt-28 {
      padding-top: 2.8rem
    }
  
    .print\:pr-28 {
      padding-right: 2.8rem
    }
  
    .print\:pb-28 {
      padding-bottom: 2.8rem
    }
  
    .print\:pl-28 {
      padding-left: 2.8rem
    }
  
    .print\:pt-32 {
      padding-top: 3.2rem
    }
  
    .print\:pr-32 {
      padding-right: 3.2rem
    }
  
    .print\:pb-32 {
      padding-bottom: 3.2rem
    }
  
    .print\:pl-32 {
      padding-left: 3.2rem
    }
  
    .print\:pt-36 {
      padding-top: 3.6rem
    }
  
    .print\:pr-36 {
      padding-right: 3.6rem
    }
  
    .print\:pb-36 {
      padding-bottom: 3.6rem
    }
  
    .print\:pl-36 {
      padding-left: 3.6rem
    }
  
    .print\:pt-40 {
      padding-top: 4rem
    }
  
    .print\:pr-40 {
      padding-right: 4rem
    }
  
    .print\:pb-40 {
      padding-bottom: 4rem
    }
  
    .print\:pl-40 {
      padding-left: 4rem
    }
  
    .print\:pt-44 {
      padding-top: 4.4rem
    }
  
    .print\:pr-44 {
      padding-right: 4.4rem
    }
  
    .print\:pb-44 {
      padding-bottom: 4.4rem
    }
  
    .print\:pl-44 {
      padding-left: 4.4rem
    }
  
    .print\:pt-48 {
      padding-top: 4.8rem
    }
  
    .print\:pr-48 {
      padding-right: 4.8rem
    }
  
    .print\:pb-48 {
      padding-bottom: 4.8rem
    }
  
    .print\:pl-48 {
      padding-left: 4.8rem
    }
  
    .print\:pt-52 {
      padding-top: 5.2rem
    }
  
    .print\:pr-52 {
      padding-right: 5.2rem
    }
  
    .print\:pb-52 {
      padding-bottom: 5.2rem
    }
  
    .print\:pl-52 {
      padding-left: 5.2rem
    }
  
    .print\:pt-56 {
      padding-top: 5.6rem
    }
  
    .print\:pr-56 {
      padding-right: 5.6rem
    }
  
    .print\:pb-56 {
      padding-bottom: 5.6rem
    }
  
    .print\:pl-56 {
      padding-left: 5.6rem
    }
  
    .print\:pt-60 {
      padding-top: 6rem
    }
  
    .print\:pr-60 {
      padding-right: 6rem
    }
  
    .print\:pb-60 {
      padding-bottom: 6rem
    }
  
    .print\:pl-60 {
      padding-left: 6rem
    }
  
    .print\:pt-64 {
      padding-top: 6.4rem
    }
  
    .print\:pr-64 {
      padding-right: 6.4rem
    }
  
    .print\:pb-64 {
      padding-bottom: 6.4rem
    }
  
    .print\:pl-64 {
      padding-left: 6.4rem
    }
  
    .print\:pt-68 {
      padding-top: 6.8rem
    }
  
    .print\:pr-68 {
      padding-right: 6.8rem
    }
  
    .print\:pb-68 {
      padding-bottom: 6.8rem
    }
  
    .print\:pl-68 {
      padding-left: 6.8rem
    }
  
    .print\:pt-72 {
      padding-top: 7.2rem
    }
  
    .print\:pr-72 {
      padding-right: 7.2rem
    }
  
    .print\:pb-72 {
      padding-bottom: 7.2rem
    }
  
    .print\:pl-72 {
      padding-left: 7.2rem
    }
  
    .print\:pt-76 {
      padding-top: 7.6rem
    }
  
    .print\:pr-76 {
      padding-right: 7.6rem
    }
  
    .print\:pb-76 {
      padding-bottom: 7.6rem
    }
  
    .print\:pl-76 {
      padding-left: 7.6rem
    }
  
    .print\:pt-80 {
      padding-top: 8rem
    }
  
    .print\:pr-80 {
      padding-right: 8rem
    }
  
    .print\:pb-80 {
      padding-bottom: 8rem
    }
  
    .print\:pl-80 {
      padding-left: 8rem
    }
  
    .print\:pt-84 {
      padding-top: 8.4rem
    }
  
    .print\:pr-84 {
      padding-right: 8.4rem
    }
  
    .print\:pb-84 {
      padding-bottom: 8.4rem
    }
  
    .print\:pl-84 {
      padding-left: 8.4rem
    }
  
    .print\:pt-88 {
      padding-top: 8.8rem
    }
  
    .print\:pr-88 {
      padding-right: 8.8rem
    }
  
    .print\:pb-88 {
      padding-bottom: 8.8rem
    }
  
    .print\:pl-88 {
      padding-left: 8.8rem
    }
  
    .print\:pt-92 {
      padding-top: 9.2rem
    }
  
    .print\:pr-92 {
      padding-right: 9.2rem
    }
  
    .print\:pb-92 {
      padding-bottom: 9.2rem
    }
  
    .print\:pl-92 {
      padding-left: 9.2rem
    }
  
    .print\:pt-96 {
      padding-top: 9.6rem
    }
  
    .print\:pr-96 {
      padding-right: 9.6rem
    }
  
    .print\:pb-96 {
      padding-bottom: 9.6rem
    }
  
    .print\:pl-96 {
      padding-left: 9.6rem
    }
  
    .print\:pt-128 {
      padding-top: 12.8rem
    }
  
    .print\:pr-128 {
      padding-right: 12.8rem
    }
  
    .print\:pb-128 {
      padding-bottom: 12.8rem
    }
  
    .print\:pl-128 {
      padding-left: 12.8rem
    }
  
    .print\:pt-136 {
      padding-top: 13.6rem
    }
  
    .print\:pr-136 {
      padding-right: 13.6rem
    }
  
    .print\:pb-136 {
      padding-bottom: 13.6rem
    }
  
    .print\:pl-136 {
      padding-left: 13.6rem
    }
  
    .print\:pt-160 {
      padding-top: 16rem
    }
  
    .print\:pr-160 {
      padding-right: 16rem
    }
  
    .print\:pb-160 {
      padding-bottom: 16rem
    }
  
    .print\:pl-160 {
      padding-left: 16rem
    }
  
    .print\:pt-192 {
      padding-top: 19.2rem
    }
  
    .print\:pr-192 {
      padding-right: 19.2rem
    }
  
    .print\:pb-192 {
      padding-bottom: 19.2rem
    }
  
    .print\:pl-192 {
      padding-left: 19.2rem
    }
  
    .print\:pt-200 {
      padding-top: 20rem
    }
  
    .print\:pr-200 {
      padding-right: 20rem
    }
  
    .print\:pb-200 {
      padding-bottom: 20rem
    }
  
    .print\:pl-200 {
      padding-left: 20rem
    }
  
    .print\:pt-208 {
      padding-top: 20.8rem
    }
  
    .print\:pr-208 {
      padding-right: 20.8rem
    }
  
    .print\:pb-208 {
      padding-bottom: 20.8rem
    }
  
    .print\:pl-208 {
      padding-left: 20.8rem
    }
  
    .print\:pt-216 {
      padding-top: 21.6rem
    }
  
    .print\:pr-216 {
      padding-right: 21.6rem
    }
  
    .print\:pb-216 {
      padding-bottom: 21.6rem
    }
  
    .print\:pl-216 {
      padding-left: 21.6rem
    }
  
    .print\:pt-224 {
      padding-top: 22.4rem
    }
  
    .print\:pr-224 {
      padding-right: 22.4rem
    }
  
    .print\:pb-224 {
      padding-bottom: 22.4rem
    }
  
    .print\:pl-224 {
      padding-left: 22.4rem
    }
  
    .print\:pt-256 {
      padding-top: 25.6rem
    }
  
    .print\:pr-256 {
      padding-right: 25.6rem
    }
  
    .print\:pb-256 {
      padding-bottom: 25.6rem
    }
  
    .print\:pl-256 {
      padding-left: 25.6rem
    }
  
    .print\:pt-288 {
      padding-top: 28.8rem
    }
  
    .print\:pr-288 {
      padding-right: 28.8rem
    }
  
    .print\:pb-288 {
      padding-bottom: 28.8rem
    }
  
    .print\:pl-288 {
      padding-left: 28.8rem
    }
  
    .print\:pt-320 {
      padding-top: 32rem
    }
  
    .print\:pr-320 {
      padding-right: 32rem
    }
  
    .print\:pb-320 {
      padding-bottom: 32rem
    }
  
    .print\:pl-320 {
      padding-left: 32rem
    }
  
    .print\:pt-360 {
      padding-top: 36rem
    }
  
    .print\:pr-360 {
      padding-right: 36rem
    }
  
    .print\:pb-360 {
      padding-bottom: 36rem
    }
  
    .print\:pl-360 {
      padding-left: 36rem
    }
  
    .print\:pt-384 {
      padding-top: 38.4rem
    }
  
    .print\:pr-384 {
      padding-right: 38.4rem
    }
  
    .print\:pb-384 {
      padding-bottom: 38.4rem
    }
  
    .print\:pl-384 {
      padding-left: 38.4rem
    }
  
    .print\:pt-400 {
      padding-top: 40rem
    }
  
    .print\:pr-400 {
      padding-right: 40rem
    }
  
    .print\:pb-400 {
      padding-bottom: 40rem
    }
  
    .print\:pl-400 {
      padding-left: 40rem
    }
  
    .print\:pt-512 {
      padding-top: 51.2rem
    }
  
    .print\:pr-512 {
      padding-right: 51.2rem
    }
  
    .print\:pb-512 {
      padding-bottom: 51.2rem
    }
  
    .print\:pl-512 {
      padding-left: 51.2rem
    }
  
    .print\:pt-640 {
      padding-top: 64rem
    }
  
    .print\:pr-640 {
      padding-right: 64rem
    }
  
    .print\:pb-640 {
      padding-bottom: 64rem
    }
  
    .print\:pl-640 {
      padding-left: 64rem
    }
  
    .print\:pt-px {
      padding-top: 1px
    }
  
    .print\:pr-px {
      padding-right: 1px
    }
  
    .print\:pb-px {
      padding-bottom: 1px
    }
  
    .print\:pl-px {
      padding-left: 1px
    }
  
    .print\:pt-xs {
      padding-top: 32rem
    }
  
    .print\:pr-xs {
      padding-right: 32rem
    }
  
    .print\:pb-xs {
      padding-bottom: 32rem
    }
  
    .print\:pl-xs {
      padding-left: 32rem
    }
  
    .print\:pt-sm {
      padding-top: 48rem
    }
  
    .print\:pr-sm {
      padding-right: 48rem
    }
  
    .print\:pb-sm {
      padding-bottom: 48rem
    }
  
    .print\:pl-sm {
      padding-left: 48rem
    }
  
    .print\:pt-md {
      padding-top: 64rem
    }
  
    .print\:pr-md {
      padding-right: 64rem
    }
  
    .print\:pb-md {
      padding-bottom: 64rem
    }
  
    .print\:pl-md {
      padding-left: 64rem
    }
  
    .print\:pt-lg {
      padding-top: 80rem
    }
  
    .print\:pr-lg {
      padding-right: 80rem
    }
  
    .print\:pb-lg {
      padding-bottom: 80rem
    }
  
    .print\:pl-lg {
      padding-left: 80rem
    }
  
    .print\:pt-xl {
      padding-top: 96rem
    }
  
    .print\:pr-xl {
      padding-right: 96rem
    }
  
    .print\:pb-xl {
      padding-bottom: 96rem
    }
  
    .print\:pl-xl {
      padding-left: 96rem
    }
  
    .print\:pt-2xl {
      padding-top: 112rem
    }
  
    .print\:pr-2xl {
      padding-right: 112rem
    }
  
    .print\:pb-2xl {
      padding-bottom: 112rem
    }
  
    .print\:pl-2xl {
      padding-left: 112rem
    }
  
    .print\:pt-3xl {
      padding-top: 128rem
    }
  
    .print\:pr-3xl {
      padding-right: 128rem
    }
  
    .print\:pb-3xl {
      padding-bottom: 128rem
    }
  
    .print\:pl-3xl {
      padding-left: 128rem
    }
  
    .print\:pt-4xl {
      padding-top: 144rem
    }
  
    .print\:pr-4xl {
      padding-right: 144rem
    }
  
    .print\:pb-4xl {
      padding-bottom: 144rem
    }
  
    .print\:pl-4xl {
      padding-left: 144rem
    }
  
    .print\:pt-5xl {
      padding-top: 160rem
    }
  
    .print\:pr-5xl {
      padding-right: 160rem
    }
  
    .print\:pb-5xl {
      padding-bottom: 160rem
    }
  
    .print\:pl-5xl {
      padding-left: 160rem
    }
  
    .print\:pt-auto {
      padding-top: auto
    }
  
    .print\:pr-auto {
      padding-right: auto
    }
  
    .print\:pb-auto {
      padding-bottom: auto
    }
  
    .print\:pl-auto {
      padding-left: auto
    }
  
    .print\:pointer-events-none {
      pointer-events: none
    }
  
    .print\:pointer-events-auto {
      pointer-events: auto
    }
  
    .print\:static {
      position: static
    }
  
    .print\:fixed {
      position: fixed
    }
  
    .print\:absolute {
      position: absolute
    }
  
    .print\:relative {
      position: relative
    }
  
    .print\:sticky {
      position: -webkit-sticky;
      position: sticky
    }
  
    .print\:inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0
    }
  
    .print\:inset-auto {
      top: auto;
      right: auto;
      bottom: auto;
      left: auto
    }
  
    .print\:inset-y-0 {
      top: 0;
      bottom: 0
    }
  
    .print\:inset-x-0 {
      right: 0;
      left: 0
    }
  
    .print\:inset-y-auto {
      top: auto;
      bottom: auto
    }
  
    .print\:inset-x-auto {
      right: auto;
      left: auto
    }
  
    .print\:top-0 {
      top: 0
    }
  
    .print\:right-0 {
      right: 0
    }
  
    .print\:bottom-0 {
      bottom: 0
    }
  
    .print\:left-0 {
      left: 0
    }
  
    .print\:top-auto {
      top: auto
    }
  
    .print\:right-auto {
      right: auto
    }
  
    .print\:bottom-auto {
      bottom: auto
    }
  
    .print\:left-auto {
      left: auto
    }
  
    .print\:resize-none {
      resize: none
    }
  
    .print\:resize-y {
      resize: vertical
    }
  
    .print\:resize-x {
      resize: horizontal
    }
  
    .print\:resize {
      resize: both
    }
  
    .print\:shadow-0 {
      box-shadow: none
    }
  
    .print\:shadow-1 {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-2 {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-3 {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-4 {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-5 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-6 {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-7 {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-8 {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-9 {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-10 {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-11 {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-12 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-13 {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-14 {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-15 {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-16 {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-17 {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-18 {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-19 {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-20 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-21 {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-22 {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-23 {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .print\:shadow-24 {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .print\:shadow {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .print\:shadow-md {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .print\:shadow-lg {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .print\:shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .print\:shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .print\:shadow-inner {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .print\:shadow-outline {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .print\:shadow-none {
      box-shadow: none
    }
  
    .print\:hover\:shadow-0:hover {
      box-shadow: none
    }
  
    .print\:hover\:shadow-1:hover {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-2:hover {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-3:hover {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-4:hover {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-5:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-6:hover {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-7:hover {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-8:hover {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-9:hover {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-10:hover {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-11:hover {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-12:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-13:hover {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-14:hover {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-15:hover {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-16:hover {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-17:hover {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-18:hover {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-19:hover {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-20:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-21:hover {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-22:hover {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-23:hover {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow-24:hover {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .print\:hover\:shadow:hover {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .print\:hover\:shadow-md:hover {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .print\:hover\:shadow-lg:hover {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .print\:hover\:shadow-xl:hover {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .print\:hover\:shadow-2xl:hover {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .print\:hover\:shadow-inner:hover {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .print\:hover\:shadow-outline:hover {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .print\:hover\:shadow-none:hover {
      box-shadow: none
    }
  
    .print\:focus\:shadow-0:focus {
      box-shadow: none
    }
  
    .print\:focus\:shadow-1:focus {
      box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 2px 1px -1px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-2:focus {
      box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-3:focus {
      box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-4:focus {
      box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-5:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-6:focus {
      box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-7:focus {
      box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-8:focus {
      box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-9:focus {
      box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-10:focus {
      box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-11:focus {
      box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-12:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-13:focus {
      box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-14:focus {
      box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-15:focus {
      box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-16:focus {
      box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-17:focus {
      box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-18:focus {
      box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-19:focus {
      box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-20:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-21:focus {
      box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-22:focus {
      box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-23:focus {
      box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow-24:focus {
      box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12)
    }
  
    .print\:focus\:shadow:focus {
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.10)
    }
  
    .print\:focus\:shadow-md:focus {
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)
    }
  
    .print\:focus\:shadow-lg:focus {
      box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)
    }
  
    .print\:focus\:shadow-xl:focus {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
    }
  
    .print\:focus\:shadow-2xl:focus {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
    }
  
    .print\:focus\:shadow-inner:focus {
      box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06)
    }
  
    .print\:focus\:shadow-outline:focus {
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
    }
  
    .print\:focus\:shadow-none:focus {
      box-shadow: none
    }
  
    .print\:fill-current {
      fill: currentColor
    }
  
    .print\:stroke-current {
      stroke: currentColor
    }
  
    .print\:table-auto {
      table-layout: auto
    }
  
    .print\:table-fixed {
      table-layout: fixed
    }
  
    .print\:text-left {
      text-align: left
    }
  
    .print\:text-center {
      text-align: center
    }
  
    .print\:text-right {
      text-align: right
    }
  
    .print\:text-justify {
      text-align: justify
    }
  
    .print\:text-transparent {
      color: transparent
    }
  
    .print\:text-black {
      color: #22292F
    }
  
    .print\:text-white {
      color: #FFFFFF
    }
  
    .print\:text-gray-100 {
      color: #f7fafc
    }
  
    .print\:text-gray-200 {
      color: #edf2f7
    }
  
    .print\:text-gray-300 {
      color: #e2e8f0
    }
  
    .print\:text-gray-400 {
      color: #cbd5e0
    }
  
    .print\:text-gray-500 {
      color: #a0aec0
    }
  
    .print\:text-gray-600 {
      color: #718096
    }
  
    .print\:text-gray-700 {
      color: #4a5568
    }
  
    .print\:text-gray-800 {
      color: #2d3748
    }
  
    .print\:text-gray-900 {
      color: #1a202c
    }
  
    .print\:text-red {
      color: #E3342F
    }
  
    .print\:text-orange {
      color: #F6993F
    }
  
    .print\:text-yellow {
      color: #FFED4A
    }
  
    .print\:text-green {
      color: #38C172
    }
  
    .print\:text-teal {
      color: #4DC0B5
    }
  
    .print\:text-blue {
      color: #3490DC
    }
  
    .print\:text-indigo {
      color: #6574CD
    }
  
    .print\:text-purple {
      color: #9561E2
    }
  
    .print\:text-pink {
      color: #F66D9B
    }
  
    .print\:text-grey-darkest {
      color: #3D4852
    }
  
    .print\:text-grey-darker {
      color: #606F7B
    }
  
    .print\:text-grey-dark {
      color: #8795A1
    }
  
    .print\:text-grey {
      color: #B8C2CC
    }
  
    .print\:text-grey-light {
      color: #DAE1E7
    }
  
    .print\:text-grey-lighter {
      color: #F1F5F8
    }
  
    .print\:text-grey-lightest {
      color: #F8FAFC
    }
  
    .print\:text-red-darkest {
      color: #3B0D0C
    }
  
    .print\:text-red-darker {
      color: #621B18
    }
  
    .print\:text-red-dark {
      color: #CC1F1A
    }
  
    .print\:text-red-light {
      color: #EF5753
    }
  
    .print\:text-red-lighter {
      color: #F9ACAA
    }
  
    .print\:text-red-lightest {
      color: #FCEBEA
    }
  
    .print\:text-orange-darkest {
      color: #462A16
    }
  
    .print\:text-orange-darker {
      color: #613B1F
    }
  
    .print\:text-orange-dark {
      color: #DE751F
    }
  
    .print\:text-orange-light {
      color: #FAAD63
    }
  
    .print\:text-orange-lighter {
      color: #FCD9B6
    }
  
    .print\:text-orange-lightest {
      color: #FFF5EB
    }
  
    .print\:text-yellow-darkest {
      color: #453411
    }
  
    .print\:text-yellow-darker {
      color: #684F1D
    }
  
    .print\:text-yellow-dark {
      color: #F2D024
    }
  
    .print\:text-yellow-light {
      color: #FFF382
    }
  
    .print\:text-yellow-lighter {
      color: #FFF9C2
    }
  
    .print\:text-yellow-lightest {
      color: #FCFBEB
    }
  
    .print\:text-green-darkest {
      color: #0F2F21
    }
  
    .print\:text-green-darker {
      color: #1A4731
    }
  
    .print\:text-green-dark {
      color: #1F9D55
    }
  
    .print\:text-green-light {
      color: #51D88A
    }
  
    .print\:text-green-lighter {
      color: #A2F5BF
    }
  
    .print\:text-green-lightest {
      color: #E3FCEC
    }
  
    .print\:text-teal-darkest {
      color: #0D3331
    }
  
    .print\:text-teal-darker {
      color: #20504F
    }
  
    .print\:text-teal-dark {
      color: #38A89D
    }
  
    .print\:text-teal-light {
      color: #64D5CA
    }
  
    .print\:text-teal-lighter {
      color: #A0F0ED
    }
  
    .print\:text-teal-lightest {
      color: #E8FFFE
    }
  
    .print\:text-blue-darkest {
      color: #12283A
    }
  
    .print\:text-blue-darker {
      color: #1C3D5A
    }
  
    .print\:text-blue-dark {
      color: #2779BD
    }
  
    .print\:text-blue-light {
      color: #6CB2EB
    }
  
    .print\:text-blue-lighter {
      color: #BCDEFA
    }
  
    .print\:text-blue-lightest {
      color: #EFF8FF
    }
  
    .print\:text-indigo-darkest {
      color: #191E38
    }
  
    .print\:text-indigo-darker {
      color: #2F365F
    }
  
    .print\:text-indigo-dark {
      color: #5661B3
    }
  
    .print\:text-indigo-light {
      color: #7886D7
    }
  
    .print\:text-indigo-lighter {
      color: #B2B7FF
    }
  
    .print\:text-indigo-lightest {
      color: #E6E8FF
    }
  
    .print\:text-purple-darkest {
      color: #21183C
    }
  
    .print\:text-purple-darker {
      color: #382B5F
    }
  
    .print\:text-purple-dark {
      color: #794ACF
    }
  
    .print\:text-purple-light {
      color: #A779E9
    }
  
    .print\:text-purple-lighter {
      color: #D6BBFC
    }
  
    .print\:text-purple-lightest {
      color: #F3EBFF
    }
  
    .print\:text-pink-darkest {
      color: #451225
    }
  
    .print\:text-pink-darker {
      color: #6F213F
    }
  
    .print\:text-pink-dark {
      color: #EB5286
    }
  
    .print\:text-pink-light {
      color: #FA7EA8
    }
  
    .print\:text-pink-lighter {
      color: #FFBBCA
    }
  
    .print\:text-pink-lightest {
      color: #FFEBEF
    }
  
    .print\:hover\:text-transparent:hover {
      color: transparent
    }
  
    .print\:hover\:text-black:hover {
      color: #22292F
    }
  
    .print\:hover\:text-white:hover {
      color: #FFFFFF
    }
  
    .print\:hover\:text-gray-100:hover {
      color: #f7fafc
    }
  
    .print\:hover\:text-gray-200:hover {
      color: #edf2f7
    }
  
    .print\:hover\:text-gray-300:hover {
      color: #e2e8f0
    }
  
    .print\:hover\:text-gray-400:hover {
      color: #cbd5e0
    }
  
    .print\:hover\:text-gray-500:hover {
      color: #a0aec0
    }
  
    .print\:hover\:text-gray-600:hover {
      color: #718096
    }
  
    .print\:hover\:text-gray-700:hover {
      color: #4a5568
    }
  
    .print\:hover\:text-gray-800:hover {
      color: #2d3748
    }
  
    .print\:hover\:text-gray-900:hover {
      color: #1a202c
    }
  
    .print\:hover\:text-red:hover {
      color: #E3342F
    }
  
    .print\:hover\:text-orange:hover {
      color: #F6993F
    }
  
    .print\:hover\:text-yellow:hover {
      color: #FFED4A
    }
  
    .print\:hover\:text-green:hover {
      color: #38C172
    }
  
    .print\:hover\:text-teal:hover {
      color: #4DC0B5
    }
  
    .print\:hover\:text-blue:hover {
      color: #3490DC
    }
  
    .print\:hover\:text-indigo:hover {
      color: #6574CD
    }
  
    .print\:hover\:text-purple:hover {
      color: #9561E2
    }
  
    .print\:hover\:text-pink:hover {
      color: #F66D9B
    }
  
    .print\:hover\:text-grey-darkest:hover {
      color: #3D4852
    }
  
    .print\:hover\:text-grey-darker:hover {
      color: #606F7B
    }
  
    .print\:hover\:text-grey-dark:hover {
      color: #8795A1
    }
  
    .print\:hover\:text-grey:hover {
      color: #B8C2CC
    }
  
    .print\:hover\:text-grey-light:hover {
      color: #DAE1E7
    }
  
    .print\:hover\:text-grey-lighter:hover {
      color: #F1F5F8
    }
  
    .print\:hover\:text-grey-lightest:hover {
      color: #F8FAFC
    }
  
    .print\:hover\:text-red-darkest:hover {
      color: #3B0D0C
    }
  
    .print\:hover\:text-red-darker:hover {
      color: #621B18
    }
  
    .print\:hover\:text-red-dark:hover {
      color: #CC1F1A
    }
  
    .print\:hover\:text-red-light:hover {
      color: #EF5753
    }
  
    .print\:hover\:text-red-lighter:hover {
      color: #F9ACAA
    }
  
    .print\:hover\:text-red-lightest:hover {
      color: #FCEBEA
    }
  
    .print\:hover\:text-orange-darkest:hover {
      color: #462A16
    }
  
    .print\:hover\:text-orange-darker:hover {
      color: #613B1F
    }
  
    .print\:hover\:text-orange-dark:hover {
      color: #DE751F
    }
  
    .print\:hover\:text-orange-light:hover {
      color: #FAAD63
    }
  
    .print\:hover\:text-orange-lighter:hover {
      color: #FCD9B6
    }
  
    .print\:hover\:text-orange-lightest:hover {
      color: #FFF5EB
    }
  
    .print\:hover\:text-yellow-darkest:hover {
      color: #453411
    }
  
    .print\:hover\:text-yellow-darker:hover {
      color: #684F1D
    }
  
    .print\:hover\:text-yellow-dark:hover {
      color: #F2D024
    }
  
    .print\:hover\:text-yellow-light:hover {
      color: #FFF382
    }
  
    .print\:hover\:text-yellow-lighter:hover {
      color: #FFF9C2
    }
  
    .print\:hover\:text-yellow-lightest:hover {
      color: #FCFBEB
    }
  
    .print\:hover\:text-green-darkest:hover {
      color: #0F2F21
    }
  
    .print\:hover\:text-green-darker:hover {
      color: #1A4731
    }
  
    .print\:hover\:text-green-dark:hover {
      color: #1F9D55
    }
  
    .print\:hover\:text-green-light:hover {
      color: #51D88A
    }
  
    .print\:hover\:text-green-lighter:hover {
      color: #A2F5BF
    }
  
    .print\:hover\:text-green-lightest:hover {
      color: #E3FCEC
    }
  
    .print\:hover\:text-teal-darkest:hover {
      color: #0D3331
    }
  
    .print\:hover\:text-teal-darker:hover {
      color: #20504F
    }
  
    .print\:hover\:text-teal-dark:hover {
      color: #38A89D
    }
  
    .print\:hover\:text-teal-light:hover {
      color: #64D5CA
    }
  
    .print\:hover\:text-teal-lighter:hover {
      color: #A0F0ED
    }
  
    .print\:hover\:text-teal-lightest:hover {
      color: #E8FFFE
    }
  
    .print\:hover\:text-blue-darkest:hover {
      color: #12283A
    }
  
    .print\:hover\:text-blue-darker:hover {
      color: #1C3D5A
    }
  
    .print\:hover\:text-blue-dark:hover {
      color: #2779BD
    }
  
    .print\:hover\:text-blue-light:hover {
      color: #6CB2EB
    }
  
    .print\:hover\:text-blue-lighter:hover {
      color: #BCDEFA
    }
  
    .print\:hover\:text-blue-lightest:hover {
      color: #EFF8FF
    }
  
    .print\:hover\:text-indigo-darkest:hover {
      color: #191E38
    }
  
    .print\:hover\:text-indigo-darker:hover {
      color: #2F365F
    }
  
    .print\:hover\:text-indigo-dark:hover {
      color: #5661B3
    }
  
    .print\:hover\:text-indigo-light:hover {
      color: #7886D7
    }
  
    .print\:hover\:text-indigo-lighter:hover {
      color: #B2B7FF
    }
  
    .print\:hover\:text-indigo-lightest:hover {
      color: #E6E8FF
    }
  
    .print\:hover\:text-purple-darkest:hover {
      color: #21183C
    }
  
    .print\:hover\:text-purple-darker:hover {
      color: #382B5F
    }
  
    .print\:hover\:text-purple-dark:hover {
      color: #794ACF
    }
  
    .print\:hover\:text-purple-light:hover {
      color: #A779E9
    }
  
    .print\:hover\:text-purple-lighter:hover {
      color: #D6BBFC
    }
  
    .print\:hover\:text-purple-lightest:hover {
      color: #F3EBFF
    }
  
    .print\:hover\:text-pink-darkest:hover {
      color: #451225
    }
  
    .print\:hover\:text-pink-darker:hover {
      color: #6F213F
    }
  
    .print\:hover\:text-pink-dark:hover {
      color: #EB5286
    }
  
    .print\:hover\:text-pink-light:hover {
      color: #FA7EA8
    }
  
    .print\:hover\:text-pink-lighter:hover {
      color: #FFBBCA
    }
  
    .print\:hover\:text-pink-lightest:hover {
      color: #FFEBEF
    }
  
    .print\:focus\:text-transparent:focus {
      color: transparent
    }
  
    .print\:focus\:text-black:focus {
      color: #22292F
    }
  
    .print\:focus\:text-white:focus {
      color: #FFFFFF
    }
  
    .print\:focus\:text-gray-100:focus {
      color: #f7fafc
    }
  
    .print\:focus\:text-gray-200:focus {
      color: #edf2f7
    }
  
    .print\:focus\:text-gray-300:focus {
      color: #e2e8f0
    }
  
    .print\:focus\:text-gray-400:focus {
      color: #cbd5e0
    }
  
    .print\:focus\:text-gray-500:focus {
      color: #a0aec0
    }
  
    .print\:focus\:text-gray-600:focus {
      color: #718096
    }
  
    .print\:focus\:text-gray-700:focus {
      color: #4a5568
    }
  
    .print\:focus\:text-gray-800:focus {
      color: #2d3748
    }
  
    .print\:focus\:text-gray-900:focus {
      color: #1a202c
    }
  
    .print\:focus\:text-red:focus {
      color: #E3342F
    }
  
    .print\:focus\:text-orange:focus {
      color: #F6993F
    }
  
    .print\:focus\:text-yellow:focus {
      color: #FFED4A
    }
  
    .print\:focus\:text-green:focus {
      color: #38C172
    }
  
    .print\:focus\:text-teal:focus {
      color: #4DC0B5
    }
  
    .print\:focus\:text-blue:focus {
      color: #3490DC
    }
  
    .print\:focus\:text-indigo:focus {
      color: #6574CD
    }
  
    .print\:focus\:text-purple:focus {
      color: #9561E2
    }
  
    .print\:focus\:text-pink:focus {
      color: #F66D9B
    }
  
    .print\:focus\:text-grey-darkest:focus {
      color: #3D4852
    }
  
    .print\:focus\:text-grey-darker:focus {
      color: #606F7B
    }
  
    .print\:focus\:text-grey-dark:focus {
      color: #8795A1
    }
  
    .print\:focus\:text-grey:focus {
      color: #B8C2CC
    }
  
    .print\:focus\:text-grey-light:focus {
      color: #DAE1E7
    }
  
    .print\:focus\:text-grey-lighter:focus {
      color: #F1F5F8
    }
  
    .print\:focus\:text-grey-lightest:focus {
      color: #F8FAFC
    }
  
    .print\:focus\:text-red-darkest:focus {
      color: #3B0D0C
    }
  
    .print\:focus\:text-red-darker:focus {
      color: #621B18
    }
  
    .print\:focus\:text-red-dark:focus {
      color: #CC1F1A
    }
  
    .print\:focus\:text-red-light:focus {
      color: #EF5753
    }
  
    .print\:focus\:text-red-lighter:focus {
      color: #F9ACAA
    }
  
    .print\:focus\:text-red-lightest:focus {
      color: #FCEBEA
    }
  
    .print\:focus\:text-orange-darkest:focus {
      color: #462A16
    }
  
    .print\:focus\:text-orange-darker:focus {
      color: #613B1F
    }
  
    .print\:focus\:text-orange-dark:focus {
      color: #DE751F
    }
  
    .print\:focus\:text-orange-light:focus {
      color: #FAAD63
    }
  
    .print\:focus\:text-orange-lighter:focus {
      color: #FCD9B6
    }
  
    .print\:focus\:text-orange-lightest:focus {
      color: #FFF5EB
    }
  
    .print\:focus\:text-yellow-darkest:focus {
      color: #453411
    }
  
    .print\:focus\:text-yellow-darker:focus {
      color: #684F1D
    }
  
    .print\:focus\:text-yellow-dark:focus {
      color: #F2D024
    }
  
    .print\:focus\:text-yellow-light:focus {
      color: #FFF382
    }
  
    .print\:focus\:text-yellow-lighter:focus {
      color: #FFF9C2
    }
  
    .print\:focus\:text-yellow-lightest:focus {
      color: #FCFBEB
    }
  
    .print\:focus\:text-green-darkest:focus {
      color: #0F2F21
    }
  
    .print\:focus\:text-green-darker:focus {
      color: #1A4731
    }
  
    .print\:focus\:text-green-dark:focus {
      color: #1F9D55
    }
  
    .print\:focus\:text-green-light:focus {
      color: #51D88A
    }
  
    .print\:focus\:text-green-lighter:focus {
      color: #A2F5BF
    }
  
    .print\:focus\:text-green-lightest:focus {
      color: #E3FCEC
    }
  
    .print\:focus\:text-teal-darkest:focus {
      color: #0D3331
    }
  
    .print\:focus\:text-teal-darker:focus {
      color: #20504F
    }
  
    .print\:focus\:text-teal-dark:focus {
      color: #38A89D
    }
  
    .print\:focus\:text-teal-light:focus {
      color: #64D5CA
    }
  
    .print\:focus\:text-teal-lighter:focus {
      color: #A0F0ED
    }
  
    .print\:focus\:text-teal-lightest:focus {
      color: #E8FFFE
    }
  
    .print\:focus\:text-blue-darkest:focus {
      color: #12283A
    }
  
    .print\:focus\:text-blue-darker:focus {
      color: #1C3D5A
    }
  
    .print\:focus\:text-blue-dark:focus {
      color: #2779BD
    }
  
    .print\:focus\:text-blue-light:focus {
      color: #6CB2EB
    }
  
    .print\:focus\:text-blue-lighter:focus {
      color: #BCDEFA
    }
  
    .print\:focus\:text-blue-lightest:focus {
      color: #EFF8FF
    }
  
    .print\:focus\:text-indigo-darkest:focus {
      color: #191E38
    }
  
    .print\:focus\:text-indigo-darker:focus {
      color: #2F365F
    }
  
    .print\:focus\:text-indigo-dark:focus {
      color: #5661B3
    }
  
    .print\:focus\:text-indigo-light:focus {
      color: #7886D7
    }
  
    .print\:focus\:text-indigo-lighter:focus {
      color: #B2B7FF
    }
  
    .print\:focus\:text-indigo-lightest:focus {
      color: #E6E8FF
    }
  
    .print\:focus\:text-purple-darkest:focus {
      color: #21183C
    }
  
    .print\:focus\:text-purple-darker:focus {
      color: #382B5F
    }
  
    .print\:focus\:text-purple-dark:focus {
      color: #794ACF
    }
  
    .print\:focus\:text-purple-light:focus {
      color: #A779E9
    }
  
    .print\:focus\:text-purple-lighter:focus {
      color: #D6BBFC
    }
  
    .print\:focus\:text-purple-lightest:focus {
      color: #F3EBFF
    }
  
    .print\:focus\:text-pink-darkest:focus {
      color: #451225
    }
  
    .print\:focus\:text-pink-darker:focus {
      color: #6F213F
    }
  
    .print\:focus\:text-pink-dark:focus {
      color: #EB5286
    }
  
    .print\:focus\:text-pink-light:focus {
      color: #FA7EA8
    }
  
    .print\:focus\:text-pink-lighter:focus {
      color: #FFBBCA
    }
  
    .print\:focus\:text-pink-lightest:focus {
      color: #FFEBEF
    }
  
    .print\:text-10 {
      font-size: 1rem
    }
  
    .print\:text-11 {
      font-size: 1.1rem
    }
  
    .print\:text-12 {
      font-size: 1.2rem
    }
  
    .print\:text-13 {
      font-size: 1.3rem
    }
  
    .print\:text-14 {
      font-size: 1.4rem
    }
  
    .print\:text-15 {
      font-size: 1.5rem
    }
  
    .print\:text-16 {
      font-size: 1.6rem
    }
  
    .print\:text-17 {
      font-size: 1.7rem
    }
  
    .print\:text-18 {
      font-size: 1.8rem
    }
  
    .print\:text-19 {
      font-size: 1.9rem
    }
  
    .print\:text-20 {
      font-size: 2rem
    }
  
    .print\:text-24 {
      font-size: 2.4rem
    }
  
    .print\:text-28 {
      font-size: 2.8rem
    }
  
    .print\:text-32 {
      font-size: 3.2rem
    }
  
    .print\:text-36 {
      font-size: 3.6rem
    }
  
    .print\:text-40 {
      font-size: 4rem
    }
  
    .print\:text-44 {
      font-size: 4.4rem
    }
  
    .print\:text-48 {
      font-size: 4.8rem
    }
  
    .print\:text-52 {
      font-size: 5.2rem
    }
  
    .print\:text-56 {
      font-size: 5.6rem
    }
  
    .print\:text-60 {
      font-size: 6rem
    }
  
    .print\:text-64 {
      font-size: 6.4rem
    }
  
    .print\:text-68 {
      font-size: 6.8rem
    }
  
    .print\:text-72 {
      font-size: 7.2rem
    }
  
    .print\:text-96 {
      font-size: 9.6rem
    }
  
    .print\:text-128 {
      font-size: 12.8rem
    }
  
    .print\:text-xs {
      font-size: 1.2rem
    }
  
    .print\:text-sm {
      font-size: 2.4rem
    }
  
    .print\:text-base {
      font-size: 1.6rem
    }
  
    .print\:text-lg {
      font-size: 1.8rem
    }
  
    .print\:text-xl {
      font-size: 2rem
    }
  
    .print\:text-2xl {
      font-size: 2.4rem
    }
  
    .print\:text-3xl {
      font-size: 3rem
    }
  
    .print\:text-4xl {
      font-size: 3.6rem
    }
  
    .print\:text-5xl {
      font-size: 4.8rem
    }
  
    .print\:text-6xl {
      font-size: 4rem
    }
  
    .print\:italic {
      font-style: italic
    }
  
    .print\:not-italic {
      font-style: normal
    }
  
    .print\:hover\:italic:hover {
      font-style: italic
    }
  
    .print\:hover\:not-italic:hover {
      font-style: normal
    }
  
    .print\:focus\:italic:focus {
      font-style: italic
    }
  
    .print\:focus\:not-italic:focus {
      font-style: normal
    }
  
    .print\:uppercase {
      text-transform: uppercase
    }
  
    .print\:lowercase {
      text-transform: lowercase
    }
  
    .print\:capitalize {
      text-transform: capitalize
    }
  
    .print\:normal-case {
      text-transform: none
    }
  
    .print\:underline {
      text-decoration: underline
    }
  
    .print\:line-through {
      text-decoration: line-through
    }
  
    .print\:no-underline {
      text-decoration: none
    }
  
    .print\:hover\:underline:hover {
      text-decoration: underline
    }
  
    .print\:hover\:line-through:hover {
      text-decoration: line-through
    }
  
    .print\:hover\:no-underline:hover {
      text-decoration: none
    }
  
    .print\:focus\:underline:focus {
      text-decoration: underline
    }
  
    .print\:focus\:line-through:focus {
      text-decoration: line-through
    }
  
    .print\:focus\:no-underline:focus {
      text-decoration: none
    }
  
    .print\:antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }
  
    .print\:subpixel-antialiased {
      -webkit-font-smoothing: auto;
      -moz-osx-font-smoothing: auto
    }
  
    .print\:tracking-tighter {
      letter-spacing: -0.05em
    }
  
    .print\:tracking-tight {
      letter-spacing: -0.025em
    }
  
    .print\:tracking-normal {
      letter-spacing: 0
    }
  
    .print\:tracking-wide {
      letter-spacing: 0.025em
    }
  
    .print\:tracking-wider {
      letter-spacing: 0.05em
    }
  
    .print\:tracking-widest {
      letter-spacing: 0.1em
    }
  
    .print\:select-none {
      -webkit-user-select: none;
              user-select: none
    }
  
    .print\:select-text {
      -webkit-user-select: text;
              user-select: text
    }
  
    .print\:select-all {
      -webkit-user-select: all;
              user-select: all
    }
  
    .print\:select-auto {
      -webkit-user-select: auto;
              user-select: auto
    }
  
    .print\:align-baseline {
      vertical-align: baseline
    }
  
    .print\:align-top {
      vertical-align: top
    }
  
    .print\:align-middle {
      vertical-align: middle
    }
  
    .print\:align-bottom {
      vertical-align: bottom
    }
  
    .print\:align-text-top {
      vertical-align: text-top
    }
  
    .print\:align-text-bottom {
      vertical-align: text-bottom
    }
  
    .print\:visible {
      visibility: visible
    }
  
    .print\:invisible {
      visibility: hidden
    }
  
    .print\:whitespace-normal {
      white-space: normal
    }
  
    .print\:whitespace-no-wrap {
      white-space: nowrap
    }
  
    .print\:whitespace-pre {
      white-space: pre
    }
  
    .print\:whitespace-pre-line {
      white-space: pre-line
    }
  
    .print\:whitespace-pre-wrap {
      white-space: pre-wrap
    }
  
    .print\:break-normal {
      overflow-wrap: normal;
      word-break: normal
    }
  
    .print\:break-words {
      overflow-wrap: break-word
    }
  
    .print\:break-all {
      word-break: break-all
    }
  
    .print\:truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
  
    .print\:w-0 {
      width: 0
    }
  
    .print\:w-1 {
      width: 0.25rem
    }
  
    .print\:w-2 {
      width: 0.5rem
    }
  
    .print\:w-3 {
      width: 0.75rem
    }
  
    .print\:w-4 {
      width: 0.4rem
    }
  
    .print\:w-5 {
      width: 1.25rem
    }
  
    .print\:w-6 {
      width: 0.6rem
    }
  
    .print\:w-8 {
      width: 0.8rem
    }
  
    .print\:w-10 {
      width: 2.5rem
    }
  
    .print\:w-12 {
      width: 1.2rem
    }
  
    .print\:w-16 {
      width: 1.6rem
    }
  
    .print\:w-20 {
      width: 2rem
    }
  
    .print\:w-24 {
      width: 2.4rem
    }
  
    .print\:w-28 {
      width: 2.8rem
    }
  
    .print\:w-32 {
      width: 3.2rem
    }
  
    .print\:w-36 {
      width: 3.6rem
    }
  
    .print\:w-40 {
      width: 4rem
    }
  
    .print\:w-44 {
      width: 4.4rem
    }
  
    .print\:w-48 {
      width: 4.8rem
    }
  
    .print\:w-52 {
      width: 5.2rem
    }
  
    .print\:w-56 {
      width: 5.6rem
    }
  
    .print\:w-60 {
      width: 6rem
    }
  
    .print\:w-64 {
      width: 6.4rem
    }
  
    .print\:w-68 {
      width: 6.8rem
    }
  
    .print\:w-72 {
      width: 7.2rem
    }
  
    .print\:w-76 {
      width: 7.6rem
    }
  
    .print\:w-80 {
      width: 8rem
    }
  
    .print\:w-84 {
      width: 8.4rem
    }
  
    .print\:w-88 {
      width: 8.8rem
    }
  
    .print\:w-92 {
      width: 9.2rem
    }
  
    .print\:w-96 {
      width: 9.6rem
    }
  
    .print\:w-128 {
      width: 12.8rem
    }
  
    .print\:w-136 {
      width: 13.6rem
    }
  
    .print\:w-160 {
      width: 16rem
    }
  
    .print\:w-192 {
      width: 19.2rem
    }
  
    .print\:w-200 {
      width: 20rem
    }
  
    .print\:w-208 {
      width: 20.8rem
    }
  
    .print\:w-216 {
      width: 21.6rem
    }
  
    .print\:w-224 {
      width: 22.4rem
    }
  
    .print\:w-256 {
      width: 25.6rem
    }
  
    .print\:w-288 {
      width: 28.8rem
    }
  
    .print\:w-320 {
      width: 32rem
    }
  
    .print\:w-360 {
      width: 36rem
    }
  
    .print\:w-384 {
      width: 38.4rem
    }
  
    .print\:w-400 {
      width: 40rem
    }
  
    .print\:w-512 {
      width: 51.2rem
    }
  
    .print\:w-640 {
      width: 64rem
    }
  
    .print\:w-auto {
      width: auto
    }
  
    .print\:w-px {
      width: 1px
    }
  
    .print\:w-xs {
      width: 32rem
    }
  
    .print\:w-sm {
      width: 48rem
    }
  
    .print\:w-md {
      width: 64rem
    }
  
    .print\:w-lg {
      width: 80rem
    }
  
    .print\:w-xl {
      width: 96rem
    }
  
    .print\:w-2xl {
      width: 112rem
    }
  
    .print\:w-3xl {
      width: 128rem
    }
  
    .print\:w-4xl {
      width: 144rem
    }
  
    .print\:w-5xl {
      width: 160rem
    }
  
    .print\:w-1\/2 {
      width: 50%
    }
  
    .print\:w-1\/3 {
      width: 33.33333%
    }
  
    .print\:w-2\/3 {
      width: 66.66667%
    }
  
    .print\:w-1\/4 {
      width: 25%
    }
  
    .print\:w-2\/4 {
      width: 50%
    }
  
    .print\:w-3\/4 {
      width: 75%
    }
  
    .print\:w-1\/5 {
      width: 20%
    }
  
    .print\:w-2\/5 {
      width: 40%
    }
  
    .print\:w-3\/5 {
      width: 60%
    }
  
    .print\:w-4\/5 {
      width: 80%
    }
  
    .print\:w-1\/6 {
      width: 16.66667%
    }
  
    .print\:w-2\/6 {
      width: 33.33333%
    }
  
    .print\:w-3\/6 {
      width: 50%
    }
  
    .print\:w-4\/6 {
      width: 66.66667%
    }
  
    .print\:w-5\/6 {
      width: 83.33333%
    }
  
    .print\:w-1\/12 {
      width: 8.33333%
    }
  
    .print\:w-2\/12 {
      width: 16.66667%
    }
  
    .print\:w-3\/12 {
      width: 25%
    }
  
    .print\:w-4\/12 {
      width: 33.33333%
    }
  
    .print\:w-5\/12 {
      width: 41.66667%
    }
  
    .print\:w-6\/12 {
      width: 50%
    }
  
    .print\:w-7\/12 {
      width: 58.33333%
    }
  
    .print\:w-8\/12 {
      width: 66.66667%
    }
  
    .print\:w-9\/12 {
      width: 75%
    }
  
    .print\:w-10\/12 {
      width: 83.33333%
    }
  
    .print\:w-11\/12 {
      width: 91.66667%
    }
  
    .print\:w-full {
      width: 100%
    }
  
    .print\:w-screen {
      width: 100vw
    }
  
    .print\:z-0 {
      z-index: 0
    }
  
    .print\:z-10 {
      z-index: 10
    }
  
    .print\:z-20 {
      z-index: 20
    }
  
    .print\:z-30 {
      z-index: 30
    }
  
    .print\:z-40 {
      z-index: 40
    }
  
    .print\:z-50 {
      z-index: 50
    }
  
    .print\:z-99 {
      z-index: 99
    }
  
    .print\:z-999 {
      z-index: 999
    }
  
    .print\:z-9999 {
      z-index: 9999
    }
  
    .print\:z-auto {
      z-index: auto
    }
  }
/* Drag Handle Styles */
.drag-handle {
  transition: all 0.2s ease;
}

.drag-handle:hover {
  transform: scale(1.1);
}

.drag-handle:active {
  transform: scale(0.95);
}

/* Prevent text selection on drag handle */
.drag-handle * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Custom dropdown cho AutoComplete - Ant Design 5.x */
.dimension-dropdown-custom,
.measure-dropdown-custom {
    max-height: 400px !important;
    overflow-y: auto !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    background-color: #fff !important;
}

.dimension-dropdown-custom .ant-select-dropdown-menu,
.measure-dropdown-custom .ant-select-dropdown-menu {
    max-height: none !important;
    overflow: visible !important;
}

.dimension-dropdown-custom .ant-select-dropdown-menu-item,
.measure-dropdown-custom .ant-select-dropdown-menu-item {
    padding: 8px 12px !important;
    line-height: 1.5 !important;
}

.dimension-dropdown-custom .ant-select-dropdown-menu-item:hover,
.measure-dropdown-custom .ant-select-dropdown-menu-item:hover {
    background-color: #f5f5f5 !important;
}

.dimension-dropdown-custom .ant-select-dropdown-menu-item-selected,
.measure-dropdown-custom .ant-select-dropdown-menu-item-selected {
    background-color: #e6f7ff !important;
    color: #1890ff !important;
}

/* Schema validation checkbox grid */
.schema-cbx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 8px;
  gap: 8px;
  align-items: start;
  grid-auto-flow: row dense;
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
  padding-right: 12px; /* tránh bị cắt mép phải khi có scrollbar/overlay */
}
.schema-cbx-grid > * { min-width: 0; }

.schema-cbx-grid .ant-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  white-space: normal;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  gap: 8px;
}

.schema-cbx-grid .ant-checkbox-wrapper > span:last-child {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1280px) {
  .schema-cbx-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 1024px) {
  .schema-cbx-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 640px) {
  .schema-cbx-grid { grid-template-columns: 1fr; }
}

/* QuickEditDialog - Fixed footer with scrollable body */
/* Target Modal body */
.ant-modal-body:has(.el-Card-FU),
.ant-modal-body > .el-Card-FU {
  padding: 0 !important;
  overflow: hidden !important;
}

/* Make sure modal body acts as flex container */
.ant-modal-body {
  display: flex !important;
  flex-direction: column !important;
}

/* Card as flex container */
.MuiCard-root.el-Card-FU {
  margin: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
}

/* Fixed header */
.MuiCard-root.el-Card-FU .MuiCardHeader-root {
  flex: 0 0 auto !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

/* Scrollable content */
.MuiCard-root.el-Card-FU .MuiCardContent-root {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
}

/* Override pb-36 tailwind class */
.MuiCard-root.el-Card-FU .MuiCardContent-root.pb-36 {
  padding-bottom: 16px !important;
}

/* Fixed footer - most important */
.MuiCard-root.el-Card-FU .MuiCardActions-root {
  flex: 0 0 auto !important;
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  padding: 8px 16px !important;
  justify-content: flex-end !important;
  background: white !important;
  position: -webkit-sticky !important;
  position: sticky !important;
  bottom: 0 !important;
  z-index: 10 !important;
}

/* 
 * Tailwind và Material-UI conflict fixes 
 * File này chứa các sửa lỗi cho xung đột giữa Tailwind và Material-UI
 */

/* Khôi phục style cho Material-UI components */
.MuiButton-root {
  text-transform: none;
}

.MuiInputBase-root,
.MuiOutlinedInput-root,
.MuiFilledInput-root,
.MuiInputLabel-root {
  font-family: inherit;
}

/* Fix for dark mode conflicts */
.dark .tw-text-gray-900 {
  color: #1a202c !important;
}

.dark .tw-bg-white {
  background-color: #fff !important;
}

/* Đặt lại border cho Material-UI components */
.MuiOutlinedInput-notchedOutline {
  border-color: rgba(0, 0, 0, 0.23) !important;
}

.MuiButton-containedPrimary {
  color: #fff !important;
}

/* Fix navigation styling */
.navigation-item a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: all 0.2s;
}

/* Fix for menu items */
.MuiMenuItem-root {
  min-height: auto;
  font-size: 14px;
}

/* Fix for input fields */
.MuiInputBase-input {
  font-size: 14px;
}

/* Fix for dialog components */
.MuiDialogTitle-root {
  padding: 16px 24px;
}

/* Fix for form controls */
.MuiFormControl-root {
  margin: 8px 0;
  width: 100%;
} 
* {
    outline: none !important;
}

html {
    font-size: 62.5%;
    font-family: Muli, Roboto, Helvetica Neue, Arial, sans-serif;
    background-color: #262933;
}

body {
    font-size: 14px;
    line-height: 1.4;
}

html, body, #root {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

h1, .h1 {
    font-size: 24px;
}

h2, .h2 {
    font-size: 20px;
}

h3, .h3 {
    font-size: 16px;
}

h4, .h4 {
    font-size: 15px;
}

h5, .h5 {
    font-size: 13px;
}

h6, .h6 {
    font-size: 12px;
}

.ps > .ps__rail-y,
.ps > .ps__rail-x {
    z-index: 99;
}

a[role=button] {
    text-decoration: none;
}

/* Medium Devices, Desktops Only */
@media only screen and (min-width: 992px) {
    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        background-color: rgba(0, 0, 0, 0);
    }

    ::-webkit-scrollbar:hover {
        width: 12px;
        height: 12px;
        background-color: rgba(0, 0, 0, 0.06);
    }

    ::-webkit-scrollbar-thumb {
        border: 2px solid transparent;
        box-shadow: inset 0 0 0 20px rgba(0, 0, 0, 0.24);
        border-radius: 20px;
    }

    ::-webkit-scrollbar-thumb:active {
        box-shadow: inset 0 0 0 20px rgba(0, 0, 0, 0.37);
        border-radius: 20px;
    }
}

form label {
    z-index: 99;
}
