.font-geist {
  font-family: 'Geist', sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.font-geist-mono {
  font-family: 'Geist Mono', monospace;
}

.landing__hero-bg-grid {
  background-size: 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  background-position: 0 0, 6px 6px, 0 0, 0 0;
  overflow: hidden;
  width: 100%;
}

.landing__hero-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: inherit;
  animation: gridPulse 2s ease-in-out infinite;
  pointer-events: none;
}

.landing__hero-bg-grid > * {
  position: relative;
  z-index: 1;
}

.landing__hero-bg-squares {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing__hero-bg-square {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(217, 217, 217, 0.4);
  transition: none;
  z-index: 0;
}

.landing__hero-separator {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 49.52%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.landing__cta-demo-section {
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(0, 171, 68, 0.05);
  overflow: hidden;
  width: 100%;
}

@media (min-width: 640px) {
  .landing__cta-demo-section {
    margin-top: 80px;
  }
}

@media (min-width: 1024px) {
  .landing__cta-demo-section {
    margin-top: 116px;
  }
}

.landing__cta-demo-section > div {
  background: rgba(0, 171, 68, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.landing__cta-demo-section > div > div {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.landing__cta-demo-section > div > div::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 390px;
  left: 50%;
  bottom: -200px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 171, 68, 1);
  opacity: 0.5;
  filter: blur(300px);
  border-radius: 50%;
}

.landing__button {
  font-family: 'Geist Mono', monospace;
  padding: 12px 20px;
  border-radius: 8px;
  height: 45px;
  line-height: 16px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 600px) {
  .landing__button {
    height: auto;
  }
}

.landing__button:hover {
  cursor: pointer;
  transform: translateY(-1px);
}

.landing__button-primary {
  background: linear-gradient(180deg, #FFFFFF 0%, #CCCCCC 100%) !important;
  color: rgba(2, 5, 3, 1);
}

.landing__button-primary:hover {
  background: linear-gradient(180deg, #F5F5F5 0%, #B8B8B8 100%);
}

.landing__button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.landing__button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.landing__footer {
  background-size: 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  background-position: 0 0, 6px 6px, 0 0, 0 0;
  overflow: hidden;
}

.landing__footer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 390px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: rgba(0, 171, 68, 1);
  opacity: 0.5;
  filter: blur(600px);
  border-radius: 50%;
}

.hero-ellipse {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  height: 390px;
  top: -195px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 171, 68, 1);
  opacity: 0.5;
  filter: blur(300px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero-ellipse {
    left: 120px;
    transform: none;
    filter: blur(400px);
  }
}

@media (min-width: 1024px) {
  .hero-ellipse {
    filter: blur(600px);
  }

  .landing__cta-demo-section > div > div::after {
    filter: blur(600px);
  }

  .landing__footer::after {
    filter: blur(600px);
  }
}

/* Responsive carousel styles */

/* .carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive brand items */

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.brand img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

/* Mobile-specific adjustments */

@media (max-width: 639px) {
  .landing__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .carousel-track {
    gap: 1rem;
  }

  .brand {
    min-width: 100px;
  }
}

/* Tablet adjustments */

@media (min-width: 640px) and (max-width: 1023px) {
  .landing__button {
    min-width: 200px;
  }

  .carousel-track {
    gap: 2rem;
  }

  .brand {
    min-width: 120px;
  }
}

/* Desktop adjustments */

@media (min-width: 1024px) {
  .landing__button {
    min-width: 232px;
  }

  .carousel-track {
    gap: 3rem;
  }

  .brand {
    min-width: 150px;
  }
}

@keyframes pulse {
  0%,
    100% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes gridPulse {
  0%,
    100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.3;
  }
}

.ebook__bg-squares {
  background-image: url("../svg/squares-bg.svg") ;
}

.ebook__main-menu:after {
  background: transparent !important;
}

.ebook__line-separator {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.15) 20.19%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.00) 100%);
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.ebook__line-separator.green {
  background: linear-gradient(90deg, rgba(0, 171, 68, 0.00) 0%, #00AB44 50%, rgba(0, 171, 68, 0.00) 100%) !important;
}

.ebook__green-ellipse {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  width: 1200px;
  height: 200px;
  opacity: 0.3;
  margin: auto;
  background: radial-gradient(50% 50% at 50% 50%, #00AB44 0%, rgba(0, 171, 68, 0.00) 100%);
}

@media (max-width: 600px) {
  .ebook__green-ellipse {
    width: 100vw;
    height: 100px;
    top: -30px;
  }
}

.ebook__main-content-container {
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ebook__content-container {
  display: flex;
  width: 100%;
  gap: 0;
}

.ebook__left-container {
  display: flex;
  width: 100%;
  max-width: 450px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

@media (max-width: 600px) {
  .ebook__left-container {
    max-width: 100vw !important;
  }
}

.ebook__title {
  color: #FFF;
  align-self: stretch;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.ebook__bullet-list-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.ebook__bullet-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.ebook__right-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.ebook__vertical-separator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.ebook__image {
  width: 477px;
  height: 556px;
  flex-shrink: 0;
}

.ebook__grey-card-container {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.07);
}

.ebook__grey-card-title {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  align-self: stretch;
}

.ebook__grey-card-text {
  opacity: 0.7;
  align-self: stretch;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.testimonial-container {
  display: flex;
  padding: 100px 172px;
  flex-direction: column;
  align-items: center;
  gap: 140px;
  background: rgba(28, 31, 31, 0.40);
}

@media (max-width: 600px) {
  .testimonial-container {
    padding: 60px 20px;
    gap: 80px;
  }
}

.testimonial-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.green-smudge {
  position: relative;
}

.green-smudge:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 601px;
  background: var(--green100);
  z-index: -1;
  filter: blur(100px);
  margin: auto;
  width: 600px;
  height: 346px;
  opacity: 0.14;
}

.green-smudge-v2 {
  position: relative;
}

.green-smudge-v2:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 832px;
  background: var(--green100);
  z-index: -1;
  filter: blur(300px);
  margin: auto;
  width: 832px;
  height: 490px;
  opacity: 0.34;
}

div.ebook__separator {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.15) 20.19%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.00) 100%);
}

.ebook__white-ellipse {
  position: absolute;
  left:0;
  right: 0;
  width: 1200px;
  height: 420px;
  flex-shrink: 0;
  border-radius: 1200px;
  background: rgba(255, 255, 255, 0.10);
  filter: blur(100px);
  z-index: -1;
}

@media (max-width: 600px) {
  .ebook__white-ellipse {
    width: 90vw;
    height: 550px;
    border-radius: 300px;
    filter: blur(50px);
  }
}

.ebook__cta-button {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #47EC89 0%, #00AB44 100%);
  color: #020503;
  font-family: 'Geist Mono', monospace;
  line-height: 140%;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.ebook__cta-button:hover {
  cursor: pointer;
  transform: translateY(-1px);
}

.vertical {
  position: absolute;
  transform: rotate(90deg);
  left: 0;
  right: 0;
}

.ebook__footer-separator {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.20);
}

/* ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #E5E7EB;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: IBM Plex Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: IBM Plex Mono;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-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 in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9CA3AF;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9CA3AF;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

.tooltip-arrow,.tooltip-arrow:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}

.tooltip-arrow {
  visibility: hidden;
}

.tooltip-arrow:before {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
}

[data-tooltip-style^='light'] + .tooltip > .tooltip-arrow:before {
  border-style: solid;
  border-color: #e5e7eb;
}

[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='top'] > .tooltip-arrow:before {
  border-bottom-width: 1px;
  border-right-width: 1px;
}

[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='right'] > .tooltip-arrow:before {
  border-bottom-width: 1px;
  border-left-width: 1px;
}

[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='bottom'] > .tooltip-arrow:before {
  border-top-width: 1px;
  border-left-width: 1px;
}

[data-tooltip-style^='light'] + .tooltip[data-popper-placement^='left'] > .tooltip-arrow:before {
  border-top-width: 1px;
  border-right-width: 1px;
}

.tooltip[data-popper-placement^='top'] > .tooltip-arrow {
  bottom: -4px;
}

.tooltip[data-popper-placement^='bottom'] > .tooltip-arrow {
  top: -4px;
}

.tooltip[data-popper-placement^='left'] > .tooltip-arrow {
  right: -4px;
}

.tooltip[data-popper-placement^='right'] > .tooltip-arrow {
  left: -4px;
}

.tooltip.invisible > .tooltip-arrow:before {
  visibility: hidden;
}

[data-popper-arrow],[data-popper-arrow]:before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}

[data-popper-arrow] {
  visibility: hidden;
}

[data-popper-arrow]:before {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
}

[data-popper-arrow]:after {
  content: "";
  visibility: visible;
  transform: rotate(45deg);
  position: absolute;
  width: 9px;
  height: 9px;
  background: inherit;
}

[role="tooltip"] > [data-popper-arrow]:before {
  border-style: solid;
  border-color: #e5e7eb;
}

.dark [role="tooltip"] > [data-popper-arrow]:before {
  border-style: solid;
  border-color: #4b5563;
}

[role="tooltip"] > [data-popper-arrow]:after {
  border-style: solid;
  border-color: #e5e7eb;
}

.dark [role="tooltip"] > [data-popper-arrow]:after {
  border-style: solid;
  border-color: #4b5563;
}

[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:before {
  border-bottom-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:before {
  border-bottom-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:after {
  border-bottom-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:before {
  border-top-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-left-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:before {
  border-top-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:after {
  border-top-width: 1px;
  border-right-width: 1px;
}

[data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow] {
  bottom: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow] {
  top: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow] {
  right: -5px;
}

[data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow] {
  left: -5px;
}

[role="tooltip"].invisible > [data-popper-arrow]:before {
  visibility: hidden;
}

[role="tooltip"].invisible > [data-popper-arrow]:after {
  visibility: hidden;
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6B7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1C64F2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #1C64F2;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6B7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6B7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

select:not([size]) {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3e %3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75em 0.75em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #1C64F2;
  background-color: #fff;
  border-color: #6B7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #1C64F2;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked,.dark [type='checkbox']:checked,.dark [type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 0.55em 0.55em;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 0.55em 0.55em;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-size: 1em 1em;
}

.dark [type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-size: 1em 1em;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
  background-color: currentColor;
  border-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.55em 0.55em;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px auto inherit;
}

input[type=file]::file-selector-button {
  color: white;
  background: #1F2937;
  border: 0;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 2rem;
  padding-right: 1rem;
  -webkit-margin-start: -1rem;
          margin-inline-start: -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

input[type=file]::file-selector-button:hover {
  background: #374151;
}

.dark input[type=file]::file-selector-button {
  color: white;
  background: #4B5563;
}

.dark input[type=file]::file-selector-button:hover {
  background: #6B7280;
}

input[type="range"]::-webkit-slider-thumb {
  height: 1.25rem;
  width: 1.25rem;
  background: #1C64F2;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input[type="range"]:disabled::-webkit-slider-thumb {
  background: #9CA3AF;
}

.dark input[type="range"]:disabled::-webkit-slider-thumb {
  background: #6B7280;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1px;
  --tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
}

input[type="range"]::-moz-range-thumb {
  height: 1.25rem;
  width: 1.25rem;
  background: #1C64F2;
  border-radius: 9999px;
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

input[type="range"]:disabled::-moz-range-thumb {
  background: #9CA3AF;
}

.dark input[type="range"]:disabled::-moz-range-thumb {
  background: #6B7280;
}

input[type="range"]::-moz-range-progress {
  background: #3F83F8;
}

input[type="range"]::-ms-fill-lower {
  background: #3F83F8;
}

.toggle-bg:after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  background: white;
  border-color: #D1D5DB;
  border-width: 1px;
  border-radius: 9999px;
  height: 1.25rem;
  width: 1.25rem;
  transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
  transition-duration: .15s;
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

input:checked + .toggle-bg:after {
  transform: translateX(100%);;
  border-color: white;
}

input:checked + .toggle-bg {
  background: #1C64F2;
  border-color: #1C64F2;
}

html {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(63 131 248 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(63 131 248 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-left: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}

.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}

.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}

.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-left: 1em;
}

.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}

.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}

.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}

.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}

.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}

.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}

.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}

.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-right: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-left: 0.4444444em;
}

.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}

.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}

.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}

.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-right: 1.5em;
  padding-bottom: 1em;
  padding-left: 1.5em;
}

.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}

.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}

.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}

.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}

.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0.4444444em;
}

.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

.prose-lg :where(.prose-lg > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-lg :where(.prose-lg > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-lg :where(.prose-lg > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-lg :where(.prose-lg > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}

.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-left: 1.5555556em;
}

.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}

.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}

.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}

.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}

.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-left: 0;
}

.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-right: 0;
}

.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}

.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}

.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-\[60px\] {
  bottom: 60px;
}

.left-0 {
  left: 0px;
}

.left-4 {
  left: 1rem;
}

.right-0 {
  right: 0px;
}

.right-2 {
  right: 0.5rem;
}

.right-2\.5 {
  right: 0.625rem;
}

.right-6 {
  right: 1.5rem;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-1\/4 {
  top: 25%;
}

.top-2 {
  top: 0.5rem;
}

.top-2\.5 {
  top: 0.625rem;
}

.top-32 {
  top: 8rem;
}

.top-6 {
  top: 1.5rem;
}

.top-\[32px\] {
  top: 32px;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.m-auto {
  margin: auto;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.-mb-px {
  margin-bottom: -1px;
}

.-mr-1 {
  margin-right: -0.25rem;
}

.-mt-6 {
  margin-top: -1.5rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-auto {
  margin-right: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-28 {
  margin-top: 7rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-\[-64px\] {
  margin-top: -64px;
}

.mt-\[134px\] {
  margin-top: 134px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-2 {
  height: 0.5rem;
}

.h-2\/4 {
  height: 50%;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-60 {
  height: 15rem;
}

.h-64 {
  height: 16rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-96 {
  height: 24rem;
}

.h-\[120px\] {
  height: 120px;
}

.h-\[26px\] {
  height: 26px;
}

.h-\[338px\] {
  height: 338px;
}

.h-\[34px\] {
  height: 34px;
}

.h-\[480px\] {
  height: 480px;
}

.h-\[493px\] {
  height: 493px;
}

.h-\[55px\] {
  height: 55px;
}

.h-\[calc\(100\%-1rem\)\] {
  height: calc(100% - 1rem);
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.max-h-20 {
  max-height: 5rem;
}

.max-h-\[443px\] {
  max-height: 443px;
}

.max-h-\[90vh\] {
  max-height: 90vh;
}

.max-h-full {
  max-height: 100%;
}

.min-h-\[100vh\] {
  min-height: 100vh;
}

.min-h-\[260px\] {
  min-height: 260px;
}

.min-h-\[593px\] {
  min-height: 593px;
}

.min-h-\[600px\] {
  min-height: 600px;
}

.min-h-\[80px\] {
  min-height: 80px;
}

.min-h-full {
  min-height: 100%;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/4 {
  width: 25%;
}

.w-12 {
  width: 3rem;
}

.w-2\/4 {
  width: 50%;
}

.w-24 {
  width: 6rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-80 {
  width: 20rem;
}

.w-\[140px\] {
  width: 140px;
}

.w-\[150px\] {
  width: 150px;
}

.w-\[200px\] {
  width: 200px;
}

.w-\[398px\] {
  width: 398px;
}

.w-\[522px\] {
  width: 522px;
}

.w-\[580px\] {
  width: 580px;
}

.w-\[656px\] {
  width: 656px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.min-w-\[120px\] {
  min-width: 120px;
}

.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.min-w-full {
  min-width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-\[1000px\] {
  max-width: 1000px;
}

.max-w-\[1100px\] {
  max-width: 1100px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-\[470px\] {
  max-width: 470px;
}

.max-w-\[500px\] {
  max-width: 500px;
}

.max-w-\[520px\] {
  max-width: 520px;
}

.max-w-\[534px\] {
  max-width: 534px;
}

.max-w-\[589px\] {
  max-width: 589px;
}

.max-w-\[620px\] {
  max-width: 620px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-screen-sm {
  max-width: 640px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.flex-shrink {
  flex-shrink: 1;
}

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

.flex-grow {
  flex-grow: 1;
}

.table-fixed {
  table-layout: fixed;
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-full {
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-full {
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform-none {
  transform: none;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-disc {
  list-style-type: disc;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

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

.flex-col {
  flex-direction: column;
}

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

.content-center {
  align-content: center;
}

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

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

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

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

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-0 {
  gap: 0px;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-2\.5 {
  gap: 0.625rem;
}

.gap-20 {
  gap: 5rem;
}

.gap-28 {
  gap: 7rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-\[100px\] {
  gap: 100px;
}

.gap-\[10px\] {
  gap: 10px;
}

.gap-\[15px\] {
  gap: 15px;
}

.gap-\[24px\] {
  gap: 24px;
}

.gap-\[26px\] {
  gap: 26px;
}

.gap-\[40px\] {
  gap: 40px;
}

.gap-\[60px\] {
  gap: 60px;
}

.gap-\[80px\] {
  gap: 80px;
}

.gap-y-4 {
  row-gap: 1rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity));
}

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

.self-stretch {
  align-self: stretch;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.break-words {
  overflow-wrap: break-word;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l {
  border-left-width: 1px;
}

.border-r {
  border-right-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-\[\#181F1E\] {
  --tw-border-opacity: 1;
  border-color: rgb(24 31 30 / var(--tw-border-opacity));
}

.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(28 100 242 / var(--tw-border-opacity));
}

.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(26 86 219 / var(--tw-border-opacity));
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}

.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(14 159 110 / var(--tw-border-opacity));
}

.border-netdata-500 {
  --tw-border-opacity: 1;
  border-color: rgb(0 171 68 / var(--tw-border-opacity));
}

.border-transparent {
  border-color: transparent;
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}

.bg-\[\#020503\] {
  --tw-bg-opacity: 1;
  background-color: rgb(2 5 3 / var(--tw-bg-opacity));
}

.bg-\[\#181C1B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(24 28 27 / var(--tw-bg-opacity));
}

.bg-\[\#181F1E\] {
  --tw-bg-opacity: 1;
  background-color: rgb(24 31 30 / var(--tw-bg-opacity));
}

.bg-\[\#ffffff12\] {
  background-color: #ffffff12;
}

.bg-\[rgba\(2\2c 5\2c 3\2c 0\.4\)\] {
  background-color: rgba(2,5,3,0.4);
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(26 86 219 / var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 159 110 / var(--tw-bg-opacity));
}

.bg-netdata-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 171 68 / var(--tw-bg-opacity));
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 36 36 / var(--tw-bg-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/50 {
  background-color: rgb(255 255 255 / 0.5);
}

.bg-opacity-20 {
  --tw-bg-opacity: 0.2;
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}

.bg-repeat {
  background-repeat: repeat;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-none {
  -o-object-fit: none;
     object-fit: none;
}

.p-1 {
  padding: 0.25rem;
}

.p-1\.5 {
  padding: 0.375rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-24 {
  padding: 6rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-3\.5 {
  padding: 0.875rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-\[10px\] {
  padding: 10px;
}

.p-\[40px\] {
  padding: 40px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-\[15px\] {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-\[200px\] {
  padding-top: 200px;
  padding-bottom: 200px;
}

.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-\[24px\] {
  padding-bottom: 24px;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-\[40px\] {
  padding-top: 40px;
}

.text-left {
  text-align: left;
}

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

.align-top {
  vertical-align: top;
}

.font-mono {
  font-family: IBM Plex Mono;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-\[110\%\] {
  line-height: 110%;
}

.leading-\[140\%\] {
  line-height: 140%;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-\[0\] {
  letter-spacing: 0;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.text-\[rgba\(0\2c 171\2c 68\2c 1\)\] {
  color: rgba(0,171,68,1);
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(28 100 242 / var(--tw-text-opacity));
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(49 196 141 / var(--tw-text-opacity));
}

.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(14 159 110 / var(--tw-text-opacity));
}

.text-netdata-500 {
  --tw-text-opacity: 1;
  color: rgb(0 171 68 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.underline {
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.placeholder-gray-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}

.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline {
  outline-style: solid;
}

.outline-netdata-500 {
  outline-color: #00AB44;
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-black {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
}

.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-\[10px\] {
  --tw-backdrop-blur: blur(10px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-75 {
  transition-duration: 75ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

:root {
  /* Greys */
  --black: #000;
  --grey05: #040505;
  --grey10: #080a0a;
  --grey15: #0c0f0f;
  --grey20: #101313;
  --grey25: #151818;
  --grey30: #191d1d;
  --grey35: #1d2222;
  --grey40: #212727;
  --grey45: #252c2c;
  --grey50: #293030;
  --grey55: #2d3535;
  --grey60: #313a3a;
  --grey65: #353f3f;
  --grey70: #394444;
  --grey75: #3d4949;
  --grey80: #424e4e;
  --grey85: #465252;
  --grey90: #4a5757;
  --grey95: #4e5c5c;
  --grey100: #526161;
  --grey105: #5a6a6a;
  --grey110: #617373;
  --grey115: #697c7c;
  --grey120: #708585;
  --grey125: #788d8d;
  --grey130: #819595;
  --grey135: #8a9c9c;
  --grey140: #93a4a4;
  --grey145: #9cacac;
  --grey150: #a5b3b3;
  --grey155: #aebbbb;
  --grey160: #b7c2c2;
  --grey165: #c0caca;
  --grey170: #c9d2d2;
  --grey175: #d2d9d9;
  --grey180: #dbe1e1;
  --grey185: #e4e8e8;
  --grey190: #edf0f0;
  --grey195: #f6f7f7;
  --white: #fff;
  /* Greens */
  --green10: #001107;
  --green20: #00220e;
  --green30: #003314;
  --green40: #00441b;
  --green50: #005622;
  --green60: #006729;
  --green70: #007830;
  --green80: #008936;
  --green90: #009a3d;
  --green100: #00ab44;
  --green110: #00cd51;
  --green120: #00ef5f;
  --green130: #12ff70;
  --green140: #34ff84;
  --green150: #56ff99;
  --green160: #77ffad;
  --green170: #99ffc2;
  --green180: #bbffd6;
  --green190: #ddffeb;
  --green195: #eefff5;
  --green196: #f1fff7;
  --green197: #f5fff9;
  --green198: #f8fffb;
  --green199: #fcfffd;
  /* Reds */
  --red10: #160205;
  --red20: #2c0409;
  --red30: #42070e;
  --red40: #580913;
  --red50: #6e0b18;
  --red60: #830d1c;
  --red70: #990f21;
  --red80: #af1226;
  --red90: #c5142a;
  /* Base red 100 */
  --red100: #db162f;
  /*Red tints */
  --red110: #e9233c;
  --red120: #eb3b52;
  --red130: #ee5467;
  --red140: #f06c7d;
  --red150: #f38593;
  --red160: #f59da8;
  --red170: #f8b6be;
  --red180: #faced4;
  --red190: #fde7e9;
  --yellow100: #ffb140;
}

/* Fonts */

:root {
  --default-font: "IBM Plex Sans", sans-serif;
  --mono-font: "IBM Plex Mono", monospace;
}

/* Tokens */

:root {
  --text-on-dark: var(--grey160);
  --text-on-light: var(--grey100);
  --text-bright: var(--grey195);
}

body {
  background: var(--black);
  color: var(--text-bright);
}

.md-content h1,
.md-content h2,
.md-content h3,
.md-content h4,
.md-content h5,
.md-content h6 {
  color: var(--text-bright);
  font-weight: bold;
}

p > a:link,
th > a:link,
.md-content a:link,
p > a:active,
th > a:active,
.md-content a:active,
p > a:visited,
th > a:visited,
.md-content > a:visited {
  color: rgb(0 171 68 / 1);
}

p > a:hover,
th > a:hover,
.md-content a:hover {
  text-decoration: underline;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.border-default,
.divide-default > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--grey55);
}

