/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */
/* stylelint-disable no-descending-specificity */

@import 'style-vars.css';
@import 'backgrounds.css';
@import 'themes/base.css';

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

header {
  height: 70px;
}

header.header-meganav {
  height: 109px;
}

img {
  height: auto;
  width: auto;
}

body {
  background-color: var(--body-background-color);
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 27px;
  color: var(--color-gray-9);
  margin: 0;
  padding: 0;
  display: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.appear {
  display: unset;
}

main {
  overflow: hidden;
  margin: 0;
  color: var(--color-gray-9);
}

/* buttons */
a.button:any-link {
  text-decoration: none;
  border-radius: 100px;
  border: none;
  padding: 18px 40px;

  /* outline: none; (keep outline for a11n) */
  text-align: center;
  font-size: 18px;
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: var(--heading-font-weight);
  cursor: pointer;
  color: var(--color-white);
  background-color: var(--theme-base);
  margin: 16px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  transition: background-color 0.1s;
}

a.button:hover,
a.button:focus {
  background-color: var(--theme-shade5);
}

.button-theme-shade-5 a.button:not(.link):any-link {
  color: var(--color-white);
  background-color: var(--theme-shade5);
  border: solid 2px transparent;
  transition: background-color .25s ease-in-out;
}

.button-theme-shade-5 a.button.light:not(.link):any-link {
  color: var(--theme-shade5);
  background-color: var(--color-white);
  border: solid 2px var(--theme-shade5);
}

.button-theme-shade-5 a.button:not(.link):any-link:hover {
  background-color: var(--theme-shade10);
}

.button-theme-shade-5 a.button.light:not(.link):any-link:hover {
  color: var(--theme-shade5);
  background-color: var(--theme-tint10);
}

/* button link */
a.button.link:any-link {
  background-color: transparent !important;
  border-radius: revert;
  color: var(--theme-shade10);
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-style: var(--heading-font-weight);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-align: left;
  white-space: revert;
}

/* button link caret */
a.button.link:any-link::after {
  background-color: currentcolor;
  content: '';
  display: inline-block;
  height: 0.8125rem;
  margin-left: 0.5rem;
  mask-image: url('caret-right.svg');
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-mask-image: url('caret-right.svg');
  vertical-align: middle; /* TODO: replace with flex on button? */
  width: 0.5rem;
}

/* small button style */
a.button.small:any-link,
main .callout a.button,
.small-button a.button {
  font-size: 15px;
  line-height: 22px;
  padding: 10px 30px;
}

a.button.large:any-link {
  padding: 8px 1.2rem;
  font-size: 17px;
}

a.button.xlarge:any-link {
  padding: 10px 1.4rem;
  font-size: 20px;
}

a.button.primary:any-link {
  background-color: var(--color-gray-11);
}

a.button.primary:hover,
a.button.primary:focus {
  background-color: var(--color-gray-13);
}

a.button.secondary:any-link {
  border-radius: 5px;
}

a.button.light:any-link,
a.button.stroke:any-link {
  background-color: transparent;
  color: var(--color-1);
  border: solid 2px var(--color-1);
}

a.button.light:hover,
a.button.light:focus {
  background-color: var(--color-1);
  color: var(--color-white);
}

a.button.primary.light:any-link {
  color: var(--color-gray-11);
  border-color: var(--color-gray-11);
}

a.button.primary.light:hover,
a.button.primary.light:focus {
  background-color: var(--color-gray-13);
  border-color: var(--color-gray-13);
  color: var(--color-white);
}

a.button.secondary.light:any-link {
  color: var(--color-gray-10);
  border-color: var(--color-white);
  background-color: var(--color-white);
}

a.button.secondary.light:hover,
a.button.secondary.light:focus {
  background-color: var(--color-gray-11);
  border-color: var(--color-gray-11);
  color: var(--color-white);
}

a.button.form:any-link {
  padding: 17px 25px;
  width: 100%;
  display: block;
  font-size: 18px;
  line-height: 26px;
}

a.button > svg {
  float: left;
  display: inline;
  width: 20px;
  height: 20px;
  margin: 8px 8px 8px 0;
  fill: currentcolor;
  color: currentcolor;
}

a.button > svg > use {
  fill: currentcolor;
  color: currentcolor;
}

/* headings and body */

main,
main ul li,
main ol li {
  font-size: 18px;
  line-height: 27px;
  font-weight: var(--body-font-weight);
}

p,
dl,
ol,
ul,
pre,
blockquote {
  margin-top: 1em;
  margin-bottom: 1em;
}

main .default-content-wrapper ol {
  padding-inline-start: 20px;
}

main .default-content-wrapper ul li,
main .default-content-wrapper ol li {
  margin-bottom: 16px;
  color: var(--color-gray-9);
}

main .default-content-wrapper ol li {
  margin-left: 30px;
}

main .default-content-wrapper ul,
main .tabs ul,
main .columns ul {
  padding-inline-start: 40px;
  list-style-type: none;
}

main .default-content-wrapper ul li,
main .tabs ul li,
main .columns ul li,
main .form ul li {
  position: relative;
  margin-bottom: 16px;
  list-style-image: var(--theme-bullet-level1);
  padding-inline-start: 10px;
}

main .default-content-wrapper ul li ul li,
main .tabs ul li ul li,
main .columns ul li ul li,
main .form ul li ul li {
  list-style-image: var(--theme-bullet-level2);
}

main .default-content-wrapper ul li ul li ul li,
main .tabs ul li ul li ul li,
main .columns ul li ul li ul li {
  list-style-image: var(--theme-bullet-level3);
}

main p:not(:last-of-type) {
  margin-bottom: 32px;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  color: var(--heading-color);
  font-weight: var(--heading-font-weight);
  font-family: var(--heading-font-family);
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin: 80px;
}

.blog-post main h1,
.blog-post main h2,
.blog-post main h3,
.blog-post main h4,
.blog-post main h5,
.blog-post main h6 {
  font-style: italic;
}

main h1 {
  font-family: var(--heading-font-family);
  font-size: 36px;
  line-height: 44px;
  font-style: italic;
}

main h2 {
  font-size: 30px;
  line-height: 36px;
}

main h3 {
  font-size: 24px;
  line-height: 36px;
}

main h4 {
  font-size: 20px;
  line-height: 28px;
}

main h5,
main h6 {
  font-size: 18px;
  line-height: 26px;
}

main h1.hidden {
  display: none;
}

main .font-style-normal h1 {
  font-style: normal;
}

.comparison-matrix main h1 {
  margin: 0;
}

.typ-section-header,
.integrations main h1,
.resources-guides main h2,
main .article-header h1,
.call-to-action-modal main h3,
.hr-unplugged .section-1.success h2,
main .title.section-header :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.typ-hero-header,
.typ-display1,
.resources-guides main h1,
main .page-header .page-header-title,
main .page-header .page-header-title h1,
.hr-unplugged main h1,
main .title.hero-header :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
}

