@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {

  --partner-primary: hsl(220 100% 46%);
  --partner-primary-hover: var(--partner-primary-hover);

  --brand-primary-700: var(--partner-primary);
  --brand-primary-100: color-mix(in srgb, var(--brand-primary-700) 10%, white);
  --brand-primary-50: color-mix(in srgb, var(--brand-primary-700) 5%, white);
  --brand-primary-25: color-mix(in srgb, var(--brand-primary-700) 2.5%, white);

  --ow-text: #0f172a;
  --ow-text-muted: #64748b;
  --ow-surface: #ffffff;
  --ow-page: #f8fafc;
  --ow-border: rgba(15, 23, 42, 0.08);

  --ow-radius-sm: 12px;
  --ow-radius-md: 16px;
  --ow-radius-lg: 28px;

  --ow-shadow-sm: 0 4px 18px rgba(15, 23, 42, 0.04);
  --ow-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --ow-shadow-hero: 0 18px 55px rgba(15, 23, 42, 0.07);

  --ow-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--ow-font) !important;
}

body {
  background: var(--ow-page);
  color: var(--ow-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#docsSearch {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: min(1180px, calc(100% - 48px));
  min-height: 255px;
  height: auto;

  margin: 28px auto 58px;
  padding: 56px 32px 60px;

  border: 1px solid color-mix(in srgb, var(--brand-primary-700) 8%, white);
  border-radius: var(--ow-radius-lg);

  background:
    radial-gradient(
      circle at 4% 0%,
      var(--brand-primary-100) 0,
      transparent 38%
    ),
    radial-gradient(
      circle at 96% 100%,
      var(--brand-primary-100) 0,
      transparent 40%
    ),
    linear-gradient(
      135deg,
      var(--brand-primary-50) 0%,
      #fff 52%,
      var(--brand-primary-50) 100%
    );

  box-shadow: var(--ow-shadow-hero);
}

#docsSearch::before {
  content: "";
  position: absolute;
  z-index: -1;

  width: 360px;
  height: 360px;
  left: -215px;
  top: -190px;

  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-primary-700) 10%, transparent);
  background: color-mix(in srgb, var(--brand-primary-700) 3%, transparent);
}

#docsSearch::after {
  content: "";
  position: absolute;
  z-index: -1;

  width: 420px;
  height: 420px;
  right: -250px;
  bottom: -275px;

  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--brand-primary-700) 10%, transparent);
  background: color-mix(in srgb, var(--brand-primary-700) 4%, transparent);
}

#docsSearch > h1 {
  max-width: 760px;
  margin: 0 auto 28px;

  color: var(--ow-text);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: center;
  text-shadow: none;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fff;
  border-color: var(--ow-border);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.category-list + h2,
