@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-weight: normal;
}

:root {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  :root {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #2C3047;
}

main {
  flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
h1.subtitle, h2.subtitle, h3.subtitle, h4.subtitle, h5.subtitle, h6.subtitle {
  margin-top: 10px;
  line-height: 1.5;
}

h1 {
  font-weight: 600;
  font-size: 2.5rem;
  color: #2d425c;
}

h2 {
  font-weight: 400;
  font-size: 2rem;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

img {
  max-width: 100%;
}

button {
  border: none;
  background: none;
}

span {
  font-weight: inherit;
}

input {
  font-size: 1rem;
  border: none;
  -webkit-appearance: none;
}

button {
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
a:hover {
  border-bottom: 1px solid currentColor;
}

strong {
  font-weight: 800;
}

li {
  font-weight: inherit;
  font-size: inherit;
}

.no-underline {
  border-bottom: none !important;
}

.d-none {
  display: none;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.message {
  padding: 10px;
  border: 2px solid black;
}
.message.success {
  border-color: green;
  background-color: lightgreen;
}

p a, form a {
  border-bottom: 1px dashed currentColor;
}

.site-header-container {
  background-image: url("/assets/img/gradient-bg.svg");
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}
.site-header-container.sticky {
  height: 0;
  position: fixed;
}
.site-header-container.sticky:not(.sticky) {
  border-bottom: 5px solid #67BA9B;
}
.site-header-container.header-scrolled {
  background-image: url("/assets/img/gradient-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
}
.site-header-container.header-scrolled .site-header {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .site-header-container.header-scrolled {
    height: 85px;
  }
  .site-header-container.header-scrolled .site-header {
    padding: 10px;
  }
}

.hero .site-header-container {
  background-image: none;
}

.site-header {
  text-align: center;
  display: flex;
  padding: 25px;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  color: #F5F5F5;
  z-index: 2;
  max-width: 1500px;
  margin: auto;
  transition: background-color 0.3s ease, padding 0.3s ease; /* Transition animation */
}
.site-header .site-logo img {
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .site-header .site-logo img {
    max-width: initial;
    width: 200px;
    margin-top: 7px;
    margin-left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .open-menu,
.close-menu {
    display: none;
  }
}
#sidenav {
  display: flex;
  align-items: center;
}
#sidenav .open-menu,
#sidenav .close-menu {
  color: #F5F5F5;
}
#sidenav ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  background-color: #2C3047;
  overflow: hidden;
  padding-top: 60px;
  transition: 0.5s;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  #sidenav ul {
    font-size: inherit;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    background: none;
    width: 100%;
  }
}
#sidenav ul li {
  padding: 1rem 0;
  transition: background-position 0.3s ease;
  background-position: 100% 30px;
}
@media screen and (min-width: 768px) {
  #sidenav ul li {
    padding: 12px 16px 10px 16px;
  }
  #sidenav ul li a:hover:not(.free-trial-btn) {
    border-bottom: 0;
  }
  #sidenav ul li a.active:not(.free-trial-btn):after {
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(65, 157, 139, 0.3098039216), rgba(255, 255, 255, 0));
    height: 4px;
    display: block;
    margin-top: 6px;
    margin-bottom: -10px;
  }
}
#sidenav ul .close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #F5F5F5;
}
#sidenav ul .top-menu-button {
  padding: 14px;
  background-color: white;
  border-radius: 10px;
  color: #333;
  transition: 0.3s;
}
#sidenav ul .top-menu-button:hover {
  background-color: #67BA9B;
  color: #FFF;
  border: 0;
}

.site-footer {
  background: #F5F5F5;
  background-image: url("/assets/img/footer/nevario-footer.jpg");
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  font-size: 0.8rem;
  align-items: center;
}
.site-footer .limited-width {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .nevario-logo {
  margin-bottom: 20px;
}
.site-footer .nevario-logo a {
  border-bottom: 0;
}
.site-footer .nevario-logo img {
  width: 119px;
}
.site-footer .site-footer-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .site-footer .site-footer-container {
    flex-direction: row;
  }
}
.site-footer .site-footer-container nav {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .site-footer .site-footer-container nav {
    width: 40%;
    margin-top: 0;
  }
}
.site-footer .site-footer-container nav ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