.typ-hero-subhead,
.typ-subhead1,
.hr-unplugged .section-1 h5,
main .title.hero-subhead :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--body-font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin: 20px 0 0;
}

.typ-subhead1 :is(h1, h2, h3, h4, h5, h6, div) {
  font-weight: 500;
}

.typ-section-subhead,
main .title.section-subhead :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--body-font-family);
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  margin: 20px 0 0;
}

.typ-small-header,
.integrations-home main .home-featured-cat .default-content-wrapper h2,
main .title.small-header :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}

.typ-small-header2,
main .title.small-header2 :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-weight: 900;
  font-size: 26px;
  line-height: 32px;
}

.typ-title1,
.resources-guides main h3,
.hr-glossary #you-might-also-like,
main .title.title1 :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  margin: 0 0 30px;
}

.typ-title2,
.home-more .columns p strong,
.hr-glossary main h4,
main .title.title2 :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.typ-stats,
main .title.stats :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--heading-font-family);
  font-size: 36px;
  font-weight: 800;
  line-height: 44px;
}

.typ-stats-subhead,
main .title.stats-subhead :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--body-font-family);
  font-size: 19px;
  line-height: 28px;
  margin: 10px 0 0;
}

.typ-quote,
main .title.typ-quote :is(h1, h2, h3, h4, h5, h6, div),
.resources-guides main h5 {
  font-family: var(--body-font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.typ-quote-reference,
main .title.quote-reference :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--body-font-family);
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  margin: 30px 0 0;
}