.most-pop-articles h2,
h2 {
  color: var(--ow-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
  padding: 0;
}

.category-list .category {
  --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/circle-help.svg");

  position: relative;

  display: flex;
  align-items: center;

  width: auto;
  min-height: 122px;

  margin: 0;
  padding: 22px 48px 22px 96px;

  color: var(--ow-text);
  text-align: left;
  vertical-align: initial;
  cursor: pointer;

  background: var(--ow-surface);
  border: 1px solid var(--ow-border);
  border-radius: var(--ow-radius-md);

  box-shadow: var(--ow-shadow-sm);

  overflow: hidden;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.category-list .category::before {
  content: "";

  position: absolute;
  left: 20px;
  top: 50%;

  width: 58px;
  height: 58px;

  transform: translateY(-50%);

  border-radius: 999px;

  background: var(--brand-primary-50);
}

.category-list .category::after {
  content: "→";

  position: absolute;
  top: 50%;
  right: 20px;

  transform: translateY(-50%);

  color: color-mix(in srgb, var(--brand-primary-700) 58%, white);
  font-size: 19px;
  line-height: 1;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.category-list .category:hover {
  color: var(--ow-text);
  text-decoration: none;

  background: #fff;
  border-color: color-mix(in srgb, var(--brand-primary-700) 13%, white);

  transform: translateY(-2px);
  box-shadow: var(--ow-shadow-md);
}

.category-list .category:hover::after {
  color: var(--brand-primary-700);
  transform: translate(4px, -50%);
}

.category-list .category h3 {
  position: static;

  margin: 0 0 6px;
  padding: 0;

  color: var(--ow-text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.category-list .category h3::before {
  content: "";

  position: absolute;
  z-index: 2;

  left: 36px;
  top: 50%;

  width: 26px;
  height: 26px;

  transform: translateY(-50%);

  background: var(--brand-primary-700);

  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;

  pointer-events: none;
}

.category-list .category h3 a {
  color: inherit;
  text-decoration: none;
}

.category-list .category p,
.category-list .category .article-count,
.category-list .category span {
  color: var(--ow-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.twoCol .popArticles,
.threeCol .popArticles,
.most-pop-articles .popArticles {
  font-size: 14px;
}

.most-pop-articles {
  width: min(1180px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.most-pop-articles .popArticles {
  background: #fff;
  border: 1px solid var(--ow-border);
  border-radius: var(--ow-radius-md);
  box-shadow: var(--ow-shadow-sm);
  overflow: hidden;
}

.most-pop-articles .popArticles li {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.most-pop-articles .popArticles li:last-child {
  border-bottom: 0;
}

.most-pop-articles .popArticles a {
  color: var(--ow-text);
  text-decoration: none;
}

.most-pop-articles .popArticles a:hover {
  color: var(--brand-primary-700);
}

#categoryHead h1 {
  color: var(--ow-text);
  font-weight: 700;
  letter-spacing: -0.025em;
}

#fullArticle .title {
  margin: 0 30px 30px 0 !important;

  color: var(--ow-text);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.articleList {
  color: var(--ow-text);
  font-size: 15px;
  line-height: 1.65;
}

.articleList a,
#fullArticle a {
  color: var(--brand-primary-700);
}

.articleFoot time.lu {
  display: none;
}

@media (max-width: 980px) {
  #docsSearch,
  .category-list,
  .most-pop-articles {
    width: min(100% - 32px, 1180px);
  }

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

@media (max-width: 640px) {
  #docsSearch {
    width: calc(100% - 24px);
    min-height: 0;

    margin: 12px auto 36px;
    padding: 40px 18px;

    border-radius: 22px;
  }

  #docsSearch > h1 {
    margin-bottom: 22px;

    font-size: 30px;
    line-height: 1.12;
  }

  .category-list,
  .most-pop-articles {
    width: calc(100% - 24px);
  }

  .category-list {
    grid-template-columns: 1fr;
    gap: 12px;

    margin-bottom: 40px;
  }

  .category-list .category {
    min-height: 104px;
    padding: 18px 44px 18px 84px;

    border-radius: 14px;
  }

  .category-list .category::before {
    left: 16px;

    width: 52px;
    height: 52px;
  }

  .category-list .category h3::before {
    left: 29px;

    width: 25px;
    height: 25px;
  }

  .category-list .category::after {
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.most-pop-articles {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
}

.most-pop-articles h2 {
  margin: 0 0 20px;

  color: var(--ow-text);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: left;
}

.most-pop-articles .popArticles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin: 0;
  padding: 0;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.most-pop-articles .popArticles li {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 72px;

  margin: 0;
  padding: 16px 52px 16px 58px;

  list-style: none;

  background: #fff;
  border: 1px solid var(--ow-border);
  border-radius: var(--ow-radius-md);

  box-shadow: var(--ow-shadow-sm);

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.most-pop-articles .popArticles li > i,
.most-pop-articles .popArticles li .icon,
.most-pop-articles .popArticles li [class*="icon-"] {
  display: none !important;
}

.most-pop-articles .popArticles li::before {
  content: "";

  position: absolute;
  left: 16px;
  top: 50%;

  width: 30px;
  height: 30px;

  transform: translateY(-50%);

  border-radius: 999px;

  background:
    var(--brand-primary-50);
}

.most-pop-articles .popArticles li::after {
  content: "";

  position: absolute;
  left: 23px;
  top: 50%;

  width: 16px;
  height: 16px;

  transform: translateY(-50%);

  background:
    var(--brand-primary-700);

  -webkit-mask:
    url("https://unpkg.com/lucide-static@0.542.0/icons/circle-help.svg")
    center / contain no-repeat;

  mask:
    url("https://unpkg.com/lucide-static@0.542.0/icons/circle-help.svg")
    center / contain no-repeat;

  pointer-events: none;
}

.most-pop-articles .popArticles a {
  display: block;

  width: 100%;

  color: var(--ow-text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;

  text-decoration: none;

  transition: color .2s ease;
}

.most-pop-articles .popArticles a::after {
  content: "→";

  position: absolute;
  right: 18px;
  top: 50%;

  transform: translateY(-50%);

  color:
    color-mix(
      in srgb,
      var(--brand-primary-700) 55%,
      white
    );

  font-size: 18px;
  line-height: 1;

  transition:
    transform .2s ease,
    color .2s ease;
}

.most-pop-articles .popArticles li:hover {
  transform: translateY(-2px);

  border-color:
    color-mix(
      in srgb,
      var(--brand-primary-700) 13%,
      white
    );

  box-shadow:
    var(--ow-shadow-md);
}

.most-pop-articles .popArticles li:hover a {
  color:
    var(--brand-primary-700);
}

.most-pop-articles .popArticles li:hover a::after {
  transform:
    translate(4px, -50%);

  color:
    var(--brand-primary-700);
}

@media (max-width: 760px) {
  .most-pop-articles {
    width: calc(100% - 24px);
    margin-bottom: 40px;
  }

  .most-pop-articles h2 {
    font-size: 23px;
  }

  .most-pop-articles .popArticles {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .most-pop-articles .popArticles li {
    min-height: 64px;

    padding:
      14px 46px 14px 54px;

    border-radius:
      14px;
  }

  .most-pop-articles .popArticles li::before {
    left: 14px;

    width: 28px;
    height: 28px;
  }

  .most-pop-articles .popArticles li::after {
    left: 20px;

    width: 16px;
    height: 16px;
  }

  .most-pop-articles .popArticles a::after {
    right: 14px;
  }
}

.category-list .category {
  display: block !important;

  min-height: 122px;

  padding:
    31px 50px 24px 96px !important;
}

.category-list .category h3 {
  display: block !important;

  width: auto !important;

  margin:
    0 0 6px !important;

  padding:
    0 !important;

  color:
    var(--ow-text);

  font-size:
    16px;

  line-height:
    1.3;

  font-weight:
    650;
}

.category-list .category p {
  display: block !important;

  width: auto !important;

  margin:
    0 !important;

  padding:
    0 !important;

  font-size:
    0 !important;

  line-height:
    1 !important;

  color:
    transparent !important;
}

.category-list .category p span,
.category-list .category .article-count,
.category-list .category span.article-count {
  display:
    inline-block !important;

  margin:
    0 !important;

  padding:
    0 !important;

  color:
    var(--ow-text-muted) !important;

  font-size:
    13px !important;

  line-height:
    1.4 !important;

  font-weight:
    400 !important;

  white-space:
    nowrap;
}

.category-list .category > span:not([class*="icon"]) {
  display:
    block !important;

  margin:
    0 !important;

  padding:
    0 !important;

  color:
    var(--ow-text-muted) !important;

  font-size:
    13px !important;

  line-height:
    1.4 !important;

  font-weight:
    400 !important;
}

.category-list .category::before {
  top:
    50% !important;

  transform:
    translateY(-50%) !important;
}

.category-list .category h3::before {
  top:
    50% !important;

  transform:
    translateY(-50%) !important;
}

.category-list .category::after {
  top:
    50% !important;

  right:
    20px !important;

  transform:
    translateY(-50%) !important;
}

.category-list .category:hover::after {
  transform:
    translate(4px, -50%) !important;
}

@media (max-width: 640px) {

  .category-list .category {
    min-height:
      104px;

    padding:
      25px 44px 20px 84px !important;
  }

  .category-list .category::after {
    right:
      16px !important;
  }
}

.most-pop-articles {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 56px;
}

.most-pop-articles h2 {
  margin: 0 0 18px;
  color: var(--ow-text);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: left;
}

.most-pop-articles .popArticles {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 44px !important;
  row-gap: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.most-pop-articles .popArticles li {
  position: relative !important;

  display: flex !important;
  align-items: center !important;

  min-height: 48px !important;

  margin: 0 !important;
  padding: 11px 34px 11px 0 !important;

  list-style: none !important;

  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 0 !important;

  box-shadow: none !important;
  transform: none !important;
}

.most-pop-articles .popArticles li > i,
.most-pop-articles .popArticles li > img,
.most-pop-articles .popArticles li > svg,
.most-pop-articles .popArticles li .icon,
.most-pop-articles .popArticles li [class*="icon-"],
.most-pop-articles .popArticles li [class^="icon-"] {
  display: none !important;
}

.most-pop-articles .popArticles li::before,
.most-pop-articles .popArticles li::after {
  content: none !important;
  display: none !important;
}

.most-pop-articles .popArticles a {
  position: relative !important;

  display: block !important;
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  color: var(--ow-text) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;

  text-decoration: none !important;

  transition: color .2s ease !important;
}

.most-pop-articles .popArticles a::after {
  content: "→" !important;

  position: absolute !important;
  top: 50% !important;
  right: -30px !important;

  transform: translateY(-50%) !important;

  color: color-mix(in srgb, var(--brand-primary-700) 58%, white) !important;
  font-size: 18px !important;
  line-height: 1 !important;

  transition:
    transform .2s ease,
    color .2s ease !important;
}

.most-pop-articles .popArticles li:hover {
  background: transparent !important;
  border-color: color-mix(in srgb, var(--brand-primary-700) 14%, white) !important;
  box-shadow: none !important;
  transform: none !important;
}

.most-pop-articles .popArticles li:hover a {
  color: var(--brand-primary-700) !important;
}

.most-pop-articles .popArticles li:hover a::after {
  color: var(--brand-primary-700) !important;
  transform: translate(4px, -50%) !important;
}

@media (max-width: 760px) {
  .most-pop-articles {
    width: calc(100% - 24px);
    margin-bottom: 40px;
  }

  .most-pop-articles h2 {
    font-size: 23px;
  }

  .most-pop-articles .popArticles {
    grid-template-columns: 1fr !important;
  }

  .most-pop-articles .popArticles li {
    min-height: 46px !important;
  }
}

.most-pop-articles {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 980px) {
  .most-pop-articles {
    width: min(1180px, calc(100% - 32px)) !important;
  }
}

@media (max-width: 640px) {
  .most-pop-articles {
    width: calc(100% - 24px) !important;
  }
}

.most-pop-articles {
  margin-bottom: 28px !important;
}

@media (max-width: 640px) {
  .most-pop-articles {
    margin-bottom: 24px !important;
  }
}

#docsSearch {
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--brand-primary-700) 10%, white) 0%,
      color-mix(in srgb, var(--brand-primary-700) 3%, white) 48%,
      color-mix(in srgb, var(--brand-primary-700) 8%, white) 100%
    ) !important;
}

#docsSearch::before,
#docsSearch::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 640px) {

}

.most-pop-articles h2 {
  text-align: center !important;
}

#mainNav,
header,
.navbar {
  min-height: 64px !important;
  height: 64px !important;
  background: #fff !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

#mainNav .container,
header .container,
.navbar .container {
  min-height: 64px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#mainNav .brand img,
#mainNav .navbar-brand img,
header .brand img,
header .navbar-brand img,
.navbar .brand img,
.navbar .navbar-brand img {
  display: block !important;
  width: auto !important;
  max-width: 145px !important;
  max-height: 34px !important;
  height: auto !important;
}

#mainNav .brand,
#mainNav .navbar-brand,
header .brand,
header .navbar-brand {
  display: flex !important;
  align-items: center !important;
  height: 64px !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#mainNav a,
header nav a,
.navbar a {
  font-family: Inter, Arial, sans-serif !important;
}

#docsSearch {
  margin-top: 18px !important;
}

@media (max-width: 640px) {
  #mainNav,
  header,
  .navbar,
  #mainNav .container,
  header .container,
  .navbar .container {
    min-height: 58px !important;
    height: 58px !important;
  }

  #mainNav .brand,
  #mainNav .navbar-brand,
  header .brand,
  header .navbar-brand {
    height: 58px !important;
  }

  #mainNav .brand img,
  #mainNav .navbar-brand img,
  header .brand img,
  header .navbar-brand img,
  .navbar .brand img,
  .navbar .navbar-brand img {
    max-width: 125px !important;
    max-height: 30px !important;
  }

  #docsSearch {
    margin-top: 12px !important;
  }
}

#docsSearch {
  overflow: visible !important;
  z-index: 10 !important;
}

@media (max-width: 640px) {

}

#docsSearch > h1 {
  font-size: 30px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
}

@media (max-width: 640px) {
  #docsSearch > h1 {
    font-size: 26px !important;
  }
}

#docsSearch {
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--brand-primary-700) 8%, white) 0%,
      color-mix(in srgb, var(--brand-primary-700) 2%, white) 48%,
      color-mix(in srgb, var(--brand-primary-700) 6%, white) 100%
    ) !important;
}

#fullArticle {
  background: #fff !important;

  border: 1px solid var(--ow-border) !important;
  border-radius: 20px !important;

  box-shadow: var(--ow-shadow-sm) !important;

  overflow: hidden !important;
}

#fullArticle .articleBody,
#fullArticle .article-body,
#fullArticle .content {
  border-radius: inherit !important;
}