.border-green100 {
  border-color: var(--green100);
}

.border-green50 {
  border-color: var(--green50);
}

.bg-grey05 {
  background: var(--grey05);
}

.bg-grey10 {
  background: var(--grey10);
}

.bg-grey15 {
  background: var(--grey15);
}

.bg-grey20 {
  background: var(--grey20);
}

.bg-grey25 {
  background: var(--grey25);
}

.bg-grey30 {
  background: var(--grey30);
}

.bg-grey35 {
  background: var(--grey35);
}

.bg-grey40 {
  background: var(--grey40);
}

.bg-grey50 {
  background: var(--grey50);
}

.bg-green100 {
  background: var(--green100);
}

.text-green {
  color: var(--green100);
}

.text-red {
  color: var(--red100);
}

.text-yellow {
  color: var(--yellow100);
}

.button.primary {
  border: 1px solid var(--green100);
  background: var(--green100);
  color: var(--white);
  display: inline-block;
  padding: 4px 12px;
  text-align: center;
  transition: 150ms ease;
}

.button.secondary {
  border: 1px solid var(--green100);
  color: var(--green110);
  display: inline-block;
  padding: 4px 12px;
  text-align: center;
  transition: 150ms ease;
}

.button.size-md {
  padding: 8px 12px;
}

.button.size-lg {
  padding: 12px 12px;
}

.button.max-width-16 {
  max-width: 16rem;
}

.button.primary:hover {
  text-decoration: none;
  background: var(--green110);
}

.button.secondary:hover {
  text-decoration: none;
  background: var(--green40);
}

.rolling-keywords {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 64px;
}

.has-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--green130);
}

.has-tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: var(--grey15);
  color: var(--text-on-dark);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.has-tooltip:hover .tooltip-text {
  visibility: visible;
}

@media (max-width: 1023px) {
  .rolling-keywords {
    height: 52px;
  }
}

@media (max-width: 640px) {
  .rolling-keywords {
    height: 41px;
  }
}

.rolling-keywords:after,
.rolling-keywords:before {
  content: ">";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  color: var(--green110);
  animation: blink 1s forwards infinite;
  opacity: 0.1;
  transform: translateX(0);
}

.rolling-keywords:before {
  left: 40px;
  animation: squeezeRight 1s forwards infinite;
}

.rolling-keywords:after {
  content: "<";
  right: 40px;
  animation: squeezeLeft 1s forwards infinite;
}

.rolling-keywords .keyword {
  position: absolute;
  transform: translateY(72px);
  opacity: 0;
  animation-timing-function: ease-in-out;
  color: var(--green110);
  font-family: var(--mono-font);
}