.typ-medium-info,
main .title.medium-info :is(h1, h2, h3, h4, h5, h6, div),
.resources-guides main h4 {
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.typ-small-info,
main .title.small-info :is(h1, h2, h3, h4, h5, h6, div) {
  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.typ-table-body,
table th,
table td {
  font-family: var(--body-font-family);
  font-size: 15px;
  line-height: 22px;
}

@media (min-width: 600px) {
  .typ-hero-subhead,
  .typ-subhead1,
  main .title.hero-subhead :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 21px;
    line-height: 28px;
    margin: 30px 0 0;
  }

  .typ-quote,
  main .title.quote :is(h1, h2, h3, h4, h5, h6, div),
  .resources-guides main h5 {
    font-size: 26px;
    line-height: 38px;
  }

  .hr-unplugged main h1 :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 54px;
    line-height: 60px;
  }
}

@media (min-width: 900px) {
  .typ-hero-header,
  .typ-display1,
  .resources-guides main h1,
  main .page-header .page-header-title,
  main .page-header .page-header-title h1,
  main .title.hero-header :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 54px;
    line-height: 60px;
  }
}

@media (min-width: 1200px) {
  .typ-section-header,
  .integrations main h1,
  .resources-guides main h2,
  main .article-header h1,
  .call-to-action-modal main h3,
  .hr-unplugged .section-1.success h2,
  .hr-glossary h1,
  main .title.section-header :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 48px;
    line-height: 60px;
  }

  .typ-hero-header,
  .typ-display1,
  .resources-guides main h1,
  .hr-unplugged main h1,
  main .page-header .page-header-title,
  main .page-header .page-header-title h1,
  main .title.hero-header :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 70px;
    line-height: 80px;
  }

  .typ-small-header,
  .integrations-home main .home-featured-cat .default-content-wrapper h2,
  main .title.small-header :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 36px;
    line-height: 44px;
  }

  .typ-small-header2,
  main .title.small-header2 :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 30px;
    line-height: 38px;
  }

  .typ-stats-subhead,
  main .title.stats-subhead :is(h1, h2, h3, h4, h5, h6, div) {
    font-size: 14px;
    line-height: 24px;
  }
}

.resources-guides main h1,
.resources-guides main h2,
.resources-guides main h4 {
  color: var(--theme-shade5);
}

.resources-guides main h1,
.resources-guides main h2,
.resources-guides main h5 {
  text-align: center;
}

.resources-guides main h3 {
  color: var(--color-gray-9);
  margin-top: 100px;
  font-style: normal;
}

.resources-guides main .columns h3 {
  color: var(--theme-shade5);
  font-style: italic;
}

.resources-guides main h4 {
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
}

.resources-guides main .extra-content h4 {
  margin-top: 80px;
}

.resources-guides main .columns.small-icons h4 {
  color: var(--secondary-theme-shade5);
}

.resources-guides main p {
  margin-top: 10px;
}

.resources-guides main .extra-content p {
  font-style: italic;
  margin-bottom: 80px;
}

.resources-guides main .columns.numbered-text p {
  margin-top: 0;
  margin-bottom: 0;
}

.resources-guides main .columns.numbered-text p:nth-child(even) {
  margin-bottom: 20px;
}

.resources-guides main h5 {
  font-style: normal;
  color: var(--secondary-theme-shade5);
}

.resources-guides main .page-header h5 {
  color: var(--heading-color);
}

