/* ===== BASE ====== */
/* CONTAINER'S MAX WIDTH */
/* FONTS */
/* FONT-SIZE */
:root {
  --fontSize-regular: 1.125rem;
  --fontSize-xxlarge: 4.875rem;
  --fontSize-xxlarge-02: 4.25rem;
  --fontSize-xlarge: 3.625rem;
  --fontSize-xlarge-02: 2.375rem;
  --fontSize-large: 1.75rem;
  --fontSize-medium: 1.375rem;
  --fontSize-small: 0.875rem;
  --fontSize-xsmall: 0.5rem;
}
@media (max-width: 640px) {
  :root {
    --fontSize-regular: 0.875rem;
    --fontSize-xlarge: 2.375rem;
    --fontSize-large: 2rem;
    --fontSize-medium: 1.125rem;
    --fontSize-small: 0.875rem;
    --fontSize-xsmall: 0.5rem;
  }
}

/* LINE HEIGHT */
/* COLORS */
/* BRANDS COLOR */
/* STATUS COLOR */
/* FOR SPACING (MARGIN AND PADDING) */
/* IMAGE SPRITE */
/* ICONS */
body {
  background-color: #f9f9f9;
}

/* ===== GUIDES ARTICLE PAGE (gap) ===== */
/* SEARCH */
.gap-search {
  padding: 30px 0;
  border-bottom: 1px solid #e0e0eb;
}
.gap-search .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 640px) {
  .gap-search .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.gap-search .input-wrap {
  margin-right: 15px;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 640px) {
  .gap-search .input-wrap {
    margin: 0 0 15px 0;
  }
}
.gap-search .button--primary {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (max-width: 640px) {
  .gap-search .button--primary {
    width: 100%;
  }
}

/* CONTENT */
.gap-content .disclaimer {
  padding: 20px;
  border: 1px solid #e0e0eb;
  font-style: italic;
  border-radius: 6px;
  color: #737d93;
}
.gap-content .disclaimer a {
  color: #53a700;
  font-weight: 600;
}
.gap-content .sticky-wrapper-article {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .gap-content {
    z-index: 100;
  }
}

/* CONTENT - STICKY MAIN */
.gap-content .sticky-content__main-wrapper h1 {
  margin-bottom: 30px;
}
.gap-content .sticky-content__main-wrapper .content--header h2 {
  font-weight: 400;
  font-size: var(--fontSize-xlarge-02);
}

.gap-content .sticky-content__main-wrapper .content--body {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
}
.gap-content .sticky-content__main-wrapper .content--body:not(:last-of-type) {
  margin-bottom: 20px;
}
.gap-content .sticky-content__main-wrapper .content--body p.h2-text,
.gap-content .sticky-content__main-wrapper .content--body p.h3-text {
  margin-bottom: 10px;
}
.gap-content .sticky-content__main-wrapper .content--body > h3:first-child {
  margin-top: 0;
  font-size: var(--fontSize-medium);
}
.gap-content .sticky-content__main-wrapper .content--body .highlight-green {
  font-size: var(--fontSize-regular);
  font-weight: 600;
  color: #4a9e86;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .gap-content .sticky-sidebar__content {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 991px) {
  .gap-content .sticky-sidebar__content .toc-mob-menu {
    max-height: 300px;
    overflow: auto;
  }
}