.rolling-keywords .keyword:first-child {
  animation: rollup_1 10s forwards infinite;
}

.rolling-keywords .keyword:nth-child(2),
.rolling-keywords .keyword:nth-child(4),
.rolling-keywords .keyword:nth-child(5) {
  text-indent: -9999999px;
}

.rolling-keywords .keyword:nth-child(3) {
  animation: rollup_2 10s forwards infinite;
}

.rolling-keywords .keyword:nth-child(6) {
  animation: rollup_3 10s forwards infinite;
}

@keyframes squeezeLeft {
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@keyframes squeezeRight {
  50% {
    opacity: 1;
    transform: translateX(-4px);
  }
}

@keyframes rollup_1 {
  0% {
    transform: translateY(72px);
  }

  8.5% {
    transform: translateY(0);
    opacity: 1;
  }

  24.5% {
    transform: translateY(0);
    opacity: 1;
  }

  33% {
    transform: translateY(-72px);
    opacity: 0;
  }
}

@keyframes rollup_2 {
  33% {
    transform: translateY(72px);
  }

  41.5% {
    transform: translateY(0);
    opacity: 1;
  }

  57.5% {
    transform: translateY(0);
    opacity: 1;
  }

  66% {
    transform: translateY(-72px);
    opacity: 0;
  }
}

@keyframes rollup_3 {
  66% {
    transform: translateY(72px);
  }

  74.5% {
    transform: translateY(0);
    opacity: 1;
  }

  90.5% {
    transform: translateY(0);
    opacity: 1;
  }

  99% {
    transform: translateY(-72px);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .rolling-keywords:before {
    left: 0;
    animation: squeezeRight 1s forwards infinite;
  }

  .rolling-keywords:after {
    content: "<";
    right: 0;
    animation: squeezeLeft 1s forwards infinite;
  }
}

@media screen and (min-width: 768px) {
  .col-span-12 {
    grid-column: auto / span 12;
  }

  .col-span-11 {
    grid-column: auto / span 11;
  }

  .col-span-10 {
    grid-column: auto / span 10;
  }

  .col-span-9 {
    grid-column: auto / span 9;
  }

  .col-span-8 {
    grid-column: auto / span 8;
  }

  .col-span-7 {
    grid-column: auto / span 7;
  }

  .col-span-6 {
    grid-column: auto / span 6;
  }

  .col-span-5 {
    grid-column: auto / span 5;
  }

  .col-span-4 {
    grid-column: auto / span 4;
  }

  .col-span-3 {
    grid-column: auto / span 3;
  }

  .col-span-2 {
    grid-column: auto / span 2;
  }

  .col-span-1 {
    grid-column: auto / span 1;
  }

  .grid-col-start-1 {
    grid-column-start: 1;
  }

  .grid-col-start-2 {
    grid-column-start: 2;
  }

  .grid-col-start-3 {
    grid-column-start: 3;
  }

  .grid-col-start-4 {
    grid-column-start: 4;
  }

  .grid-col-start-5 {
    grid-column-start: 5;
  }

  .grid-col-start-6 {
    grid-column-start: 6;
  }

  .grid-col-start-7 {
    grid-column-start: 7;
  }

  .grid-col-start-8 {
    grid-column-start: 8;
  }

  .grid-col-start-9 {
    grid-column-start: 9;
  }

  .grid-col-start-10 {
    grid-column-start: 10;
  }

  .grid-col-start-11 {
    grid-column-start: 11;
  }

  .grid-col-start-12 {
    grid-column-start: 12;
  }
}

@media screen and (max-width: 767px) {
  .md-col-span-12 {
    grid-column: auto / span 12;
  }

  .md-col-span-11 {
    grid-column: auto / span 11;
  }

  .md-col-span-10 {
    grid-column: auto / span 10;
  }

  .md-col-span-9 {
    grid-column: auto / span 9;
  }

  .md-col-span-8 {
    grid-column: auto / span 8;
  }

  .md-col-span-7 {
    grid-column: auto / span 7;
  }

  .md-col-span-6 {
    grid-column: auto / span 6;
  }

  .md-col-span-5 {
    grid-column: auto / span 5;
  }

  .md-col-span-4 {
    grid-column: auto / span 4;
  }

  .md-col-span-3 {
    grid-column: auto / span 3;
  }

  .md-col-span-2 {
    grid-column: auto / span 2;
  }

  .md-col-span-1 {
    grid-column: auto / span 1;
  }

  .md-grid-col-start-1 {
    grid-column-start: 1;
  }

  .md-grid-col-start-2 {
    grid-column-start: 2;
  }

  .md-grid-col-start-3 {
    grid-column-start: 3;
  }

  .md-grid-col-start-4 {
    grid-column-start: 4;
  }

  .md-grid-col-start-5 {
    grid-column-start: 5;
  }

  .md-grid-col-start-6 {
    grid-column-start: 6;
  }

  .md-grid-col-start-7 {
    grid-column-start: 7;
  }

  .md-grid-col-start-8 {
    grid-column-start: 8;
  }

  .md-grid-col-start-9 {
    grid-column-start: 9;
  }

  .md-grid-col-start-10 {
    grid-column-start: 10;
  }

  .md-grid-col-start-11 {
    grid-column-start: 11;
  }

  .md-:grid-col-start-12 {
    grid-column-start: 12;
  }
}

.row-span-12 {
  grid-row: auto / span 12;
}

.row-span-11 {
  grid-row: auto / span 11;
}

.row-span-10 {
  grid-row: auto / span 10;
}

.row-span-9 {
  grid-row: auto / span 9;
}

.row-span-8 {
  grid-row: auto / span 8;
}

.row-span-7 {
  grid-row: auto / span 7;
}

.row-span-6 {
  grid-row: auto / span 6;
}

.row-span-5 {
  grid-row: auto / span 5;
}

.row-span-4 {
  grid-row: auto / span 4;
}

.row-span-3 {
  grid-row: auto / span 3;
}

.row-span-2 {
  grid-row: auto / span 2;
}

.row-span-1 {
  grid-row: auto / span 1;
}

.toc {
  overflow-y: auto;
}

.toc > .toc-list {
  overflow: hidden;
  position: relative;
}

.toc > .toc-list li {
  list-style: none;
  padding: 3px 0;
}

.toc-list li ol {
  margin-top: 5px;
}

.toc-list li li {
  padding: 3px 0;
}

.js-toc {
  overflow-y: hidden;
}

.toc-list {
  margin: 0;
  padding-left: 16px;
}

a.toc-link {
  color: currentColor;
  height: 100%;
}

a.toc-link:not(.is-active-link):hover,
a.toc-link.is-active-link {
  color: var(--grey175);
}

.is-collapsible {
  max-height: 1000px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.is-collapsed {
  max-height: 0;
}

.is-position-fixed {
  position: fixed !important;
  top: 0;
}

.is-active-link {
  font-weight: 700;
}

.toc-link::before {
  background-color: var(--grey55);
  content: " ";
  display: inline-block;
  height: inherit;
  left: 0;
  margin-top: -1px;
  position: absolute;
  width: 2px;
}

.is-active-link::before {
  background-color: #02ab44;
}

a.toc-link:not(.is-active-link):hover:before {
  background-color: var(--grey175);
}

h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
h7:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* =============Nav=====================*/

header {
  z-index: 999;
}

footer {
  background: var(--grey15);
}

.main-menu {
  background: var(--black);
}

.main-menu:after {
  content:'';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(45deg, transparent 15%, var(--green100), transparent 85%);
}

.main-menu .menu-dropdown {
  border: 1px solid var(--green40);
  background: rgb(0 0 0 / 90%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media screen and (max-width: 1023px) {
  .main-menu .menu-dropdown {
    position: relative !important;
    transform: translate3d(0, 0, 0) !important;
    max-height: 55vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 1023px) {
  .main-menu .menu-dropdown {
    max-width: 60vw;
  }
}

.side-info #navbar ul li > a,
.main-menu .menu-dropdown li > a {
  position: relative;
  font-family: var(--mono-font);
  font-size: 14px;
}

.main-menu li > button:hover,
.main-menu li > a:hover {
  color: var(--green100);
}

.main-menu .menu-dropdown li > a:before,
.main-menu .menu-dropdown li > a:after,
.side-info #navbar li > a:before,
.side-info #navbar li > a:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: 250ms ease;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

.side-info #navbar li > a:before,
.main-menu .menu-dropdown li > a:before {
  transform: translateX(-5px);
}

.main-menu .menu-dropdown li > a:after {
  transform: translateX(5px);
}

.side-info #navbar li > a:hover,
.side-info #navbar li > a.active,
.main-menu .menu-dropdown li > a:hover {
  color: var(--green100);
}

.side-info #navbar li > a.active:before,
.side-info #navbar li > a:hover:before,
.main-menu .menu-dropdown li > a:hover:before {
  content: ">";
  opacity: 1;
  left: 0;
  transform: translateX(0);
}

.main-menu .menu-dropdown li > a:hover:after {
  content: "<";
  opacity: 1;
  right: 0;
  transform: translateX(0);
}

.main-menu .menu-dropdown .case-studies {
  border-color: var(--green40);
}

.mini-menu-icon {
  max-height: 20px;
}

.mini-menu-icon svg {
  height: 100%;
}

.main-menu_mini a:hover svg path {
  fill: var(--green100) !important;
}

aside ::-webkit-scrollbar {
  width: 6px;
}

/* Track */

aside ::-webkit-scrollbar-track {
  background: var(--grey35);
  border-radius: 2px;
}

/* Handle */

aside ::-webkit-scrollbar-thumb {
  background: var(--grey85);
  border-radius: 2px;
}

/* Handle on hover */

aside ::-webkit-scrollbar-thumb:hover {
  background: var(--grey100);
}

/* ================ Custom ===============*/

.integration {
  height: 120px;
  width: 120px;
  border: 1px solid var(--grey55);
  border-radius: 6px;
  background: var(--grey25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 100ms ease;
}

.integration:hover {
  border-color: var(--green100);
}

.integration-list-item {
  background: var(--grey30);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 176px;
  border: 1px solid transparent;
  transition: 100ms ease;
}

.integration-list-item:hover .integration-image-main {
  transform: scale(1.1);
}

.integration-list-item:hover {
  border: 1px solid var(--green40);
}

.integration-list-item:hover .integration-bg {
  filter: blur(140px);
}

.integration-image-main {
  height: 80px;
  max-width: 100%;
  transition: 100ms ease-in-out;
}

.integration-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  filter: blur(180px);
  transition: 100ms ease-in-out;
}

.integration-content {
  color: var(--text-on-dark);
}

.integration-content h1 {
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  margin: 20px 0 8px;
  color: var(--text-bright);
}

.integration-content h2 {
  font-size: 22px;
  line-height: 24px;
  font-weight: bold;
  margin: 16px 0 8px;
  color: var(--text-bright);
}

.integration-content h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin: 12px 0 8px;
  color: var(--text-bright);
}

.integration-content h4 {
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  margin: 8px 0;
  color: var(--text-bright);
}

.integration-content h5 {
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  margin: 8px 0;
  color: var(--text-bright);
}

.integration-content p {
  margin-top: 14px;
  line-height: 1.5;
  color: var(--text-on-dark);
}

.integration-content table,
.section-content table {
  color: var(--text-on-dark);
  margin: 16px 0;
}

.integration-content table thead tr,
.section-content table thead tr {
  border-bottom: 1px solid var(--grey45);
}

.integration-content table tr:nth-child(2n + 1) td,
.section-content table tr:nth-child(2n + 1) td {
  background-color: var(--grey20);
}

.integration-content table tr:hover td,
.section-content table tr:hover td {
  background: var(--grey30);
}

.integration-content table tr th,
.integration-content table tr td,
.section-content table tr th,
.section-content table tr td {
  padding: 12px;
  position: relative;
  font-size: 14px;
}

.integration-content pre {
  padding: 24px;
  border-radius: 4px;
  margin: 4px 0 16px;
  background: var(--black) !important;
  border: 1px solid var(--green30);
}

.integration-content .tab {
  border-bottom: 1px solid var(--grey30);
}

.integration-content :not(.tab) ul {
  margin: 32px 16px;
  list-style: disc;
}

.integration-content .breadcrumb-container {
  margin-bottom: 16px;
}

.integration-content .breadcrumbs {
  font-size: 14px;
}

.integration-content .breadcrumbs a:link,
.integration-content .breadcrumbs a:active,
.integration-content .breadcrumbs a:visited {
  color: var(--text-on-dark);
  margin-right: 8px;
}

.integration-content .breadcrumbs a:not(:first-child) {
  margin-left: 8px;
}

.integration-content .breadcrumbs a:hover {
  color: var(--green100);
  text-decoration: underline;
}

.integration-content .breadcrumbs a:last-of-type {
  color: #00ab44;
}

.integrations-menu-container {
  width: 360px;
  background: var(--grey05);
  border: 1px solid var(--grey25);
}

.integrations-menu-container .menu-title {
  color: var(--text-on-dark);
}

.integrations-menu-container .menu-item {
  padding: 8px 0;
  color: var(--text-on-dark);
  position: relative;
  font-family: var(--mono-font);
}

.integrations-menu-container .menu-item:hover,
.active .menu-item {
  color: var(--green100);
}

.integrations-menu-container .menu-item > span {
  position: relative;
  padding: 0 8px;
}

.integrations-menu-container .menu-item > span:before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: 250ms ease;
  transform: translateX(-5px);
}

.integrations-menu-container .menu-item:hover > span:before,
.active .menu-item:before {
  color: var(--green100);
}

.integrations-menu-container .menu-item:hover > span:before,
.integrations-menu-container .active .menu-item:before {
  content: ">";
  opacity: 1;
  right: 100%;
  transform: translateX(0);
}

.brand {
  border-radius: 2px;
  padding: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
}

.brand img {
  filter: invert(1) brightness(1.2);
  max-width: none;
}

.factors .factor {
  color: var(--text-on-dark);
  background: #000;
  border-right: 1px solid var(--grey30);
  border-top: 1px solid var(--grey30);
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  box-shadow:
        var(--grey30) -1px 1px,
        var(--grey30) -2px 2px,
        var(--grey30) -3px 3px,
        var(--grey30) -4px 4px,
        var(--grey30) -5px 5px,
        var(--grey30) -6px 6px,
        var(--grey30) -7px 7px,
        var(--grey30) -8px 8px,
        var(--grey30) -9px 9px,
        var(--grey30) -10px 10px;
  transform: translate3d(10px, -10px, 0);
  position: relative;
}

.factor.plan-recommended {
  border: 1px solid var(--green120);
}

.factor .plan-title,
.factor h4 {
  color: var(--text-bright);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.grid.tab-content.active {
  display: grid;
}

.flex.tab-content.active {
  display: flex;
}

table .tab-content.active {
  display: table-cell;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-tabs .tab {
  padding: 8px 12px;
  text-align: center;
  color: var(--white);
  border-radius: 2px;
  border: 1px solid var(--green100);
  width: 220px;
  color: var(--green110);
  transition: 200ms ease;
}

.pricing-tabs .tab:not(.active):hover {
  background: var(--green40);
}

.pricing-tabs .tab:first-child {
  border-radius: 2px 0 0 2px;
}

.pricing-tabs .tab:nth-child(2) {
  border-radius: 0 2px 2px 0;
  border-left: 0;
}

.pricing-tabs .tab.active {
  background: var(--green100);
  color: var(--white);
  cursor: default;
}

.active-price {
  display: flex;
}

.inactive-price {
  display: none;
}

.per-month {
  display: none;
}

.monthly-price.active-price + .total-cost .per-year {
  display: none;
}

.monthly-price.active-price + .total-cost .per-month {
  display: inline;
}

.plan-comparison-table {
  position: sticky;
  top: 60px;
  z-index: 10;
  background: #0c0f0fa1;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

/* .annual-price,
.monthly-price {
  height: 96px;
} */

.annual-price p,
.montly-price p {
  margin-bottom: 0;
}

.annual-price {
  height: 80px;
  position: relative;
}

.monthly-price {
  height: 80px;
}

.total-cost {
  border: 1px solid var(--green120);
  background: var(--green10);
  padding: 8px 16px;
  box-shadow: 0 0 24px inset rgba(0, 255, 101, 0.2);
  width: 100%;
  color: var(--green120);
  margin-bottom: 8px;
}

.NetdataEnterprisePrices.annual-price.inactive-price ~ .total-cost {
  visibility: hidden;
  opacity: 0;
}

.total-node-count {
  display: none;
}

.NetdataEnterprisePrices.annual-price ~ .total-cost .total-node-count {
  display: flex;
  font-size: 12px;
}

.competitors-comparison {
  transform: translateX(120%);
  position: absolute;
  transition: 400ms ease;
}

.competitors-comparison.sled {
  transform: translateX(0);
  position: relative;
}

.plans-comparison.sled {
  transform: translateX(0);
  position: relative;
  transition: 400ms ease;
}

.plans-comparison {
  transform: translateX(-120%);
  position: absolute;
  transition: 400ms ease;
}

.comparison-tools button {
  color: var(--green100);
  background: linear-gradient(
        to right,
        var(--green100),
        var(--green160),
        var(--green100),
        var(--green160)
    );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transition: 1s ease;
  font-size: 20px;
}

.comparison-tools button:hover {
  filter: brightness(1.8) hue-rotate(95deg);
  transition: 1s ease;
}

/* hide total cost from all plans of "For Home" tab and adjust height*/

[data-tab="1"] .annual-price,
[data-tab="1"] .monthly-price {
  height: 6rem;
  justify-content: center;
}

[data-tab="1"] .total-cost {
  display: none;
}

.recommended {
  position: absolute;
  bottom: 100%;
  left: -1px;
  right: -1px;
  padding: 8px;
  border-top: 1px solid var(--green120);
  border-right: 1px solid var(--green120);
  border-left: 1px solid var(--green120);
  color: var(--green100);
}

.recommended:before {
  content: "";
  position: absolute;
  right: calc(100% + 2px);
  width: 0;
  height: 0;
  border-right: 10px solid var(--grey30);
  border-bottom: 5px solid transparent;
  border-top: 31px solid transparent;
  transform: skewY(-55deg);
}

.pricing-button {
  background: var(--grey20);
  color: var(--text-on-dark);
  border: 1px solid var(--grey55);
}

.pricing-button:hover {
  background: var(--green190);
  color: var(--text-on-light);
}

.pricing-plans {
  row-gap: 48px;
}

/* .pricing-plans .factor:nth-child(1),
.pricing-plans .factor:nth-child(2){
  grid-column: auto / span 6;
}
.pricing-plans .factor:nth-child(3),
.pricing-plans .factor:nth-child(4),
.pricing-plans .factor:nth-child(5) {
  grid-column: auto / span 4;
} */

.features-list {
  border-color: var(--grey55);
}

.features-list a:link,
.contact-us a:link,
.features-list a:visited,
.contact-us a:visited,
.features-list a:active,
.contact-us a:active {
  text-decoration: underline;
}

.features-list a:hover,
.contact-us a:hover {
  color: var(--green120);
}

.frame {
  padding: 24px;
  border: 1px solid var(--grey55);
  background: var(--grey10);
  box-shadow: 0px 0px 30px inset rgba(0, 0, 0, 0.9);
  border-radius: 2px;
  position: relative;
  overflow: auto;
}

.video-container {
  min-height: 520px;
}

.video {
  aspect-ratio: 16/9;
  width: 100%;
}

.testimonial-row::before,
.testimonial-row::after {
  content: "";
  display: block;
  clear: both;
}

.testimonial-row .testimonial-card {
  float: left;
}

.testimonial-row:nth-child(2n) .testimonial-card {
  float: right;
}

.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 4px solid var(--green100);
  box-shadow: -4px 4px 0 var(--green170);
}

.testimonial-card .testimonial {
  border: 1px solid var(--green100);
  font-size: 14px;
  color: var(--text-bright);
  box-shadow:
        var(--grey40) -1px 1px,
        var(--grey40) -2px 2px,
        var(--grey40) -3px 3px,
        var(--grey40) -4px 4px,
        var(--grey40) -5px 5px,
        var(--grey40) -6px 6px,
        var(--grey40)-7px 7px,
        var(--grey40) -8px 8px,
        var(--grey40) -9px 9px,
        var(--grey40) -10px 10px;
  transform: translate3d(10px, -10px, 0);
}

.testimonial-row:nth-child(2n) .testimonial-card .testimonial {
  box-shadow:
        var(--grey40) 1px 1px,
        var(--grey40) 2px 2px,
        var(--grey40) 3px 3px,
        var(--grey40) 4px 4px,
        var(--grey40) 5px 5px,
        var(--grey40) 6px 6px,
        var(--grey40) 7px 7px,
        var(--grey40) 8px 8px,
        var(--grey40) 9px 9px,
        var(--grey40) 10px 10px;
  transform: translate3d(10px, -10px, 0);
}

.testimonial-card .testimonial:before {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid var(--green100);
  bottom: -25px;
  left: 125px;
}

.testimonial-row:nth-child(2n) .testimonial-card .testimonial:before {
  content: "";
  display: block;
  position: absolute;
  border-right: 2px solid transparent;
  border-left: 20px solid transparent;
  border-top: 25px solid var(--green100);
  bottom: -25px;
  left: auto;
  right: 150px;
}

.testimonial-row:nth-child(2n) .avatar {
  box-shadow: 4px 4px 0 var(--green170);
}

.testimonial-row .testimonial-card .user-info {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}

.testimonial-row:nth-child(2n) .testimonial-card .user-info {
  float: right;
}

.table-container table {
  border-collapse: separate;
}

.table-container tr th,
.table-container tr td {
  padding: 16px;
  font-weight: normal;
  color: #536775;
}

.table-container tbody tr th:first-child {
  background: #eceeef;
}

.table-container tbody tr:nth-child(2n + 1) th:first-child {
  background: #e9ecec;
}

.table-container tbody tr th:nth-child(2) {
  background: #fcfcfc;
}

.table-container tbody tr:nth-child(2n + 1) th:nth-child(2) {
  background: #f7f8f8;
}

.table-container tbody tr th:nth-child(3) {
  background: #f7fcf8;
}

.table-container tbody tr:nth-child(2n + 1) th:nth-child(3) {
  background: #f1faf2;
}

.table-container tbody tr:hover th:not(:nth-child(3)) {
  filter: brightness(0.96);
}

.table-container tbody tr:hover th:nth-child(3) {
  background: #68c47d;
  color: #fff;
  box-shadow:
        #96d4a2 -1px 1px,
        #96d4a2 -2px 2px,
        #96d4a2 -3px 3px,
        #96d4a2 -4px 4px,
        #96d4a2 -5px 5px,
        #96d4a2 -6px 6px;
  transform: translate3d(6px, -6px, 0);
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: line;
}

@media screen and (max-width: 640px) {
  .table-container table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }

  .table-container thead tr th {
    display: none;
  }

  .table-container tbody tr {
    display: grid;
    margin-bottom: 16px;
  }

  .table-container tbody tr th {
    position: relative;
    font-size: 14px;
  }

  .table-container tbody tr th:first-child,
    .table-container tbody tr:nth-child(2n + 1) th:first-child {
    background: #fff;
    font-weight: bold;
  }

  .table-container tbody tr:nth-child(2n + 1) th:nth-child(2) {
    background: #fcfcfc;
  }

  .table-container tbody th:nth-child(2):before {
    content: "Competitors";
    position: absolute;
    left: -100%;
    background: #fcfcfc;
    top: 0;
    bottom: 0;
    width: inherit;
    right: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    border-right: 1px solid #eceeef;
  }

  .table-container tbody th:nth-child(3):before {
    content: "Netdata";
    position: absolute;
    left: -100%;
    background: #f1faf2;
    top: 0;
    bottom: 0;
    width: inherit;
    right: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    border-right: 1px solid #eceeef;
  }

  .table-container tbody tr:nth-child(2n + 1) th:nth-child(3) {
    background: #f1faf2;
  }

  .table-container thead {
    visibility: hidden;
  }

  .table-container tbody tr:hover th:not(:nth-child(3)) {
    filter: none;
  }

  .table-container tbody tr:hover th:nth-child(3) {
    background: #f7fcf8;
    color: #536775;
    transform: initial;
    box-shadow: none;
  }
}

.price-descriptions > :first-child {
  font-weight: bold;
}

.table-accordion summary {
  list-style: none;
  position: relative;
}

.table-accordion summary:hover,
.table-accordion tr:hover th,
.table-accordion tr:hover td {
  background: var(--grey30);
}

.table-accordion-carret {
  width: 0;
  height: 0;
  border-top: 8px solid #536775;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 300ms all ease-in-out;
}

.table-accordion[open] .table-accordion-carret {
  transform: rotate(180deg);
}

.table-accordion h6 {
  font-size: 12px;
}

.faq h4 {
  padding-top: 60px;
  margin: 0;
  margin-bottom: 12px;
}

.faq code {
  color: var(--green120);
}

.footnotes fn {
  padding-top: 60px;
  margin: 0;
  margin-bottom: 12px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(0, 80px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.7s ease-in forwards;
}

.investor {
  height: 9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-docker video {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-docker::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.video-content {
  z-index: 2;
}

/* Style the buttons that are used to open the tab content */

.tablinks:hover {
  color: var(--grey120);
  border-color: var(--grey120);
}

.tablinks.active,
.tablinks.active:hover {
  color: rgb(0 171 68 / 1);
  border-color: rgb(0 171 68 / 1);
}

.tabcontent {
  display: none;
}

/* Comparison view */

.dark {
  background: var(--grey05);
  --gutter-v: 40px;
  --gutter-h: 40px;
}

.hero_comparison {
  --section-height: 75vh;
  min-height: var(--section-height);
  background: var(--grey10);
  color: var(--text-on-dark);
  position: relative;
}

.battle-container {
  --grid-columns: 12;
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  /* grid-template-rows: repeat(var(--grid-columns), 1fr); */
  grid-auto-rows: min-content;
  padding: 0;
  height: var(--section-height);
}

.player {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: auto / span 6;
  height: var(--section-height);
  overflow: hidden;
}

.player .bg-image {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  filter: blur(10px);
  opacity: 0.5;
}

.player_pl1 .bg-image {
  left: 0;
  width: 50%;
}

.player_pl2 .bg-image {
  right: 0;
  width: 50%;
  filter: blur(61px);
  background-size: contain;
  background-position: 50%;
  opacity: 0.2;
}

.player-title {
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: var(--text-bright);
  margin: 8px 0;
  letter-spacing: 6px;
}

.player-logo {
  width: 120px;
  height: 120px;
  display: flex;
}

.player-logo img {
  max-height: 100%;
  width: 100%;
}

.vs {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 140px;
  height: 140px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--text-on-light);
  text-shadow: -4px 4px 0 #2dfc7f;
  font-weight: bold;
}

.headline {
  position: absolute;
  top: 70%;
  width: 60%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: var(--text-bright);
  font-size: 20px;
}

@media (max-height: 860px) {
  .comparison .hero {
    --section-height: 85vh;
  }
}

@media (max-width: 768px) {
  .comparison .monitoring-side-cta {
    display: none;
  }
}

.inner-container {
  max-width: 1280px;
  width: 100%;
}

.text-mono {
  font-family: var(--mono-font);
}

.section-mono h1,
.section-mono h2,
.section-mono h3,
.section-mono h4 {
  font-family: var(--mono-font);
}

.section-mono h2,
.section-mono h3 {
  font-size: 24px;
}

.section-mono h1.font-default,
.section-mono h2.font-default,
.section-mono h3.font-default,
.section-mono h4.font-default {
  font-family: var(--default-font);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5 {
  color: var(--text-bright);
}

.text-bright {
  color: var(--text-bright);
}

.text-on-dark {
  color: var(--text-on-dark);
}

.section-mono p {
  font-size: 16px;
  color: var(--text-on-dark);
  padding: 16px 0;
}

.section-mono p strong {
  color: inherit;
}

.comparison .health-bars {
  display: flex;
  align-items: center;
  position: sticky;
  top: 98px;
  padding: 12px 0;
  background: rgba(12, 15, 15, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
}

.comparison .health-bar {
  width: 100%;
  color: var(--text-bright);
}

.comparison .player-name {
  letter-spacing: 1px;
  margin: 0 2px;
}

.comparison .health-bar_pl2 .player-name {
  text-align: right;
}

.comparison .health-bar .player-logo {
  max-height: 24px;
  width: auto;
  margin-right: 4px;
}

.comparison .bar {
  background: var(--grey60);
  height: 6px;
  border-radius: 2px;
  width: 100%;
  position: relative;
}

.comparison .bar-overlay {
  position: absolute;
  inset: 0;
  background: #00ef5f;
  width: 100%;
  border-radius: 2px;
}

.comparison .health-bar_pl2 .bar-overlay {
  animation: health 1s linear;
  /* Pause the animation */
  animation-play-state: paused;
  /* Bind the animation to scroll */
  animation-delay: calc(var(--scroll) * -0.95s);
  /* These last 2 properites clean up overshoot weirdness */
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes health {
  50% {
    background-color: #ffb140;
    width: 50%;
  }

  100% {
    background-color: #db162f;
    width: 0%;
  }
}

.comparison .health-bars .vs {
  font-size: 40px;
  height: auto;
  position: static;
  margin: 0 48px;
}

@media screen and (max-width: 680px) {
  .comparison .health-bars .vs {
    margin: 0 8px;
  }
}

.section-mono .section-header {
  position: sticky;
  top: 140px;
  padding: 12px var(--gutter-h);
  background: rgba(12, 15, 15, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--green40);
  z-index: 29;
  padding-bottom: 24px;
}

.section-mono .section-header.top-s {
  top: 59px;
}

.section-mono .section-title {
  font-size: 20px;
  color: var(--text-bright);
  font-family: var(--mono-font);
}

.section-mono .section-content {
  color: var(--text-bright);
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: var(--gutter-v) 0;
}

@media screen and (max-width: 1400px) {
  .section-mono .section-content,
    .inner-container {
    max-width: 90%;
  }
}

.section.highlights {
  position: relative;
}

.section.highlights .section-content {
  padding: 0;
}

.section.highlights ul:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, var(--gradient-start), transparent);
  display: block;
  z-index: 0;
}

.section.highlights ul:first-child:before {
  left: 0;
  right: 50%;
}

.section.highlights ul:nth-child(2):before {
  right: 0;
  left: 50%;
}

.section.highlights ul {
  padding: 24px 0;
}

.section.highlights ul li {
  padding: 8px 16px;
  width: 100%;
  text-align: center;
  color: var(--text-on-dark);
  z-index: 1;
}

/* .section.highlights ul li:before {
  content: "\2713";
  margin-right: 8px;
  color: var(--green100);
} */

.section.zigzag {
  background: var(--grey05);
  counter-reset: content-counter;
}

.section.zigzag h3:not(.section-title)::before {
  counter-increment: content-counter;
  content: counter(content-counter) ".";
}

.section.zigzag li:nth-child(2n) .copy-container {
  order: 2;
}

.section.cards .card-block {
  background: linear-gradient(180deg, black, var(--green10));
}

.copy-container ul {
  list-style-type: circle;
  padding-left: 16px;
  color: var(--text-on-dark);
}

.copy-container ul li {
  padding: 2px 0;
}

@media screen and (max-width: 1023px) {
  .ad .hero .inner-container {
    display: block;
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    margin: auto;
    padding: 24px;
    background: rgba(0, 0, 0, 0.75);
    justify-content: flex-start;
    z-index: 1;
    width: auto;
  }

  .ad .netdata-deco {
    all: unset;
  }

  .ad .hero-copy {
    padding: 24px;
    float: left;
    position: relative;
  }

  .ad .hero .image {
    min-height: 450px;
    width: 100%;
    position: relative;
    background-size: contain;
  }

  .ad .w-7\/12 {
    width: 100%;
    float:left;
  }
}

@media screen and (max-width: 763px) {
  .section.zigzag li:nth-child(2n) .copy-container {
    order: 0;
  }
}

.section.zigzag .artwork img {
  max-height: 300px;
  width: 100%;
}

.ad .section.zigzag .artwork img {
  width: auto;
  max-height: none;
}

.section.tabular table {
  border-collapse: separate;
}

.section.tabular .table-container tbody tr th {
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
}

.section.tabular .table-container tbody tr th:first-child {
  background: var(--grey15);
}

.section.tabular .table-container tbody tr:nth-child(2n + 1) th:first-child {
  background: var(--grey10);
}

.section.tabular .table-container tbody tr:hover th:nth-child(3) {
  box-shadow: none;
  transform: none;
}

.section.tabular .table-container tbody tr:nth-child(2n + 1) th:nth-child(2) {
  background: var(--green10);
  width: 40%;
}

.section.tabular .table-container tbody tr th:nth-child(2) {
  background: var(--green20);
}

.section.tabular .table-container tbody tr:nth-child(2n + 1) th:nth-child(3) {
  background: var(--grey10);
}

.section.tabular .table-container tbody tr th:nth-child(3) {
  background: var(--grey15);
  width: 40%;
}

.section.tabular .table-container tr th,
.section.tabular .table-container tr td {
  color: var(--text-on-dark);
}

.section.tabular .table-container tbody tr:hover th:not(:nth-child(2)) {
  background: var(--grey30) !important;
  color: var(--text-bright);
}

.section.tabular .table-container tbody tr:hover th:nth-child(2),
.factor.highlight {
  background: var(--green10);
  color: var(--text-bright);
  box-shadow:
        var(--green120) -1px 1px,
        var(--green120) -2px 2px,
        var(--green120) -3px 3px,
        var(--green120) -4px 4px,
        var(--green120) -5px 5px,
        var(--green120) -6px 6px;
  transform: translate3d(6px, -6px, 0);
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  border-color: var(--green140);
  z-index: 1;
}

.section.tabular .table-container th.logo img {
  max-height: 40px;
  width: auto;
  display: inline;
}

.table-comparison tbody tr th:first-child h6,
.table-comparison tbody tr th:nth-child(2) h6,
.table-comparison tbody tr th:nth-child(3) h6 {
  font-size: 12px;
}

.table-comparison tbody tr th:nth-child(2) strong {
  color: var(--green110);
  font-weight: normal;
}

.table-comparison tbody tr th:nth-child(3) strong {
  color: #db162f;
  font-weight: normal;
}

/* Solution view */

.solution {
  background: var(--grey05);
  --gutter-v: 40px;
  --gutter-h: 40px;
}

.hero {
  --section-height: 75vh;
  min-height: var(--section-height);
  background: var(--grey10);
  color: var(--text-on-dark);
  overflow: hidden;
}

.monitoring .hero {
  --section-height: 45vh;
}

.hero.hero_short {
  --section-height: 45vh;
}

.solution-category {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--green100);
}

.hero .title {
  font-size: 45px;
  color: var(--text-bright);
  line-height: 1.2;
  margin: 8px 0;
}

.hero .description {
  font-size: 18px;
  color: var(--text-on-dark);
  line-height: 1.3;
  margin: 0;
}

.netdata-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -120px;
  width: calc(50% + 120px);
  background: var(--green10);
  transform: skewX(19deg);
  overflow: hidden;
}

.hero .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  transform: skewX(-19deg) translateX(-120px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.ad .netdata-deco {
  transform:skewX(0);
}

.ad .hero .image {
  transform:none;
}

.hero-full .hero-copy {
  z-index: 10;
}

.solution .section-mono .section-header,
.use-case .section-mono .section-header {
  top: 96px;
  padding: 32px;
}

.ad .section-mono .section-header {
  top:56px;
}

.solution .section.zigzag h3:not(.section-title)::before {
  counter-increment: content-counter;
  content: "";
}

.section-content details[open] summary {
  border-bottom: 1px solid var(--green100);
  margin: 0 -16px 16px;
  padding: 0 16px 16px;
}

.section-content details {
  padding: 16px;
}

.faq-list details,
.section-content details {
  background: var(--grey05);
  border: 1px solid var(--green60);
  border-radius: 2px;
  color: var(--text-on-dark);
}

.faq-list details strong,
.section-content details strong {
  color: var(--text-on-dark) !important;
}

.faq-list details summary,
.section-content details summary {
  color: var(--green90);
  cursor: pointer;
}

.faq-list details summary h3,
.faq-list details summary h4 {
  display: inline;
}

.faq-list details summary h3 {
  font-size: 16px;
}

.faq-list details p {
  color: var(--text-on-dark);
}

.section-content table {
  width: 100%;
}

.section-content pre {
  white-space: break-spaces;
}

.section.cards {
  position: relative;
  background: var(--grey15);
}

.section.endtitles p {
  font-size: 24px;
  text-align: center;
}

.cards .card-block,
.use-case blockquote,
pre code {
  background: #000;
  border-right: 1px solid var(--grey30);
  border-top: 1px solid var(--grey30);
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  box-shadow:
        var(--grey30) -1px 1px,
        var(--grey30) -2px 2px,
        var(--grey30) -3px 3px,
        var(--grey30) -4px 4px,
        var(--grey30) -5px 5px,
        var(--grey30) -6px 6px,
        var(--grey30) -7px 7px,
        var(--grey30) -8px 8px,
        var(--grey30) -9px 9px,
        var(--grey30) -10px 10px;
  transform: translate3d(10px, -10px, 0);
  position: relative;
  transition: 200ms ease;
  display: block;
}

pre code {
  padding: 24px;
  border: 1px solid var(--green50);
}

p code,
li code {
  border: 1px solid var(--green50);
  color: var(--green120);
  padding: 2px 4px;
  border-radius: 2px;
  margin: 0 2px;
  font-size: smaller;
}

.cards .card-block:hover {
  border: 1px solid var(--green100);
}

/* .cards .card-block:hover .card-logo {
    height: 100%;
} */

.cards .card-image {
  height: 300px;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.has-overlay:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.cards .card-block h3,
.cards .card-block h4 {
  font-family: var(--default-font);
  font-weight: bold;
}

.cards .card-hypertitle {
  text-transform: uppercase;
  color: var(--green100);
  font-size: 14px;
}

.cards .card-content {
  padding: 16px;
}

.cards .card-description {
  font-size: 14px;
  margin: 4px 0;
  padding: 0;
}

.use-case-list .card-block {
  min-height: 480px;
  display: block;
}

@media screen and (max-width: 800px) {
  .player-title {
    font-size: 20px;
  }

  .vs {
    font-size: 50px;
  }

  .headline {
    font-size: 18px;
  }
}

/* section-cta */

.section-cta {
  /* border-top: 2px solid var(--green100); */
  background: var(--grey15);
}

@media screen and (max-width: 640px) {
  .section.tabular .table-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }

  .section.tabular .table-container tbody tr th:nth-child(3),
    .section.tabular
        .table-container
        tbody
        tr:nth-child(2n + 1)
        th:nth-child(2) {
    width: auto;
    word-break: break-all;
  }

  .section.tabular .table-container tbody th:nth-child(2):before {
    content: "Netdata";
    text-transform: uppercase;
    position: absolute;
    left: -100%;
    background: var(--green10);
    top: 0;
    bottom: 0;
    width: inherit;
    right: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    border-right: 1px solid var(--green30);
  }

  .section.tabular .table-container tbody th:nth-child(3):before {
    content: var(--competitor);
    text-transform: uppercase;
    position: absolute;
    left: -100%;
    background: var(--grey10);
    top: 0;
    bottom: 0;
    width: inherit;
    right: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    border-right: 1px solid var(--grey35);
  }
}

ul.directory {
  border: 1px solid var(--grey55);
  border-top: 0;
}

ul.directory li {
  border-bottom: 1px solid var(--grey55);
}

ul.directory a:link,
ul.directory a:active,
ul.directory a:visited {
  color: var(--green100);
}

ul.directory a:hover {
  color: var(--green120);
  background: var(--grey30);
}

.nd-input {
  background: rgb(4 5 5 / 20%);
  border: 1px solid var(--grey65);
  border-radius: 2px 2px 0 0;
  color: var(--text-on-dark);
}

.nd-input:hover,
.nd-input:active,
.nd-input:focus {
  border-color: var(--grey85);
  box-shadow: none;
}

.switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  display: none;
}

.slider {
  position: relative;
  cursor: pointer;
  background-color: var(--grey165);
  transition: 0.4s;
  width: 48px;
  height: 24px;
}

.switch-double .slider {
  background-color: var(--green10);
  border: 1px solid var(--green130);
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #00ef5f;
  transition: 0.4s;
  box-shadow: 2px 2px 35px #00ef5f;
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--green100);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

.range-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 8px;
  background: var(--green20);
  outline: none;
  opacity: 0.7;
  transition: 0.2s ease;
  border: 1px solid var(--green110);
  border-radius: 2px;
  width: 100%;
}

.range-slider:hover {
  opacity: 1;
}

input.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--green10);
  border: 2px solid var(--green140);
  cursor: pointer;
  border-radius: 50%;
}

.nd-input.type-number {
  padding: 4px 8px;
  color: var(--green120);
  font-family: var(--mono-font);
  border-color: var(--green120);
  box-shadow: 0 0 24px inset rgba(0, 255, 101, 0.2);
}

.nd-radio,
.nd-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  line-height: 20px;
}

.nd-radio input,
.nd-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.nd-radio .dot {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--grey10);
  border: 1px solid var(--green100);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */

.nd-radio:hover input ~ .dot {
  background-color: var(--green50);
}

.nd-radio .dot:after {
  content: "";
  position: absolute;
  display: none;
}

.nd-radio input:checked ~ .dot:after {
  display: block;
}

.nd-radio .dot:after {
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green120);
}

.nd-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--grey10);
  border: 1px solid var(--green100);
  border-radius: 2px;
}