form label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
form .input-notes {
  font-weight: 200;
  margin-bottom: 0.5rem;
}
form .form-row {
  display: flex;
  flex-wrap: wrap;
}
form .form-group {
  margin-bottom: 1rem;
  padding-right: 10px;
  width: 100%;
}
form .form-group.fg-2 {
  width: 50%;
}
form .form-group .text-help {
  color: #dc1d34;
  font-size: 0.8rem;
  padding: 5px 10px;
}
form .has-danger .form-control, form .has-danger .select2-selection {
  border-bottom: 3px solid #dc1d34 !important;
}
form .has-success .form-control, form .has-success .select2-selection {
  border-bottom: 3px solid #168b3f !important;
}
form input, form textarea {
  font-family: inherit;
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
}
form button {
  border: 0;
  padding: 8px 30px;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
}
form button[type=submit] {
  background: linear-gradient(0, #23273f, #414772);
}
form button[type=button] {
  background: linear-gradient(0, #284d60, #263e5a);
}
form button:hover {
  box-shadow: inset 0 0 0 2px #67ba9b;
}
form button.shake {
  /* Start the shake animation and make the animation last for 0.5 seconds */
}
form .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
form .input-group .input-group-append, form .input-group .input-group-prepend {
  display: flex;
}
form .input-group .input-group-prepend {
  margin-right: -1px;
}
form .input-group .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
form .input-group .input-group-append > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
form .input-group .input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
form .input-group > .form-control {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
/**
 * @credits https://github.com/qjebbs/vscode-markdown-extended
 * @copyright 2018 jebbs
 * @license MIT
 */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v92/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
.admonition {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 1.5625em 0;
  padding: 0 1.2rem;
  border-left: 0.4rem solid rgba(68, 138, 255, 0.8);
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.05);
  overflow: auto;
}

.admonition > p {
  margin-top: 0.8rem;
}

.admonition > .admonition-title {
  margin: 0 -1.2rem;
  padding: 0.8rem 1rem 0.8rem 1rem;
  border-bottom: 1px solid rgba(68, 138, 255, 0.2);
  background-color: rgba(68, 138, 255, 0.1);
  font-weight: 700;
}

.admonition > .admonition-title:before {
  position: absolute;
  left: 1rem;
  font-size: 1.5rem;
  /* color: rgba(68, 138, 255, .8); */
  /* content: "\f05b"; */
}

.admonition > .admonition-title:before {
  font-family: Material Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1.2rem;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

.admonition.note > .admonition-title {
  padding-left: 3.3rem;
}

.admonition.note > .admonition-title:before {
  color: rgba(68, 138, 255, 0.8);
  content: "\f05b";
}

.admonition.summary, .admonition.abstract, .admonition.tldr {
  border-left-color: rgba(0, 176, 255, 0.8);
}

.admonition.summary > .admonition-title, .admonition.abstract > .admonition-title, .admonition.tldr > .admonition-title {
  background-color: rgba(0, 176, 255, 0.1);
  border-bottom-color: rgba(0, 176, 255, 0.2);
  padding-left: 3.3rem;
}

.admonition.summary > .admonition-title:before, .admonition.abstract > .admonition-title:before, .admonition.tldr > .admonition-title:before {
  color: rgb(0, 176, 255);
  content: "\e8d2";
}

.admonition.hint, .admonition.tip {
  border-left-color: rgba(0, 191, 165, 0.8);
}

.admonition.hint > .admonition-title, .admonition.tip > .admonition-title {
  background-color: rgba(0, 191, 165, 0.1);
  border-bottom-color: rgba(0, 191, 165, 0.2);
  padding-left: 3.3rem;
}

.admonition.hint > .admonition-title:before, .admonition.tip > .admonition-title:before {
  color: rgb(0, 191, 165);
  content: "\e80e";
}

.admonition.info, .admonition.todo {
  border-left-color: rgba(0, 184, 212, 0.8);
}

.admonition.info > .admonition-title, .admonition.todo > .admonition-title {
  background-color: rgba(0, 184, 212, 0.1);
  border-bottom-color: rgba(0, 184, 212, 0.2);
  padding-left: 3.3rem;
}

.admonition.info > .admonition-title:before, .admonition.todo > .admonition-title:before {
  color: rgb(0, 184, 212);
  content: "\e88e";
}

.admonition.success, .admonition.check, .admonition.done {
  border-left-color: rgba(0, 200, 83, 0.8);
}

.admonition.success > .admonition-title, .admonition.check > .admonition-title, .admonition.done > .admonition-title {
  background-color: rgba(0, 200, 83, 0.1);
  border-bottom-color: rgba(0, 200, 83, 0.2);
  padding-left: 3.3rem;
}

.admonition.success > .admonition-title:before, .admonition.check > .admonition-title:before, .admonition.done > .admonition-title:before {
  color: rgb(0, 200, 83);
  content: "\e876";
}

.admonition.question, .admonition.help, .admonition.faq {
  border-left-color: rgba(100, 221, 23, 0.8);
}

.admonition.question > .admonition-title, .admonition.help > .admonition-title, .admonition.faq > .admonition-title {
  background-color: rgba(100, 221, 23, 0.1);
  border-bottom-color: rgba(100, 221, 23, 0.2);
  padding-left: 3.3rem;
}

.admonition.question > .admonition-title:before, .admonition.help > .admonition-title:before, .admonition.faq > .admonition-title:before {
  color: rgb(100, 221, 23);
  content: "\e887";
}

.admonition.warning, .admonition.attention, .admonition.caution {
  border-left-color: rgba(255, 145, 0, 0.8);
}

.admonition.warning > .admonition-title, .admonition.attention > .admonition-title, .admonition.caution > .admonition-title {
  background-color: rgba(255, 145, 0, 0.1);
  border-bottom-color: rgba(255, 145, 0, 0.2);
  padding-left: 3.3rem;
}

.admonition.attention > .admonition-title:before {
  color: rgb(255, 145, 0);
  content: "\e417";
}

.admonition.warning > .admonition-title:before, .admonition.caution > .admonition-title:before {
  color: rgb(255, 145, 0);
  content: "\e002";
}

.admonition.failure, .admonition.fail, .admonition.missing {
  border-left-color: rgba(255, 82, 82, 0.8);
}

.admonition.failure > .admonition-title, .admonition.fail > .admonition-title, .admonition.missing > .admonition-title {
  background-color: rgba(255, 82, 82, 0.1);
  border-bottom-color: rgba(255, 82, 82, 0.2);
  padding-left: 3.3rem;
}

.admonition.failure > .admonition-title:before, .admonition.fail > .admonition-title:before, .admonition.missing > .admonition-title:before {
  color: rgb(255, 82, 82);
  content: "\e14c";
}

.admonition.danger, .admonition.error, .admonition.bug {
  border-left-color: rgba(255, 23, 68, 0.8);
}

.admonition.danger > .admonition-title, .admonition.error > .admonition-title, .admonition.bug > .admonition-title {
  background-color: rgba(255, 23, 68, 0.1);
  border-bottom-color: rgba(255, 23, 68, 0.2);
  padding-left: 3.3rem;
}

.admonition.danger > .admonition-title:before {
  color: rgb(255, 23, 68);
  content: "\e3e7";
}

.admonition.error > .admonition-title:before {
  color: rgb(255, 23, 68);
  content: "\e000";
}

.admonition.bug > .admonition-title:before {
  color: rgb(255, 23, 68);
  content: "\e868";
}

.admonition.example, .admonition.snippet {
  border-left-color: rgba(0, 184, 212, 0.8);
}

.admonition.example > .admonition-title, .admonition.snippet > .admonition-title {
  background-color: rgba(0, 184, 212, 0.1);
  border-bottom-color: rgba(0, 184, 212, 0.2);
  padding-left: 3.3rem;
}

.admonition.example > .admonition-title:before, .admonition.snippet > .admonition-title:before {
  color: rgb(0, 184, 212);
  content: "\e86f";
}

.admonition.quote, .admonition.cite {
  border-left-color: rgba(158, 158, 158, 0.8);
}

.admonition.quote > .admonition-title, .admonition.cite > .admonition-title {
  background-color: rgba(158, 158, 158, 0.1);
  border-bottom-color: rgba(158, 158, 158, 0.2);
  padding-left: 3.3rem;
}

.admonition.quote > .admonition-title:before, .admonition.cite > .admonition-title:before {
  color: rgb(158, 158, 158);
  content: "\e244";
}

nav.support-tree {
  display: none;
  position: sticky;
  top: 40px;
  grid-area: nav;
  transition: height ease-in-out 0.3s;
  border-bottom: 2px solid #6bbf98;
  width: 100%;
  padding: 10px;
  background-color: white;
}
nav.support-tree.show {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  nav.support-tree {
    display: inline-block;
    top: 15px;
    padding-left: 20px;
    padding-top: 20px;
    background-color: revert;
    border-bottom: none;
    align-self: start;
  }
}
nav.support-tree .current {
  color: green;
}
nav.support-tree h3 {
  padding-bottom: 10px;
}
nav.support-tree ul li {
  list-style-type: none;
  margin-left: 0;
}
nav.support-tree ul li ul {
  margin-top: 10px;
}
nav.support-tree .has-children {
  background: url("/assets/img/down-arrow.svg") no-repeat left top;
  list-style-type: none;
  padding: 0 0 0 1.5rem;
}
nav.support-tree .has-children ul {
  margin-top: 12px;
  transition: 0.5s;
}
nav.support-tree .has-children ul li:not(.has-children) {
  padding-left: 0;
}
nav.support-tree .has-children.hidden {
  background-image: url("/assets/img/right-arrow.svg");
}
nav.support-tree .has-children.hidden > ul {
  display: none;
}

.mobile-hamburger {
  position: sticky;
  display: flex;
  justify-content: space-between;
  top: 0;
  background: #6BBF98;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 4px 0, rgba(0, 0, 0, 0.2) 0 4px 8px 0;
  padding-left: 10px;
}
.mobile-hamburger .icon {
  font-weight: 900;
  font-size: 20px;
  margin: 10px;
  color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .mobile-hamburger {
    display: none;
  }
}

.image-toc-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.image-toc-wrapper .toc-wrapper {
  grid-area: toc;
  background-color: #f6f7f7;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-left: 1rem;
}
.image-toc-wrapper .toc-wrapper li {
  margin-bottom: 10px;
}
.image-toc-wrapper .toc-wrapper li li:first-of-type {
  padding: 10px 0px 0px 16px;
}
.image-toc-wrapper .toc-wrapper li li {
  padding-left: 16px;
}
.image-toc-wrapper .toc-wrapper p {
  font-weight: 600;
  font-size: 14px;
  margin-top: 0rem;
}

@media screen and (min-width: 768px) {
  .image-toc-wrapper {
    float: right;
    min-width: 200px;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

.primary-colour {
  color: #67BA9B;
}

.section-block {
  margin-top: 20px;
}
.section-block > div {
  padding: 20px;
}
.section-block.centered-content {
  text-align: center;
}
.section-block.centered-content .row {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.section-block.centered-content > div, .section-block.centered-content .bg-overlay > div {
  margin-left: auto;
  margin-right: auto;
}
.section-block .heading-container {
  max-width: 750px;
}
.section-block .limited-width {
  max-width: 1024px;
}
.section-block .centered-content {
  text-align: center;
}

.collapse:not(.show) {
  display: none;
}

.button-container .btn-large {
  font-family: Inter, "sans-serif";
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 23px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #36416e;
  color: #36416e;
}

.btn {
  padding: 0.375rem 0.95rem;
  border-radius: 8px;
}
.btn.free-trial-btn {
  background: rgb(40, 72, 88);
  background: linear-gradient(342deg, rgb(68, 136, 111) 21%, rgb(119, 186, 160) 77%);
  color: #FFFFFF;
  border: 3px solid rgba(255, 255, 255, 0.1882352941);
}
.btn.free-trial-btn:hover {
  border: 3px solid #62a48b;
  color: #2C3047;
}

.btn-large {
  font-size: 1.5rem;
  font-weight: 500;
}

.button-glint {
  background-color: #4CAF50; /* Adjust this to match your button's color */
  color: white;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button-glint::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  animation: glint 8s infinite; /* 2s animation + 6s pause */
  border-radius: 50%;
}

@keyframes glint {
  0%, 16.67% { /* 2s active out of 12s total */
    transform: translateX(-100%);
  }
  8.33%, 16.67% { /* Move the glint across */
    transform: translateX(100%);
  }
  16.67%, 100% { /* 10s pause */
    transform: translateX(200%);
  }
}
b {
  font-weight: 600;
}

.asterisk {
  font-size: 1.2rem;
  vertical-align: text-top;
  color: #999999;
}

.faq {
  overflow: hidden;
  margin-top: 30px;
}
.faq .faq-section-title {
  margin-top: 30px;
  font-weight: 700;
  font-size: 1.5rem;
}
.faq .faq-list {
  margin-top: 20px;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.faq .faq-list a.faq-question {
  display: block;
  position: relative;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  padding: 18px 20px 18px 0;
}
@media (max-width: 768px) {
  .faq .faq-list a.faq-question {
    font-size: 18px;
  }
}
.faq .faq-list a.faq-question:hover {
  border-bottom: none;
}
.faq .faq-list a.faq-question .icon {
  float: right;
}
.faq .faq-list p a {
  font-size: inherit;
  position: inherit;
  padding: inherit;
  line-height: inherit;
  display: inline;
}
.faq .faq-list p {
  margin: 20px 0 20px;
}
.faq .faq-list b {
  color: #67BA9B;
}
.faq .faq-list .faq-question {
  display: flex;
  justify-content: space-between;
}
.faq .faq-list .faq-answer {
  padding: 10px 0 10px;
  font-weight: 200;
  line-height: 1.6;
}
.faq .faq-list .expanded .faq-question {
  color: #67BA9B;
}

.feature-slider {
  padding: 20px;
}
.feature-slider .main-container {
  text-align: center;
}
.feature-slider .title {
  margin-top: 60px;
  color: #23273F;
  font-size: 2.5rem;
}
.feature-slider .pills {
  padding: 20px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-slider .pills li {
  display: inline-block;
}
.feature-slider .pills li a {
  cursor: pointer;
  display: inline-block;
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .feature-slider .pills li a {
    max-width: 175px;
  }
}
.feature-slider .pills li a.active {
  color: #23273F;
  background-color: #67BA9B;
}
.feature-slider .pills li a:hover {
  border-bottom: 0;
}
.feature-slider .pills li a:hover:not(.active) {
  background-color: #b9d1c7;
}
.feature-slider .media-container {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feature-slider .media-container video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 1px 60px 18px rgba(102, 160, 138, 0.38);
}
.feature-slider .media-container .video-transition {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.feature-slider .description {
  font-size: 22px;
  font-weight: 400;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  line-height: 1.4;
}
.feature-slider .description div {
  display: none;
}
.feature-slider .description .active {
  display: inline-block;
}
.feature-slider.project {
  color: #D1E0DA;
  background: linear-gradient(307.58deg, #38555C 8.7%, #4e7685 66.46%);
}
.feature-slider.project .title {
  color: #D1E0DA;
}
.feature-slider.project .btn:hover:not(.active) {
  background-color: #3f5e69;
}
.feature-slider.financial {
  color: #D1E0DA;
  background: linear-gradient(180deg, #23273F 0%, #414772 100%);
}
.feature-slider.financial .title {
  color: #D1E0DA;
}
.feature-slider.financial .btn:hover:not(.active) {
  background-color: #232539;
}

.cta {
  background: url("/_src/img/CTA-BG-1-Compressed.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.cta .trial-cta {
  width: 75%;
  padding: 150px;
  text-align: right;
  position: relative;
  height: 500px;
}
.cta .container {
  position: absolute;
  right: 0;
}
.cta .cta-btn {
  margin-top: 20px;
  color: white;
  font-size: 1.5rem;
  border: 4px solid white;
  border-radius: 10px;
  padding: 10px;
}
.cta .btn-container {
  margin-top: 40px;
}
.cta .btn-container a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.cta h1 {
  color: #E2E2E2;
  font-size: 3rem;
  max-width: 400px;
}

.pricing-calculator p, .pricing-calculator small {
  color: #666;
}

.price {
  margin-top: 30px;
}
.price .amount {
  color: #313E57;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .price .amount {
    font-size: 70px;
  }
}
.price .term {
  color: #999999;
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .price .term {
    font-size: 30px;
  }
}
.price .annual-cost-container {
  margin-top: 10px;
  display: none;
}

.medium-text {
  color: #999999;
  font-weight: 300;
}

.smaller-text {
  color: #999999;
  font-weight: 300;
  font-size: 12px;
}

.toggle {
  border: 1px solid #ccc;
  border-radius: 20px;
  display: inline-flex;
  overflow: hidden;
  background-color: #f1f1f1;
  margin: 30px;
}

.toggle-button {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  flex: 1;
  font-size: 16px;
  color: #666;
}

.toggle-button:hover {
  background-color: #e2e2e2;
}

.toggle-button.active {
  background-color: #4D8E79;
  color: white;
}

.options {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
@media screen and (min-width: 768px) {
  .options {
    flex-direction: row;
  }
}

.option {
  background: #FFFFFF;
  box-shadow: 0 8px 24.6px -3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .option {
    width: 100%;
  }
}
.option label {
  font-size: 32px;
  color: #67BA9B;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
}
.option small {
  color: #313E57;
  display: block;
  font-size: 22px;
  font-weight: 500;
}

.option input[type=number] {
  font-size: 60px;
  color: #333;
  width: 100%;
  border: none;
  border-bottom: 2px solid #F8F8F8;
  background: none;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: Inter, "sans-serif";
}

.option input[type=number]:focus {
  outline: none;
  border-bottom: 2px solid #67BA9B;
}

.included-features {
  background-image: url("/assets/img/pages/pricing/sunset-crane.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #EEEEEE;
}
.included-features .bg-overlay {
  width: 100%;
  height: 100%;
  background: rgba(39, 67, 87, 0.56);
  padding: 60px;
}

.unlimited-features {
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.unlimited-features ul {
  list-style-type: square;
  text-align: left;
}
.unlimited-features li::before {
  content: "✔";
  color: #67BA9B;
  font-size: 30px;
  padding-right: 15px;
}
.unlimited-features .feature {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 10px;
}
.unlimited-features .divider {
  color: #67BA9B;
  font-size: 30px;
}

.trial-cta {
  padding-top: 60px;
  padding-bottom: 100px;
}
.trial-cta .sign-up-button {
  margin-top: 30px;
}

.integrations-page .featured-image {
  max-width: 500px;
  margin-top: 50px;
  width: 100%;
}
.integrations-page .zapier-apps {
  padding-top: 40px;
  background: #CCDAD5;
}
main:not(.home-page) {
  margin-top: 120px;
}
main section {
  width: 100%;
  background: linear-gradient(359deg, #B6D0C6 -56.87%, #cfded8 106.73%);
}
main .main-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.feature-slider {
  padding: 20px;
}
.feature-slider .main-container {
  text-align: center;
}
.feature-slider .title {
  margin-top: 60px;
  color: #23273F;
  font-size: 2.5rem;
}
.feature-slider .subtitle {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.feature-slider .pills {
  padding: 20px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-slider .pills li {
  display: inline-block;
}
.feature-slider .pills li a {
  cursor: pointer;
  display: inline-block;
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .feature-slider .pills li a {
    max-width: 175px;
  }
}
.feature-slider .pills li a.active {
  color: #23273F;
  background-color: #67BA9B;
}
.feature-slider .pills li a:hover {
  border-bottom: 0;
}
.feature-slider .pills li a:hover:not(.active) {
  background-color: #b9d1c7;
}
.feature-slider .media-container {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.feature-slider .media-container video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 1px 60px 18px rgba(102, 160, 138, 0.38);
}
.feature-slider .media-container .video-transition {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.feature-slider .description {
  font-size: 22px;
  font-weight: 400;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  line-height: 1.4;
}
.feature-slider .description div {
  display: none;
}
.feature-slider .description .active {
  display: inline-block;
}
.feature-slider.project {
  color: #D1E0DA;
  background: linear-gradient(307.58deg, #38555C 8.7%, #4e7685 66.46%);
}
.feature-slider.project .title {
  color: #D1E0DA;
}
.feature-slider.project .btn:hover:not(.active) {
  background-color: #3f5e69;
}
.feature-slider.financial {
  color: #D1E0DA;
  background: linear-gradient(180deg, #23273F 0%, #414772 100%);
}
.feature-slider.financial .title {
  color: #D1E0DA;
}
.feature-slider.financial .btn:hover:not(.active) {
  background-color: #232539;
}

.cta {
  background: url("/assets/img/CTA-BG-1-Compressed.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.cta .trial-cta {
  width: 75%;
  padding: 150px;
  text-align: right;
  position: relative;
  height: 500px;
  max-width: 1500px;
}
.cta .container {
  position: absolute;
  right: 0;
}
.cta .cta-btn {
  margin-top: 20px;
  color: white;
  font-size: 1.5rem;
  border: 4px solid white;
  border-radius: 10px;
  padding: 10px;
}
.cta .btn-container {
  margin-top: 40px;
}
.cta .btn-container a:hover {
  background: rgba(255, 255, 255, 0.35);
}
.cta h1 {
  color: #E2E2E2;
  font-size: 3rem;
  max-width: 400px;
}

.centered-elem {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  /*
  text-align: center;
  display: flex;
  flex-direction: column;
  background-image: url("/assets/img/gradient-bg.svg");
  background-size: cover;
   */
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.9;
  z-index: 1;
}
.hero .hero-title {
  padding: 0 1rem;
  margin-top: 50px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 2;
}
.hero .hero-title h1 {
  text-shadow: 2px 2px 10px #303030;
}
.hero .hero-title .subheading {
  text-shadow: 2px 2px 10px #303030;
}
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.typewriter {
  border-right: 0.15rem solid #67BA9B;
  padding-right: 0.15rem;
  animation: 750ms steps(2, start) infinite typewriter;
}

@keyframes typewriter {
  0% {
    border-color: #67BA9B;
  }
  100% {
    border-color: transparent;
  }
}
.title {
  font-size: 2.75rem;
  font-weight: 600;
  color: #F5F5F5;
  padding-bottom: 10px;
}
.title strong {
  color: #67BA9B;
}

.subheading {
  font-size: 1.5rem;
  color: #F5F5F5;
}
.subheading strong {
  color: #67BA9B;
}

.sonderplan-desktop {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  overflow-x: hidden;
}
.sonderplan-desktop img {
  margin: 0 auto;
  max-width: none;
  height: clamp(30vw, max(50vh, 83vw), 45rem);
}

.summary {
  font-weight: 400;
  font-size: 1.2rem;
  background: #67BA9B;
  padding: 0.75rem;
  text-align: center;
  color: #2C3047;
}
.summary strong {
  font-weight: 700;
}

.feature-summary {
  background: linear-gradient(105.72deg, #B6D0C6 -56.87%, #F3F3F3 106.73%);
}
.feature-summary > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  max-width: 1500px;
}
@media screen and (min-width: 768px) {
  .feature-summary > div {
    width: 75%;
    flex-direction: row;
    margin: 0 auto;
    padding: 1.5rem 0;
  }
  .feature-summary > div:nth-child(2n-1) {
    flex-direction: row-reverse;
  }
  .feature-summary > div:nth-child(2n-1) p {
    text-align: right;
  }
}
.feature-summary > div .video-container {
  width: 100%;
  margin: auto;
}
.feature-summary > div .video-container video {
  box-shadow: 1px 2px 8px 2px rgba(44, 48, 71, 0.1882352941);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-summary > div .video-container {
    width: clamp(315px, 70%, 1080px);
  }
}
.feature-summary > div .feature-text-container {
  font-size: clamp(16px, 1.7rem, 32px);
  padding: 0 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .feature-summary > div .feature-text-container {
    width: clamp(315px, 50%, 1080px);
    padding: 1rem 1.25rem;
    text-align: left;
    margin-bottom: auto;
    margin-top: auto;
  }
}
.feature-summary > div .feature-text-container strong {
  color: #4D8E79;
}
.feature-summary > div .feature-text-container p.feature-text {
  font-size: 1.4em;
}
.feature-summary > div .feature-text-container p.feature-subtext {
  font-size: clamp(12px, 1.3rem, 24px);
  margin-top: 20px;
  font-weight: 100;
  line-height: 1.6;
}
.feature-summary > div strong {
  font-weight: 700;
}

.home-page .more-features {
  background: #EEEEEE;
}
.home-page .more-features .feature img {
  width: max(90%, 100% - 1.5rem);
  height: 250px;
  max-width: 300px;
}

.more-features {
  padding: 2rem 1.25rem;
}
.more-features h2 {
  font-size: 2.25rem;
  text-align: center;
}
.more-features h2 strong {
  font-weight: 700;
}
.more-features .more-features-list {
  margin: 2rem auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 4rem 0.75rem;
  width: 100%;
  max-width: 1500px;
}
@media screen and (min-width: 768px) {
  .more-features .more-features-list {
    width: 80%;
  }
}
.more-features .feature {
  width: calc(50% - 1.5rem);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .more-features .feature {
    width: calc(33.3333333333% - 1.5rem);
  }
}
@media screen and (min-width: 1024px) {
  .more-features .feature {
    width: calc(33% - 1.5rem);
  }
}
.more-features .feature h3 {
  font-size: 1.5rem;
  padding-bottom: 10px;
}
.more-features .feature h3 strong {
  font-weight: 700;
}
.more-features .feature img {
  max-width: 300px;
  margin: 1rem 0;
}
.more-features .feature p {
  font-size: 1rem;
  line-height: 1.5;
}
.more-features .feature.small {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}
.more-features .feature.small .feature-container {
  background-color: #f7f7f7;
  padding: 10px;
  position: relative;
  height: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .more-features .feature.small {
    width: calc(25% - 1.5rem);
  }
}
.more-features .feature.small h3 {
  font-size: 1.2rem;
}
.more-features .feature.small img {
  height: 120px;
}
.more-features .feature.small p {
  font-size: 0.9rem;
}
.more-features .feature.coming-soon::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 28px;
  background: #206049;
  top: 2rem;
  right: -0.48rem;
  transform: rotate(45deg);
}
.more-features .feature.coming-soon::after {
  position: absolute;
  content: "Coming Soon";
  top: 11px;
  right: -14px;
  padding: 0.5rem;
  background: #198961;
  color: white;
  text-align: center;
  box-shadow: -4px 4px 5px 0px rgba(0, 0, 0, 0.2);
}
.more-features .feature.beta::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 28px;
  background: #972675;
  top: 2rem;
  right: -0.48rem;
  transform: rotate(45deg);
}
.more-features .feature.beta::after {
  position: absolute;
  content: "BETA";
  top: 11px;
  right: -14px;
  padding: 0.5rem;
  background: #ca349e;
  color: white;
  text-align: center;
  box-shadow: -4px 4px 5px 0px rgba(0, 0, 0, 0.2);
}

.clients, .other-integrations {
  padding: 1.75rem 1rem;
  text-align: center;
  background: #CCDAD5;
}
.clients h2, .other-integrations h2 {
  font-size: 2rem;
}
.clients strong, .other-integrations strong {
  font-weight: 700;
}
.clients > div, .other-integrations > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  width: 80%;
  margin: 1.5rem auto;
  justify-items: center;
  align-items: center;
  grid-gap: 1.2rem;
  max-width: 1500px;
}
@media screen and (min-width: 768px) {
  .clients > div, .other-integrations > div {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
}
.clients > div a:hover, .other-integrations > div a:hover {
  border-bottom: 0;
}
.clients > div .logo, .other-integrations > div .logo {
  height: 35px;
  object-fit: scale-down;
  margin: 10px;
}

article {
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, auto);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  article {
    padding: 40px;
  }
}
article .page-title {
  grid-area: header;
}
article .excerpt {
  font-weight: 100;
  grid-area: excerpt;
}
article .featured-image {
  grid-area: image;
  justify-self: center;
  max-width: clamp(100px, 100%, 300px);
}
article .header-image-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}
article .content {
  grid-area: content;
}
article .content ol li {
  list-style: auto;
  margin-bottom: 1.5rem;
}
article .content ul li {
  list-style: initial;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}
article .content ol {
  padding: 20px;
  margin-top: 10px;
  background: rgba(203, 255, 236, 0.1803921569);
  box-shadow: 3px 2px 4px 0 rgba(102, 102, 102, 0.11) inset;
}
article .content ol li {
  margin-bottom: 10px;
}
article .content li {
  margin-left: 0.8rem;
}
article .content .doc-image {
  display: block;
  margin-top: 10px;
  max-height: 700px;
}
article .content .doc-header-image {
  max-width: 400px;
}
article .content .doc-inline-image {
  max-height: 20px;
}
article .related {
  grid-area: related;
}
article p {
  margin: 1rem 0;
  font-weight: 400;
  line-height: 1.6;
}
article p strong {
  font-weight: 600;
}
.documentation-index article, .documentation-page article {
  max-width: 1465px;
}

.documentation-index article {
  padding: 0;
  gap: 5px;
  grid-template-areas: "header" "nav" "left" "right";
}
@media screen and (min-width: 768px) {
  .documentation-index article {
    grid-template-columns: 2fr 3fr 4fr;
    grid-template-areas: "nav left right";
  }
}

.documentation-page article {
  padding: 0;
  grid-template-areas: "header " "nav" "excerpt" "image" "content" "related";
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .documentation-page article {
    grid-template-columns: 1.5fr 6fr;
    grid-template-areas: "nav header toc " "nav excerpt toc" "nav image toc" "nav content toc" "nav related toc";
  }
}
.documentation-page article .support-content {
  grid-area: content;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .documentation-page article .support-content {
    border-left: 1px solid #ece6e6;
  }
}

.simple-page article {
  grid-template-areas: "navigation" "header" "excerpt" "image" "content" "related";
}
@media screen and (min-width: 768px) {
  .simple-page article {
    grid-template-columns: 4fr 3fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "header ." "excerpt image" "content image" "related related";
  }
}

.documentation-header-container {
  background: #67BA9B;
}
.documentation-header-container .documentation-header {
  padding: 20px;
  justify-content: space-between;
  align-content: center;
  flex-direction: row;
  color: #F5F5F5;
  max-width: 1500px;
  margin: auto;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .documentation-header-container .documentation-header {
    display: flex;
    padding: 20px 40px;
    text-align: center;
  }
}

.page-section {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C3047;
  margin-bottom: 10px;
}

.page-breadcrumb {
  font-size: 1.2em;
  margin-top: 5px;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-breadcrumb {
    display: inline-block;
  }
}

.mobile-breadcrumb {
  padding: 9px;
  color: white;
}
.mobile-breadcrumb .current-page-title {
  display: none;
}
.mobile-breadcrumb.show-mobile-title span.breadcrumb {
  display: none;
}
.mobile-breadcrumb.show-mobile-title span.current-page-title {
  display: inline-block;
  padding-right: 10px;
}

#search {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #search {
    width: 45%;
  }
}

#search-form {
  width: 100%;
}

#search-input {
  padding: 0.25rem 1rem;
  width: 100%;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #2C3047;
  font-size: 1rem;
  background: rgba(236, 236, 236, 0.72);
}

#results {
  margin-top: 2rem;
}

#search-results {
  display: none;
  position: absolute;
  top: 2.5rem;
  background: #F5F5F5;
  width: 100%;
  border-radius: 1rem;
  color: #2C3047;
  padding: 1rem;
}
#search-results::before {
  width: 1rem;
  height: 1rem;
  background: #F5F5F5;
  display: block;
  position: absolute;
  top: -0.25rem;
  content: "";
  transform: rotate(45deg);
  right: 2rem;
  z-index: -1;
}

.search-result {
  padding: 0.5rem 0;
  border-bottom: 1px solid #D8D8D8;
  text-align: left;
}
.search-result:last-child {
  border: none;
}
.search-result:first-child {
  padding-top: 0;
}

.match {
  background: rgba(74, 181, 227, 0.5);
}

/*
.main-content {
  padding: 20px;

  @media screen and (min-width: $tablet-breakpoint) {
    padding:40px;
  }
}

 */
.documentation {
  border-bottom: 1px solid rgb(207, 207, 207);
  display: grid;
  margin-bottom: 1.5rem;
}
.documentation:last-child {
  border-bottom: none;
}
.documentation .documentation-title {
  grid-area: title;
}
.documentation .documentation-featured-img {
  grid-area: image;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 20px;
}
.documentation .documentation-excerpt {
  grid-area: excerpt;
}
.documentation .documentation-cta {
  grid-area: cta;
}
.documentation img {
  object-fit: scale-down;
}

@media screen and (min-width: 768px) {
  .main-content .support-wrapper {
    width: 100%;
    column-gap: 20px;
  }
}
.documentation-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.documentation-cta a {
  background: linear-gradient(to bottom, rgb(103, 186, 155), rgb(81, 144, 121));
  border: 0.125rem solid rgba(67, 116, 97, 0.21);
  padding: 0.25rem 0.5rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  color: white;
}
.documentation-cta a:hover {
  background: linear-gradient(to bottom, rgb(37, 38, 38), rgb(50, 90, 76));
}

.left, .right {
  padding: 1.3rem;
}

.left {
  grid-area: left;
}
.left .documentation {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "title" "image" "excerpt" "cta";
}
@media screen and (min-width: 1024px) {
  .left .documentation {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "title image" "excerpt image" "cta image";
  }
}

.right {
  grid-area: right;
  background: rgb(232, 237, 235);
  margin-bottom: -1.5rem;
}
.right .documentation {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "title" "image" "excerpt" "cta";
}

.related {
  background: rgb(232, 237, 235);
  padding: 2rem;
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .related {
    flex-direction: row;
  }
}
.related .documentation-excerpt {
  flex-grow: 1;
}
.related .related-item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .related .related-item {
    width: 50%;
  }
  .related .related-item article {
    grid-template-columns: 4fr 9fr;
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 2rem;
    grid-template-areas: "nav header " "nav excerpt " "nav image" "nav content " "nav related";
  }
}

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