.resources-guides main .default-content-wrapper a:any-link,
.resources-guides .columns-wrapper a:any-link:not(.button) {
  font-weight: 700;
  color: var(--secondary-theme-shade5);
  background-image: linear-gradient(rgb(0 0 0 / 0%) 50%, var(--secondary-theme-tint10) 0);
}

.resources-guides main .columns:not(.cards) a.button:any-link {
  background-color: var(--secondary-theme-shade5);
}

.resources-guides .image.center,
.resources-guides .center-h3 .default-content-wrapper h3 {
  text-align: center;
}

.resources-guides .left-h5 h5 {
  text-align: left;
}

.resources-guides .image-wrapper .image {
  margin-top: 60px;
}

.resources-guides .image-wrapper .image.center {
  margin-top: 100px;
}

/* links */

main a:any-link {
  color: var(--color-gray-9);
  line-height: 1.5;
  text-decoration: none;
}

main a.cta-link {
  color: var(--color-1);
  font-weight: 700;
  text-decoration: none;
}

main a.cta-link::after {
  content: ' >';
}

main a.cta-link:hover {
  color: var(--color-1);
}

main a.cta-link:active,
main a.cta-link:focus {
  color: var(--color-1);
}

main a > picture {
  display: flex;
}

main img,
main video {
  max-width: 100%;
}

/* section wrapper */

main .section {
  margin-top: 64px;
  padding: 0 30px;
}

@media (min-width: 600px) {
  main .section {
    margin-top: 80px;
  }
}

@media (min-width: 1025px) {
  main .section {
    margin-top: 96px;
  }
}

main .section:first-of-type {
  padding-top: 0;
  margin-top: 0;
}

main .section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