.nd-checkbox:hover input ~ .checkmark {
  background-color: var(--green30);
}

.nd-checkbox :hover input ~ .checkmark {
  background-color: #ccc;
}

.nd-checkbox input:checked ~ .checkmark {
  background-color: var(--green40);
}

.nd-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.nd-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.nd-checkbox .checkmark:after {
  inset: 0 0 2px 0;
  margin: auto;
  width: 5px;
  height: 10px;
  border: solid var(--green120);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.monitoring .search-input-container {
  top: 115px;
  background: var(--grey05);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding-top: 45px;
}

.mini-menu-container {
  max-width: 1280px;
  z-index: 1;
  top: 32px;
}

.mini-tile-menu {
  justify-items: center;
  gap: 24px;
}

.mini-tile-menu .mini-tile {
  width: 60px;
  height: 60px;
  background: var(--grey45);
  padding: 8px;
  border-radius: 2px;
  border: 1px solid var(--grey60);
  transition: 100ms linear;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}

.mini-tile-menu .mini-tile:hover,
.mini-tile-menu .mini-tile.active {
  background: var(--green20);
  border-color: var(--green110);
  box-shadow: 0 0 8px rgba(0, 0, 0, 1) inset;
}

.mini-tile-menu .mini-tile-title {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 105%;
  transition: 200ms ease;
  font-size: 14px;
  font-family: var(--mono-font);
  padding: 4px 0;
}

.mini-tile-menu .mini-tile:hover .mini-tile-title {
  visibility: visible;
  opacity: 1;
}

.mini-tile-menu .mini-tile.active {
  pointer-events: none;
}

.mini-tile-menu .mini-tile:hover img,
.mini-tile-menu .mini-tile.active img {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 1));
}