#fullArticle .title {
  margin-top: 0 !important;

  color: var(--ow-text) !important;

  font-size: 34px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
}

#fullArticle img {
  max-width: 100% !important;
  height: auto !important;

  border-radius: 12px;
}

#fullArticle table {
  border-radius: 12px !important;
  overflow: hidden !important;
}

#fullArticle pre,
#fullArticle blockquote {
  border-radius: 12px !important;
}

#fullArticle .btn,
#fullArticle button {
  border-radius: 10px !important;
}

#fullArticle .articleFoot,
#fullArticle .article-footer {
  border-radius: 0 0 20px 20px !important;
}

@media (max-width: 640px) {
  #fullArticle {
    border-radius: 16px !important;
  }

  #fullArticle .articleFoot,
  #fullArticle .article-footer {
    border-radius: 0 0 16px 16px !important;
  }

  #fullArticle .title {
    font-size: 28px !important;
  }
}

#fullArticle {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.contentWrapper:has(#fullArticle) {
  background: #fff !important;

  border: 1px solid var(--ow-border) !important;
  border-radius: 20px !important;

  box-shadow: var(--ow-shadow-sm) !important;

  overflow: hidden !important;
}

.contentWrapper:has(#fullArticle) #fullArticle .articleBody,
.contentWrapper:has(#fullArticle) #fullArticle .article-body,
.contentWrapper:has(#fullArticle) #fullArticle .content {
  border-radius: 0 !important;
}

#fullArticle .articleFoot,
#fullArticle .article-footer {
  border-radius: 0 !important;
}

@media (max-width: 640px) {
  .contentWrapper:has(#fullArticle) {
    border-radius: 16px !important;
  }

  #fullArticle {
    border-radius: 0 !important;
  }
}