main .section > div {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

main .section > div:empty {
  padding: 0;
}

@media (min-width: 600px) {
  main .section {
    padding: 0 54px;
  }
}

@media (min-width: 700px) {
  .blog-post main .section > div.toc-wrapper,
  .blog-post main .section > div.default-content-wrapper,
  .blog-post main .section > div.author-wrapper,
  .blog-post main .section > div.quote-wrapper,
  .blog-post main .section > div.table-wrapper,
  .pricing-quote main .section > div.table-wrapper,
  .integrations-home main .section > div.default-content-wrapper {
    max-width: 800px;
  }

  .integrations main .section > div {
    max-width: 1200px;
  }

  .resources-guides main .section > div {
    max-width: 760px;
  }

  main .section > div.title-wrapper.extra-small-width {
    max-width: 450px;
  }

  main .section > div.columns-wrapper.small-width,
  main .section > div.title-wrapper.small-width {
    max-width: 640px;
  }

  .resources-guides main .section > div.quote-wrapper.normal-width,
  main .section > div.columns-wrapper.normal-width,
  main .section > div.image-wrapper.normal-width,
  main .section > div.title-wrapper.normal-width,
  main .section > div.wistia-wrapper.normal-width {
    max-width: 760px;
  }

  main .section > div.cards-wrapper.med-width,
  main .section > div.columns-wrapper.med-width,
  .resources-guides main .section > div.toc-wrapper,
  .resources-guides main .section > div.quote-wrapper,
  .resources-guides main .section.negative-margin-section.med-width > div.default-content-wrapper,
  main .section > div.image-wrapper.med-width,
  .resources-guides main .section > div.source-wrapper,
  main .section > div.title-wrapper.med-width {
    max-width: 960px;
  }

  .resources-guides main .section > div.cards-wrapper.full-width,
  main .section > div.columns-wrapper.full-width,
  main .section > div.image-wrapper.full-width,
  .resources-guides main .section > div.quote-wrapper.full-width,
  .resources-guides main .section > div.source-wrapper.full-width {
    max-width: 1160px;
  }

  .resources-guides main .section > div.image-wrapper.extra-wide,
  main .section > div.multi-cta-cards-wrapper.extra-wide {
    max-width: 1200px;
  }

  .bhr-home main .section > div.quote-wrapper.extra-wide,
  main .section > div.columns-wrapper.extra-wide {
    max-width: 1280px;
  }

  main .section > div > :not(div) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1024px) {
  main .section > div.title-wrapper.laptop-small-width {
    max-width: 640px;
  }
}

@media (min-width: 1440px) {
  main .section {
    padding: 0;
  }
}

main .section.max-width-small > div {
  max-width: 760px;
}

@media (min-width: 1800px) {
  main .section > div {
    max-width: 1520px;
  }

  main .section.max-width-medium > div {
    max-width: 1300px;
  }

  main .section.max-width-small > div {
    max-width: 1000px;
  }
}

main .section p.button-container {
  margin-top: 16px;
  margin-bottom: 0;
}

main .section .default-content-wrapper .button-container {
  text-align: center;
}

.integrations .home-featured-cat p.button-container {
  margin-top: 40px;
}

main .section.home-more {
  margin-bottom: 60px;
}

main .section.app-cards-container {
  margin-bottom: 120px;
}

main .default-content-wrapper a:any-link {
  color: var(--category-color);
  background: linear-gradient(#f000 50%, var(--category-bg-color) 50.1%);
  text-decoration: none;
}

main .default-content-wrapper p a.button:any-link {
  color: var(--color-white);
  background: unset;
  background-color: var(--theme-shade5);
}

.blog-post main .default-content-wrapper p a.button:any-link {
  background-color: var(--category-color);
}

/* listing template styles */
.resources-guides main .toc-wrapper,
.resources-guides main .default-content-wrapper,
.resources-guides main .quote-wrapper,
.resources-guides main .cards-wrapper,
.resources-guides main .columns-wrapper,
main .center-page-cta-wrapper,
.resources-guides main .image-wrapper:not(.background-image) {
  position: relative;
  z-index: 1;
}

.back-to-top-wrapper,
.resources-guides main .page-header-wrapper {
  position: relative;
  z-index: 10;
}

.resources-guides .header-wrapper {
  position: relative;
  z-index: 100;
}

.app-list main .default-content-wrapper {
  padding: 64px;
  text-align: center;
}

.integrations-listing .details-container {
  margin-top: 30px;
}

.integrations-listing .details-container .details-logo {
  margin-bottom: 55px;
}

.integrations-listing .details-container .button-container {
  margin: 1em 0 -2px;
}

.integrations-listing .details-container ul li a {
  font-family: var(--heading-font-family);
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--heading-font-weight);
  position: relative;
  display: inline-block;
  padding-right: 15px;
  color: var(--color-1-shade-5);
  background: none;
}

.integrations-listing .details-container .button-container a.button {
  background: transparent;
  color: var(--color-1-shade-5);
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 24px;
  font-weight: var(--body-font-weight);
  font-style: normal;
  font-family: var(--body-font-family);
}

.integrations-listing .details-container ul li a::after {
  content: '';
  border: solid var(--color-1-shade-5);
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
  right: 0;
}

.integrations-listing .links-container {
  margin-top: 55px;
}

.integrations-listing .links-container .default-content-wrapper {
  max-width: 250px;
  margin-left: 0;
}

#integrations-request-info {
  background-color: var(--color-5);
  white-space: normal;
}

.integrations-listing .links-container .button-container .button {
  background-color: var(--color-1-shade-5);
}

.integrations-listing .details-container .default-content-wrapper h4 {
  font-style: normal;
}

.integrations-listing .tabs-content > p:not(:last-of-type) {
  margin-bottom: 30px;
}