@media screen and (max-width: 1023px) {
  .headline {
    top: 65%;
  }

  .player-logo {
    width: 90px;
    height: 90px;
  }

  .mini-tile-menu .mini-tile {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 640px) {
  .mini-menu-container {
    max-width: 400px;
  }
}

.use-case section ol {
  list-style: decimal;
  margin-left: 24px;
  margin-bottom: 16px;
}

.faq-list .section-content ul,
.use-case section ul {
  list-style: circle;
  margin-left: 24px;
  margin-bottom: 16px;
}

ul.tags {
  margin: 0 !important;
  padding: 16px 0;
}

.tags li {
  display: inline-block;
  margin: 4px 0;
  margin-right: 4px;
}

.tag {
  border: 1px solid var(--green100);
  color: var(--green180);
  display: block;
  padding: 4px 12px 4px 12px;
  text-align: center;
  transition: 150ms ease;
  font-size: 14px;
  position: relative;
  background: var(--green20);
  border-radius: 12px;
  font-family: var(--mono-font);
}

/* .tag:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--green110);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  box-shadow: 0px 0px 2px inset;
} */

.tag:hover {
  text-decoration: none;
  background: var(--green40);
}

.use-case section blockquote {
  border: 1px dashed var(--green50);
  margin: 16px 0;
  padding: 8px 16px 24px;
  width: 100%;
  font-family: var(--mono-font);
}

.use-case h2 {
  font-size: 32px;
  margin: 16px 0 4px;
}

.use-case .section-mono h2 {
  /* set padding top and same equal negative margin to adjust position when coming from link */
  margin-top: -80px;
  padding-top: 96px;
}

.use-case h3 {
  margin: 12px 0 2px;
  font-size: 18px;
}

.use-case .section-mono h3 {
  margin-top: -102px;
  padding-top: 122px;
}

.use-case .main blockquote h2 {
  font-size: 18px;
  margin: 0;
  border: 0;
  padding: 0;
}

.use-case .main blockquote h4 {
  text-align: center;
}

.use-case .main blockquote h5 {
  font-size: 14px;
  text-align: center;
}

.use-case blockquote p {
  text-align: center;
  color: var(--green140);
}

.use-case .main p {
  margin: 8px 0 24px;
  padding: 0;
}

.meta-info {
  position: absolute;
  bottom: 24px;
  right: 0;
  padding: 0 16px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-info .date {
  margin-top: 24px;
}

.author-details {
  display: flex;
  align-items: center;
  transition: 200ms ease;
}

.author-details .image-container {
  width: 60px;
  height: 60px;
  margin-right: 16px;
  transition: 200ms ease;
  padding: 8px;
  background: var(--green20);
  border-radius: 4px;
}

.author-details img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}

.author-details h3,
.author-details p {
  margin: 0;
}

.author-details:hover .image-container {
  background: var(--green40);
}

.author-details:hover {
  color: var(--green100);
}

.blog-list .card-block {
  min-height: 450px;
}

.blog-list .cards .card-image {
  height: 220px;
}

.blog-list .author-details .image-container {
  width: 40px;
  height: 40px;
  padding: 4px;
  margin-right: 8px;
}

/*  */

.scene {
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.hero-full {
  --section-height: 100vh;
}

.hero-full .hero-image {
  position: fixed;
  inset: 0;
  background-repeat: repeat;
  background-size: auto;
  background-position: 50%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  inset: 0;
}

.hero-full .hero-copy {
  text-align: center;
}

.hero-full .intro {
  position: relative;
  padding: 32px 32px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--green50);
  margin: 56px 0;
  border-radius: 4px;
  font-family: var(--mono-font);
  color: var(--text-bright);
  height: 164px;
  display: flex;
  align-items: center;
}

.hero-full .intro:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: var(--green80);
  display: block;
  height: 200%;
  bottom: -200%;
  margin: auto;
}

