@charset "UTF-8";
:root {
  --color-accent: #0083c3;
  --color-accent-hover: #006ea3;
  --color-accent-active: #005a85;
  --color-accent-subtle: rgba(0, 131, 195, 0.1);
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f6f8fa;
  --color-bg-tertiary: #e1e4e8;
  --color-bg-overlay: rgba(0, 0, 0, 0.5);
  --color-text-primary: #24292e;
  --color-text-secondary: #586069;
  --color-text-tertiary: #6a737d;
  --color-text-placeholder: #959da5;
  --color-text-inverse: #ffffff;
  --color-border-primary: #d1d5da;
  --color-border-secondary: #e1e4e8;
  --color-border-tertiary: #eaecef;
  --color-success: #28a745;
  --color-success-bg: #d4edda;
  --color-error: #dc3545;
  --color-error-bg: #f8d7da;
  --color-warning: #ffc107;
  --color-warning-bg: #fff4ce;
  --color-info: #0083c3;
  --color-info-bg: #d1ecf1;
  --color-info-block: #efd9fd;
  --color-warning-block: #fff4ce;
  --color-announcement: #ede7ff;
  --color-code-bg: #f6f8fa;
  --color-code-text: #24292e;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-code: 4px 4px 16px 0px rgba(50, 50, 50, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-accent: #2b82c2; /* main accent */
    --color-accent-hover: #3995d6; /* a bit brighter for hover */
    --color-accent-active: #1e6b9e; /* slightly darker for active */
    --color-accent-subtle: rgba(43, 130, 194, 0.2);
    --color-bg-primary: #1c1c1e;
    --color-bg-secondary: #2c2c2e;
    --color-bg-tertiary: #3a3a3c;
    --color-bg-overlay: rgba(0, 0, 0, 0.7);
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #98989d;
    --color-text-tertiary: #636366;
    --color-text-placeholder: #636366;
    --color-text-inverse: #1c1c1e;
    --color-border-primary: #3a3a3c;
    --color-border-secondary: #48484a;
    --color-border-tertiary: #545456;
    --color-success: #32d74b;
    --color-success-bg: rgba(50, 215, 75, 0.15);
    --color-error: #ff453a;
    --color-error-bg: rgba(255, 69, 58, 0.15);
    --color-warning: #ffd60a;
    --color-warning-bg: rgba(255, 214, 10, 0.15);
    --color-info: var(--color-accent);
    --color-info-bg: rgba(43, 130, 194, 0.2);
    --color-info-block: rgba(191, 90, 242, 0.2);
    --color-warning-block: rgba(255, 214, 10, 0.15);
    --color-announcement: rgba(191, 90, 242, 0.15);
    --color-code-bg: #2c2c2e;
    --color-code-text: #f5f5f7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-code: 4px 4px 16px 0px rgba(0, 0, 0, 0.3);
  }
}
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

summary {
  display: list-item;
}

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

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

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

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

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

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

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  line-height: 1.5;
  color: #24292e;
  background-color: #fff;
}

a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

b,
strong {
  font-weight: 600;
}

hr,
.rule {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(223.1325301205, 225.9036144578, 229.3674698795);
}

hr::before,
.rule::before {
  display: table;
  content: "";
}

hr::after,
.rule::after {
  display: table;
  clear: both;
  content: "";
}

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

td,
th {
  padding: 0;
}

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

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

details summary {
  cursor: pointer;
}

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

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

h1 {
  font-size: 32px;
  font-weight: 600;
}

h2 {
  font-size: 24px;
  font-weight: 600;
}

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

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

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

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

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

small {
  font-size: 90%;
}

blockquote {
  margin: 0;
}

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

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

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

dd {
  margin-left: 0;
}

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

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

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

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

.anim-fade-in.fast {
  animation-duration: 300ms;
}

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

.anim-fade-out.fast {
  animation-duration: 0.3s;
}

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

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

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

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

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

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

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

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

.hover-grow:hover {
  transform: scale(1.025);
}

/* Add a gray border on all sides */
.border {
  border: 1px #e1e4e8 solid !important;
}

/* Add a gray border to the left and right */
.border-y {
  border-top: 1px #e1e4e8 solid !important;
  border-bottom: 1px #e1e4e8 solid !important;
}

/* Remove borders from all sides */
.border-0 {
  border: 0 !important;
}

.border-dashed {
  border-style: dashed !important;
}

/* Use with .border to turn the border blue */
.border-blue {
  border-color: #0366d6 !important;
}

/* Use with .border to turn the border blue-light */
.border-blue-light {
  border-color: #c8e1ff !important;
}

/* Use with .border to turn the border green */
.border-green {
  border-color: #34d058 !important;
}

/* Use with .border to turn the border green light */
.border-green-light {
  border-color: rgb(162, 203, 171.9393939394) !important;
}

/* Use with .border to turn the border red */
.border-red {
  border-color: #d73a49 !important;
}

/* Use with .border to turn the border red-light */
.border-red-light {
  border-color: rgb(205.8, 160.2, 165.0363636364) !important;
}

/* Use with .border to turn the border purple */
.border-purple {
  border-color: #6f42c1 !important;
}

/* Use with .border to turn the border yellow */
.border-yellow {
  border-color: rgb(216.6, 208.2, 165.4) !important;
}

/* Use with .border to turn the border gray-light */
.border-gray-light {
  border-color: rgb(233.6603773585, 235.7943396226, 238.6396226415) !important;
}

/* Use with .border to turn the border gray-dark */
.border-gray-dark {
  border-color: #d1d5da !important;
}

/* Use with .border to turn the border rgba black 0.15 */
.border-black-fade {
  border-color: rgba(27, 31, 35, 0.15) !important;
}

/* Add a gray border */
/* Add a gray border to the top */
.border-top {
  border-top: 1px #e1e4e8 solid !important;
}

/* Add a gray border to the right */
.border-right {
  border-right: 1px #e1e4e8 solid !important;
}

/* Add a gray border to the bottom */
.border-bottom {
  border-bottom: 1px #e1e4e8 solid !important;
}

/* Add a gray border to the left */
.border-left {
  border-left: 1px #e1e4e8 solid !important;
}

/* Remove the top border */
.border-top-0 {
  border-top: 0 !important;
}

/* Remove the right border */
.border-right-0 {
  border-right: 0 !important;
}

/* Remove the bottom border */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* Remove the left border */
.border-left-0 {
  border-left: 0 !important;
}

/* Remove the border-radius */
.rounded-0 {
  border-radius: 0 !important;
}

/* Add a border-radius to all corners */
.rounded-1 {
  border-radius: 3px !important;
}

/* Add a 2x border-radius to all corners */
.rounded-2 {
  border-radius: 6px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 544px) {
  /* Add a gray border */
  /* Add a gray border to the top */
  .border-sm-top {
    border-top: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the right */
  .border-sm-right {
    border-right: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the bottom */
  .border-sm-bottom {
    border-bottom: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the left */
  .border-sm-left {
    border-left: 1px #e1e4e8 solid !important;
  }
  /* Remove the top border */
  .border-sm-top-0 {
    border-top: 0 !important;
  }
  /* Remove the right border */
  .border-sm-right-0 {
    border-right: 0 !important;
  }
  /* Remove the bottom border */
  .border-sm-bottom-0 {
    border-bottom: 0 !important;
  }
  /* Remove the left border */
  .border-sm-left-0 {
    border-left: 0 !important;
  }
  /* Remove the border-radius */
  .rounded-sm-0 {
    border-radius: 0 !important;
  }
  /* Add a border-radius to all corners */
  .rounded-sm-1 {
    border-radius: 3px !important;
  }
  /* Add a 2x border-radius to all corners */
  .rounded-sm-2 {
    border-radius: 6px !important;
  }
  .rounded-sm-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-sm-top-1 {
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
  }
  .rounded-sm-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }
  .rounded-sm-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-sm-right-1 {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
  }
  .rounded-sm-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }
  .rounded-sm-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-sm-bottom-1 {
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
  }
  .rounded-sm-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }
  .rounded-sm-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-sm-left-1 {
    border-bottom-left-radius: 3px !important;
    border-top-left-radius: 3px !important;
  }
  .rounded-sm-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}
@media (min-width: 768px) {
  /* Add a gray border */
  /* Add a gray border to the top */
  .border-md-top {
    border-top: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the right */
  .border-md-right {
    border-right: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the bottom */
  .border-md-bottom {
    border-bottom: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the left */
  .border-md-left {
    border-left: 1px #e1e4e8 solid !important;
  }
  /* Remove the top border */
  .border-md-top-0 {
    border-top: 0 !important;
  }
  /* Remove the right border */
  .border-md-right-0 {
    border-right: 0 !important;
  }
  /* Remove the bottom border */
  .border-md-bottom-0 {
    border-bottom: 0 !important;
  }
  /* Remove the left border */
  .border-md-left-0 {
    border-left: 0 !important;
  }
  /* Remove the border-radius */
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  /* Add a border-radius to all corners */
  .rounded-md-1 {
    border-radius: 3px !important;
  }
  /* Add a 2x border-radius to all corners */
  .rounded-md-2 {
    border-radius: 6px !important;
  }
  .rounded-md-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-md-top-1 {
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
  }
  .rounded-md-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }
  .rounded-md-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-md-right-1 {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
  }
  .rounded-md-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }
  .rounded-md-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-md-bottom-1 {
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
  }
  .rounded-md-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }
  .rounded-md-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-md-left-1 {
    border-bottom-left-radius: 3px !important;
    border-top-left-radius: 3px !important;
  }
  .rounded-md-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}
@media (min-width: 1012px) {
  /* Add a gray border */
  /* Add a gray border to the top */
  .border-lg-top {
    border-top: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the right */
  .border-lg-right {
    border-right: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the bottom */
  .border-lg-bottom {
    border-bottom: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the left */
  .border-lg-left {
    border-left: 1px #e1e4e8 solid !important;
  }
  /* Remove the top border */
  .border-lg-top-0 {
    border-top: 0 !important;
  }
  /* Remove the right border */
  .border-lg-right-0 {
    border-right: 0 !important;
  }
  /* Remove the bottom border */
  .border-lg-bottom-0 {
    border-bottom: 0 !important;
  }
  /* Remove the left border */
  .border-lg-left-0 {
    border-left: 0 !important;
  }
  /* Remove the border-radius */
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  /* Add a border-radius to all corners */
  .rounded-lg-1 {
    border-radius: 3px !important;
  }
  /* Add a 2x border-radius to all corners */
  .rounded-lg-2 {
    border-radius: 6px !important;
  }
  .rounded-lg-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-lg-top-1 {
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
  }
  .rounded-lg-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }
  .rounded-lg-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-lg-right-1 {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
  }
  .rounded-lg-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }
  .rounded-lg-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-lg-bottom-1 {
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
  }
  .rounded-lg-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }
  .rounded-lg-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-lg-left-1 {
    border-bottom-left-radius: 3px !important;
    border-top-left-radius: 3px !important;
  }
  .rounded-lg-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}