#docsSearch {
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--brand-primary-700) 12%, white) 0%,
      color-mix(in srgb, var(--brand-primary-700) 1%, white) 52%,
      color-mix(in srgb, var(--brand-primary-700) 5%, white) 100%
    ) !important;
}

.contentWrapper {
  background: #fff !important;

  border: 1px solid var(--ow-border) !important;
  border-radius: 20px !important;

  box-shadow: var(--ow-shadow-sm) !important;

  overflow: hidden !important;
}

#fullArticle {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#fullArticle .articleBody,
#fullArticle .article-body,
#fullArticle .content,
#fullArticle .articleFoot,
#fullArticle .article-footer {
  border-radius: 0 !important;
}

@media (max-width: 640px) {
  .contentWrapper {
    border-radius: 16px !important;
  }
}

#content,
#mainContent,
#main-content,
.main-content,
.mainContent {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#content::before,
#content::after,
#mainContent::before,
#mainContent::after,
#main-content::before,
#main-content::after,
.main-content::before,
.main-content::after,
.mainContent::before,
.mainContent::after {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.contentWrapper {
  position: relative !important;
  background: #fff !important;
  border: 1px solid var(--ow-border) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background-clip: padding-box !important;
}

.contentWrapper::before,
.contentWrapper::after {
  border-radius: inherit !important;
}

@media (max-width: 640px) {
  .contentWrapper {
    border-radius: 16px !important;
  }
}

.articleList li > i,
.articleList li > .icon,
.articleList li > [class^="icon-"],
.articleList li > [class*=" icon-"] {
  display: none !important;
}

.articleList li {
  position: relative !important;
  padding-left: 30px !important;
}

.articleList li::before {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  top: 50% !important;

  width: 20px !important;
  height: 20px !important;

  transform: translateY(-50%) !important;

  background-color: var(--brand-primary-700) !important;

  -webkit-mask-image:
    url("https://unpkg.com/lucide-static@0.542.0/icons/file-text.svg") !important;
  mask-image:
    url("https://unpkg.com/lucide-static@0.542.0/icons/file-text.svg") !important;

  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;

  -webkit-mask-position: center !important;
  mask-position: center !important;

  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

.articleList li a {
  color: var(--ow-text) !important;
  text-decoration: none !important;

  transition: color .18s ease !important;
}

.articleList li:hover a {
  color: var(--brand-primary-700) !important;
}

.articleList li a > i,
.articleList li a > .icon,
.articleList li a > [class^="icon-"],
.articleList li a > [class*=" icon-"] {
  display: none !important;
}

@media (max-width: 640px) {
  .articleList li {
    padding-left: 28px !important;
  }

  .articleList li::before {
    width: 18px !important;
    height: 18px !important;
  }
}

.articleList li {
  position: relative !important;
  padding-left: 0 !important;
}

.articleList li > a,
.articleList li a {
  position: relative !important;
  display: block !important;

  padding-left: 32px !important;

  color: var(--ow-text) !important;
  text-decoration: none !important;
}

.articleList li::before {
  content: none !important;
  display: none !important;
}

.articleList li > a::before,
.articleList li a::before {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  top: 0.15em !important;

  width: 20px !important;
  height: 20px !important;

  background-color: var(--brand-primary-700) !important;

  -webkit-mask-image:
    url("https://unpkg.com/lucide-static@0.542.0/icons/file-text.svg") !important;
  mask-image:
    url("https://unpkg.com/lucide-static@0.542.0/icons/file-text.svg") !important;

  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;

  -webkit-mask-position: center !important;
  mask-position: center !important;

  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

.articleList li i,
.articleList li .icon,
.articleList li [class^="icon-"],
.articleList li [class*=" icon-"] {
  display: none !important;
}

.articleList li:hover > a,
.articleList li:hover a {
  color: var(--brand-primary-700) !important;
}

@media (max-width: 640px) {
  .articleList li > a,
  .articleList li a {
    padding-left: 29px !important;
  }

  .articleList li > a::before,
  .articleList li a::before {
    width: 18px !important;
    height: 18px !important;
  }
}

.articleList li > a,
.articleList li a {
  padding-left: 27px !important;
}

.articleList li > a::before,
.articleList li a::before {
  width: 16px !important;
  height: 16px !important;

  top: 0.22em !important;

  background-color: #94a3b8 !important;
}

.articleList li > a,
.articleList li a {
  color: var(--brand-primary-700) !important;
}

.articleList li:hover > a,
.articleList li:hover a {
  color: color-mix(in srgb, var(--brand-primary-700) 82%, black) !important;
}

.articleList li:hover > a::before,
.articleList li:hover a::before {
  background-color: #64748b !important;
}

@media (max-width: 640px) {
  .articleList li > a,
  .articleList li a {
    padding-left: 25px !important;
  }

  .articleList li > a::before,
  .articleList li a::before {
    width: 15px !important;
    height: 15px !important;
  }
}

#docsSearch:not(:has(> h1)) {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;

  min-height: 0 !important;
  height: auto !important;

  margin: 24px auto 34px !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  overflow: visible !important;
}

@media (max-width: 640px) {
  #docsSearch:not(:has(> h1)) {
    width: calc(100% - 24px) !important;
    margin: 18px auto 26px !important;
  }

}

:root {
  --ow-page: #F9FAFB !important;
}

html,
body {
  background: var(--ow-page) !important;
}

#sidebar #docsSearch {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: auto !important;

  margin: 0 0 28px !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

@media (max-width: 640px) {
  #sidebar #docsSearch {
    margin-bottom: 22px !important;
  }
}

.category-list,
.category-list::before,
.category-list::after {
  border-top: 0 !important;
}

.category-list {
  position: relative !important;
  padding-top: 54px !important;
}

.category-list::before {
  content: "Toutes les catégories" !important;

  display: block !important;
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  height: auto !important;

  background: transparent !important;

  color: var(--ow-text) !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;

  text-align: center !important;

  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

@media (max-width: 640px) {
  .category-list {
    padding-top: 48px !important;
  }

  .category-list::before {
    font-size: 23px !important;
  }
}

.category-list,
.category-list *,
#categories,
#categories::before,
#categories::after,
.category-list + hr,
.most-pop-articles + hr,
hr {
  border-top-style: none !important;
}

.most-pop-articles ~ hr,
#content hr,
.contentWrapper hr {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.category-list::after,
#categories::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: transparent !important;
}

.most-pop-articles {
  margin-bottom: 44px !important;
}

.category-list {
  padding-top: 54px !important;
}

@media (max-width: 640px) {
  .most-pop-articles {
    margin-bottom: 34px !important;
  }

  .category-list {
    padding-top: 48px !important;
  }
}

#docsSearch {
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--brand-primary-700) 22%, white) 0%,
      color-mix(in srgb, var(--brand-primary-700) 8%, white) 52%,
      color-mix(in srgb, var(--brand-primary-700) 14%, white) 100%
    ) !important;
}