.section-split {
  border-bottom: 1px solid var(--green50);
}

.section-split .main {
  width: calc(100% - 350px);
  float: left;
  padding-top: 24px;
  margin-top: 0;
}

.side-info {
  width: 300px;
  background: rgba(12, 15, 15, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  float: left;
  margin-right: 24px;
  /* border-bottom: 1px solid var(--green50); */
  border-left: 1px solid var(--green50);
  border-right: 1px solid var(--green50);
  background: #080a0ab8;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  margin-bottom: 0;
  color: var(--green190);
}

.side-info .brand-logo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--green50);
  position: sticky;
  top: 58px;
  background: #001107db;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1;
}

.side-info .brand-logo img {
  max-height: 100%;
  width: auto;
}

.side-info .brand-info_section {
  padding: 24px;
  border-bottom: 1px solid var(--green50);
}

h3.info_section-title {
  margin: 0 0 12px;
}

.side-info ul li {
  margin-bottom: 16px;
}

.side-info #navbar {
  position: sticky;
  top: 160px;
  height: calc(100vh - 160px);
  overflow: auto;
}

.side-info #navbar ul {
  margin: 0;
  padding: 24px;
}

.side-info #navbar ul ul {
  padding: 0 16px;
}

.side-info #navbar ul li {
  list-style: none;
  margin-bottom: 0;
}

.side-info #navbar ul li a {
  padding: 8px 16px;
  display: inline-block;
  word-break: break-word;
}

/* Track */

.side-info #navbar::-webkit-scrollbar {
  width: 8px;
}

.side-info #navbar::-webkit-scrollbar-track {
  background: var(--grey15);
  border-left: 1px solid var(--green60);
  border-radius: 2px;
}

/* Handle */

.side-info #navbar::-webkit-scrollbar-thumb {
  background: var(--green20);
  border: 1px solid var(--green100);
  border-radius: 1px;
}

/* Handle on hover */

.side-info #navbar::-webkit-scrollbar-thumb:hover {
  background: var(--green100);
}

.side-cta {
  position: sticky;
  top: 220px;
}

.blog .side-cta {
  top: 106px;
  background: var(--grey05);
  z-index: 1;
}

.side-cta p {
  color: var(--green190);
}

.side-cta a:link,
.side-cta a:visited,
.side-cta a:active {
  border: 1px solid var(--green100);
  color: var(--green110);
  display: block;
  padding: 4px 12px;
  margin: 16px 0;
  text-align: center;
  transition: 150ms ease;
}

.side-cta a:hover {
  text-decoration: none;
  background: var(--green40);
}

.side-cta a:active {
  box-shadow: 0 8px 16px inset rgba(0, 0, 0);
  color: var(--green170);
}

section:after {
  content: "";
  display: block;
  clear: both;
}

.hero-framed {
  --section-height: 40vh;
  border-top: 1px solid var(--green50);
  border-bottom: 1px solid var(--green50);
  position: relative;
  overflow: auto;
}

.hero-framed .inner-container {
  height: var(--section-height);
}

.hero-framed .framed-title {
  padding: 16px;
  border-left: 1px solid var(--green50);
  position: relative;
}

.hero-framed .framed-image {
  padding: 24px;
  border-left: 1px solid var(--green50);
  overflow: hidden;
}

.hero-framed .framed-image > div {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
}

.hero-framed .framed-image .image-container {
  height: auto!important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .hero-framed {
  --section-height: 55vh;
}

.blog .hero-framed .framed-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.academy .framed-image img {
  max-height: 100%;
}

.card-logo.false {
  display: none;
}

.card-logo {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--green190);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0 0 60px inset rgba(0, 0, 0);
  padding: 16px;
  height: 150px;
  width: 180px;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 0 100%);
  transition: 250ms ease;
  z-index: 1;
}

.card-logo img {
  max-height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: scale(0.5);
  transform-origin: 0 0;
}

@media screen and (max-width: 800px) {
  .section-split .inner-container {
    flex-direction: column;
  }

  .side-info {
    width: 100%;
  }

  .section-split .main {
    width: 100%;
  }

  .hero-framed:not(.academy-cover) {
    --section-height: calc(100vh - 58px) !important;
  }

  .framed-title {
    width: 100% !important;
    padding: 0 !important;
  }

  .academy-cover .framed-title {
    padding: 16px !important;
  }

  .framed-image {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0 !important;
  }
}

/* .section-framed {
  --border-color: var(--green50);
  --pipe-height: 160px;
  border: 2px solid var(--border-color);
  padding: 32px;
  max-width: 1280px;
  border-radius: 4px;
  margin: var(--pipe-height) auto;
  background: #001107b0;
  position: relative;
  backdrop-filter: saturate(20) blur(1px);
}

.section-framed h2 {
  font-size: 28px;
  margin: 8px 0;
  text-align: left;
}
.section-framed h3 {
  font-size: 20px;
  margin: 8px 0;
  text-align: left;
}
.section-framed:before {
  --border-color: var(--green80);
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  background: var(--border-color);
  height: var(--pipe-height);
}
.section-framed.connections-2:before {
  left: 50%;
}
.section-framed.connections-2:after {
  --border-color: var(--green80);
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 0;
  right: 50%;
  margin: auto;
  width: 2px;
  background: var(--border-color);
  height: var(--pipe-height);
}
.section-group {
  display: none;
}
.section-group:not(:empty) {
  display: flex;
  max-width: 1280px;
  margin: auto;
  gap: 32px;
}
.section-group .sub-section {
  margin: var(--pipe-height) auto 0;
  background: #001107de;
}
.section-group .sub-section .image {
  width: 100%;
  height: 250px;
}
.section-group .sub-section .image img {
  height: 100%;
  width: auto;
  margin: auto;
}
.section-group .sub-section:before {
  height: calc(var(--pipe-height) * 2);
} */