.integrations-home main {
  background-image: url('integrations-home-hex-mobile.svg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (min-width: 600px) {
  .integrations-home main {
    background-image: url('integrations-home-hex-tablet.svg');
  }
}

@media (min-width: 1025px) {
  .integrations-home main {
    background-image: url('integrations-home-hex.svg');
  }
}

.integrations-home .search-container {
  min-height: 565px;
}

@media (min-width: 1025px) {
  .integrations-home .search-container {
    min-height: 37vw;
  }
}

.integrations-home .search-container,
.integrations-home main h1 {
  color: var(--color-white);
}

.integrations-home main h1 {
  margin-top: 0;
}

.integrations.integrations-home main .image-wrapper,
.integrations-home main .image-wrapper .image {
  margin-top: 0;
  margin-bottom: 0;
}

.integrations-listing,
.app-list {
  background-image: url('header-leaf.svg'),
    linear-gradient(
      var(--color-gray-1),
      var(--color-gray-1) calc(400px + (100vw * 0.2)),
      var(--color-white) calc(100vw * 0.2)
    );
  background-position: 0 400px, top;
  background-repeat: no-repeat;
  background-size: contain;
}

.comparison-matrix main .section {
  margin-top: 0;
  margin-bottom: 0;
}

.comparison-matrix main .section .default-content-wrapper {
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}

.integrations-home main .home-featured-cat .default-content-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-matrix main .section:first-of-type .default-content-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.integrations-home main .home-featured-cat .default-content-wrapper h2 {
  font-style: italic;
  margin: 0;
}

.comparison-matrix main .section .default-content-wrapper h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-style: normal;
}

.integrations-form {
  background-image: url('leaf-top-3.svg'),
    linear-gradient(
      var(--color-white),
      var(--color-white) calc(250px + (100vw * 0.2)),
      var(--color-white) calc(100vw * 0.2)
    );
  background-position: 0 250px, top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 1000px) {
  .integrations-listing main {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 368px calc(100% - 368px);
    grid-template-rows: repeat(3, auto) 1fr;
    /* stylelint-disable-next-line */
    grid-template-areas:
      'header header'
      'carousel carousel'
      'links tabs'
      'details tabs';
  }

  .integrations-listing .listing-header-container {
    grid-area: header;
  }

  .integrations-listing .carousel-container {
    grid-area: carousel;
  }

  .integrations-listing .links-container {
    grid-area: links;
  }

  .integrations-listing .tabs-container {
    grid-area: tabs;
  }

  .integrations-listing .details-container {
    grid-area: details;
  }
}

/* category colors */

/* stylelint-disable-next-line no-duplicate-selectors */
main,
.category-hr-insights main,
.category-color-hr-insights {
  --category-color: var(--color-8-shade-10);
  --category-darker-color: var(--color-8-shade-15);
  --category-darker-bg-color: var(--color-8-tint-10);
  --category-bg-color: var(--color-5-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/teal-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-8-shade-10) 0%,
    var(--color-5-shade-5) 100%
  );
  --category-box-shadow-color: rgba(52 185 172 / 50%);
}

.category-voices-in-leadership main,
.category-color-voices-in-leadership {
  --category-color: var(--color-2-shade-5);
  --category-darker-color: var(--color-2-shade-10);
  --category-darker-bg-color: var(--color-2-tint-10);
  --category-bg-color: var(--color-2-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/red-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-2-shade-5) 0%,
    var(--color-7-shade-5) 100%
  );
  --category-box-shadow-color: rgba(206 69 55 / 50%);
}

.category-product-announcements main,
div.category-color-product-announcements {
  --category-color: var(--color-1-shade-5);
  --category-darker-color: var(--color-1-shade-10);
  --category-darker-bg-color: var(--color-1-tint-10);
  --category-bg-color: var(--color-1-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/green-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-1-shade-5) 0%,
    var(--color-8-shade-10) 100%
  );
  --category-box-shadow-color: rgba(29 147 54 / 50%);
}

.category-hiring main,
div.category-color-hiring {
  --category-color: var(--color-4-shade-10);
  --category-darker-color: var(--color-4-shade-15);
  --category-darker-bg-color: var(--color-4-tint-10);
  --category-bg-color: var(--color-4-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/yellow-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-3-shade-10) 0%,
    var(--color-4-shade-10) 100%
  );
  --category-box-shadow-color: rgba(219 180 18 / 50%);
}