#docsSearch {
  background:
    linear-gradient(
      115deg,
      color-mix(in srgb, var(--brand-primary-700) 30%, white) 0%,
      color-mix(in srgb, var(--brand-primary-700) 13%, white) 52%,
      color-mix(in srgb, var(--brand-primary-700) 21%, white) 100%
    ) !important;
}

#fullArticle .title,
#fullArticle h1 {
  font-size: 28px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

#fullArticle h2 {
  font-size: 22px !important;
  line-height: 1.3 !important;
}

#fullArticle h3 {
  font-size: 18px !important;
  line-height: 1.35 !important;
}

@media (max-width: 640px) {
  #fullArticle .title,
  #fullArticle h1 {
    font-size: 25px !important;
  }

  #fullArticle h2 {
    font-size: 20px !important;
  }

  #fullArticle h3 {
    font-size: 17px !important;
  }
}

#docsSearch {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0.05) 24%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      115deg,
      var(--brand-primary-700) 0%,
      var(--brand-primary-700) 62%,
      color-mix(in srgb, var(--brand-primary-700) 92%, white) 100%
    ) !important;
}

#docsSearch > h1 {
  color: #fff !important;
}

#docsSearch {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.07) 24%,
      rgba(255, 255, 255, 0) 50%
    ),
    linear-gradient(
      115deg,
      var(--brand-primary-700) 0%,
      color-mix(in srgb, var(--brand-primary-700) 96%, white) 58%,
      color-mix(in srgb, var(--brand-primary-700) 90%, white) 100%
    ) !important;

  box-shadow:
    0 18px 40px rgba(0, 78, 235, 0.14),
    0 6px 18px rgba(15, 23, 42, 0.08) !important;

  border: 1px solid rgba(255, 255, 255, 0.18) !important;

  transform: translateY(-2px) !important;
}