/* .section-group:nth-of-type(2) .sub-section:before {
  height: calc(var(--pipe-height));
} */

.section-cta,
footer {
  position: relative;
}

.academy-cover {
  --section-height: auto;
  position: sticky;
  top: 108px;
  z-index: 10;
  border-top:0;
}

.academy-cover .nd-input {
  border: 0;
  caret-color: var(--green120);
  caret-shape: block;
}

.academy-list .filters {
  position: sticky;
  top: 260px;
}

.academy-list .card-image {
  all: unset;
  position: relative;
  margin: auto;
  padding: 40px 16px;
  display: block;
}

.post-normal .card-image {
  height: 160px;
  max-width: 80%;
}

.post-normal .card-block {
  height: 390px;
}

.post-normal h3.card-title {
  font-size: 16px;
}

.post-featured .card-image {
  height: 180px;
  width: auto;
  margin-left: auto;
}

.post-featured .has-overlay:after {
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background: rgba(0, 0, 0, 0.2);
}

.post-featured .card-image .tile {
  border: 2px solid var(--green40);
  position: relative;
}

.post-normal .card-block--vertical {
  display: flex;
  align-items: center;
  height: auto;
  min-height: 152px;
}

.promoted-comparisons .card-content h3 {
  font-size: 16px;
}

.promoted-comparisons .card-description {
  font-size: 12px;
}

.promoted-comparisons .card-content {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.promoted-comparisons .post-featured .card-image {
  height: 168px;
}

.card-image-container {
}

.card-image-container .card-image{
  width: auto;
  height: auto;
  max-height: 80%;
}

.tile:before {
  position: absolute;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green120);
  top: -2px;
  left: -2px;
  transition: 100ms width ease 300ms;
  -web-kit-transition: 100ms width ease 300ms;
}

.tile:after {
  position: absolute;
  width: 2px;
  height: 0;
  content: "";
  background: var(--green120);
  top: -2px;
  right: -2px;
  transition: 100ms height ease 200ms;
  -web-kit-transition: 100ms height ease 200ms;
}

.tile-inner:after {
  position: absolute;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green120);
  bottom: -2px;
  right: -2px;
  transition: 100ms width ease 100ms;
  -web-kit-transition: 100ms width ease 100ms;
}

.tile-inner:before {
  position: absolute;
  width: 2px;
  height: 0;
  content: "";
  background: var(--green120);
  bottom: -2px;
  left: -2px;
  transition: 100ms height ease 0ms;
  -web-kit-transition: 100ms height ease 0ms;
}

.tile:hover {
  border-color: transparent;
  background: var(--green10);
}

.tile:hover:before {
  width: calc(100% + 2px);
  transition: 100ms width ease 0ms;
  -web-kit-transition: 100ms width ease 0ms;
}

.tile:hover:after {
  height: calc(100% + 2px);
  transition: 100ms height ease 100ms;
  -web-kit-transition: 100ms height ease 100ms;
}

.tile:hover .tile-inner:after {
  width: calc(100% + 2px);
  transition: 100ms width ease 200ms;
  -web-kit-transition: 100ms width ease 200ms;
}

.tile:hover .tile-inner:before {
  height: calc(100% + 2px);
  transition: 100ms height ease 300ms;
  -web-kit-transition: 100ms height ease 300ms;
}

.community.tile img {
  max-width: 80px;
  margin: 8px auto;
  filter: invert(1);
}

.inverted-form {
  filter: invert(1) hue-rotate(185deg);
}

.referral-step {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.referral-step .image-container {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.referral-step .image-container img {
  filter: drop-shadow(2px 4px 6px var(--green30));
  transition: 200ms ease;
}

.referral-step:hover .image-container img {
  filter: drop-shadow(2px 4px 60px var(--green30));
}

.has-content p {
  margin: 8px 0 0;
}

.prose * {
  color: var(--text-on-dark) !important;
}

.banner-home {
  background: var(--green100);
  color: var(--white);
  transition: 150ms ease;
}

.banner-home:not(.banner-ai):hover {
  background: var(--green110);
}

.banner-pricing {
  background: var(--black);
  border: 1px solid var(--green120);
  box-shadow: 0 0 30px inset rgba(0, 255, 101, 0.3);
  color: var(--green120);
}

.banner-ai {
  background: linear-gradient(90deg, #02151B , #032936, #02151B);
  color: #0EB6F0;
  transition: all 500ms ease;
}

.banner-ai:hover {
  background: linear-gradient(90deg, #021F29 , #053E52, #021F29);
  transition: all 500ms ease;
}

.node-heatmap-cards {
  --node-card-height: 277px;
  width: 445px;
  height: calc(var(--node-card-height) / 2);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--green40);
  margin: 16px auto;
  display: block;
}

.node-heatmap-cards:hover {
  border: 1px solid var(--green110);
  transition: 400ms ease;
}

.node-heatmap-cards:hover .node-heatmap-card img {
  filter: blur(4px);
}

.node-heatmap-card {
  position: absolute;
}

.node-heatmap-card img {
  max-width: none;
  height: var(--node-card-height);
  filter: blur(0.5px);
  transition: 400ms ease;
}

.node-heatmap-card.card-1 {
  animation: rolling-card_1 10s forwards infinite linear;
}

.node-heatmap-card.card-2 {
  transform: translateY(var(--node-card-height));
  animation: rolling-card_2 10s forwards infinite linear;
  opacity: 1;
  z-index: 0;
}

@keyframes rolling-card_1 {
  0% {
    transform: translate(0);
  }

  49% {
    transform: translateY(calc(-1 * var(--node-card-height)));
  }

  50% {
    transform: translateY(var(--node-card-height));
    visibility: hidden;
  }

  100% {
    transform: translate(0);
  }
}

@keyframes rolling-card_2 {
  0% {
    transform: translateY(var(--node-card-height));
  }

  99.5% {
    transform: translateY(calc(-1 * var(--node-card-height)));
    opacity: 1;
  }

  99.6% {
    transform: translateY(calc(-1 * var(--node-card-height)));
    opacity: 0;
  }

  100% {
    transform: translateY(var(--node-card-height));
    opacity: 0;
  }
}

.premium-support {
  color: var(--green110);
  text-align: center;
  align-items: center;
  justify-content: center;
}

#NetdataBusiness .features-list:not(.footnotes-list) > div:last-child {
  display: none;
}

#NetdataBusiness.maxNodes .features-list:not(.footnotes-list) > div:last-child {
  display: flex;
  color: var(--green110);
}

.max-nodes-message {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: var(--mono-font);
  color: var(--green100);
}

#NetdataEnterprise #NetdataEnterprisePrice,
#NetdataEnterprise .dynamic-unit {
  display: none;
}

#NetdataEnterprise.enterpriseThresh #NetdataEnterprisePrice,
#NetdataEnterprise.enterpriseThresh .dynamic-unit {
  display: block;
}

#NetdataEnterprise .dynamic-info {
  display: block;
  margin: 12px 0;
}

#NetdataEnterprise.enterpriseThresh .dynamic-info {
  display: none;
}

#NetdataEnterprise .features-list:not(.footnotes-list) > div:first-child {
  color: var(--green110);
}

.has-smudge {
  position: relative;
}

.has-smudge:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  background: var(--green100);
  z-index: -1;
  filter: blur(100px);
  margin: auto;
  width: 75%;
  height: 75%;
  opacity: 0.8;
}

.has-smudges:before,
.has-smudges:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--green100);
  z-index: -1;
  filter: blur(100px);
  margin: auto;
  width: 35%;
  height: 35%;
  opacity: 0.4;
}

.has-smudges:before {
  top: 0;
  bottom:0;
  left: 0;
}

.has-smudges:after {
  bottom:0;
  right: 0;
}

.carousel-container {
  width: 100%;
  /* overflow: hidden; */
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  animation: scroll 150s linear infinite forwards;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--track-width)));
  }
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.monitoring-tabs .tab {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px;
  border-left: 1px solid transparent;
}

.monitoring-tabs .tab .tab-description {
  display: none;
}

.monitoring-tabs .tab:hover:not(.active) {
  border-left: 1px solid var(--grey40);
  padding-left: 24px;
}

.monitoring-tabs .tab.active h3 {
  color: var(--green100);
}

.monitoring-tabs .tab.active .tab-description {
  display: block;
}

.monitoring-tabs .tab.active {
  padding-left: 24px;
  border-left: 1px solid var(--green100);
}

@media screen and (max-width: 768px) {
  .monitoring-tabs {
    display: flex;
    position:relative;
    align-items: center;
  }

  .monitoring-tabs .tab {
    padding: 12px 4px;
    text-align: center;
    border:0;
  }

  .monitoring-tabs .tab.active {
    padding-left: 4px;
    border-left:0;
    border-bottom: 1px solid var(--green100);
  }

  .monitoring-tabs .tab.active .tab-description {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 100%;
    padding: 16px 0;
  }

  .monitoring-tabs .tab:hover:not(.active) {
    border-left: 0;
    padding-left: 4px;
    background: var(--grey20);
  }
}

.nd-card {
  background-color: var(--grey20);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 120% 0;
  transition: all 0.3s ease;
}

.nd-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(45deg, transparent 15%, var(--green100), transparent 85%);
  opacity: 0;
  transition: all 0.3s ease;
}

.nd-card:hover {
  background-size: 60%;
}

.nd-card:hover::after {
  opacity: 1;
}

.nd-card h3 {
  transition: all 0.3s ease;
}

.nd-card:hover h3 {
  color: var(--green100);
}

.nd-card_highlight:hover {
  box-shadow: 0 0 30px inset var(--green50);
}

.case-study-card {
  background: var(--grey25);
  border: 1px solid var(--grey50);
}

.case-study-card img{
  border-radius: 8px;
}

.star {
  width: 40px;
  aspect-ratio: 1;
  background: #F8CA00;
  -webkit-clip-path: polygon(50% 0,
      calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
      calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
     );
          clip-path: polygon(50% 0,
      calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
      calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
     );
  /* or more simple
    clip-path: polygon(50% 0,79% 90%,2% 35%,98% 35%,21% 90%); 
     */
}

.spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
        transparent 60px, 
        rgba(0, 0, 0, 0.94) 160px);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.spotlight-container {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 110px);
}

.spotlight-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.spotlight-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.spotlight-hidden .spotlight-overlay {
  opacity: 0;
}

.cta-reveal {
  position: relative;
  z-index: 20;
  color: var(--green120);
  border: 1px solid var(--green140);
  border-radius: 2px;
  padding: 8px 16px;
  box-shadow: 4px 4px 40px rgb(51 255 133 / 30%) inset;
  transition: 400ms ease;
}

.cta-reveal:hover {
  box-shadow: 4px 4px 40px rgb(51 255 133 / 50%) inset;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.cta-reveal button:hover {
  color: var(--green130);
}

.cta-reveal:hover #ctaRevealIcon{
  fill: var(--green130);
}

.cta-reveal #ctaRevealIcon {
  animation: lamp 2s infinite;
}

.chart-wrapper {
  height: 250px;
  align-items: flex-end;
}

.chart-column {
  width: 40px;
  background: linear-gradient(180deg, var(--red30), var(--red170));
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(212, 0, 57, 0.192);
  animation: pulse 2s infinite;
}

.chart-column:hover {
  background: linear-gradient(180deg, var(--red100),var(--red130));
  box-shadow: 0 6px 20px rgba(212, 0, 32, 0.5);
}

.chart-labels {
  gap: 32px;
}

.spotlight-hidden .chart-column{
  background: linear-gradient(180deg, var(--green30), var(--green170));
  box-shadow: 0 4px 12px rgba(0, 212, 71, 0.192);
}

.spotlight-hidden .chart-column:hover{
  background: linear-gradient(180deg, var(--green100), var(--green130));
  box-shadow: 0 6px 20px rgba(0, 212, 11, 0.5)
}

.section-cta-highlighted {
  box-shadow: 0 0 50px rgb(22 132 3 / 40%) inset;
}

.has-checkmark {
  position: relative;
  padding-left: 64px;
}

.has-checkmark:before {
  position: absolute;
  left: 12px;
  top: 0;
  width: 40px;
  height: 40px;
  content: '\2713';
  color: var(--green80);
  padding: 0;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  margin: auto;
  background: black;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--green30);
  box-shadow: 0 4px 20px rgb(6 238 96 / 20%) inset;
}

.has-checkmark:hover:before {
  transform: scale(1);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.02);
  }
}

@keyframes lamp {
  0%, 100% {
    opacity: 0.8;
    transform: scaleY(1) translateY(0);
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.05) translateY(-4px);
    filter: brightness(1.8);
  }
}

/* Lightbox Styles */