.category-performance-culture main,
div.category-color-performance-culture {
  --category-color: var(--color-5-shade-5);
  --category-darker-color: var(--color-5-shade-10);
  --category-darker-bg-color: var(--color-5-tint-10);
  --category-bg-color: var(--color-5-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/blue-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 100%,
    var(--color-6-shade-5) 0%,
    var(--color-5-shade-5) 100%
  );
  --category-box-shadow-color: rgba(16 135 204 / 50%);
}

.category-benefits-comp main,
div.category-color-benefits-comp {
  --category-color: var(--color-7-shade-5);
  --category-darker-color: var(--color-7-shade-10);
  --category-darker-bg-color: var(--color-7-tint-10);
  --category-bg-color: var(--color-7-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/red-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 100%,
    var(--color-6-shade-5) 0%,
    var(--color-7-shade-5) 100%
  );
  --category-box-shadow-color: rgba(204 67 115 / 50%);
}

.category-onboarding main,
div.category-color-onboarding {
  --category-color: var(--color-3-shade-5);
  --category-darker-color: var(--color-3-shade-10);
  --category-darker-bg-color: var(--color-3-tint-10);
  --category-bg-color: var(--color-3-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/pink-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-3-shade-5) 0%,
    var(--color-2-shade-5) 100%
  );
  --category-box-shadow-color: rgba(179 81 0 / 50%);
}

.category-people-data-analytics main,
div.category-color-people-data-analytics {
  --category-color: var(--color-6-shade-5);
  --category-darker-color: var(--color-6-shade-10);
  --category-darker-bg-color: var(--color-6-tint-10);
  --category-bg-color: var(--color-6-tint-15);
  --category-callout-bg: url('https://www.bamboohr.com/styles/bg/purple-cta.svg');
  --category-quote-bg: radial-gradient(
    100% 416.67% at 0% 0%,
    var(--color-6-shade-5) 0%,
    var(--color-7-shade-5) 100%
  );
  --category-box-shadow-color: rgba(121 79 205 / 50%);
}

.integrations main .default-content-wrapper a:any-link {
  color: var(--color-1-shade-5);
  background: unset;
}

/* small button style copied here to prevent linting error: no-descending-specificity */
.integrations-home main .default-content-wrapper p a.button:any-link {
  font-size: 15px;
  line-height: 22px;
  padding: 10px 30px;

  /* below not part of small button style */
  background-color: var(--color-1-shade-5);
}

.integrations-listing .details-container ul {
  margin-top: 60px;
}

.integrations-listing .details-container ul li {
  list-style-image: none;
}

/* Tables */

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 20px;
  border: 2px solid var(--color-gray-3);
  text-align: left;
  vertical-align: middle;
}

table th,
table tbody th {
  color: var(--color-white);
  font-weight: 800;
}

table td {
  color: var(--color-gray-9);
}

table thead {
  background-color: var(--theme-tint5);
}

table thead th {
  border-color: var(--theme-tint5);
}

table tbody th {
  background-color: var(--color-gray-8);
}

table tbody tr:nth-child(odd) {
  background-color: var(--color-white);
}

table tbody tr:nth-child(2n) {
  background-color: var(--color-gray-1);
}

/* Background styles */
.resources-guides .section:last-of-type {
  margin-top: 0;
}

.gradient-section-1 .image-wrapper:nth-last-of-type(2),
.gradient-section-2 .image-wrapper:nth-last-of-type(2),
.gradient-section-3 .image-wrapper:nth-last-of-type(2) {
  margin: 0;
  padding: 0;
  max-width: unset;
}

.gradient-section-4 .image-wrapper .image {
  margin: 0;
}

main .section.gradient-section-4 > div:last-of-type {
  padding-bottom: 50px;
}

.purple-1 {
  background: linear-gradient(207.16deg, var(--color-white) 16.51%, var(--color-5-tint-15) 82.6%);
}