#docsSearch {
  box-shadow:
    0 26px 60px rgba(0, 78, 235, 0.22),
    0 10px 26px rgba(15, 23, 42, 0.13) !important;

  border: 1px solid rgba(255, 255, 255, 0.26) !important;

  transform: translateY(-4px) !important;
}

#docsSearch {
  margin-bottom: 34px !important;
}

#searchBar {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

#searchBar .search-query,
#searchBar input[type="search"],
#searchBar input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  padding: 0 58px 0 20px;

  background: #fff;
  border: 0;
  border-radius: 14px;

  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);

  color: var(--ow-text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 52px;

  outline: none;
}

#searchBar .search-query:focus,
#searchBar input[type="search"]:focus,
#searchBar input[type="text"]:focus {
  border-radius: 14px;
  outline: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

#searchBar button {
  position: absolute;
  top: 50%;
  right: 8px;

  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;

  transform: translateY(-50%);

  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: none;

  color: transparent;
  font-size: 0;
  text-shadow: none;
}

#searchBar button i,
#searchBar button svg,
#searchBar button [class*="icon-"] {
  display: none;
}

#searchBar button::after {
  content: "";
  display: block;

  width: 18px;
  height: 18px;
  margin: auto;

  background-color: var(--brand-primary-700);

  -webkit-mask: url("https://unpkg.com/lucide-static@0.542.0/icons/search.svg") center / contain no-repeat;
  mask: url("https://unpkg.com/lucide-static@0.542.0/icons/search.svg") center / contain no-repeat;
}