.lightbox {
  display: none !important;
  position: fixed !important;
  z-index: 99999 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  -webkit-backdrop-filter: blur(5px) !important;
          backdrop-filter: blur(5px) !important;
  transition: opacity 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lightbox.active {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  animation: lightboxZoom 0.3s ease;
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
}

/* Add cursor pointer to clickable images */

img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

img:hover {
  opacity: 0.9;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
  }

  .lg\:prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.2222222em;
    line-height: 1.4545455;
    margin-top: 1.0909091em;
    margin-bottom: 1.0909091em;
  }

  .lg\:prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.6666667em;
    margin-bottom: 1.6666667em;
    padding-left: 1em;
  }

  .lg\:prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 2.6666667em;
    margin-top: 0;
    margin-bottom: 0.8333333em;
    line-height: 1;
  }

  .lg\:prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.6666667em;
    margin-top: 1.8666667em;
    margin-bottom: 1.0666667em;
    line-height: 1.3333333;
  }

  .lg\:prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.3333333em;
    margin-top: 1.6666667em;
    margin-bottom: 0.6666667em;
    line-height: 1.5;
  }

  .lg\:prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;
  }

  .lg\:prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    border-radius: 0.3125rem;
    padding-top: 0.2222222em;
    padding-right: 0.4444444em;
    padding-bottom: 0.2222222em;
    padding-left: 0.4444444em;
  }

  .lg\:prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
  }

  .lg\:prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8666667em;
  }

  .lg\:prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.875em;
  }

  .lg\:prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.75;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
    padding-top: 1em;
    padding-right: 1.5em;
    padding-bottom: 1em;
    padding-left: 1.5em;
  }

  .lg\:prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-left: 1.5555556em;
  }

  .lg\:prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-left: 1.5555556em;
  }

  .lg\:prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6666667em;
    margin-bottom: 0.6666667em;
  }

  .lg\:prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-left: 0.4444444em;
  }

  .lg\:prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-left: 0.4444444em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;
  }

  .lg\:prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
  }

  .lg\:prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
  }

  .lg\:prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6666667em;
    padding-left: 1.5555556em;
  }

  .lg\:prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 3.1111111em;
    margin-bottom: 3.1111111em;
  }

  .lg\:prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.5;
  }

  .lg\:prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .lg\:prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-left: 0;
  }

  .lg\:prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-right: 0;
  }

  .lg\:prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.75em;
    padding-right: 0.75em;
    padding-bottom: 0.75em;
    padding-left: 0.75em;
  }

  .lg\:prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-left: 0;
  }

  .lg\:prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-right: 0;
  }

  .lg\:prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;
  }

  .lg\:prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.5;
    margin-top: 1em;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
  }

  .lg\:prose-lg :where(.lg\:prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;
  }
}

.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.hover\:bg-blue-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 66 159 / var(--tw-bg-opacity));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}

.hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}

.hover\:bg-netdata-500\/10:hover {
  background-color: rgb(0 171 68 / 0.1);
}

.hover\:bg-netdata-500\/60:hover {
  background-color: rgb(0 171 68 / 0.6);
}

.hover\:bg-netdata-500\/90:hover {
  background-color: rgb(0 171 68 / 0.9);
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.hover\:bg-opacity-30:hover {
  --tw-bg-opacity: 0.3;
}

.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(28 100 242 / var(--tw-text-opacity));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.hover\:text-gray-600:hover {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.hover\:text-netdata-400:hover {
  --tw-text-opacity: 1;
  color: rgb(0 212 84 / var(--tw-text-opacity));
}

.hover\:text-netdata-500\/90:hover {
  color: rgb(0 171 68 / 0.9);
}

.hover\:text-netdata-600:hover {
  --tw-text-opacity: 1;
  color: rgb(0 115 46 / var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

.hover\:grayscale-0:hover {
  --tw-grayscale: grayscale(0);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.focus\:border-\[\#181F1E\]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(24 31 30 / var(--tw-border-opacity));
}

.focus\:border-netdata-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(0 171 68 / var(--tw-border-opacity));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-300:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
}

.focus\:ring-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
}

.focus\:ring-gray-600:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(75 85 99 / var(--tw-ring-opacity));
}

.focus\:ring-green-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 159 110 / var(--tw-ring-opacity));
}

.focus\:ring-netdata-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 171 68 / var(--tw-ring-opacity));
}

.prose-a\:text-netdata-500 :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
  --tw-text-opacity: 1;
  color: rgb(0 171 68 / var(--tw-text-opacity));
}

.hover\:prose-a\:text-netdata-400 :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover {
  --tw-text-opacity: 1;
  color: rgb(0 212 84 / var(--tw-text-opacity));
}

:is(.dark .dark\:border-blue-500) {
  --tw-border-opacity: 1;
  border-color: rgb(63 131 248 / var(--tw-border-opacity));
}

:is(.dark .dark\:border-gray-600) {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
}

:is(.dark .dark\:border-gray-700) {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}

:is(.dark .dark\:border-transparent) {
  border-color: transparent;
}

:is(.dark .dark\:bg-blue-600) {
  --tw-bg-opacity: 1;
  background-color: rgb(28 100 242 / var(--tw-bg-opacity));
}

:is(.dark .dark\:bg-gray-600) {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}

:is(.dark .dark\:bg-gray-700) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}

:is(.dark .dark\:bg-gray-800) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

:is(.dark .dark\:bg-gray-800\/50) {
  background-color: rgb(31 41 55 / 0.5);
}

:is(.dark .dark\:bg-opacity-80) {
  --tw-bg-opacity: 0.8;
}

:is(.dark .dark\:text-blue-500) {
  --tw-text-opacity: 1;
  color: rgb(63 131 248 / var(--tw-text-opacity));
}

:is(.dark .dark\:text-gray-300) {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

:is(.dark .dark\:text-gray-400) {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

:is(.dark .dark\:text-netdata-500) {
  --tw-text-opacity: 1;
  color: rgb(0 171 68 / var(--tw-text-opacity));
}

:is(.dark .dark\:text-white) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

:is(.dark .dark\:placeholder-gray-400)::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}

:is(.dark .dark\:placeholder-gray-400)::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity));
}

:is(.dark .dark\:ring-offset-gray-800) {
  --tw-ring-offset-color: #1F2937;
}

:is(.dark .dark\:hover\:bg-blue-700:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(26 86 219 / var(--tw-bg-opacity));
}

:is(.dark .dark\:hover\:bg-gray-600:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}

:is(.dark .dark\:hover\:bg-gray-800:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

:is(.dark .dark\:hover\:text-blue-500:hover) {
  --tw-text-opacity: 1;
  color: rgb(63 131 248 / var(--tw-text-opacity));
}

:is(.dark .dark\:hover\:text-gray-300:hover) {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

:is(.dark .dark\:hover\:text-white:hover) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

:is(.dark .dark\:focus\:border-blue-500:focus) {
  --tw-border-opacity: 1;
  border-color: rgb(63 131 248 / var(--tw-border-opacity));
}

:is(.dark .dark\:focus\:ring-blue-500:focus) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(63 131 248 / var(--tw-ring-opacity));
}

:is(.dark .dark\:focus\:ring-blue-600:focus) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 100 242 / var(--tw-ring-opacity));
}

@media (min-width: 640px) {
  .sm\:left-6 {
    left: 1.5rem;
  }

  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .sm\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .sm\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .sm\:mb-0 {
    margin-bottom: 0px;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:mt-12 {
    margin-top: 3rem;
  }

  .sm\:mt-16 {
    margin-top: 4rem;
  }

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:grid {
    display: grid;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-9 {
    height: 2.25rem;
  }

  .sm\:h-96 {
    height: 24rem;
  }

  .sm\:h-\[26px\] {
    height: 26px;
  }

  .sm\:min-h-\[calc\(90vh-80px\)\] {
    min-height: calc(90vh - 80px);
  }

  .sm\:w-4 {
    width: 1rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-\[160px\] {
    width: 160px;
  }

  .sm\:w-\[390px\] {
    width: 390px;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:min-w-\[150px\] {
    min-width: 150px;
  }

  .sm\:max-w-3xl {
    max-width: 48rem;
  }

  .sm\:max-w-md {
    max-width: 28rem;
  }

  .sm\:max-w-xl {
    max-width: 36rem;
  }

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:gap-0 {
    gap: 0px;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

  .sm\:gap-3 {
    gap: 0.75rem;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:gap-8 {
    gap: 2rem;
  }

  .sm\:gap-\[10px\] {
    gap: 10px;
  }

  .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sm\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-center {
    text-align: center;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:inset-0 {
    inset: 0px;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-16 {
    margin-top: 4rem;
  }

  .md\:mt-36 {
    margin-top: 9rem;
  }

  .md\:mt-4 {
    margin-top: 1rem;
  }

  .md\:mt-6 {
    margin-top: 1.5rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:h-\[522px\] {
    height: 522px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-3\/4 {
    width: 75%;
  }

  .md\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:max-w-lg {
    max-width: 32rem;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-end {
    justify-content: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .md\:gap-y-4 {
    row-gap: 1rem;
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:px-\[190px\] {
    padding-left: 190px;
    padding-right: 190px;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-\[46px\] {
    font-size: 46px;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:relative {
    position: relative;
  }

  .lg\:left-0 {
    left: 0px;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-none {
    order: 0;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:m-0 {
    margin: 0px;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .lg\:my-\[58px\] {
    margin-top: 58px;
    margin-bottom: 58px;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:ml-8 {
    margin-left: 2rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-4 {
    height: 1rem;
  }

  .lg\:h-6 {
    height: 1.5rem;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:w-4 {
    width: 1rem;
  }

  .lg\:w-6 {
    width: 1.5rem;
  }

  .lg\:w-\[180px\] {
    width: 180px;
  }

  .lg\:w-\[232px\] {
    width: 232px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:max-w-4xl {
    max-width: 56rem;
  }

  .lg\:max-w-7xl {
    max-width: 80rem;
  }

  .lg\:max-w-\[52\%\] {
    max-width: 52%;
  }

  .lg\:max-w-\[60\%\] {
    max-width: 60%;
  }

  .lg\:max-w-\[600px\] {
    max-width: 600px;
  }

  .lg\:max-w-none {
    max-width: none;
  }

  .lg\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .lg\:grid-flow-col-dense {
    grid-auto-flow: column dense;
  }

  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-20 {
    gap: 5rem;
  }

  .lg\:gap-24 {
    gap: 6rem;
  }

  .lg\:gap-32 {
    gap: 8rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-\[24px\] {
    gap: 24px;
  }

  .lg\:gap-\[30px\] {
    gap: 30px;
  }

  .lg\:gap-\[40px\] {
    gap: 40px;
  }

  .lg\:gap-\[50px\] {
    gap: 50px;
  }

  .lg\:gap-\[51px\] {
    gap: 51px;
  }

  .lg\:gap-\[60px\] {
    gap: 60px;
  }

  .lg\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .lg\:gap-y-2 {
    row-gap: 0.5rem;
  }

  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:border-0 {
    border-width: 0px;
  }

  .lg\:border-l {
    border-left-width: 1px;
  }

  .lg\:border-r {
    border-right-width: 1px;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:p-10 {
    padding: 2.5rem;
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:p-\[50px\] {
    padding: 50px;
  }

  .lg\:p-\[60px\] {
    padding: 60px;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lg\:pb-12 {
    padding-bottom: 3rem;
  }

  .lg\:pb-24 {
    padding-bottom: 6rem;
  }

  .lg\:pb-4 {
    padding-bottom: 1rem;
  }

  .lg\:pb-\[200px\] {
    padding-bottom: 200px;
  }

  .lg\:pl-8 {
    padding-left: 2rem;
  }

  .lg\:pt-8 {
    padding-top: 2rem;
  }

  .lg\:pt-\[134px\] {
    padding-top: 134px;
  }

  .lg\:text-center {
    text-align: center;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-9xl {
    font-size: 8rem;
    line-height: 1;
  }

  .lg\:text-\[13px\] {
    font-size: 13px;
  }

  .lg\:text-\[15px\] {
    font-size: 15px;
  }

  .lg\:text-\[16px\] {
    font-size: 16px;
  }

  .lg\:text-\[18px\] {
    font-size: 18px;
  }

  .lg\:text-\[20px\] {
    font-size: 20px;
  }

  .lg\:text-\[22px\] {
    font-size: 22px;
  }

  .lg\:text-\[32px\] {
    font-size: 32px;
  }

  .lg\:text-\[40px\] {
    font-size: 40px;
  }

  .lg\:text-\[46px\] {
    font-size: 46px;
  }

  .lg\:text-\[64px\] {
    font-size: 64px;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:leading-\[110\%\] {
    line-height: 110%;
  }

  .lg\:leading-\[120\%\] {
    line-height: 120%;
  }

  .lg\:leading-\[140\%\] {
    line-height: 140%;
  }

  .lg\:hover\:bg-transparent:hover {
    background-color: transparent;
  }

  .group:nth-child(odd) .group-odd\:lg\:col-start-2 {
    grid-column-start: 2;
  }
}

@media (min-width: 1280px) {
  .xl\:gap-16 {
    gap: 4rem;
  }

  .xl\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .xl\:text-\[46px\] {
    font-size: 46px;
  }

  .xl\:text-\[54px\] {
    font-size: 54px;
  }
}

.\[\&_b\]\:font-light b {
  font-weight: 300;
}

.\[\&_p\]\:mt-8 p {
  margin-top: 2rem;
}