@media (min-width: 1280px) {
  /* Add a gray border */
  /* Add a gray border to the top */
  .border-xl-top {
    border-top: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the right */
  .border-xl-right {
    border-right: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the bottom */
  .border-xl-bottom {
    border-bottom: 1px #e1e4e8 solid !important;
  }
  /* Add a gray border to the left */
  .border-xl-left {
    border-left: 1px #e1e4e8 solid !important;
  }
  /* Remove the top border */
  .border-xl-top-0 {
    border-top: 0 !important;
  }
  /* Remove the right border */
  .border-xl-right-0 {
    border-right: 0 !important;
  }
  /* Remove the bottom border */
  .border-xl-bottom-0 {
    border-bottom: 0 !important;
  }
  /* Remove the left border */
  .border-xl-left-0 {
    border-left: 0 !important;
  }
  /* Remove the border-radius */
  .rounded-xl-0 {
    border-radius: 0 !important;
  }
  /* Add a border-radius to all corners */
  .rounded-xl-1 {
    border-radius: 3px !important;
  }
  /* Add a 2x border-radius to all corners */
  .rounded-xl-2 {
    border-radius: 6px !important;
  }
  .rounded-xl-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-xl-top-1 {
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
  }
  .rounded-xl-top-2 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
  }
  .rounded-xl-right-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-xl-right-1 {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
  }
  .rounded-xl-right-2 {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
  }
  .rounded-xl-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-xl-bottom-1 {
    border-bottom-right-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
  }
  .rounded-xl-bottom-2 {
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
  }
  .rounded-xl-left-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-xl-left-1 {
    border-bottom-left-radius: 3px !important;
    border-top-left-radius: 3px !important;
  }
  .rounded-xl-left-2 {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}
/* Add a 50% border-radius to make something into a circle */
.circle {
  border-radius: 50% !important;
}

.box-shadow {
  box-shadow: 0 1px 1px rgba(27, 31, 35, 0.1) !important;
}

.box-shadow-medium {
  box-shadow: 0 1px 5px rgba(27, 31, 35, 0.15) !important;
}

.box-shadow-large {
  box-shadow: 0 1px 15px rgba(27, 31, 35, 0.15) !important;
}

.box-shadow-extra-large {
  box-shadow: 0 10px 50px rgba(27, 31, 35, 0.07) !important;
}

.box-shadow-none {
  box-shadow: none !important;
}

/* Set the background to $bg-white */
.bg-white {
  background-color: #fff !important;
}

/* Set the background to $bg-blue */
.bg-blue {
  background-color: #0366d6 !important;
}

/* Set the background to $bg-blue-light */
.bg-blue-light {
  background-color: #f1f8ff !important;
}

/* Set the background to $bg-gray-dark */
.bg-gray-dark {
  background-color: #24292e !important;
}

/* Set the background to $bg-gray */
.bg-gray {
  background-color: #f6f8fa !important;
}

/* Set the background to $bg-gray-light */
.bg-gray-light {
  background-color: #fafbfc !important;
}

/* Set the background to $bg-green */
.bg-green {
  background-color: #28a745 !important;
}

/* Set the background to $bg-green-light */
.bg-green-light {
  background-color: #dcffe4 !important;
}

/* Set the background to $bg-red */
.bg-red {
  background-color: #d73a49 !important;
}

/* Set the background to $bg-red-light */
.bg-red-light {
  background-color: #ffdce0 !important;
}

/* Set the background to $bg-yellow */
.bg-yellow {
  background-color: #ffd33d !important;
}

/* Set the background to $bg-yellow-light */
.bg-yellow-light {
  background-color: #fff5b1 !important;
}

/* Set the background to $bg-purple */
.bg-purple {
  background-color: #6f42c1 !important;
}

/* Set the background to $bg-purple-light */
.bg-purple-light {
  background-color: #f5f0ff !important;
}

.bg-shade-gradient {
  background-image: linear-gradient(180deg, rgba(27, 31, 35, 0.065), rgba(27, 31, 35, 0)) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 200px !important;
}

/* Set the text color to $text-blue */
.text-blue {
  color: #0366d6 !important;
}

/* Set the text color to $text-red */
.text-red {
  color: #cb2431 !important;
}

/* Set the text color to $text-gray-light */
.text-gray-light {
  color: #6a737d !important;
}

/* Set the text color to $text-gray */
.text-gray {
  color: #586069 !important;
}

/* Set the text color to $text-gray-dark */
.text-gray-dark {
  color: #24292e !important;
}

/* Set the text color to $text-green */
.text-green {
  color: #28a745 !important;
}

/* Set the text color to $text-orange */
.text-orange {
  color: #a04100 !important;
}

/* Set the text color to $text-orange-light */
.text-orange-light {
  color: #e36209 !important;
}

/* Set the text color to $text-purple */
.text-purple {
  color: #6f42c1 !important;
}

/* Set the text color to $text-white */
.text-white {
  color: #fff !important;
}

/* Set the text color to inherit */
.text-inherit {
  color: inherit !important;
}

.text-pending {
  color: #b08800 !important;
}

.bg-pending {
  color: #dbab09 !important;
}

.link-gray {
  color: #586069 !important;
}

.link-gray:hover {
  color: #0366d6 !important;
}

.link-gray-dark {
  color: #24292e !important;
}

.link-gray-dark:hover {
  color: #0366d6 !important;
}

/* Set the link color to $text-blue on hover
  Useful when you want only part of a link to turn blue on hover */
.link-hover-blue:hover {
  color: #0366d6 !important;
}

/* Make a link $text-gray, then $text-blue on hover and removes the underline */
.muted-link {
  color: #586069 !important;
}

.muted-link:hover {
  color: #0366d6 !important;
  text-decoration: none;
}

.details-overlay[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: block;
  cursor: default;
  content: " ";
  background: transparent;
}

.details-overlay-dark[open] > summary::before {
  z-index: 99;
  background: rgba(27, 31, 35, 0.5);
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-justify-start {
  justify-content: flex-start !important;
}

.flex-justify-end {
  justify-content: flex-end !important;
}

.flex-justify-center {
  justify-content: center !important;
}

.flex-justify-between {
  justify-content: space-between !important;
}

.flex-justify-around {
  justify-content: space-around !important;
}

.flex-items-start {
  align-items: flex-start !important;
}

.flex-items-end {
  align-items: flex-end !important;
}

.flex-items-center {
  align-items: center !important;
}

.flex-items-baseline {
  align-items: baseline !important;
}

.flex-items-stretch {
  align-items: stretch !important;
}

.flex-content-start {
  align-content: flex-start !important;
}

.flex-content-end {
  align-content: flex-end !important;
}

.flex-content-center {
  align-content: center !important;
}

.flex-content-between {
  align-content: space-between !important;
}

.flex-content-around {
  align-content: space-around !important;
}

.flex-content-stretch {
  align-content: stretch !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-self-auto {
  align-self: auto !important;
}

.flex-self-start {
  align-self: flex-start !important;
}

.flex-self-end {
  align-self: flex-end !important;
}

.flex-self-center {
  align-self: center !important;
}

.flex-self-baseline {
  align-self: baseline !important;
}

.flex-self-stretch {
  align-self: stretch !important;
}

.flex-item-equal {
  flex-grow: 1;
  flex-basis: 0;
}

@media (min-width: 544px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-justify-start {
    justify-content: flex-start !important;
  }
  .flex-sm-justify-end {
    justify-content: flex-end !important;
  }
  .flex-sm-justify-center {
    justify-content: center !important;
  }
  .flex-sm-justify-between {
    justify-content: space-between !important;
  }
  .flex-sm-justify-around {
    justify-content: space-around !important;
  }
  .flex-sm-items-start {
    align-items: flex-start !important;
  }
  .flex-sm-items-end {
    align-items: flex-end !important;
  }
  .flex-sm-items-center {
    align-items: center !important;
  }
  .flex-sm-items-baseline {
    align-items: baseline !important;
  }
  .flex-sm-items-stretch {
    align-items: stretch !important;
  }
  .flex-sm-content-start {
    align-content: flex-start !important;
  }
  .flex-sm-content-end {
    align-content: flex-end !important;
  }
  .flex-sm-content-center {
    align-content: center !important;
  }
  .flex-sm-content-between {
    align-content: space-between !important;
  }
  .flex-sm-content-around {
    align-content: space-around !important;
  }
  .flex-sm-content-stretch {
    align-content: stretch !important;
  }
  .flex-sm-auto {
    flex: 1 1 auto !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-self-auto {
    align-self: auto !important;
  }
  .flex-sm-self-start {
    align-self: flex-start !important;
  }
  .flex-sm-self-end {
    align-self: flex-end !important;
  }
  .flex-sm-self-center {
    align-self: center !important;
  }
  .flex-sm-self-baseline {
    align-self: baseline !important;
  }
  .flex-sm-self-stretch {
    align-self: stretch !important;
  }
  .flex-sm-item-equal {
    flex-grow: 1;
    flex-basis: 0;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-justify-start {
    justify-content: flex-start !important;
  }
  .flex-md-justify-end {
    justify-content: flex-end !important;
  }
  .flex-md-justify-center {
    justify-content: center !important;
  }
  .flex-md-justify-between {
    justify-content: space-between !important;
  }
  .flex-md-justify-around {
    justify-content: space-around !important;
  }
  .flex-md-items-start {
    align-items: flex-start !important;
  }
  .flex-md-items-end {
    align-items: flex-end !important;
  }
  .flex-md-items-center {
    align-items: center !important;
  }
  .flex-md-items-baseline {
    align-items: baseline !important;
  }
  .flex-md-items-stretch {
    align-items: stretch !important;
  }
  .flex-md-content-start {
    align-content: flex-start !important;
  }
  .flex-md-content-end {
    align-content: flex-end !important;
  }
  .flex-md-content-center {
    align-content: center !important;
  }
  .flex-md-content-between {
    align-content: space-between !important;
  }
  .flex-md-content-around {
    align-content: space-around !important;
  }
  .flex-md-content-stretch {
    align-content: stretch !important;
  }
  .flex-md-auto {
    flex: 1 1 auto !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-self-auto {
    align-self: auto !important;
  }
  .flex-md-self-start {
    align-self: flex-start !important;
  }
  .flex-md-self-end {
    align-self: flex-end !important;
  }
  .flex-md-self-center {
    align-self: center !important;
  }
  .flex-md-self-baseline {
    align-self: baseline !important;
  }
  .flex-md-self-stretch {
    align-self: stretch !important;
  }
  .flex-md-item-equal {
    flex-grow: 1;
    flex-basis: 0;
  }
}
@media (min-width: 1012px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-justify-start {
    justify-content: flex-start !important;
  }
  .flex-lg-justify-end {
    justify-content: flex-end !important;
  }
  .flex-lg-justify-center {
    justify-content: center !important;
  }
  .flex-lg-justify-between {
    justify-content: space-between !important;
  }
  .flex-lg-justify-around {
    justify-content: space-around !important;
  }
  .flex-lg-items-start {
    align-items: flex-start !important;
  }
  .flex-lg-items-end {
    align-items: flex-end !important;
  }
  .flex-lg-items-center {
    align-items: center !important;
  }
  .flex-lg-items-baseline {
    align-items: baseline !important;
  }
  .flex-lg-items-stretch {
    align-items: stretch !important;
  }
  .flex-lg-content-start {
    align-content: flex-start !important;
  }
  .flex-lg-content-end {
    align-content: flex-end !important;
  }
  .flex-lg-content-center {
    align-content: center !important;
  }
  .flex-lg-content-between {
    align-content: space-between !important;
  }
  .flex-lg-content-around {
    align-content: space-around !important;
  }
  .flex-lg-content-stretch {
    align-content: stretch !important;
  }
  .flex-lg-auto {
    flex: 1 1 auto !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-self-auto {
    align-self: auto !important;
  }
  .flex-lg-self-start {
    align-self: flex-start !important;
  }
  .flex-lg-self-end {
    align-self: flex-end !important;
  }
  .flex-lg-self-center {
    align-self: center !important;
  }
  .flex-lg-self-baseline {
    align-self: baseline !important;
  }
  .flex-lg-self-stretch {
    align-self: stretch !important;
  }
  .flex-lg-item-equal {
    flex-grow: 1;
    flex-basis: 0;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-justify-start {
    justify-content: flex-start !important;
  }
  .flex-xl-justify-end {
    justify-content: flex-end !important;
  }
  .flex-xl-justify-center {
    justify-content: center !important;
  }
  .flex-xl-justify-between {
    justify-content: space-between !important;
  }
  .flex-xl-justify-around {
    justify-content: space-around !important;
  }
  .flex-xl-items-start {
    align-items: flex-start !important;
  }
  .flex-xl-items-end {
    align-items: flex-end !important;
  }
  .flex-xl-items-center {
    align-items: center !important;
  }
  .flex-xl-items-baseline {
    align-items: baseline !important;
  }
  .flex-xl-items-stretch {
    align-items: stretch !important;
  }
  .flex-xl-content-start {
    align-content: flex-start !important;
  }
  .flex-xl-content-end {
    align-content: flex-end !important;
  }
  .flex-xl-content-center {
    align-content: center !important;
  }
  .flex-xl-content-between {
    align-content: space-between !important;
  }
  .flex-xl-content-around {
    align-content: space-around !important;
  }
  .flex-xl-content-stretch {
    align-content: stretch !important;
  }
  .flex-xl-auto {
    flex: 1 1 auto !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-self-auto {
    align-self: auto !important;
  }
  .flex-xl-self-start {
    align-self: flex-start !important;
  }
  .flex-xl-self-end {
    align-self: flex-end !important;
  }
  .flex-xl-self-center {
    align-self: center !important;
  }
  .flex-xl-self-baseline {
    align-self: baseline !important;
  }
  .flex-xl-self-stretch {
    align-self: stretch !important;
  }
  .flex-xl-item-equal {
    flex-grow: 1;
    flex-basis: 0;
  }
}
/* Set position to static */
.position-static {
  position: static !important;
}

/* Set position to relative */
.position-relative {
  position: relative !important;
}

/* Set position to absolute */
.position-absolute {
  position: absolute !important;
}

/* Set position to fixed */
.position-fixed {
  position: fixed !important;
}

/* Set top 0 */
.top-0 {
  top: 0 !important;
}

/* Set right 0 */
.right-0 {
  right: 0 !important;
}

/* Set bottom 0 */
.bottom-0 {
  bottom: 0 !important;
}

/* Set left 0 */
.left-0 {
  left: 0 !important;
}

/* Vertical align middle */
.v-align-middle {
  vertical-align: middle !important;
}

/* Vertical align top */
.v-align-top {
  vertical-align: top !important;
}

/* Vertical align bottom */
.v-align-bottom {
  vertical-align: bottom !important;
}

/* Vertical align to the top of the text */
.v-align-text-top {
  vertical-align: text-top !important;
}

/* Vertical align to the bottom of the text */
.v-align-text-bottom {
  vertical-align: text-bottom !important;
}

/* Vertical align to the parent's baseline */
.v-align-baseline {
  vertical-align: baseline !important;
}

/* Set the overflow hidden */
.overflow-hidden {
  overflow: hidden !important;
}

/* Set the overflow scroll */
.overflow-scroll {
  overflow: scroll !important;
}

/* Set the overflow auto */
.overflow-auto {
  overflow: auto !important;
}

/* Clear floats around the element */
.clearfix::before {
  display: table;
  content: "";
}

.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

/* Float to the left */
.float-left {
  float: left !important;
}

/* Float to the right */
.float-right {
  float: right !important;
}

/* No float */
.float-none {
  float: none !important;
}

@media (min-width: 544px) {
  /* Float to the left */
  .float-sm-left {
    float: left !important;
  }
  /* Float to the right */
  .float-sm-right {
    float: right !important;
  }
  /* No float */
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  /* Float to the left */
  .float-md-left {
    float: left !important;
  }
  /* Float to the right */
  .float-md-right {
    float: right !important;
  }
  /* No float */
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1012px) {
  /* Float to the left */
  .float-lg-left {
    float: left !important;
  }
  /* Float to the right */
  .float-lg-right {
    float: right !important;
  }
  /* No float */
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1280px) {
  /* Float to the left */
  .float-xl-left {
    float: left !important;
  }
  /* Float to the right */
  .float-xl-right {
    float: right !important;
  }
  /* No float */
  .float-xl-none {
    float: none !important;
  }
}
/* Max width 100% */
.width-fit {
  max-width: 100% !important;
}

/* Set the width to 100% */
.width-full {
  width: 100% !important;
}

/* Max height 100% */
.height-fit {
  max-height: 100% !important;
}

/* Set the height to 100% */
.height-full {
  height: 100% !important;
}

/* Remove min-width from element */
.min-width-0 {
  min-width: 0 !important;
}

/* Set the direction to rtl */
.direction-rtl {
  direction: rtl !important;
}

/* Set the direction to ltr */
.direction-ltr {
  direction: ltr !important;
}

@media (min-width: 544px) {
  /* Set the direction to rtl */
  .direction-sm-rtl {
    direction: rtl !important;
  }
  /* Set the direction to ltr */
  .direction-sm-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 768px) {
  /* Set the direction to rtl */
  .direction-md-rtl {
    direction: rtl !important;
  }
  /* Set the direction to ltr */
  .direction-md-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 1012px) {
  /* Set the direction to rtl */
  .direction-lg-rtl {
    direction: rtl !important;
  }
  /* Set the direction to ltr */
  .direction-lg-ltr {
    direction: ltr !important;
  }
}
@media (min-width: 1280px) {
  /* Set the direction to rtl */
  .direction-xl-rtl {
    direction: rtl !important;
  }
  /* Set the direction to ltr */
  .direction-xl-ltr {
    direction: ltr !important;
  }
}
/* Set a $size margin to all sides at $breakpoint */
.m-0 {
  margin: 0 !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-0 {
  margin-top: 0 !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-0 {
  margin-right: 0 !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-0 {
  margin-bottom: 0 !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-0 {
  margin-left: 0 !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-1 {
  margin: 4px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-1 {
  margin-top: 4px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-1 {
  margin-right: 4px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-1 {
  margin-bottom: 4px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-1 {
  margin-left: 4px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n1 {
  margin-top: -4px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n1 {
  margin-right: -4px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n1 {
  margin-bottom: -4px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n1 {
  margin-left: -4px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-1 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-2 {
  margin: 8px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-2 {
  margin-top: 8px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-2 {
  margin-right: 8px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-2 {
  margin-bottom: 8px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-2 {
  margin-left: 8px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n2 {
  margin-top: -8px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n2 {
  margin-right: -8px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n2 {
  margin-bottom: -8px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n2 {
  margin-left: -8px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-2 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-3 {
  margin: 16px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-3 {
  margin-top: 16px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-3 {
  margin-right: 16px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-3 {
  margin-bottom: 16px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-3 {
  margin-left: 16px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n3 {
  margin-top: -16px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n3 {
  margin-right: -16px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n3 {
  margin-bottom: -16px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n3 {
  margin-left: -16px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-3 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-4 {
  margin: 24px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-4 {
  margin-top: 24px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-4 {
  margin-right: 24px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-4 {
  margin-bottom: 24px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-4 {
  margin-left: 24px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n4 {
  margin-top: -24px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n4 {
  margin-right: -24px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n4 {
  margin-bottom: -24px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n4 {
  margin-left: -24px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-4 {
  margin-right: 24px !important;
  margin-left: 24px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-5 {
  margin: 32px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-5 {
  margin-top: 32px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-5 {
  margin-right: 32px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-5 {
  margin-bottom: 32px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-5 {
  margin-left: 32px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n5 {
  margin-top: -32px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n5 {
  margin-right: -32px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n5 {
  margin-bottom: -32px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n5 {
  margin-left: -32px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-5 {
  margin-right: 32px !important;
  margin-left: 32px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* Set a $size margin to all sides at $breakpoint */
.m-6 {
  margin: 40px !important;
}

/* Set a $size margin on the top at $breakpoint */
.mt-6 {
  margin-top: 40px !important;
}

/* Set a $size margin on the right at $breakpoint */
.mr-6 {
  margin-right: 40px !important;
}

/* Set a $size margin on the bottom at $breakpoint */
.mb-6 {
  margin-bottom: 40px !important;
}

/* Set a $size margin on the left at $breakpoint */
.ml-6 {
  margin-left: 40px !important;
}

/* Set a negative $size margin on top at $breakpoint */
.mt-n6 {
  margin-top: -40px !important;
}

/* Set a negative $size margin on the right at $breakpoint */
.mr-n6 {
  margin-right: -40px !important;
}

/* Set a negative $size margin on the bottom at $breakpoint */
.mb-n6 {
  margin-bottom: -40px !important;
}

/* Set a negative $size margin on the left at $breakpoint */
.ml-n6 {
  margin-left: -40px !important;
}

/* Set a $size margin on the left & right at $breakpoint */
.mx-6 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

/* Set a $size margin on the top & bottom at $breakpoint */
.my-6 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

/* responsive horizontal auto margins */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 544px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-1 {
    margin: 4px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-1 {
    margin-top: 4px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-1 {
    margin-right: 4px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-1 {
    margin-bottom: 4px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-1 {
    margin-left: 4px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n1 {
    margin-top: -4px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n1 {
    margin-right: -4px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n1 {
    margin-bottom: -4px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n1 {
    margin-left: -4px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-2 {
    margin: 8px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-2 {
    margin-top: 8px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-2 {
    margin-right: 8px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-2 {
    margin-bottom: 8px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-2 {
    margin-left: 8px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n2 {
    margin-top: -8px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n2 {
    margin-right: -8px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n2 {
    margin-bottom: -8px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n2 {
    margin-left: -8px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-3 {
    margin: 16px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-3 {
    margin-top: 16px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-3 {
    margin-right: 16px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-3 {
    margin-bottom: 16px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-3 {
    margin-left: 16px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n3 {
    margin-top: -16px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n3 {
    margin-right: -16px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n3 {
    margin-bottom: -16px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n3 {
    margin-left: -16px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-4 {
    margin: 24px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-4 {
    margin-top: 24px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-4 {
    margin-right: 24px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-4 {
    margin-bottom: 24px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-4 {
    margin-left: 24px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n4 {
    margin-top: -24px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n4 {
    margin-right: -24px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n4 {
    margin-bottom: -24px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n4 {
    margin-left: -24px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-5 {
    margin: 32px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-5 {
    margin-top: 32px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-5 {
    margin-right: 32px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-5 {
    margin-bottom: 32px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-5 {
    margin-left: 32px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n5 {
    margin-top: -32px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n5 {
    margin-right: -32px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n5 {
    margin-bottom: -32px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n5 {
    margin-left: -32px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-sm-6 {
    margin: 40px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-sm-6 {
    margin-top: 40px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-sm-6 {
    margin-right: 40px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-sm-6 {
    margin-bottom: 40px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-sm-6 {
    margin-left: 40px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-sm-n6 {
    margin-top: -40px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-sm-n6 {
    margin-right: -40px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-sm-n6 {
    margin-bottom: -40px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-sm-n6 {
    margin-left: -40px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-sm-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-sm-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* responsive horizontal auto margins */
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-0 {
    margin: 0 !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-0 {
    margin-top: 0 !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-0 {
    margin-right: 0 !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-0 {
    margin-left: 0 !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-1 {
    margin: 4px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-1 {
    margin-top: 4px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-1 {
    margin-right: 4px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-1 {
    margin-bottom: 4px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-1 {
    margin-left: 4px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n1 {
    margin-top: -4px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n1 {
    margin-right: -4px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n1 {
    margin-bottom: -4px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n1 {
    margin-left: -4px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-2 {
    margin: 8px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-2 {
    margin-top: 8px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-2 {
    margin-right: 8px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-2 {
    margin-bottom: 8px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-2 {
    margin-left: 8px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n2 {
    margin-top: -8px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n2 {
    margin-right: -8px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n2 {
    margin-bottom: -8px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n2 {
    margin-left: -8px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-3 {
    margin: 16px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-3 {
    margin-top: 16px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-3 {
    margin-right: 16px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-3 {
    margin-bottom: 16px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-3 {
    margin-left: 16px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n3 {
    margin-top: -16px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n3 {
    margin-right: -16px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n3 {
    margin-bottom: -16px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n3 {
    margin-left: -16px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-4 {
    margin: 24px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-4 {
    margin-top: 24px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-4 {
    margin-right: 24px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-4 {
    margin-bottom: 24px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-4 {
    margin-left: 24px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n4 {
    margin-top: -24px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n4 {
    margin-right: -24px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n4 {
    margin-bottom: -24px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n4 {
    margin-left: -24px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-5 {
    margin: 32px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-5 {
    margin-top: 32px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-5 {
    margin-right: 32px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-5 {
    margin-bottom: 32px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-5 {
    margin-left: 32px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n5 {
    margin-top: -32px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n5 {
    margin-right: -32px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n5 {
    margin-bottom: -32px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n5 {
    margin-left: -32px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-md-6 {
    margin: 40px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-md-6 {
    margin-top: 40px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-md-6 {
    margin-right: 40px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-md-6 {
    margin-bottom: 40px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-md-6 {
    margin-left: 40px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-md-n6 {
    margin-top: -40px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-md-n6 {
    margin-right: -40px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-md-n6 {
    margin-bottom: -40px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-md-n6 {
    margin-left: -40px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-md-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-md-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* responsive horizontal auto margins */
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-1 {
    margin: 4px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-1 {
    margin-top: 4px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-1 {
    margin-right: 4px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-1 {
    margin-bottom: 4px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-1 {
    margin-left: 4px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n1 {
    margin-top: -4px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n1 {
    margin-right: -4px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n1 {
    margin-bottom: -4px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n1 {
    margin-left: -4px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-2 {
    margin: 8px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-2 {
    margin-top: 8px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-2 {
    margin-right: 8px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-2 {
    margin-bottom: 8px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-2 {
    margin-left: 8px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n2 {
    margin-top: -8px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n2 {
    margin-right: -8px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n2 {
    margin-bottom: -8px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n2 {
    margin-left: -8px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-3 {
    margin: 16px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-3 {
    margin-top: 16px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-3 {
    margin-right: 16px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-3 {
    margin-bottom: 16px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-3 {
    margin-left: 16px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n3 {
    margin-top: -16px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n3 {
    margin-right: -16px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n3 {
    margin-bottom: -16px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n3 {
    margin-left: -16px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-4 {
    margin: 24px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-4 {
    margin-top: 24px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-4 {
    margin-right: 24px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-4 {
    margin-bottom: 24px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-4 {
    margin-left: 24px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n4 {
    margin-top: -24px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n4 {
    margin-right: -24px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n4 {
    margin-bottom: -24px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n4 {
    margin-left: -24px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-5 {
    margin: 32px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-5 {
    margin-top: 32px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-5 {
    margin-right: 32px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-5 {
    margin-bottom: 32px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-5 {
    margin-left: 32px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n5 {
    margin-top: -32px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n5 {
    margin-right: -32px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n5 {
    margin-bottom: -32px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n5 {
    margin-left: -32px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-lg-6 {
    margin: 40px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-lg-6 {
    margin-top: 40px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-lg-6 {
    margin-right: 40px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-lg-6 {
    margin-bottom: 40px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-lg-6 {
    margin-left: 40px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-lg-n6 {
    margin-top: -40px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-lg-n6 {
    margin-right: -40px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-lg-n6 {
    margin-bottom: -40px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-lg-n6 {
    margin-left: -40px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-lg-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-lg-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* responsive horizontal auto margins */
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-1 {
    margin: 4px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-1 {
    margin-top: 4px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-1 {
    margin-right: 4px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-1 {
    margin-bottom: 4px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-1 {
    margin-left: 4px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n1 {
    margin-top: -4px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n1 {
    margin-right: -4px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n1 {
    margin-bottom: -4px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n1 {
    margin-left: -4px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-2 {
    margin: 8px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-2 {
    margin-top: 8px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-2 {
    margin-right: 8px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-2 {
    margin-bottom: 8px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-2 {
    margin-left: 8px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n2 {
    margin-top: -8px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n2 {
    margin-right: -8px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n2 {
    margin-bottom: -8px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n2 {
    margin-left: -8px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-3 {
    margin: 16px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-3 {
    margin-top: 16px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-3 {
    margin-right: 16px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-3 {
    margin-bottom: 16px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-3 {
    margin-left: 16px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n3 {
    margin-top: -16px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n3 {
    margin-right: -16px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n3 {
    margin-bottom: -16px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n3 {
    margin-left: -16px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-4 {
    margin: 24px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-4 {
    margin-top: 24px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-4 {
    margin-right: 24px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-4 {
    margin-bottom: 24px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-4 {
    margin-left: 24px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n4 {
    margin-top: -24px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n4 {
    margin-right: -24px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n4 {
    margin-bottom: -24px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n4 {
    margin-left: -24px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-5 {
    margin: 32px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-5 {
    margin-top: 32px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-5 {
    margin-right: 32px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-5 {
    margin-bottom: 32px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-5 {
    margin-left: 32px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n5 {
    margin-top: -32px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n5 {
    margin-right: -32px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n5 {
    margin-bottom: -32px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n5 {
    margin-left: -32px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-5 {
    margin-right: 32px !important;
    margin-left: 32px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  /* Set a $size margin to all sides at $breakpoint */
  .m-xl-6 {
    margin: 40px !important;
  }
  /* Set a $size margin on the top at $breakpoint */
  .mt-xl-6 {
    margin-top: 40px !important;
  }
  /* Set a $size margin on the right at $breakpoint */
  .mr-xl-6 {
    margin-right: 40px !important;
  }
  /* Set a $size margin on the bottom at $breakpoint */
  .mb-xl-6 {
    margin-bottom: 40px !important;
  }
  /* Set a $size margin on the left at $breakpoint */
  .ml-xl-6 {
    margin-left: 40px !important;
  }
  /* Set a negative $size margin on top at $breakpoint */
  .mt-xl-n6 {
    margin-top: -40px !important;
  }
  /* Set a negative $size margin on the right at $breakpoint */
  .mr-xl-n6 {
    margin-right: -40px !important;
  }
  /* Set a negative $size margin on the bottom at $breakpoint */
  .mb-xl-n6 {
    margin-bottom: -40px !important;
  }
  /* Set a negative $size margin on the left at $breakpoint */
  .ml-xl-n6 {
    margin-left: -40px !important;
  }
  /* Set a $size margin on the left & right at $breakpoint */
  .mx-xl-6 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  /* Set a $size margin on the top & bottom at $breakpoint */
  .my-xl-6 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  /* responsive horizontal auto margins */
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
/* Set a $size padding to all sides at $breakpoint */
.p-0 {
  padding: 0 !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-0 {
  padding-top: 0 !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-0 {
  padding-right: 0 !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-0 {
  padding-bottom: 0 !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-0 {
  padding-left: 0 !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-1 {
  padding: 4px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-1 {
  padding-top: 4px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-1 {
  padding-right: 4px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-1 {
  padding-bottom: 4px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-1 {
  padding-left: 4px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-1 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-2 {
  padding: 8px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-2 {
  padding-top: 8px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-2 {
  padding-right: 8px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-2 {
  padding-bottom: 8px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-2 {
  padding-left: 8px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-2 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-3 {
  padding: 16px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-3 {
  padding-top: 16px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-3 {
  padding-right: 16px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-3 {
  padding-bottom: 16px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-3 {
  padding-left: 16px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-3 {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-4 {
  padding: 24px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-4 {
  padding-top: 24px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-4 {
  padding-right: 24px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-4 {
  padding-bottom: 24px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-4 {
  padding-left: 24px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-4 {
  padding-right: 24px !important;
  padding-left: 24px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-5 {
  padding: 32px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-5 {
  padding-top: 32px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-5 {
  padding-right: 32px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-5 {
  padding-bottom: 32px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-5 {
  padding-left: 32px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-5 {
  padding-right: 32px !important;
  padding-left: 32px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* Set a $size padding to all sides at $breakpoint */
.p-6 {
  padding: 40px !important;
}

/* Set a $size padding to the top at $breakpoint */
.pt-6 {
  padding-top: 40px !important;
}

/* Set a $size padding to the right at $breakpoint */
.pr-6 {
  padding-right: 40px !important;
}

/* Set a $size padding to the bottom at $breakpoint */
.pb-6 {
  padding-bottom: 40px !important;
}

/* Set a $size padding to the left at $breakpoint */
.pl-6 {
  padding-left: 40px !important;
}

/* Set a $size padding to the left & right at $breakpoint */
.px-6 {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

/* Set a $size padding to the top & bottom at $breakpoint */
.py-6 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

@media (min-width: 544px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-1 {
    padding: 4px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-1 {
    padding-top: 4px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-1 {
    padding-right: 4px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-1 {
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-1 {
    padding-left: 4px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-2 {
    padding: 8px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-2 {
    padding-top: 8px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-2 {
    padding-right: 8px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-2 {
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-2 {
    padding-left: 8px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-3 {
    padding: 16px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-3 {
    padding-top: 16px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-3 {
    padding-right: 16px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-3 {
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-3 {
    padding-left: 16px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-4 {
    padding: 24px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-4 {
    padding-top: 24px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-4 {
    padding-right: 24px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-4 {
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-4 {
    padding-left: 24px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-5 {
    padding: 32px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-5 {
    padding-top: 32px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-5 {
    padding-right: 32px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-5 {
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-5 {
    padding-left: 32px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-sm-6 {
    padding: 40px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-sm-6 {
    padding-top: 40px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-sm-6 {
    padding-right: 40px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-sm-6 {
    padding-bottom: 40px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-sm-6 {
    padding-left: 40px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-sm-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-sm-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 768px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-0 {
    padding: 0 !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-0 {
    padding-top: 0 !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-0 {
    padding-right: 0 !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-0 {
    padding-left: 0 !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-1 {
    padding: 4px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-1 {
    padding-top: 4px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-1 {
    padding-right: 4px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-1 {
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-1 {
    padding-left: 4px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-2 {
    padding: 8px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-2 {
    padding-top: 8px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-2 {
    padding-right: 8px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-2 {
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-2 {
    padding-left: 8px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-3 {
    padding: 16px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-3 {
    padding-top: 16px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-3 {
    padding-right: 16px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-3 {
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-3 {
    padding-left: 16px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-4 {
    padding: 24px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-4 {
    padding-top: 24px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-4 {
    padding-right: 24px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-4 {
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-4 {
    padding-left: 24px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-5 {
    padding: 32px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-5 {
    padding-top: 32px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-5 {
    padding-right: 32px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-5 {
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-5 {
    padding-left: 32px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-md-6 {
    padding: 40px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-md-6 {
    padding-top: 40px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-md-6 {
    padding-right: 40px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-md-6 {
    padding-bottom: 40px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-md-6 {
    padding-left: 40px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-md-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-md-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 1012px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-1 {
    padding: 4px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-1 {
    padding-top: 4px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-1 {
    padding-right: 4px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-1 {
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-1 {
    padding-left: 4px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-2 {
    padding: 8px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-2 {
    padding-top: 8px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-2 {
    padding-right: 8px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-2 {
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-2 {
    padding-left: 8px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-3 {
    padding: 16px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-3 {
    padding-top: 16px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-3 {
    padding-right: 16px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-3 {
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-3 {
    padding-left: 16px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-4 {
    padding: 24px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-4 {
    padding-top: 24px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-4 {
    padding-right: 24px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-4 {
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-4 {
    padding-left: 24px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-5 {
    padding: 32px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-5 {
    padding-top: 32px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-5 {
    padding-right: 32px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-5 {
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-5 {
    padding-left: 32px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-lg-6 {
    padding: 40px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-lg-6 {
    padding-top: 40px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-lg-6 {
    padding-right: 40px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-lg-6 {
    padding-bottom: 40px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-lg-6 {
    padding-left: 40px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-lg-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-lg-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media (min-width: 1280px) {
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-1 {
    padding: 4px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-1 {
    padding-top: 4px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-1 {
    padding-right: 4px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-1 {
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-1 {
    padding-left: 4px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-2 {
    padding: 8px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-2 {
    padding-top: 8px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-2 {
    padding-right: 8px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-2 {
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-2 {
    padding-left: 8px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-3 {
    padding: 16px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-3 {
    padding-top: 16px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-3 {
    padding-right: 16px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-3 {
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-3 {
    padding-left: 16px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-4 {
    padding: 24px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-4 {
    padding-top: 24px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-4 {
    padding-right: 24px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-4 {
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-4 {
    padding-left: 24px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-5 {
    padding: 32px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-5 {
    padding-top: 32px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-5 {
    padding-right: 32px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-5 {
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-5 {
    padding-left: 32px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-5 {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  /* Set a $size padding to all sides at $breakpoint */
  .p-xl-6 {
    padding: 40px !important;
  }
  /* Set a $size padding to the top at $breakpoint */
  .pt-xl-6 {
    padding-top: 40px !important;
  }
  /* Set a $size padding to the right at $breakpoint */
  .pr-xl-6 {
    padding-right: 40px !important;
  }
  /* Set a $size padding to the bottom at $breakpoint */
  .pb-xl-6 {
    padding-bottom: 40px !important;
  }
  /* Set a $size padding to the left at $breakpoint */
  .pl-xl-6 {
    padding-left: 40px !important;
  }
  /* Set a $size padding to the left & right at $breakpoint */
  .px-xl-6 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  /* Set a $size padding to the top & bottom at $breakpoint */
  .py-xl-6 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.p-responsive {
  padding-right: 16px !important;
  padding-left: 16px !important;
}

@media (min-width: 544px) {
  .p-responsive {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}
@media (min-width: 1012px) {
  .p-responsive {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
/* Set the font size to 26px */
.h1 {
  font-size: 26px !important;
}

@media (min-width: 768px) {
  .h1 {
    font-size: 32px !important;
  }
}
/* Set the font size to 22px */
.h2 {
  font-size: 22px !important;
}

@media (min-width: 768px) {
  .h2 {
    font-size: 24px !important;
  }
}
/* Set the font size to 18px */
.h3 {
  font-size: 18px !important;
}

@media (min-width: 768px) {
  .h3 {
    font-size: 20px !important;
  }
}
/* Set the font size to 16px */
.h4 {
  font-size: 16px !important;
}

/* Set the font size to 14px */
.h5 {
  font-size: 14px !important;
}

/* Set the font size to 12px */
.h6 {
  font-size: 12px !important;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600 !important;
}

/* Set the font size to 26px */
.f1 {
  font-size: 26px !important;
}

@media (min-width: 768px) {
  .f1 {
    font-size: 32px !important;
  }
}
/* Set the font size to 22px */
.f2 {
  font-size: 22px !important;
}

@media (min-width: 768px) {
  .f2 {
    font-size: 24px !important;
  }
}
/* Set the font size to 18px */
.f3 {
  font-size: 18px !important;
}

@media (min-width: 768px) {
  .f3 {
    font-size: 20px !important;
  }
}
/* Set the font size to 16px */
.f4 {
  font-size: 16px !important;
}

@media (min-width: 768px) {
  .f4 {
    font-size: 16px !important;
  }
}
/* Set the font size to 14px */
.f5 {
  font-size: 14px !important;
}

/* Set the font size to 12px */
.f6 {
  font-size: 12px !important;
}

/* Set the font size to 40px and weight to light */
.f00-light {
  font-size: 40px !important;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .f00-light {
    font-size: 48px !important;
  }
}
/* Set the font size to 32px and weight to light */
.f0-light {
  font-size: 32px !important;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .f0-light {
    font-size: 40px !important;
  }
}
/* Set the font size to 26px and weight to light */
.f1-light {
  font-size: 26px !important;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .f1-light {
    font-size: 32px !important;
  }
}
/* Set the font size to 22px and weight to light */
.f2-light {
  font-size: 22px !important;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .f2-light {
    font-size: 24px !important;
  }
}
/* Set the font size to 18px and weight to light */
.f3-light {
  font-size: 18px !important;
  font-weight: 300 !important;
}

@media (min-width: 768px) {
  .f3-light {
    font-size: 20px !important;
  }
}
/* Set the font size to ${#h6-size} */
.text-small {
  font-size: 12px !important;
}

/* Large leading paragraphs */
.lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
  color: #586069;
}

/* Set the line height to ultra condensed */
.lh-condensed-ultra {
  line-height: 1 !important;
}

/* Set the line height to condensed */
.lh-condensed {
  line-height: 1.25 !important;
}

/* Set the line height to default */
.lh-default {
  line-height: 1.5 !important;
}

/* Set the line height to zero */
.lh-0 {
  line-height: 0 !important;
}

/* Text align to the right */
.text-right {
  text-align: right !important;
}

/* Text align to the left */
.text-left {
  text-align: left !important;
}

/* Text align to the center */
.text-center {
  text-align: center !important;
}

@media (min-width: 544px) {
  /* Text align to the right */
  .text-sm-right {
    text-align: right !important;
  }
  /* Text align to the left */
  .text-sm-left {
    text-align: left !important;
  }
  /* Text align to the center */
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  /* Text align to the right */
  .text-md-right {
    text-align: right !important;
  }
  /* Text align to the left */
  .text-md-left {
    text-align: left !important;
  }
  /* Text align to the center */
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1012px) {
  /* Text align to the right */
  .text-lg-right {
    text-align: right !important;
  }
  /* Text align to the left */
  .text-lg-left {
    text-align: left !important;
  }
  /* Text align to the center */
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  /* Text align to the right */
  .text-xl-right {
    text-align: right !important;
  }
  /* Text align to the left */
  .text-xl-left {
    text-align: left !important;
  }
  /* Text align to the center */
  .text-xl-center {
    text-align: center !important;
  }
}
/* Set the font weight to normal */
.text-normal {
  font-weight: 400 !important;
}

/* Set the font weight to bold */
.text-bold {
  font-weight: 600 !important;
}

/* Set the font to italic */
.text-italic {
  font-style: italic !important;
}

/* Make text uppercase */
.text-uppercase {
  text-transform: uppercase !important;
}

/* Underline text */
.text-underline {
  text-decoration: underline !important;
}

/* Don't underline text */
.no-underline {
  text-decoration: none !important;
}

/* Don't wrap white space */
.no-wrap {
  white-space: nowrap !important;
}

/* Normal white space */
.ws-normal {
  white-space: normal !important;
}

/* Allow long lines with no spaces to line break */
.wb-break-all {
  word-break: break-all !important;
}

.text-emphasized {
  font-weight: 600;
  color: #24292e;
}

.list-style-none {
  list-style: none !important;
}

/* Add a dark text shadow */
.text-shadow-dark {
  text-shadow: 0 1px 1px rgba(27, 31, 35, 0.25), 0 1px 25px rgba(27, 31, 35, 0.75);
}

/* Add a light text shadow */
.text-shadow-light {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Set to monospace font */
.text-mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

/* Disallow user from selecting text */
.user-select-none {
  user-select: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

@media (min-width: 544px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1012px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
}
.v-hidden {
  visibility: hidden !important;
}

.v-visible {
  visibility: visible !important;
}

@media (max-width: 544px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 544px) and (max-width: 768px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1012px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 1012px) {
  .hide-xl {
    display: none !important;
  }
}
/* Set the table-layout to fixed */
.table-fixed {
  table-layout: fixed !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
  border: 0;
}

.show-on-focus {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.show-on-focus:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
}

.container {
  width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.container::before {
  display: table;
  content: "";
}

.container::after {
  display: table;
  clear: both;
  content: "";
}

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

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

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

.columns {
  margin-right: -10px;
  margin-left: -10px;
}

.columns::before {
  display: table;
  content: "";
}

.columns::after {
  display: table;
  clear: both;
  content: "";
}

.column {
  float: left;
  padding-right: 10px;
  padding-left: 10px;
}

.one-third {
  width: 33.333333%;
}

.two-thirds {
  width: 66.666667%;
}

.one-fourth {
  width: 25%;
}

.one-half {
  width: 50%;
}

.three-fourths {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.four-fifths {
  width: 80%;
}

.centered {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 544px) {
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 1012px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    width: 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}
.gutter {
  margin-right: -16px;
  margin-left: -16px;
}

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

.gutter-condensed {
  margin-right: -8px;
  margin-left: -8px;
}

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

.gutter-spacious {
  margin-right: -24px;
  margin-left: -24px;
}

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

@media (min-width: 544px) {
  .gutter-sm {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-sm > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .gutter-sm-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-sm-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .gutter-sm-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-sm-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 768px) {
  .gutter-md {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-md > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .gutter-md-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-md-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .gutter-md-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-md-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1012px) {
  .gutter-lg {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-lg > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .gutter-lg-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-lg-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .gutter-lg-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-lg-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
@media (min-width: 1280px) {
  .gutter-xl {
    margin-right: -16px;
    margin-left: -16px;
  }
  .gutter-xl > [class*=col-] {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
  .gutter-xl-condensed {
    margin-right: -8px;
    margin-left: -8px;
  }
  .gutter-xl-condensed > [class*=col-] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .gutter-xl-spacious {
    margin-right: -24px;
    margin-left: -24px;
  }
  .gutter-xl-spacious > [class*=col-] {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
.offset-1 {
  margin-left: 8.3333333333% !important;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 544px) {
  .offset-sm-1 {
    margin-left: 8.3333333333% !important;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667% !important;
  }
  .offset-sm-3 {
    margin-left: 25% !important;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333% !important;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667% !important;
  }
  .offset-sm-6 {
    margin-left: 50% !important;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333% !important;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667% !important;
  }
  .offset-sm-9 {
    margin-left: 75% !important;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333% !important;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.3333333333% !important;
  }
  .offset-md-2 {
    margin-left: 16.6666666667% !important;
  }
  .offset-md-3 {
    margin-left: 25% !important;
  }
  .offset-md-4 {
    margin-left: 33.3333333333% !important;
  }
  .offset-md-5 {
    margin-left: 41.6666666667% !important;
  }
  .offset-md-6 {
    margin-left: 50% !important;
  }
  .offset-md-7 {
    margin-left: 58.3333333333% !important;
  }
  .offset-md-8 {
    margin-left: 66.6666666667% !important;
  }
  .offset-md-9 {
    margin-left: 75% !important;
  }
  .offset-md-10 {
    margin-left: 83.3333333333% !important;
  }
  .offset-md-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 1012px) {
  .offset-lg-1 {
    margin-left: 8.3333333333% !important;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667% !important;
  }
  .offset-lg-3 {
    margin-left: 25% !important;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333% !important;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667% !important;
  }
  .offset-lg-6 {
    margin-left: 50% !important;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333% !important;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667% !important;
  }
  .offset-lg-9 {
    margin-left: 75% !important;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333% !important;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667% !important;
  }
}
@media (min-width: 1280px) {
  .offset-xl-1 {
    margin-left: 8.3333333333% !important;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667% !important;
  }
  .offset-xl-3 {
    margin-left: 25% !important;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333% !important;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667% !important;
  }
  .offset-xl-6 {
    margin-left: 50% !important;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333% !important;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667% !important;
  }
  .offset-xl-9 {
    margin-left: 75% !important;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333% !important;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667% !important;
  }
}
.markdown-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}

.markdown-body::before {
  display: table;
  content: "";
}

.markdown-body::after {
  display: table;
  clear: both;
  content: "";
}

.markdown-body > *:first-child {
  margin-top: 0 !important;
}

.markdown-body > *:last-child {
  margin-bottom: 0 !important;
}

.markdown-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.markdown-body .absent {
  color: #cb2431;
}

.markdown-body .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}

.markdown-body .anchor:focus {
  outline: none;
}

.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre {
  margin-top: 0;
  margin-bottom: 16px;
}

.markdown-body hr {
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: var(--color-border-secondary);
  border: 0;
}

.markdown-body blockquote {
  padding: 0 1em;
  color: var(--color-text-secondary);
  border-left: 0.25em solid var(--color-border-primary);
}

.markdown-body blockquote > :first-child {
  margin-top: 0;
}

.markdown-body blockquote > :last-child {
  margin-bottom: 0;
}

.markdown-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: var(--color-text-primary);
  vertical-align: middle;
  background-color: var(--color-bg-secondary);
  border: solid 1px var(--color-border-primary);
  border-bottom-color: var(--color-border-secondary);
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 var(--color-border-secondary);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
  color: var(--color-text-primary);
  vertical-align: middle;
  visibility: hidden;
}

.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
  text-decoration: none;
}

.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
  visibility: visible;
}

.markdown-body h1 tt,
.markdown-body h1 code,
.markdown-body h2 tt,
.markdown-body h2 code,
.markdown-body h3 tt,
.markdown-body h3 code,
.markdown-body h4 tt,
.markdown-body h4 code,
.markdown-body h5 tt,
.markdown-body h5 code,
.markdown-body h6 tt,
.markdown-body h6 code {
  font-size: inherit;
}

.markdown-body h1 {
  padding-bottom: 0.3em;
  margin-bottom: 1rem;
  font-size: 2em;
}

.markdown-body h2 {
  padding-bottom: 0.3em;
  margin-bottom: 0.75rem;
  font-size: 1.5em;
}

.markdown-body h3 {
  font-size: 1.25em;
}

.markdown-body h4 {
  font-size: 1em;
}

.markdown-body h5 {
  font-size: 0.875em;
}

.markdown-body h6 {
  font-size: 0.85em;
  color: var(--color-text-secondary);
}

.markdown-body ul,
.markdown-body ol {
  padding-left: 2em;
}

.markdown-body ul.no-list,
.markdown-body ol.no-list {
  padding: 0;
  list-style-type: none;
}

.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ol,
.markdown-body ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.markdown-body li {
  word-wrap: break-all;
}

.markdown-body li > p {
  margin-top: 16px;
}

.markdown-body li + li {
  margin-top: 0.25em;
}

.markdown-body dl {
  padding: 0;
}

.markdown-body dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.markdown-body dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

.markdown-body table {
  display: block;
  width: 100%;
  overflow: auto;
}

.markdown-body table th {
  font-weight: 600;
  background-color: var(--color-bg-secondary);
}

.markdown-body table th,
.markdown-body table td {
  padding: 6px 13px;
  border: 1px solid var(--color-border-primary);
}

.markdown-body table tr {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-primary);
}

.markdown-body table tr:nth-child(2n) {
  background-color: var(--color-bg-secondary);
}

.markdown-body table img {
  background-color: transparent;
}

.markdown-body img {
  max-width: 100%;
  box-sizing: content-box;
  background-color: transparent;
}

.markdown-body img[align=right] {
  padding-left: 20px;
}

.markdown-body img[align=left] {
  padding-right: 20px;
}

.markdown-body .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}

.markdown-body span.frame {
  display: block;
  overflow: hidden;
}

.markdown-body span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border-primary);
}

.markdown-body span.frame span img {
  display: block;
  float: left;
}

.markdown-body span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: var(--color-text-secondary);
}

.markdown-body span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}

.markdown-body span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}

.markdown-body span.align-center span img {
  margin: 0 auto;
  text-align: center;
}

.markdown-body span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}

.markdown-body span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}

.markdown-body span.align-right span img {
  margin: 0;
  text-align: right;
}

.markdown-body span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}

.markdown-body span.float-left span {
  margin: 13px 0 0;
}

.markdown-body span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}

.markdown-body span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}

.markdown-body code,
.markdown-body tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  background-color: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border-radius: 3px;
}

.markdown-body code br,
.markdown-body tt br {
  display: none;
}

.markdown-body del code {
  text-decoration: inherit;
}

.markdown-body pre {
  word-wrap: normal;
}

.markdown-body pre > code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

.markdown-body .highlight {
  margin-bottom: 16px;
}

.markdown-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

.markdown-body .highlight pre,
.markdown-body pre {
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background-color: var(--color-code-bg);
  color: var(--color-code-text);
  border-radius: 3px;
}

.markdown-body pre code,
.markdown-body pre tt {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

.markdown-body .csv-data td,
.markdown-body .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.markdown-body .csv-data .blob-num {
  padding: 10px 8px 9px;
  text-align: right;
  background: #fff;
  border: 0;
}

.markdown-body .csv-data tr {
  border-top: 0;
}

.markdown-body .csv-data th {
  font-weight: 600;
  background: #f6f8fa;
  border-top: 0;
}

.highlight {
  background-color: var(--color-code-bg);
  border-radius: 6px;
}

.highlight table td {
  padding: 5px;
}

.highlight table pre {
  margin: 0;
}

.highlight pre, .highlight code {
  color: var(--color-code-text);
  background-color: transparent;
}

:root {
  --hl-comment: #6a737d;
  --hl-string: #032f62;
  --hl-keyword: #d73a49;
  --hl-function: #6f42c1;
  --hl-number: #005cc5;
  --hl-type: #6f42c1;
  --hl-variable: #e36209;
  --hl-operator: #d73a49;
  --hl-tag: #22863a;
  --hl-attribute: #6f42c1;
  --hl-constant: #005cc5;
  --hl-error-fg: #cb2431;
  --hl-error-bg: #ffeef0;
  --hl-diff-add-bg: #e6ffec;
  --hl-diff-add-fg: #22863a;
  --hl-diff-del-bg: #ffeef0;
  --hl-diff-del-fg: #cb2431;
}

@media (prefers-color-scheme: dark) {
  :root {
    --hl-comment: #8b949e;
    --hl-string: #a5d6ff;
    --hl-keyword: #ff7b72;
    --hl-function: #d2a8ff;
    --hl-number: #79c0ff;
    --hl-type: #ffa657;
    --hl-variable: #ffa657;
    --hl-operator: #ff7b72;
    --hl-tag: #7ee787;
    --hl-attribute: #79c0ff;
    --hl-constant: #79c0ff;
    --hl-error-fg: #f85149;
    --hl-error-bg: rgba(248, 81, 73, 0.15);
    --hl-diff-add-bg: rgba(46, 160, 67, 0.15);
    --hl-diff-add-fg: #7ee787;
    --hl-diff-del-bg: rgba(248, 81, 73, 0.15);
    --hl-diff-del-fg: #f85149;
  }
}
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
  color: var(--hl-comment);
  font-style: italic;
}

.highlight .cp {
  color: var(--hl-comment);
  font-weight: bold;
}

.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx {
  color: var(--hl-string);
}

.highlight .sr {
  color: var(--hl-string);
}

.highlight .ss {
  color: var(--hl-constant);
}

.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
  color: var(--hl-keyword);
  font-weight: 600;
}

.highlight .kt {
  color: var(--hl-type);
  font-weight: 600;
}

.highlight .nf, .highlight .nl {
  color: var(--hl-function);
  font-weight: 600;
}

.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .mx, .highlight .il {
  color: var(--hl-number);
}

.highlight .o, .highlight .ow {
  color: var(--hl-operator);
  font-weight: 600;
}

.highlight .nc {
  color: var(--hl-type);
  font-weight: 600;
}

.highlight .nn {
  color: var(--hl-type);
}

.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi {
  color: var(--hl-variable);
}

.highlight .na {
  color: var(--hl-attribute);
}

.highlight .nb {
  color: var(--hl-constant);
}

.highlight .bp {
  color: var(--hl-comment);
}

.highlight .no {
  color: var(--hl-constant);
}

.highlight .nt {
  color: var(--hl-tag);
}

.highlight .nd {
  color: var(--hl-function);
  font-weight: 600;
}

.highlight .ni {
  color: var(--hl-constant);
}

.highlight .ne {
  color: var(--hl-keyword);
  font-weight: 600;
}

.highlight .err {
  color: var(--hl-error-fg);
  background-color: var(--hl-error-bg);
}

.highlight .gd {
  color: var(--hl-diff-del-fg);
  background-color: var(--hl-diff-del-bg);
}

.highlight .gi {
  color: var(--hl-diff-add-fg);
  background-color: var(--hl-diff-add-bg);
}

.highlight .ge {
  font-style: italic;
}

.highlight .gs {
  font-weight: bold;
}

.highlight .gh {
  color: var(--hl-comment);
  font-weight: 600;
}

.highlight .go {
  color: var(--hl-comment);
}

.highlight .gp {
  color: var(--hl-comment);
  font-weight: 600;
}

.highlight .gr {
  color: var(--hl-error-fg);
}

.highlight .gt {
  color: var(--hl-error-fg);
}

.highlight .gu {
  color: var(--hl-comment);
  font-weight: 600;
}

.highlight .w {
  color: var(--hl-comment);
}

/**
 * Inline Editor Styles for Milkdown Integration
 *
 * Provides styling for the in-place documentation editor interface
 * Uses CSS custom properties defined in style.scss for consistent theming
 *
 * Official Milkdown CSS is built via build-milkdown.js and includes:
 * - common/reset.css, prosemirror.css, block-edit.css, toolbar.css
 * - common/link-tooltip.css, code-mirror.css, frame/style.css
 */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto;
  max-width: 350px;
}

.toast.visible {
  transform: translateX(0);
  opacity: 1;
}

.toast .toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast .toast-message {
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.toast .toast-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.toast .toast-close:hover {
  color: var(--color-text-primary);
}

.toast.toast-success {
  border-left: 4px solid var(--color-success);
}

.toast.toast-success .toast-icon {
  color: var(--color-success);
}

.toast.toast-error {
  border-left: 4px solid var(--color-error);
}

.toast.toast-error .toast-icon {
  color: var(--color-error);
}

.toast.toast-warning {
  border-left: 4px solid var(--color-warning);
}

.toast.toast-warning .toast-icon {
  color: var(--color-warning);
}

.toast.toast-info {
  border-left: 4px solid var(--color-accent);
}

.toast.toast-info .toast-icon {
  color: var(--color-accent);
}

.inline-editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-primary);
  gap: 1rem;
}

.inline-editor-toolbar .toolbar-left,
.inline-editor-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inline-editor-toolbar .toolbar-center {
  flex: 1;
  text-align: center;
}

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: transparent;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.toolbar-btn svg {
  width: 14px;
  height: 14px;
}

.toolbar-btn:hover {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border-color: var(--color-border-secondary);
}

.toolbar-btn:active {
  background: var(--color-bg-tertiary);
}

.toolbar-btn.active {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

.toolbar-btn.active:hover {
  background: var(--color-accent-hover);
}

.autosave-status {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.autosave-status.saving {
  color: var(--color-accent);
}

.autosave-status.saved {
  color: var(--color-success);
}

.autosave-status .spinner {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-border-secondary);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.word-count {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  font-variant-numeric: tabular-nums;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.inline-editor-metadata {
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  background: var(--color-bg-secondary);
}

.inline-editor-metadata[open] .chevron-icon {
  transform: rotate(90deg);
}

.metadata-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  user-select: none;
  list-style: none;
}

.metadata-toggle::-webkit-details-marker {
  display: none;
}

.metadata-toggle::marker {
  display: none;
  content: "";
}

.metadata-toggle .chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.metadata-toggle:hover {
  color: var(--color-text-primary);
}

.metadata-fields {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--color-border-primary);
  display: grid;
  gap: 1rem;
  background: var(--color-bg-primary);
  border-radius: 0 0 6px 6px;
}

@media (min-width: 768px) {
  .metadata-fields {
    grid-template-columns: repeat(3, 1fr);
  }
}
.metadata-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metadata-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.metadata-field .metadata-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  font-size: 0.875rem;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.metadata-field .metadata-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.metadata-field .metadata-input::placeholder {
  color: var(--color-text-placeholder);
}

.metadata-field .metadata-hint {
  font-size: 0.6875rem;
  color: var(--color-text-tertiary);
}

.edit-button-container {
  display: inline-block;
  margin: 1rem 0;
}

.edit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.edit-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-inverse);
  text-decoration: none;
}

.edit-button:active {
  background-color: var(--color-accent-active);
}

.edit-button .edit-icon {
  width: 16px;
  height: 16px;
}

.milkdown,
#inline-milkdown-editor .milkdown,
.inline-editor-container .milkdown {
  --crepe-font-title: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  --crepe-font-default: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  --crepe-color-background: var(--color-bg-primary) !important;
  --crepe-color-surface: var(--color-code-bg) !important;
  --crepe-color-surface-low: var(--color-bg-tertiary) !important;
  --crepe-color-on-background: var(--color-text-primary) !important;
  --crepe-color-on-surface: var(--color-code-text) !important;
  --crepe-color-on-surface-variant: var(--color-text-secondary) !important;
  --crepe-color-outline: var(--color-text-tertiary) !important;
  --crepe-color-primary: var(--color-accent) !important;
  --crepe-color-secondary: var(--color-bg-tertiary) !important;
  --crepe-color-on-secondary: var(--color-text-primary) !important;
  --crepe-color-inverse: var(--color-bg-secondary) !important;
  --crepe-color-on-inverse: var(--color-text-primary) !important;
  --crepe-color-inline-code: var(--color-error) !important;
  --crepe-color-error: var(--color-error) !important;
  --crepe-color-hover: var(--color-bg-tertiary) !important;
  --crepe-color-selected: var(--color-accent-subtle) !important;
  --crepe-color-inline-area: var(--color-bg-tertiary) !important;
}

@supports (font-variation-settings: normal) {
  .milkdown,
  #inline-milkdown-editor .milkdown,
  .inline-editor-container .milkdown {
    --crepe-font-title: "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
    --crepe-font-default: "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
  }
}
.milkdown .milkdown-code-block,
#inline-milkdown-editor .milkdown-code-block {
  background: var(--color-code-bg) !important;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
}

.milkdown .milkdown-code-block .cm-editor,
#inline-milkdown-editor .milkdown-code-block .cm-editor {
  background: var(--color-code-bg) !important;
}

.milkdown .milkdown-code-block .cm-gutters,
#inline-milkdown-editor .milkdown-code-block .cm-gutters {
  background: var(--color-code-bg) !important;
  color: var(--color-text-tertiary);
  border-right: 1px solid var(--color-border-primary);
}

.milkdown .milkdown-code-block .cm-content,
.milkdown .milkdown-code-block .cm-line,
#inline-milkdown-editor .milkdown-code-block .cm-content,
#inline-milkdown-editor .milkdown-code-block .cm-line {
  color: var(--color-code-text) !important;
}

.milkdown .milkdown-code-block .cm-cursor,
#inline-milkdown-editor .milkdown-code-block .cm-cursor {
  border-left-color: var(--color-text-primary) !important;
}

.milkdown .milkdown-code-block .cm-activeLine,
#inline-milkdown-editor .milkdown-code-block .cm-activeLine {
  background: var(--color-bg-tertiary) !important;
}

.milkdown .milkdown-code-block .cm-selectionBackground,
.milkdown .milkdown-code-block .cm-selection,
#inline-milkdown-editor .milkdown-code-block .cm-selectionBackground,
#inline-milkdown-editor .milkdown-code-block .cm-selection {
  background: var(--color-accent-subtle) !important;
}

.inline-editor-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  margin-bottom: 2rem;
}

.inline-editor-container[style*="display: none"] {
  display: none !important;
}

.inline-editor-status {
  padding: 0.75rem 1rem;
  margin: 0;
  display: none;
  border-top: 1px solid var(--color-border-primary);
  flex-shrink: 0;
}

.inline-editor-status.info {
  background-color: var(--color-info-bg);
  color: var(--color-info);
}

.inline-editor-status.success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
}

.inline-editor-status.warning {
  background-color: var(--color-warning-bg);
  color: var(--color-warning);
}

.inline-editor-status.error {
  background-color: var(--color-error-bg);
  color: var(--color-error);
}

.inline-editor-main {
  flex: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.inline-editor-main #inline-milkdown-editor {
  flex: 1;
  overflow: visible;
  position: relative;
  margin-left: -60px;
  padding-left: 60px;
}

.inline-editor-main #inline-milkdown-editor .milkdown {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--color-bg-primary);
}

.inline-editor-main #inline-milkdown-editor .milkdown > *:not(.ProseMirror):not(.milkdown-toolbar):not(.milkdown-slash-menu):not(.milkdown-block-handle):not([class*=milkdown-]) {
  display: none !important;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror {
  flex: 1;
  padding: 20px 0 60px 0 !important;
  overflow: visible;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 100%;
  margin: 0;
  color: var(--color-text-primary);
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ul:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=list-]),
.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ol:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=list-]) {
  list-style-position: inside;
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ul:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=list-]) {
  list-style-type: disc;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ol:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=list-]) {
  list-style-type: decimal;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror li:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=item]) {
  display: list-item;
  margin: 0.25em 0;
  padding-left: 0.5em;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror li:not([class*=milkdown-]):not([class*=menu]):not([class*=toolbar]):not([class*=item])::marker {
  color: var(--color-text-secondary);
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ul:not([class*=milkdown-]):not([class*=menu]) ul {
  list-style-type: circle;
  margin: 0.25em 0;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ul:not([class*=milkdown-]):not([class*=menu]) ul ul {
  list-style-type: square;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ol:not([class*=milkdown-]):not([class*=menu]) ol {
  list-style-type: lower-alpha;
  margin: 0.25em 0;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror ol:not([class*=milkdown-]):not([class*=menu]) ol ol {
  list-style-type: lower-roman;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror pre {
  background: var(--color-code-bg) !important;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror code {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror blockquote {
  border-left: 4px solid var(--color-border-primary);
  color: var(--color-text-secondary);
  padding-left: 1rem;
  margin-left: 0;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror a {
  color: var(--color-accent);
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror hr {
  background-color: var(--color-border-primary);
  border: none;
  height: 1px;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror table {
  border-collapse: collapse;
  width: 100%;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror table th, .inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror table td {
  border: 1px solid var(--color-border-primary);
  padding: 0.5rem;
}

.inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror table th {
  background: var(--color-bg-secondary);
  font-weight: 600;
}

.milkdown-slash-menu ul, .milkdown-slash-menu ol,
.milkdown-toolbar ul,
.milkdown-toolbar ol,
.milkdown-block-handle ul,
.milkdown-block-handle ol,
[class*=milkdown-] ul,
[class*=milkdown-] ol {
  list-style-type: none !important;
  margin: 0 !important;
}

.milkdown-slash-menu li,
.milkdown-toolbar li,
.milkdown-block-handle li,
[class*=milkdown-] li {
  display: flex !important;
  list-style-type: none !important;
  margin: 0 !important;
}

.milkdown-slash-menu li::marker,
.milkdown-toolbar li::marker,
.milkdown-block-handle li::marker,
[class*=milkdown-] li::marker {
  content: none !important;
  display: none !important;
}

.inline-editor-footer {
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-primary);
  flex-shrink: 0;
}

.inline-editor-footer .commit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inline-editor-footer .commit-form label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.inline-editor-footer .commit-form input[type=text] {
  padding: 0.5rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  font-size: 0.875rem;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.inline-editor-footer .commit-form input[type=text]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.inline-editor-footer .commit-form input[type=text]::placeholder {
  color: var(--color-text-placeholder);
}

.inline-editor-footer .commit-form .commit-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.inline-editor-footer .commit-form button {
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.inline-editor-footer .commit-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.inline-editor-footer .commit-form .btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

.inline-editor-footer .commit-form .btn-primary:hover:not(:disabled) {
  background-color: var(--color-accent-hover);
}

.inline-editor-footer .commit-form .btn-primary:active:not(:disabled) {
  background-color: var(--color-accent-active);
}

.inline-editor-footer .commit-form .btn-secondary {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  border-color: var(--color-border-primary);
}

.inline-editor-footer .commit-form .btn-secondary:hover {
  background-color: var(--color-bg-secondary);
}

.inline-editor-footer .commit-form .btn-secondary:active {
  background-color: var(--color-bg-tertiary);
}

@media (max-width: 768px) {
  .inline-editor-main #inline-milkdown-editor {
    margin-left: -40px;
    padding-left: 40px;
  }
  .inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror {
    padding: 20px 0 60px 0 !important;
  }
  .inline-editor-footer .commit-actions {
    flex-direction: column;
  }
  .inline-editor-footer .commit-actions button {
    width: 100%;
  }
}
.inline-editor-main .milkdown .crepe-toolbar {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border-primary);
  padding: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.inline-editor-main .milkdown .milkdown-slash-menu,
.inline-editor-main .milkdown .milkdown-block-handle {
  z-index: 100 !important;
}

.inline-editor-main .milkdown .crepe-block-handle {
  cursor: grab;
}

.inline-editor-main .milkdown .crepe-block-handle:active {
  cursor: grabbing;
}

.inline-editor-main .milkdown .milkdown-block-handle {
  z-index: 100 !important;
}

.inline-editor-main .milkdown .crepe-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.inline-editor-main .milkdown .crepe-table td, .inline-editor-main .milkdown .crepe-table th {
  border: 1px solid var(--color-border-primary);
  padding: 0.5rem;
}

.inline-editor-main .milkdown .crepe-table th {
  background-color: var(--color-bg-secondary);
  font-weight: 600;
}

.inline-editor-main .milkdown .crepe-code-block,
.inline-editor-main .milkdown .milkdown-code-block {
  margin: 1rem 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-code-bg) !important;
}

.inline-editor-main .milkdown .crepe-code-block .cm-editor,
.inline-editor-main .milkdown .milkdown-code-block .cm-editor {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  background: var(--color-code-bg) !important;
}

.inline-editor-main .milkdown .crepe-code-block .cm-gutters,
.inline-editor-main .milkdown .milkdown-code-block .cm-gutters {
  background: var(--color-code-bg) !important;
  border-right: 1px solid var(--color-border-primary) !important;
}

.inline-editor-main .milkdown .crepe-code-block .cm-content,
.inline-editor-main .milkdown .milkdown-code-block .cm-content {
  color: var(--color-code-text) !important;
}

.inline-editor-main .milkdown .crepe-code-block .cm-line,
.inline-editor-main .milkdown .milkdown-code-block .cm-line {
  color: var(--color-code-text);
}

.inline-editor-main .milkdown .crepe-math-block {
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: 6px;
  overflow-x: auto;
}

.inline-editor-main .milkdown .milkdown-latex-inline-edit {
  display: none !important;
}

.inline-editor-main .milkdown span[data-type=math_inline]:hover .milkdown-latex-inline-edit,
.inline-editor-main .milkdown span[data-type=math_inline]:focus-within .milkdown-latex-inline-edit {
  display: flex !important;
}

.inline-editor-main .milkdown span[data-type=math_inline] > * {
  display: none;
}

.inline-editor-main .milkdown span[data-type=math_inline] > .katex {
  display: inline-block;
}

.inline-editor-main .milkdown span[data-type=math_inline] > .katex .katex-html[aria-hidden=true] {
  display: none !important;
}

.new-file-button-container {
  display: inline-block;
  margin: 1rem 0;
}

.new-file-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.new-file-button:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-inverse);
  text-decoration: none;
}

.new-file-button:active {
  background-color: var(--color-accent-active);
}

.new-file-button .new-file-icon {
  width: 16px;
  height: 16px;
}

.new-file-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.new-file-dialog[style*="display: none"] {
  display: none !important;
}

.new-file-dialog-backdrop {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-overlay);
  z-index: 1;
}

.new-file-dialog-content {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-primary);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
}

.new-file-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border-primary);
}

.new-file-dialog-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.new-file-dialog-header .new-file-dialog-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.new-file-dialog-header .new-file-dialog-close:hover {
  background-color: var(--color-bg-secondary);
}

.new-file-dialog-header .new-file-dialog-close:active {
  background-color: var(--color-bg-tertiary);
}

.new-file-dialog-body {
  padding: 1.5rem;
}

.new-file-dialog-body label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.new-file-dialog-body .new-file-name-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.new-file-dialog-body .new-file-name-input-wrapper:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.new-file-dialog-body .new-file-date-prefix {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  background-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-right: 1px solid var(--color-border-primary);
  font-family: "Monaco", "Menlo", "Consolas", monospace;
}

.new-file-dialog-body .new-file-name-input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  font-size: 0.875rem;
  outline: none;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.new-file-dialog-body .new-file-name-input::placeholder {
  color: var(--color-text-placeholder);
}

.new-file-dialog-body .new-file-extension {
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  background-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 1px solid var(--color-border-primary);
  font-family: "Monaco", "Menlo", "Consolas", monospace;
}

.new-file-dialog-body .new-file-help-text {
  margin: 0.5rem 0 0 0;
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
}

.new-file-dialog-body .new-file-error {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background-color: var(--color-error-bg);
  color: var(--color-error);
  border-radius: 4px;
  font-size: 0.875rem;
}

.new-file-dialog-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border-primary);
  background-color: var(--color-bg-secondary);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.new-file-dialog-footer button {
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.new-file-dialog-footer button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.new-file-dialog-footer .btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

.new-file-dialog-footer .btn-primary:hover:not(:disabled) {
  background-color: var(--color-accent-hover);
}

.new-file-dialog-footer .btn-primary:active:not(:disabled) {
  background-color: var(--color-accent-active);
}

.new-file-dialog-footer .btn-secondary {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  border-color: var(--color-border-primary);
}

.new-file-dialog-footer .btn-secondary:hover {
  background-color: var(--color-bg-secondary);
}

.new-file-dialog-footer .btn-secondary:active {
  background-color: var(--color-bg-tertiary);
}

@media (max-width: 768px) {
  .new-file-dialog-content {
    width: 95%;
  }
  .new-file-dialog-footer {
    flex-direction: column;
  }
  .new-file-dialog-footer button {
    width: 100%;
  }
}
.inline-editor-container.zen-mode {
  position: fixed !important;
  inset: 0;
  z-index: 9998;
  background: var(--color-bg-primary);
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}

.inline-editor-container.zen-mode .inline-editor-toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.75rem 2rem;
  margin: 0;
  border-bottom: 1px solid var(--color-border-primary);
  background: var(--color-bg-primary);
  flex-shrink: 0;
}

.inline-editor-container.zen-mode .inline-editor-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem 2rem 3rem;
  max-width: 100%;
  overflow: visible;
}

.inline-editor-container.zen-mode .inline-editor-main .inline-editor-metadata {
  width: 100%;
  max-width: none;
}

.inline-editor-container.zen-mode .inline-editor-main #inline-milkdown-editor {
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding-left: 0;
}

.inline-editor-container.zen-mode .inline-editor-main #inline-milkdown-editor .milkdown {
  padding-left: 60px;
}

.inline-editor-container.zen-mode .inline-editor-main #inline-milkdown-editor .milkdown .ProseMirror {
  padding: 20px 0 40px 0 !important;
  min-height: 60vh;
  max-width: none;
}

.inline-editor-container.zen-mode .inline-editor-status {
  flex-shrink: 0;
}

.inline-editor-container.zen-mode .inline-editor-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--color-border-primary);
  padding: 1rem 3rem;
  background: var(--color-bg-secondary);
}

.inline-editor-container.zen-mode .inline-editor-footer .commit-form {
  max-width: none;
  margin: 0;
}

.inline-editor-container.zen-mode .milkdown {
  position: relative !important;
}

.inline-editor-container.zen-mode .milkdown .milkdown-block-handle {
  left: -20px !important;
  right: auto !important;
}

@media (max-width: 768px) {
  .inline-editor-container.zen-mode .inline-editor-main {
    padding: 1rem;
  }
  .inline-editor-container.zen-mode .inline-editor-main #inline-milkdown-editor .milkdown {
    padding-left: 40px;
  }
  .inline-editor-container.zen-mode .inline-editor-footer {
    padding: 1rem;
  }
  .inline-editor-container.zen-mode .milkdown .milkdown-block-handle {
    left: -15px !important;
  }
}
body.editor-zen-mode {
  overflow: hidden !important;
}

.draft-recovery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-overlay);
}

.draft-recovery-modal[style*="display: none"] {
  display: none !important;
}

.draft-recovery-content {
  background: var(--color-bg-primary);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  max-width: 450px;
  width: 90%;
  padding: 1.5rem;
}

.draft-recovery-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.draft-recovery-header .draft-icon {
  width: 32px;
  height: 32px;
  background: var(--color-warning-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.draft-recovery-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.draft-recovery-body {
  margin-bottom: 1.5rem;
}

.draft-recovery-body p {
  margin: 0 0 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.draft-recovery-body .draft-time {
  font-weight: 500;
  color: var(--color-text-primary);
}

.draft-recovery-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.draft-recovery-actions button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.draft-recovery-actions .btn-primary {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-accent);
}

.draft-recovery-actions .btn-primary:hover {
  background: var(--color-accent-hover);
}

.draft-recovery-actions .btn-secondary {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-primary);
}

.draft-recovery-actions .btn-secondary:hover {
  background: var(--color-bg-secondary);
}

.editor-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 1rem;
  color: var(--color-text-secondary);
}

.editor-loading .loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-border-secondary);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.editor-loading .loading-text {
  font-size: 0.875rem;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

a {
  color: var(--color-accent);
}
a:hover {
  color: var(--color-accent-hover);
}

.markdown-body {
  max-width: 800px;
  font-size: 16px;
  color: var(--color-text-primary);
  background-color: transparent;
}

.markdown-body p {
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 1.2em;
}

.markdown-body li {
  line-height: 1.9em;
}

.markdown-body li.folderList {
  list-style: none;
}
.markdown-body li.tagList {
  list-style: none;
}
.markdown-body li.docList {
  list-style: none;
}
.markdown-body ul.myposts {
  padding-left: 0px;
}

.markdown-body li.folderList::before {
  content: "📂 ";
}

.markdown-body li.docList::before {
  content: "📄 ";
}

.markdown-body li.tagList::before {
  content: "#";
}

input.task-list-item-checkbox {
  margin-right: 4px;
}

img[src*=demo] {
  border: 1px solid var(--color-border-secondary);
  box-shadow: var(--shadow-code);
}

@media only screen and (min-width: 1170px) {
  img[src*=demo] {
    max-width: 130%;
    margin-left: -15%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.wikilink:before {
  content: "[[";
  opacity: 0.5;
}

.wikilink:after {
  content: "]]";
  opacity: 0.5;
}

.github-only {
  display: none;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 1.5rem;
}

.top-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-secondary);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-primary));
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-nav a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.top-nav a[aria-current=page] {
  background: linear-gradient(135deg, var(--color-accent-subtle), var(--color-bg-primary));
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.home-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-secondary);
  border-radius: 18px;
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  background: radial-gradient(circle at 90% 10%, rgba(0, 131, 195, 0.2), transparent 45%), radial-gradient(circle at 15% 90%, rgba(0, 131, 195, 0.12), transparent 35%), linear-gradient(140deg, var(--color-bg-secondary), var(--color-bg-primary));
  animation: hero-in 0.45s ease-out both;
}

.home-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 0.25rem;
}

.home-hero h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.25;
}

.home-hero p {
  margin-bottom: 0;
  max-width: 62ch;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.home-button-primary {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}

.home-button-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-inverse);
}

.home-button-secondary {
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  border-color: var(--color-border-primary);
}

.home-button-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.home-section {
  margin-top: 1.2rem;
}

.home-section h3 {
  margin-bottom: 0.75rem;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}

.home-card {
  border: 1px solid var(--color-border-secondary);
  border-radius: 14px;
  background: linear-gradient(165deg, var(--color-bg-primary), var(--color-bg-secondary));
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.home-card h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.home-card p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.home-link-list {
  margin: 0;
  padding-left: 1.2rem;
}

.home-link-list li {
  margin: 0.25rem 0;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 540px) {
  .home-hero {
    border-radius: 14px;
    padding: 1.2rem;
  }
  .home-button {
    width: 100%;
  }
  .top-nav {
    margin-bottom: 1.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero,
  .home-card,
  .top-nav a {
    animation: none;
    transition: none;
  }
}
.announcement {
  background: var(--color-announcement);
  padding: 4px 16px;
  color: var(--color-text-primary);
  border-radius: 4px;
}

#search-container {
  position: relative;
}

.search-open-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.search-open-button:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-primary);
}
.search-open-button:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
}

.search-open-label {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.search-open-shortcut {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  padding: 0.125rem 0.4rem;
  background: var(--color-bg-primary);
}

.search-palette {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 1rem 1rem;
  isolation: isolate;
}
.search-palette[style*="display: none"] {
  display: none !important;
}

.search-palette-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

body.search-palette-open .page-content-wrapper {
  filter: none;
}

.search-palette-content {
  position: relative;
  z-index: 2;
  width: min(760px, 94vw);
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-palette-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border-secondary);
}
.search-palette-header h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.search-palette-close {
  border: 0;
  background: transparent;
  color: var(--color-text-tertiary);
  font-size: 1.5rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
}
.search-palette-close:hover {
  background: var(--color-bg-secondary);
}

.search-palette-input-row {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border-secondary);
}

.search-palette-input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.85rem 0.95rem;
  font-size: 1rem;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-palette-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-subtle);
  background: var(--color-bg-primary);
}

.search-palette-results {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  min-height: 140px;
  max-height: 50vh;
}

.search-result-item {
  margin: 0;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border-tertiary);
}
.search-result-item:last-child {
  border-bottom: none;
}

.search-result-link {
  text-decoration: none;
}

.search-result-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
}

.search-result-snippet {
  margin: 0.4rem 0 0;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

.search-results-state {
  margin: 0;
  padding: 1rem;
  color: var(--color-text-tertiary);
  font-size: 0.9rem;
}

.search-palette-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--color-border-secondary);
  background: var(--color-bg-secondary);
  color: var(--color-text-tertiary);
  font-size: 0.8rem;
}

.search-palette-footer kbd {
  border: 1px solid var(--color-border-primary);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  font-size: 0.75rem;
}

.doc-meta {
  font-family: monospace;
  font-size: 0.8rem;
}

.crumbs {
  font-family: monospace;
  background-color: var(--color-bg-primary);
  color: var(--color-text-secondary);
}

details summary::-webkit-details-marker,
details summary::marker {
  display: none;
  content: "";
}

details > summary > h1::before {
  content: "▷ ";
  margin-left: -1em;
  font-size: 0.9em;
}

details[open] > summary > h1::before {
  content: "▽ ";
}

.markdown-body > .info {
  border: 1px solid var(--color-info-block);
  background-color: var(--color-info-block);
  margin-top: 1rem;
  padding: 1rem;
  display: block;
  border-radius: 6px;
}
.markdown-body > .info > :first-child {
  margin-top: 0;
}
.markdown-body > .info > :last-child {
  margin-bottom: 0;
}

.markdown-body > .info::before {
  content: "Ⓘ Info\a";
  display: block;
  font-weight: bold;
}

.markdown-body > .warning {
  border: 1px solid var(--color-warning-block);
  background-color: var(--color-warning-block);
  margin-top: 1rem;
  padding: 1rem;
  display: block;
  border-radius: 6px;
}
.markdown-body > .warning > :first-child {
  margin-top: 0;
}
.markdown-body > .warning > :last-child {
  margin-bottom: 0;
}

.markdown-body > .warning::before {
  content: "Ⓦ Warning\a";
  display: block;
  font-weight: bold;
}

.language-sh code::before {
  content: "$";
  margin-right: 1rem;
  color: var(--color-text-tertiary);
}

pre.highlight {
  padding: 8px 12px;
  position: relative;
  background-color: var(--color-code-bg);
  border: 1px solid var(--color-border-secondary);
  border-radius: 6px;
}
pre.highlight > code {
  border: 0;
  overflow-x: auto;
  padding-right: 0;
  padding-left: 0;
  color: var(--color-code-text);
  background-color: transparent;
}
pre.highlight.highlight {
  overflow: auto;
  white-space: pre;
  word-wrap: normal;
}
pre.highlight:hover > button {
  opacity: 1;
  border: 0;
}
pre.highlight > button {
  opacity: 0;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  transition: all 0.2s ease-in-out;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 4px;
  color: var(--color-text-secondary);
  padding: 0.25rem 0.5rem;
}
pre.highlight > button:active, pre.highlight > button:focus, pre.highlight > button:hover {
  opacity: 1;
  border: 1px solid var(--color-border-primary);
  background: var(--color-bg-tertiary);
}

body.modal-open {
  overflow: hidden !important;
  padding-right: var(--scrollbar-width, 0px);
}

.userinfo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.userinfo-modal[style*="display: none"] {
  display: none !important;
}

.userinfo-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg-overlay);
  z-index: 1;
}

.userinfo-modal-content {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-primary);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
}

.userinfo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border-primary);
}
.userinfo-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.userinfo-modal-header .userinfo-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.userinfo-modal-header .userinfo-modal-close:hover {
  background-color: var(--color-bg-secondary);
}
.userinfo-modal-header .userinfo-modal-close:active {
  background-color: var(--color-bg-tertiary);
}

.userinfo-modal-body {
  padding: 1.5rem;
}

.userinfo-field {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
}
.userinfo-field strong {
  min-width: 80px;
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
}
.userinfo-field span {
  color: var(--color-text-primary);
  flex: 1;
  word-break: break-all;
  font-size: 0.875rem;
}

.userinfo-modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border-primary);
  background-color: var(--color-bg-secondary);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.userinfo-modal-footer .btn-primary {
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}
.userinfo-modal-footer .btn-primary:hover {
  background-color: var(--color-accent-hover);
  text-decoration: none;
  color: var(--color-text-inverse);
}
.userinfo-modal-footer .btn-primary:active {
  background-color: var(--color-accent-active);
}

@media (max-width: 768px) {
  .userinfo-modal-content {
    width: 95%;
  }
  .userinfo-modal-footer {
    flex-direction: column;
  }
  .userinfo-modal-footer .btn-primary {
    width: 100%;
  }
}
.mermaid-diagram-wrapper {
  position: relative;
  margin: 1.5rem 0;
  border: 1px solid var(--color-border-primary);
  border-radius: 6px;
  background-color: var(--color-bg-secondary);
  padding: 1rem;
}
.mermaid-diagram-wrapper .mermaid-download-btn,
.mermaid-diagram-wrapper .mermaid-fullscreen-btn {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: 4px;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.375rem 0.5rem;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.mermaid-diagram-wrapper .mermaid-download-btn:hover,
.mermaid-diagram-wrapper .mermaid-fullscreen-btn:hover {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-border-secondary);
}
.mermaid-diagram-wrapper .mermaid-download-btn:active,
.mermaid-diagram-wrapper .mermaid-fullscreen-btn:active {
  background-color: var(--color-bg-tertiary);
}
.mermaid-diagram-wrapper .mermaid-download-btn {
  right: 3rem;
}
.mermaid-diagram-wrapper .mermaid-fullscreen-btn {
  right: 0.5rem;
}
.mermaid-diagram-wrapper:hover .mermaid-download-btn, .mermaid-diagram-wrapper:hover .mermaid-fullscreen-btn {
  opacity: 1;
}

.mermaid-diagram {
  text-align: center;
  overflow: auto;
  max-height: 500px;
}
.mermaid-diagram svg {
  max-width: 100%;
  height: auto;
}

.mermaid-fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.mermaid-fullscreen-modal[style*="display: none"] {
  display: none !important;
}

.mermaid-fullscreen-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.mermaid-fullscreen-content {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-primary);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  max-width: 98vw;
  max-height: 95vh;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mermaid-fullscreen-download,
.mermaid-fullscreen-close {
  position: absolute;
  top: 0.5rem;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-tertiary);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
  z-index: 10;
}
.mermaid-fullscreen-download:hover,
.mermaid-fullscreen-close:hover {
  background-color: var(--color-bg-secondary);
}
.mermaid-fullscreen-download:active,
.mermaid-fullscreen-close:active {
  background-color: var(--color-bg-tertiary);
}

.mermaid-fullscreen-download {
  right: 2.75rem;
}

.mermaid-fullscreen-close {
  right: 0.5rem;
}

.mermaid-fullscreen-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 500px;
  width: 100%;
}
.mermaid-fullscreen-diagram svg {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-grid li {
  margin: 0;
}

/*# sourceMappingURL=style.css.map */