#serp-dd {
  position: absolute;
  z-index: 20;

  left: 0;
  right: 0;

  width: 100%;
  margin: 0;
  padding: 0;

  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

#serp-dd .result,
#serp-dd ul,
#serp-dd ol {
  margin: 0;
  padding: 0;
}

#serp-dd li {
  margin: 0;
  list-style: none;
}

#serp-dd li a {
  display: block;
  padding: 12px 16px;
  border-radius: 0;
}

#serp-dd li:hover,
#serp-dd li.active {
  background: #f8fafc;
}

#sidebar #searchBar {
  max-width: none;
}

#sidebar #searchBar .search-query,
#sidebar #searchBar input[type="search"],
#sidebar #searchBar input[type="text"] {
  height: 42px;
  padding-left: 14px;
  padding-right: 48px;
  border: 1px solid var(--ow-border);
  border-radius: 10px;
  box-shadow: none;
  line-height: 42px;
}

#sidebar #searchBar button {
  right: 4px;
  width: 36px;
  min-width: 36px;
  height: 36px;
}

@media (max-width: 640px) {
  #searchBar .search-query,
  #searchBar input[type="search"],
  #searchBar input[type="text"] {
    height: 48px;
    line-height: 48px;
    border-radius: 12px;
  }

  #serp-dd {
    border-radius: 12px;
  }
}

#serp-dd a,
#serp-dd li a,
#serp-dd .result a,
#serp-dd a:hover,
#serp-dd li:hover a,
#serp-dd li.active a,
#serp-dd a:focus {
  color: #004EEB !important;
}