.purple-2 {
  background: linear-gradient(207.16deg, var(--color-white) 44.04%, #fef2ff 82.6%);
}

.purple-3 {
  background: linear-gradient(207.16deg, var(--color-white) 29.59%, var(--color-5-tint-15) 82.6%);
  position: relative;
}

.purple-4 {
  background: linear-gradient(207.16deg, var(--color-white) 16.51%, var(--color-6-tint-15) 82.6%);
}

.gradient-section-4 {
  position: relative;
}

.bg-hex-1 img {
  min-width: 116px;
  max-width: 478px;
  width: 34%;
  top: 13%;
  left: 0;
  position: absolute;
}

.bg-hex-2 img {
  min-width: 113px;
  max-width: 469px;
  right: 7%;
  top: 170%;
  width: 49%;
  position: absolute;
}

.bg-hex-3 img {
  min-width: 100px;
  max-width: 433px;
  left: 6%;
  top: 25%;
  width: 31%;
  position: absolute;
}

.bg-hex-4 img {
  max-width: 621px;
  left: 0;
  bottom: 59%;
  width: 44%;
  position: absolute;
}

.bg-hex-5 img {
  max-width: 280px;
  right: 3%;
  bottom: 53%;
  width: 20%;
  position: absolute;
}

.bg-hex-6 img {
  max-width: 792px;
  right: 0;
  bottom: 0;
  width: 55%;
  position: absolute;
}

.bg-section-bottom-1 img {
  margin-top: 20px;
  width: 100%;
  margin-bottom: -8px;
}

.bg-section-bottom-2 img {
  transform: scaleX(-1);
  width: 100%;
  margin-bottom: -8px;
}

.bg-section-bottom-3 img,
.bg-section-bottom-3-offset img {
  width: 100%;
  margin-bottom: -8px;
}

.bg-section-bottom-3-offset img {
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 600px) {
  .bg-hex-1 img {
    top: 11%;
  }

  .bg-hex-2 img {
    top: 216%;
  }

  .bg-hex-3 img {
    top: 27%;
  }

  .bg-hex-4 img {
    bottom: 57%;
  }

  .bg-hex-5 img {
    bottom: 47%;
  }
}

@media screen and (min-width: 1025px) {
  .bg-hex-1 img {
    top: 20%;
  }

  .bg-hex-2 img {
    top: 216%;
  }

  .bg-hex-3 img {
    top: 17%;
  }

  .bg-hex-4 img {
    bottom: 35%;
  }

  .bg-hex-5 img {
    bottom: 35%;
  }
}

/* modal */
body.modal-open {
  overflow: hidden;
}

.modal-wrapper {
  background-color: rgb(0 0 0 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.1s ease-out;
  z-index: -1;
  opacity: 0;
  overflow-y: scroll;
}

.modal-wrapper.visible {
  opacity: 1;
  z-index: 1005;
}

.modal {
  width: 90%;
  max-width: 490px;
  background-color: var(--body-background-color);
  border-radius: 20px;
  position: absolute;
  top: 90px;
  margin: 0 auto;
  padding: 50px 30px;
}

@media screen and (min-width: 900px) {
  .modal {
    padding: 50px 40px;
		width: 80%;
  }
}

.modal-close {
  position: absolute;
  right: -22px;
  top: -22px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  width: 54px;
  height: 54px;
  line-height: 54px;
  box-shadow: var(--box-shadow-1);
  background-color: #ccc;
  margin: 10px;
  padding: 9px;
  border-radius: 27px;
  box-sizing: border-box;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 21px;
  height: 3px;
  background: var(--color-white);
  transform: rotate(45deg);
  border-radius: 5px;
  top: 8px;
  left: 1px;
  margin: 18px 16px;
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal form {
  position: relative;
}

.modal .modal-form-title {
  color: var(--theme-shade10);
  font-style: italic;
  text-align: center;
}

.modal .modal-content p {
  color: var(--color-gray-9);
  font-size: 18px;
  line-height: 27px;
}

.modal .modal-form-subtitle {
  text-align: center;
  font-weight: 400;
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

/* above the fold CSS goes here to squash CLS */

main .section[data-section-status='loading'],
main .section[data-section-status='initialized'] {
  display: none;
}