#serp-dd li:hover,
#serp-dd li.active,
#serp-dd li:focus-within {
  background: #f1f3f5 !important;
}

#sidebar #searchBar::before,
#sidebar #searchBar::after,
#sidebar #searchBar form::before,
#sidebar #searchBar form::after,
#sidebar #searchBar button::before {
  content: none !important;
  display: none !important;
}

#sidebar #searchBar button > * {
  display: none !important;
}

#sidebar #searchBar button {
  position: absolute !important;
  top: 50% !important;
  right: 4px !important;

  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: translateY(-50%) !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}

#sidebar #searchBar button::after {
  content: "" !important;
  display: block !important;

  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  width: 18px !important;
  height: 18px !important;

  transform: translate(-50%, -50%) !important;

  background-color: var(--brand-primary-700) !important;

  -webkit-mask: url("https://unpkg.com/lucide-static@0.542.0/icons/search.svg") center / contain no-repeat !important;
  mask: url("https://unpkg.com/lucide-static@0.542.0/icons/search.svg") center / contain no-repeat !important;

  pointer-events: none !important;
}

#docsSearch #searchBar button {
  top: 50% !important;
  right: 10px !important;

  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;

  padding: 0 !important;
  margin: 0 !important;

  transform: translateY(-50%) !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

#docsSearch #searchBar button::after {
  width: 18px !important;
  height: 18px !important;

  margin: 0 !important;

  position: absolute !important;
  top: 50% !important;
  left: 50% !important;

  transform: translate(-50%, -50%) !important;

  background-color: var(--brand-primary-700) !important;
}

#docsSearch #searchBar button:hover,
#docsSearch #searchBar button:focus,
#docsSearch #searchBar button:active {
  background: rgba(0, 78, 235, 0.06) !important;
  border: 0 !important;
  box-shadow: none !important;
}

#docsSearch #searchBar button:hover::after,
#docsSearch #searchBar button:focus::after,
#docsSearch #searchBar button:active::after {
  background-color: var(--brand-primary-700) !important;
}

#docsSearch {
  height: auto !important;
  min-height: 0 !important;

  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

#docsSearch > h1 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

@media (max-width: 640px) {
  #docsSearch {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  #docsSearch > h1 {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 640px) {
  .contentWrapper {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 640px) {
  .articleList li > a::before,
  .articleList li a::before {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (max-width: 640px) {
  #docsSearch > h1 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 640px) {
  #docsSearch > h1 {
    font-size: 20px !important;
  }
}

.category-list .category::after {
  color: var(--brand-primary-700) !important;
}

.category-list .category:hover::after {
  color: var(--partner-primary-hover) !important;
}

.most-pop-articles .popArticles a::after {
  color: var(--brand-primary-700) !important;
}

.most-pop-articles .popArticles li:hover a::after {
  color: var(--partner-primary-hover) !important;
}

#docsSearch {
  margin-top: 20px !important;
}

@media (max-width: 640px) {
  #docsSearch {
    margin-top: 14px !important;
  }
}

#docsSearch {
  margin-top: 30px !important;
}

@media (max-width: 640px) {
  #docsSearch {
    margin-top: 20px !important;
  }
}

#docsSearch {
  margin-top: 50px !important;
}

@media (max-width: 640px) {
  #docsSearch {
    margin-top: 14px !important;
  }
}

.category-list .category:nth-child(1) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/plane-takeoff.svg") !important; }
.category-list .category:nth-child(2) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/ticket.svg") !important; }
.category-list .category:nth-child(3) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/tickets-plane.svg") !important; }
.category-list .category:nth-child(4) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/luggage.svg") !important; }
.category-list .category:nth-child(5) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/credit-card.svg") !important; }
.category-list .category:nth-child(6) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/circle-help.svg") !important; }
.category-list .category:nth-child(7) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/plane.svg") !important; }
.category-list .category:nth-child(8) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/leaf.svg") !important; }
.category-list .category:nth-child(9) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/circle-user-round.svg") !important; }
.category-list .category:nth-child(10) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/calendar-check.svg") !important; }
.category-list .category:nth-child(11) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/building-2.svg") !important; }
.category-list .category:nth-child(12) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/circle-plus.svg") !important; }
.category-list .category:nth-child(13) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/message-circle-warning.svg") !important; }
.category-list .category:nth-child(14) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/shield-check.svg") !important; }
.category-list .category:nth-child(15) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/headset.svg") !important; }
.category-list .category:nth-child(16) { --icon: url("https://unpkg.com/lucide-static@0.542.0/icons/id-card.svg") !important; }
