@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/Figtree-VariableFont_wght.woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/Figtree-Italic-VariableFont_wght.woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
/* https://github.com/googlefonts/NunitoSans */
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/NunitoSansVF.woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/fonts/NunitoSans-ItalicVF.woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/* https://github.com/adobe-fonts/source-code-pro */
@font-face {
  font-family: "Source Code Pro";
  src: url("/fonts/SourceCodeVF-Upright.otf.woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Code Pro";
  src: url("/fonts/SourceCodeVF-Italic.otf.woff2");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}
:root,
.theme-white {
  --moqups-display: Figtree, Helvetica, Arial, sans-Serif;
  --moqups-font: Nunito Sans, Helvetica, Arial, sans-Serif;
  --moqups-font-serif: Georgia, serif;
  --moqups-code: Source Code Pro, Consolas, monospace;
  --link-color: #1071f2;
  --link-hover-color: #185dcb;
  --link-underline-color: transparent;
  --heading-color: #29323d;
  --active-color: #1071f2;
  --body-color: #3b4754;
  --body-muted-color: rgba(59, 71, 84, 0.5);
  --body-line-height: 1.48;
  --body-bg: #fff;
  --sticky-header-height: calc(4.75rem + 2px);
  --table-active-bg: #f7f8f9;
  --table-border-light-color: #eef1f5;
  --table-border-color: #dee4eb;
  --tab-bg: #eef1f5;
  --tab-active-color: #29323d;
  --tab-active-bg: #fff;
  --tab-active-border: rgba(0, 25, 50, 0.5);
  --dropdown-bg: #fff;
  --dropdown-color: #29323d;
  --dropdown-hover-color: #185dcb;
  --dropdown-hover-bg: #f1f7fd;
  --button-bg: #eef1f5;
  --button-color: #29323d;
  --button-hover-bg: #dee4eb;
  --button-main-bg: #1071f2;
  --button-main-color: #fff;
  --button-main-hover-bg: #1068dd;
  --input-bg: #fff;
  --input-color: #29323d;
  --input-active-color: #1071f2;
  --input-placeholder-color: #9fafc1;
  --input-border-color: #c9d3dd;
  --well-bg: #f7f8f9;
  --well-color: #29323d;
  --well-border-color: rgba(0, 0, 0, 0.06);
  --well-icon-color: #29323d;
  --footer-heading-color: #5a6e81;
  --footer-link-color: #798da3;
  --footer-link-hover-color: #677d92;
  --container-filter: none;
}

html {
  font-size: 16px; /* base font size */
}

body {
  font-family: var(--moqups-font);
  color: var(--body-color);
  background: var(--body-bg);
  font-weight: 400;
}

main {
  min-height: 20rem;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
	Typography
*/
b,
strong,
.text-bold {
  font-weight: 700;
}

i {
  font-style: italic;
}

/*
em {
	font-weight: 600;
	letter-spacing: 0.125rem;
}
*/
a,
a:visited {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-color: var(--link-underline-color);
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

a:active,
a:focus,
a:hover {
  color: var(--link-hover-color);
}

kbd,
.content code {
  font-family: "Source Code Pro", Consolas, monospace;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  bottom: 1px;
  margin: 0 0.125rem 0 0;
  padding: 0.125rem 0.5rem 0.1rem;
  border: 1px solid rgba(121, 141, 163, 0.25);
  border-radius: 0.25rem;
  background: rgba(222, 228, 235, 0.25);
  box-shadow: 1px 1px 0 rgba(59, 71, 84, 0.4);
}

.content pre {
  background: #f7f8f9;
  color: #3b4754;
  border: 1px solid rgba(201, 211, 221, 0.25);
  padding: 0.75rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
}

.content pre code {
  padding: 0;
  font-size: 0.875rem;
  border: 0;
  box-shadow: 0;
  background: none;
  box-shadow: none;
}

hr {
  margin: 2rem 0;
  opacity: 0.15;
  background-color: currentColor;
}

.content-markdown hr {
  max-width: 4.5rem;
  margin: 3rem 0 1.75rem;
  height: 0.188rem;
  border-radius: 3rem;
  opacity: 1;
  background-color: currentColor;
}

hr.thick {
  max-width: 6rem;
  margin: 2rem auto 1.75rem;
  height: 0.25rem;
  border-radius: 5rem;
  opacity: 0.25;
  background-color: var(--link-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h2\.5,
.h3,
.h4,
.h4\.5,
.h5,
.h6 {
  font-family: var(--moqups-display);
  font-weight: 675;
  line-height: 1.3;
  letter-spacing: -0.12pt;
  color: var(--heading-color);
}

h1,
.h1 {
  font-size: 2.75rem;
  font-weight: 710;
  margin: 2rem 0;
  letter-spacing: -0.4pt;
  line-height: 1.24;
}

h1.d1,
.h1.d1 {
  font-size: 5rem;
  font-weight: 750;
  line-height: 1.2;
}

h1.d2,
.h1.d2 {
  font-size: 4.25rem;
  font-weight: 750;
  line-height: 1.24;
}

h1.d2\.5,
.h1.d2\.5 {
  font-size: 3.5rem;
  line-height: 1.24;
}

h1.d3,
.h1.d3 {
  font-size: 3rem;
  line-height: 1.24;
}

h2,
.h2 {
  font-size: 2.125rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.h2\.5 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.375rem 0;
}

h4,
.h4 {
  font-size: 1.188rem;
  margin: 1rem 0;
  letter-spacing: 0pt;
}

.h4\.5 {
  font-size: 1rem;
  margin: 1rem 0;
  letter-spacing: 0pt;
}

h5,
.h5 {
  font-size: 0.875rem;
  margin: 0.875rem 0;
  letter-spacing: 0.23pt;
  text-transform: uppercase;
}

h6,
.h6 {
  font-size: 0.75rem;
  margin: 0.875rem 0;
  letter-spacing: 0.4pt;
  text-transform: uppercase;
}

/*
.h1,
.h2,
.h2\.5,
.h3,
.h4,
.h5,
.h6 {
	margin: 0;
}
 */
p {
  font-size: 1.125rem;
  line-height: var(--body-line-height);
  margin-bottom: 1rem;
}

p.h1, p.h2, p.h3, p.h4, p.h5, p.h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}

p.subtitle {
  opacity: 0.75;
  font-size: 1.25rem;
}

p.lead {
  font-size: 1.375rem;
  font-weight: 500;
}

.text-tight {
  line-height: 1.1;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.text-breakable span {
  display: inline-block;
}

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

/* headers as links */
.h-link a {
  color: var(--heading-color);
  text-decoration: none;
}

.h-link a:hover {
  color: var(--link-hover-color);
}

blockquote {
  font-weight: 500;
  padding: 0.625rem 0.5rem 0.625rem 1.5rem;
  border-left: 3px solid var(--table-border-color);
  font-style: italic;
  margin-bottom: 1rem;
}

blockquote p {
  margin-bottom: 0;
  font-size: 1.125rem;
}

p + h2,
p + .h2,
p + h3,
p + .h3,
p + h4,
p + .h4,
p + h5,
p + .h5,
p + h6,
p + .h6,
ul + h2,
ul + .h2,
ul + h3,
ul + .h3,
ul + h4,
ul + .h4,
ul + h5,
ul + .h5,
ul + h6,
ul + .h6,
ol + h2,
ol + .h2,
ol + h3,
ol + .h3,
ol + h4,
ol + .h4,
ol + h5,
ol + .h5,
ol + h6,
ol + .h6 {
  margin-top: 2.75rem;
}

span.h1, span.h2, span.h3, span.h4, span.h5, span.h6 {
  margin-top: 0;
  margin-bottom: 0;
}

.link-muted {
  appearance: none;
  color: currentColor;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.1875rem;
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1), text-underline-offset 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.link-muted:hover {
  opacity: 0.9;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.3125rem;
  background: none;
}

.content ul:not([class]),
.content ol:not([class]),
.content dl:not([class]),
.list {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.content ul:not([class]) li,
.content ol:not([class]) li,
.content dl:not([class]) li,
.list li {
  line-height: var(--body-line-height);
  margin-bottom: 0.75rem;
}

.content ul:not([class]) li:last-child,
.content ol:not([class]) li:last-child,
.content dl:not([class]) li:last-child,
.list li:last-child {
  margin-bottom: 0;
}

.content ul:not([class]) li ol,
.content ul:not([class]) li ul,
.content ol:not([class]) li ol,
.content ol:not([class]) li ul,
.content dl:not([class]) li ol,
.content dl:not([class]) li ul,
.list li ol,
.list li ul {
  margin-top: 0.75rem;
}

.content ul:not([class]) span.list-or,
.content ol:not([class]) span.list-or,
.content dl:not([class]) span.list-or,
.list span.list-or {
  font-weight: 600;
  display: block;
  margin: 1rem 0;
  text-transform: uppercase;
}

.content ul:not([class]).list-cons li, .content ul:not([class]).list-pros li,
.content ol:not([class]).list-cons li,
.content ol:not([class]).list-pros li,
.content dl:not([class]).list-cons li,
.content dl:not([class]).list-pros li,
.list.list-cons li,
.list.list-pros li {
  position: relative;
  list-style-type: none;
}

.content ul:not([class]).list-cons li::before, .content ul:not([class]).list-pros li::before,
.content ol:not([class]).list-cons li::before,
.content ol:not([class]).list-pros li::before,
.content dl:not([class]).list-cons li::before,
.content dl:not([class]).list-pros li::before,
.list.list-cons li::before,
.list.list-pros li::before {
  content: "";
  font-family: "Source Code Pro", Consolas, monospace;
  width: 1.125em;
  height: 1.125em;
  font-weight: bold;
  position: absolute;
  background-repeat: no-repeat;
  top: 0.15em;
  left: -1.5em;
  background-size: cover;
}

.content ul:not([class]).list-pros li::before,
.content ol:not([class]).list-pros li::before,
.content dl:not([class]).list-pros li::before,
.list.list-pros li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath stroke='%231180f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75' d='M3.333 8.667 6 11.333l6.667-6.666'/%3E%3C/svg%3E");
  filter: var(--container-filter);
}

.content ul:not([class]).list-cons li::before,
.content ol:not([class]).list-cons li::before,
.content dl:not([class]).list-cons li::before,
.list.list-cons li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23f45f20' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.75' d='m4 12 8-8M4 4l8 8'/%3E%3C/svg%3E");
  filter: var(--container-filter);
}

.content ul:not([class]) li,
ul.list li {
  margin-left: 1.5em;
  list-style-type: disc;
}

.content ol:not([class]),
ol.list {
  counter-reset: item;
}

.content ol:not([class]) > li,
ol.list > li {
  position: relative;
  margin-left: 1.5em;
  counter-increment: item;
}

.content ol:not([class]) > li:before,
ol.list > li:before {
  position: absolute;
  right: 0.65em;
  margin-right: 100%;
  content: counters(item, ".") ". ";
}

.content ol:not([class]) > li ol,
ol.list > li ol {
  margin-left: 0.6em;
}

.content ol:not([class]) > li ol > li:before,
ol.list > li ol > li:before {
  content: counters(item, ".") " ";
}

.content dl,
dl.list {
  font-size: 1.25rem;
}

.content dl dt,
dl.list dt {
  font-weight: 600;
}

.content dl dd,
dl.list dd {
  margin-bottom: 0.75em;
  margin-left: 1em;
}

.content ul.list-of-icons li {
  list-style-type: none;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.content ul.list-of-icons .icon {
  width: 3rem;
  height: 3rem;
  background: var(--tab-bg);
  border-radius: 0.5rem;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--tab-color);
}

.content ul.list-of-icons .icon svg path {
  fill: currentColor !important;
}

.text-body,
.text-body:visited {
  color: var(--body-color);
}

.text-muted {
  color: var(--body-muted-color);
}

.text-error {
  color: #f54c52;
  font-weight: 500;
}

.text-lg {
  font-size: 1.188rem;
}

.text-sm {
  font-size: 1rem;
}

.text-xs {
  font-size: 0.875rem;
}

.text-gradient {
  --gradient-start: var(--body-muted-color);
  --gradient-end: var(--body-color);
  background-image: linear-gradient(to top, var(--gradient-start) 0%, var(--gradient-end) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 1px 1px 20px var(--body-bg);
}

.no-underline {
  text-decoration: none;
}

.tags {
  display: flex;
  gap: 0.5rem;
}

.tags .tag {
  font-family: var(--moqups-display);
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--body-muted-color);
  border-radius: 0.25rem;
  background: var(--tab-bg);
}

.tags .tag.tag-primary {
  background: #fef69b;
  color: #29323d;
  font-weight: 700;
}

.tags .tag.tag-secondary {
  background: #ffb093;
  color: #29323d;
}

.tags.tags-md .tag {
  font-size: 0.75rem;
}

.content-blog p {
  font-size: 1.188rem;
}

@media (min-width: 768px) {
  .h1-md {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  .h3-md {
    font-size: 2.75rem;
    font-weight: 750;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
}
@media (min-width: 991px) {
  .h1-lg {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
}
@media (min-width: 1200px) {
  .h1-xl {
    font-size: 2.75rem;
    font-weight: 710;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  .h2\.5-xl {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 1.5rem 0;
  }
}
@media (min-width: 1400px) {
  h1,
  .h1 {
    font-size: 2.75rem;
    font-weight: 710;
    margin: 2rem 0;
    letter-spacing: -0.4pt;
  }
  h1.d1-xxl,
  .h1.d1-xxl {
    font-size: 5rem;
    font-weight: 750;
  }
  h1.d2-xxl,
  .h1.d2-xxl {
    font-size: 4.25rem;
    font-weight: 750;
  }
  h1.d2\.5-xxl,
  .h1.d2\.5-xxl {
    font-size: 3.25rem;
  }
  h1.d3-xxl,
  .h1.d3-xxl {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  h1.d1,
  .h1.d1 {
    font-size: 3rem;
  }
  h1.d2,
  .h1.d2 {
    font-size: 3rem;
  }
  h1.d2\.5,
  .h1.d2\.5 {
    font-size: 3rem;
  }
  h1.d3,
  .h1.d3 {
    font-size: 3rem;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
a.skip-link,
a.skip-link:visited {
  background-color: #ffe533;
  border: solid 2px #000;
  color: #29323d;
  padding: 0.5rem 1rem;
  text-decoration: none;
  top: 0.5rem;
  position: absolute;
  left: 0;
  z-index: 52;
}

a.skip-link:not(:focus):not(:active) {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible,
input[type=checkbox]:focus-visible:before,
select:focus-visible {
  outline: 1px solid var(--link-color);
  outline-offset: 2px;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

/*
	Helper classes
*/
.container-max-xxl {
  max-width: 1320px;
}

.container-max-xl {
  max-width: var(--bs-breakpoint-xl);
}

.container-max-lg {
  max-width: var(--bs-breakpoint-lg);
}

.container-max-md {
  max-width: var(--bs-breakpoint-md);
}

.container-max-sm {
  max-width: var(--bs-breakpoint-sm);
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-50 {
  opacity: 0.5;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

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

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .w-md-100 {
    width: 100%;
  }
  .w-md-auto {
    width: auto;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Header & Footer navigation
*/
header {
  position: relative;
  z-index: 50;
}

header nav {
  padding: 1.125rem 0;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to left, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
  --link-color: var(--heading-color);
}

header.sticky {
  position: sticky;
  top: 0;
  background: var(--body-bg);
}

.nav-menu {
  display: flex;
  height: 100%;
  justify-content: center;
  gap: 1.25rem;
}

.nav-menu li {
  position: relative;
  display: flex;
}

.nav-menu li > a, .nav-menu li > button {
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.5rem;
  display: flex;
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  vertical-align: bottom;
  letter-spacing: 0.2pt;
  color: var(--link-color);
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li > a:hover, .nav-menu li > button:hover {
  color: var(--link-hover-color);
}

.nav-menu li > a.nav-title, .nav-menu li > button.nav-title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  position: relative;
  bottom: 1px;
}

.nav-menu li > a.nav-title .nav-menu-icon, .nav-menu li > button.nav-title .nav-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-menu li > a .nav-menu-icon, .nav-menu li > button .nav-menu-icon {
  display: flex;
  width: 1rem;
  height: 1rem;
  justify-content: center;
  align-items: center;
}

.nav-menu li > a .nav-menu-icon svg, .nav-menu li > button .nav-menu-icon svg {
  width: 100%;
  height: 100%;
}

.nav-menu li > a.nav-lang, .nav-menu li > button.nav-lang {
  text-transform: uppercase;
  gap: 0.25rem;
}

.nav-menu li > a.nav-lang .nav-menu-icon, .nav-menu li > button.nav-lang .nav-menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.125rem;
}

.nav-menu.nav-tabs {
  gap: 2.5rem;
}

.nav-menu.nav-tabs li {
  padding-top: calc(1rem - 1px);
  padding-bottom: calc(1rem - 2px);
  border-bottom: 2px solid transparent;
}

.nav-menu.nav-tabs li.active {
  border-bottom-color: var(--heading-color);
}

.nav-menu.nav-tabs li.active a,
.nav-menu.nav-tabs li.active button {
  color: var(--link-color);
}

.nav-menu.nav-tabs li > a,
.nav-menu.nav-tabs li > button {
  color: var(--link-hover-color);
  font-weight: 400;
}

.nav-menu.nav-tabs li > a.nav-title,
.nav-menu.nav-tabs li > button.nav-title {
  font-weight: 600;
}

.nav-logo {
  display: flex;
  margin-top: 0.375rem;
  margin-right: 1.25rem;
  max-width: 100%;
}

.nav-logo svg {
  color: var(--active-color);
  height: 28px;
  width: 121px;
}

.nav-btn {
  margin-right: -0.5rem;
}

footer nav {
  color: var(--footer-link-color);
  font-size: 0.875rem;
}

footer nav a {
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

footer nav .h5 {
  color: var(--footer-heading-color);
  margin-bottom: 1.5rem;
}

footer nav p {
  color: var(--footer-link-color);
  font-size: 0.875rem;
}

footer nav .container-footer {
  position: relative;
}

footer nav .back-to-top {
  position: absolute;
  right: 0.5rem;
  top: -1.25rem;
  border: 2px solid var(--body-bg);
}

footer nav .credits {
  opacity: 0.6;
  margin-top: 0;
}

footer nav .credits p {
  padding-bottom: 0.125rem;
}

footer nav .credits .icon {
  color: var(--footer-link-color);
  margin-bottom: 1px;
}

footer nav .credits a.icon:hover {
  color: var(--footer-link-hover-color);
}

footer nav .credits ul li {
  margin-bottom: 0;
}

footer nav ul li {
  margin-bottom: 0.875rem;
}

footer nav ul li a,
footer nav ul li a:visited {
  color: var(--footer-link-color);
}

footer nav ul li a:hover,
footer nav ul li a:focus {
  color: var(--footer-link-hover-color);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 2rem 0;
}

.breadcrumbs li {
  white-space: nowrap;
}

.breadcrumbs li a,
.breadcrumbs li a:visited {
  color: var(--body-color);
}

.breadcrumbs li a:hover,
.breadcrumbs li a:focus {
  text-decoration-color: var(--body-muted-color);
}

.breadcrumbs li:not(:first-child)::before {
  opacity: 0.5;
  color: var(--body-muted-color);
  content: "/";
  padding-right: calc(0.75rem - 0.5ch);
}

.breadcrumbs li:not(:first-child).active, .breadcrumbs li:not(:first-child).active a, .breadcrumbs li:not(:first-child).active a:visited {
  color: var(--body-muted-color);
}

/*
	Mobile menu
*/
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  min-width: 18rem;
  width: 100%;
  max-width: 27rem;
  background: #fff;
  color: #29323d;
  box-shadow: -0.625rem 0rem 1.875rem rgba(0, 15, 50, 0.1);
  padding-top: 3rem;
}

.mobile-menu .nav-category {
  padding: 1.75rem 1.5rem 0.75rem;
  color: inherit;
}

.mobile-menu ul {
  display: block;
}

.mobile-menu ul li {
  color: #29323d;
  border-bottom: 1px solid #eef1f5;
}

.mobile-menu ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 1.25rem;
  display: block;
  padding: 0.75rem 1.5rem;
}

.aside-nav.sticky {
  position: sticky;
  top: 2rem;
}

.aside-nav.secondary-nav ul {
  border: none;
  margin-left: 0;
}

.aside-nav.secondary-nav ul li a {
  opacity: 0.75;
}

.aside-nav.secondary-nav ul li.active {
  background: none;
}

.aside-nav.secondary-nav ul li.active > a {
  opacity: 1;
  color: var(--body-color);
}

.aside-nav.secondary-nav ul li a,
.aside-nav.secondary-nav ol li a {
  font-size: 0.875rem;
  padding: 0.375rem 0;
  padding-right: 0.25rem;
}

.aside-nav.secondary-nav ol li ol {
  margin-left: 1.25rem;
}

.aside-nav ul li a,
.aside-nav ol li a {
  opacity: 0.66;
  color: var(--body-color);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 1.688rem;
  padding: 0.25rem 0;
  margin: 0.185rem 0;
  transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.aside-nav ul li a:hover,
.aside-nav ol li a:hover {
  color: var(--link-color);
  opacity: 1;
}

.aside-nav ul li a .icon,
.aside-nav ol li a .icon {
  margin-right: 0.5rem;
}

.aside-nav ul li ul,
.aside-nav ol li ul {
  border-left: 1px solid var(--table-border-color);
  margin-bottom: 0.5rem;
  margin-left: 0.475rem;
  padding-left: 0.5rem;
}

.aside-nav ul li ul li,
.aside-nav ol li ul li {
  font-size: 0.875rem;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
}

.aside-nav ul li ul li.active,
.aside-nav ol li ul li.active {
  background: var(--button-main-bg);
}

.aside-nav ul li ul li.active a,
.aside-nav ol li ul li.active a {
  color: var(--button-main-color);
}

.aside-nav ul li.active > a,
.aside-nav ol li.active > a {
  opacity: 1;
  font-weight: 600;
}

button.btn.mobile-menu-close {
  color: #29323d;
  position: absolute;
  right: 1rem;
  top: 1.25rem;
  z-index: 100;
}

button.btn.mobile-menu-close:hover {
  color: #1071f2;
}

.mobile-menu [data-dropdown-close] {
  color: inherit;
}

button[aria-expanded=false] + .mobile-menu-wrapper {
  display: none;
}

/*
	Notice 
*/
.notice {
  background-color: #40487c;
  color: #badcff;
  text-align: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.notice-badge {
  border-radius: 4px;
  padding: 0.2rem 0.375rem 0.1rem;
  height: 1.125rem;
  font-size: 0.675rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-60deg, #f45f20, #f54c52, #7656f3);
}

.notice-promo {
  background: #39b54a;
  color: white;
  font-weight: bold;
}

.notice-promo .notice-cta {
  color: #09390f !important;
}

.notice-promo .notice-badge {
  background: linear-gradient(to right, #adff00, #e0ff1e);
  color: #093a0f;
}

.notice-cta,
.notice-cta:visited {
  white-space: nowrap;
  color: #40a2ff;
}

.notice-cta:active,
.notice-cta:hover,
.notice-cta:focus {
  color: #73baff;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
	Dropdown Menus
*/
.dropdown-wrapper {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -1.25rem;
  min-width: 13rem;
  width: max-content;
  color: var(--dropdown-color);
  background: var(--dropdown-bg);
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.dropdown.right {
  left: auto;
  right: -1.25rem;
}

.dropdown.narrow {
  min-width: 8rem;
}

.dropdown li {
  width: 100%;
}

.dropdown li > a {
  display: flex;
  width: 100%;
  font-size: 0.938rem;
  color: var(--dropdown-color);
  font-family: "Nunito Sans", Helvetica, Arial, sans-Serif;
  font-weight: 400;
  padding: 0.563rem 1rem 0.563rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.dropdown li > a:hover, .dropdown li > a:focus {
  background: var(--dropdown-hover-bg);
  color: var(--dropdown-hover-color);
}

.dropdown li.label span {
  display: flex;
  width: 100%;
  font-size: 0.938rem;
  color: var(--dropdown-color);
  opacity: 0.75;
  padding: 0.563rem 1rem 0.563rem 0.5rem;
}

.dropdown li.separator::after {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: var(--tab-bg);
  padding: 0;
  margin: 0.75rem 0.5rem;
}

button[aria-expanded] + .dropdown {
  display: flex;
  flex-direction: column;
}

button[aria-expanded=false] + .dropdown {
  display: none;
}

@media (hover: hover) {
  .dropdown-wrapper:hover button[aria-expanded] + .dropdown[data-dropdown-hover] {
    display: flex;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Tables
*/
.table-container {
  scroll-snap-type: x mandatory;
  overflow: auto;
}

table.table,
.content table {
  font-size: 1.125rem;
  width: 100%;
  margin: 0 0 2rem;
}

table.table td,
table.table th,
.content table td,
.content table th {
  position: relative;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--table-border-color);
  scroll-snap-align: end;
}

table.table td:last-child,
table.table th:last-child,
.content table td:last-child,
.content table th:last-child {
  border-right: 0;
}

table.table td .icon,
table.table th .icon,
.content table td .icon,
.content table th .icon {
  --icon-size: 1.125rem;
}

table.table td .icon-native,
table.table th .icon-native,
.content table td .icon-native,
.content table th .icon-native {
  --icon-size: inherit;
}

table.table th,
.content table th {
  font-weight: 600;
  color: var(--heading-color);
}

table.table thead tr th,
.content table thead tr th {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

table.table tbody tr th,
.content table tbody tr th {
  text-align: left;
}

table.table tr:last-child td,
table.table tr:last-child th,
.content table tr:last-child td,
.content table tr:last-child th {
  padding-bottom: 1.25rem;
}

table.table + table.table,
.content table + table.table {
  margin-top: -2rem;
  border-top: 1px dotted var(--table-border-color);
}

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

table.table.table-horizontal td,
table.table.table-horizontal th,
.content table.table-horizontal td,
.content table.table-horizontal th {
  border-right: none;
  border-bottom: 1px solid var(--table-border-color);
}

table.table.table-bordered td,
table.table.table-bordered th,
.content table.table-bordered td,
.content table.table-bordered th {
  border: 1px solid var(--table-border-color);
}

table.table.table-bordered thead tr th,
.content table.table-bordered thead tr th {
  padding-top: 0.75rem;
}

table.table.table-bordered tr:last-child td,
table.table.table-bordered tr:last-child th,
.content table.table-bordered tr:last-child td,
.content table.table-bordered tr:last-child th {
  padding-bottom: 0.75rem;
}

table.table.table-lg td,
table.table.table-lg th,
table.table.table-lg thead tr th,
.content table.table-lg td,
.content table.table-lg th,
.content table.table-lg thead tr th {
  padding: 1.125rem 1.25rem;
}

table.table.table-lg tr:last-child td,
table.table.table-lg tr:last-child th,
.content table.table-lg tr:last-child td,
.content table.table-lg tr:last-child th {
  padding: 1.125rem 1.25rem;
}

table.table.table-lg .icon:not(.icon-native),
.content table.table-lg .icon:not(.icon-native) {
  --icon-size: 1.5rem;
}

table.table.table-hover tbody tr td,
table.table.table-hover tbody tr th,
.content table.table-hover tbody tr td,
.content table.table-hover tbody tr th {
  cursor: default;
  transition: background-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

table.table.table-hover tbody tr:hover td,
table.table.table-hover tbody tr:hover th,
.content table.table-hover tbody tr:hover td,
.content table.table-hover tbody tr:hover th {
  background: var(--table-active-bg);
}

table.table.table-vertically-centered tr td,
table.table.table-vertically-centered tr th,
.content table.table-vertically-centered tr td,
.content table.table-vertically-centered tr th {
  vertical-align: middle;
}

.content table {
  border: 1px solid var(--table-border-color);
  font-size: 1rem;
}

.content table th,
.content table td {
  padding: 0.75rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--table-border-color);
}

.content table thead tr th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: var(--table-active-bg);
}

.content table tr:last-child td,
.content table tr:last-child th {
  padding-bottom: 0.75rem;
}

@media (max-width: 576px) {
  table tr th {
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Inputs & Forms
*/
.input {
  display: flex;
  flex-direction: row;
  max-width: 24rem;
  margin: 0.5rem 0;
  justify-content: flex-start;
  --icon-size: 1.25rem;
}

.input form {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.input input[type=text],
.input input[type=email],
.input input[type=password],
.input input[type=file],
.input select,
.input textarea {
  font-family: var(--moqups-display);
  font-size: 1rem;
  line-height: 1.2;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.563rem 0.625rem;
  transition: border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--input-color);
  border: 1.5px solid var(--input-border-color);
  border-radius: 0.375rem;
  background: var(--input-bg);
  appearance: none;
}

.input input[type=text]::placeholder,
.input input[type=email]::placeholder,
.input input[type=password]::placeholder,
.input input[type=file]::placeholder,
.input select::placeholder,
.input textarea::placeholder {
  color: var(--input-placeholder-color);
}

.input input[type=text]:placeholder-shown,
.input input[type=email]:placeholder-shown,
.input input[type=password]:placeholder-shown,
.input input[type=file]:placeholder-shown,
.input select:placeholder-shown,
.input textarea:placeholder-shown {
  text-overflow: ellipsis;
}

.input input[type=text]:hover,
.input input[type=email]:hover,
.input input[type=password]:hover,
.input input[type=file]:hover,
.input select:hover,
.input textarea:hover {
  --input-border-color: var(--input-placeholder-color);
}

.input input[type=text]:active, .input input[type=text]:focus,
.input input[type=email]:active,
.input input[type=email]:focus,
.input input[type=password]:active,
.input input[type=password]:focus,
.input input[type=file]:active,
.input input[type=file]:focus,
.input select:active,
.input select:focus,
.input textarea:active,
.input textarea:focus {
  --input-border-color: var(--input-active-color);
}

.input input[type=file]:hover,
.input select:hover {
  cursor: pointer;
}

.input.input-no-border {
  --input-border-color: transparent;
  --input-active-color: var(--input-color);
}

.input.input-lg {
  --icon-size: 1.5rem;
}

.input.input-lg input[type=text],
.input.input-lg input[type=email],
.input.input-lg input[type=password],
.input.input-lg select,
.input.input-lg textarea {
  font-size: 1.25rem;
  padding: 1.063rem 0.625rem;
  border-radius: 0.5rem;
}

.input.input-sm {
  --icon-size: 1rem;
}

.input.input-sm input[type=text],
.input.input-sm input[type=email],
.input.input-sm input[type=password],
.input.input-sm select,
.input.input-sm textarea {
  font-size: 0.875rem;
  padding: 0.438rem 0.625rem;
}

.input.input-round input[type=text],
.input.input-round input[type=email],
.input.input-round input[type=password],
.input.input-round select,
.input.input-round textarea {
  border-radius: 2rem;
}

.input.input-icon-left, .input.input-icon-right, .input.input-icon-both {
  position: relative;
}

.input.input-icon-left svg,
.input.input-icon-left .input-button, .input.input-icon-right svg,
.input.input-icon-right .input-button, .input.input-icon-both svg,
.input.input-icon-both .input-button {
  color: var(--body-color);
  position: absolute;
  top: calc(50% - var(--icon-size) * 0.5);
  min-width: var(--icon-size);
  height: var(--icon-size);
  pointer-events: none;
}

.input.input-icon-left:focus-within svg, .input.input-icon-right:focus-within svg, .input.input-icon-both:focus-within svg {
  color: var(--input-active-color);
}

.input.input-icon-left input[type=text],
.input.input-icon-left input[type=email],
.input.input-icon-left input[type=password],
.input.input-icon-left select,
.input.input-icon-left textarea {
  padding-left: calc(var(--icon-size) * 1.75);
}

.input.input-icon-left svg,
.input.input-icon-left .input-button {
  left: calc(var(--icon-size) * 0.5);
}

.input.input-icon-right input[type=text],
.input.input-icon-right input[type=email],
.input.input-icon-right input[type=password],
.input.input-icon-right select,
.input.input-icon-right textarea {
  padding-right: calc(var(--icon-size) * 1.75);
}

.input.input-icon-right svg,
.input.input-icon-right .input-button {
  right: calc(var(--icon-size) * 0.5);
}

.input.input-icon-both input[type=text],
.input.input-icon-both input[type=email],
.input.input-icon-both input[type=password],
.input.input-icon-both select,
.input.input-icon-both textarea {
  padding-left: calc(var(--icon-size) * 1.75);
  padding-right: calc(var(--icon-size) * 1.75);
}

.input.input-icon-both input[type=text] + svg, .input.input-icon-both input[type=text] + .input-button,
.input.input-icon-both input[type=email] + svg,
.input.input-icon-both input[type=email] + .input-button,
.input.input-icon-both input[type=password] + svg,
.input.input-icon-both input[type=password] + .input-button,
.input.input-icon-both select + svg,
.input.input-icon-both select + .input-button,
.input.input-icon-both textarea + svg,
.input.input-icon-both textarea + .input-button {
  left: auto;
  right: calc(var(--icon-size) * 0.5);
}

.input.input-icon-both svg,
.input.input-icon-both .input-button {
  left: calc(var(--icon-size) * 0.5);
}

.input.input-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.input.input-block label {
  font-size: 0.875rem;
  width: 100%;
}

.input .input-button {
  cursor: pointer;
}

.input .input-button svg {
  pointer-events: all;
  position: static;
  left: 0;
  right: 0;
  top: 0;
}

.input input[type=checkbox],
.input input[type=radio] {
  margin: 0.5rem 0;
}

.input input[type=checkbox] + label,
.input input[type=radio] + label {
  font-weight: 400;
  margin: 0.5rem 0 0.5rem 0.625rem;
}

.input input[type=checkbox] {
  font-size: 1rem;
  position: relative;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  appearance: none;
}

.input input[type=checkbox]:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 2px solid var(--input-border-color);
  border-radius: 0.1875rem;
  background-color: var(--input-bg);
}

.input input[type=checkbox]:checked:before {
  border-color: var(--input-active-color);
  background-color: var(--input-active-color);
}

.input input[type=checkbox]:checked:after {
  position: absolute;
  top: 0.125rem;
  left: 0.375rem;
  display: block;
  width: 0.3125rem;
  height: 0.625rem;
  content: "";
  transform: rotate(45deg);
  border: solid var(--input-bg);
  border-width: 0 0.125rem 0.125rem 0;
}

.input label {
  font-weight: 700;
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .input {
    max-width: none;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Buttons
*/
.btn {
  --h: 0;
  --s: 0;
  --l: 0;
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.1;
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  color: var(--button-color);
  border: 0;
  border-radius: 0.5rem;
  background: var(--button-bg);
}

.btn:visited {
  color: var(--button-color);
}

.btn:focus, .btn:hover {
  color: var(--button-color);
  background: var(--button-hover-bg);
}

.btn.btn-primary {
  color: #29323d;
  background: #ffe533;
  box-shadow: rgba(255, 229, 51, 0.1) 0 0.3rem 2rem 0;
}

.btn.btn-primary:focus, .btn.btn-primary:hover {
  color: #29323d;
  background: #fed62c;
}

.btn.btn-secondary {
  color: #fff;
  background: #f45f20;
  box-shadow: rgba(244, 95, 32, 0.1) 0 0.3rem 2rem 0;
}

.btn.btn-secondary:focus, .btn.btn-secondary:hover {
  color: #fff;
  background: #e6581b;
}

.btn.btn-main {
  color: var(--button-main-color);
  background: var(--button-main-bg);
}

.btn.btn-main:focus, .btn.btn-main:hover {
  color: var(--button-main-color);
  background: var(--button-main-hover-bg);
}

.btn.btn-dark {
  color: #fff;
  background: #29323d;
  box-shadow: rgba(41, 50, 61, 0.1) 0 0.3rem 2rem 0;
}

.btn.btn-dark:focus, .btn.btn-dark:hover {
  color: #fff;
  background: #3b4754;
}

.btn.btn-outline {
  color: var(--button-color);
  border: 2px solid var(--button-color);
  background: transparent;
  box-shadow: none;
  padding: calc(0.75rem - 2px) 1.5rem;
  transition: color 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn.btn-outline:focus, .btn.btn-outline:hover {
  opacity: 0.85;
  color: var(--active-color);
  background: transparent;
  border-color: var(--active-color);
}

.btn.btn-promo {
  --contrast: 66%;
  --switch: calc((var(--l) - var(--contrast)) * -34);
  --color: hsla(var(--h), var(--s), var(--switch), 0.92);
  --promo-bg: hsl(var(--h), var(--s), var(--l));
  background: var(--promo-bg);
  color: var(--color);
  box-shadow: 0 0.25rem 0.75rem hsla(var(--h), var(--s), calc(var(--l) - 10%), 0.15);
}

.btn.btn-promo:focus, .btn.btn-promo:hover {
  background: hsl(var(--h), calc(var(--s) - 5%), calc(var(--l) - 5%));
}

.btn.btn-text {
  color: var(--link-color);
  background: transparent;
}

.btn.btn-text:focus, .btn.btn-text:hover {
  color: var(--link-hover-color);
}

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

.btn.btn-wide {
  min-width: 15rem;
}

.btn.btn-icon {
  padding: 0.5rem;
  --icon-size: 1.5rem;
}

.btn.btn-icon svg {
  transform: translate(0px, 0px);
  width: var(--icon-size);
  height: var(--icon-size);
}

.btn .icon {
  color: currentColor;
}

.btn.btn-icon-left, .btn.btn-icon-right {
  --icon-size: 1rem;
  gap: 0.675rem;
}

.btn.btn-icon-left svg, .btn.btn-icon-right svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.btn.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
}

.btn.btn-sm.btn-icon {
  padding: 0.25rem;
  --icon-size: 1.25rem;
}

.btn.btn-sm.btn-outline {
  border-width: 1px;
  padding: calc(0.625rem - 1px) 0.75rem;
}

.btn.btn-md {
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.btn.btn-md.btn-icon {
  padding: 0.375rem;
  --icon-size: 1.5rem;
}

.btn.btn-md.btn-outline {
  padding: calc(1rem - 2px) 1.5rem;
}

.btn.btn-lg {
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 0.625rem;
}

.btn.btn-lg.btn-icon {
  padding: 0.5rem;
  --icon-size: 2rem;
}

.btn.btn-lg .icon {
  --icon-size: 2rem;
}

.btn.btn-lg.btn-outline {
  padding: calc(1.25rem - 2px) 2rem;
}

.btn.btn-round {
  border-radius: 3rem;
}

.btn.shadow, .btn.shadow-md {
  box-shadow: 0.5rem 0.75rem 1.875rem rgba(0, 15, 50, 0.1);
}

.btn.shadow-xs {
  box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}

.btn.shadow-sm {
  box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}

.btn.shadow-lg {
  box-shadow: 0.625rem 1.875rem 1.875rem rgba(0, 15, 50, 0.1);
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Cards
*/
.card {
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--well-border-color);
  border-radius: 0.875rem;
  margin-bottom: 2rem;
  box-shadow: 0 0.125rem 0.25rem rgba(34, 39, 47, 0.05), 0 0.375rem 0.5rem rgba(34, 39, 47, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 60ch;
  background: var(--well-bg);
  color: var(--well-color);
}

.card figcaption {
  font-size: 1rem;
}

.card figcaption cite.bio {
  color: var(--body-muted-color);
}

.card.no-shadow {
  box-shadow: none;
}

.card.bordered {
  border: 1px solid var(--well-border-color);
}

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

.card.has-banner {
  position: relative;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card .card-banner-container {
  position: absolute;
  display: flex;
  top: -5rem;
  align-items: end;
  height: 5rem;
  flex-direction: column-reverse;
  left: 0;
  right: 0;
}

.card .card-banner {
  padding: 0.5rem 1.5rem;
  width: 100%;
  text-align: center;
  color: #eef1f5;
  background: #1071f2;
  font-weight: bold;
  border-radius: 0.5rem 0.5rem 0 0;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Wells
*/
.well {
  --h: 0;
  --s: 0;
  --l: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  background: var(--well-bg);
  display: block;
  border-bottom: 1px solid var(--well-border-color);
  color: var(--body-color);
}

.well.ar-16-9 {
  aspect-ratio: 16/9;
}

.well .icon {
  color: var(--well-icon-color);
}

.well .btn .icon {
  color: currentColor;
}

.well.help-tip {
  --body-color: #29323d;
  --well-border-color: #badcff;
  --well-bg: #e2f1ff;
  --well-icon-color: #1071f2;
  box-shadow: 0 0.375rem 0.5rem rgba(24, 62, 172, 0.07);
}

.well.help-note {
  --body-color: #29323d;
  --well-border-color: #ffcfbd;
  --well-bg: #fbeae8;
  --well-icon-color: #ff7b45;
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}

.well.shadow, .well.help-search {
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}

.well.well-link {
  border: 1px solid var(--well-border-color);
  transition: border 0.2s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.well.well-link:visited {
  color: var(--body-color);
}

.well.well-link:hover, .well.well-link:focus {
  color: var(--body-color);
  border-color: var(--tab-active-border);
  box-shadow: 0 0.375rem 0.5rem rgba(59, 71, 84, 0.07);
}

.well.well-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.well.well-md {
  padding: 2rem 3rem;
  border-radius: 1.25rem;
}

.well.well-lg {
  padding: 3rem 4rem;
  border-radius: 1.5rem;
}

.well.well-xl {
  padding: 3.5rem 5rem;
  border-radius: 2.5rem;
}

.well.well-promo {
  --contrast: 72%;
  --switch: calc((var(--l) - var(--contrast)) * -34);
  --heading-color: hsla(var(--h), var(--s), var(--switch), 0.8);
  --body-muted-color: hsla(var(--h), var(--s), var(--switch), 0.6);
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 1.5rem;
  border: 0;
  --promo-bg: hsl(var(--h), var(--s), var(--l));
  background: var(--promo-bg);
  color: var(--body-muted-color);
  box-shadow: 0 0.5rem 1.5rem hsla(var(--h), var(--s), calc(var(--l) - 10%), 0.3);
}

.well.well-promo.well-promo-image {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.well.well-promo .promo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  max-height: 10rem;
}

.well.well-promo .promo-image img {
  object-fit: contain;
  vertical-align: bottom;
  max-height: 10rem;
}

.well.well-promo .promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.well.well-promo .banner-success {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: var(--promo-bg);
  border-radius: 1.5rem;
  border: 0;
}

.well.well-promo .text-gradient {
  --gradient-end: hsla(var(--h), var(--s), var(--switch), 0.9);
  --gradient-start: hsla(var(--h), var(--s), var(--switch), 0.6);
}

.well.well-promo .input {
  --input-border-color: transparent;
}

.well.well-comment-left {
  border-bottom-left-radius: 0.5rem;
}

.well.well-comment-right {
  border-bottom-right-radius: 0.5rem;
}

.well.no-shadow {
  box-shadow: none;
}

.well.no-border {
  border: 0;
}

.well.shadow, .well.shadow-md {
  box-shadow: 0.5rem 0.75rem 1.875rem rgba(0, 15, 50, 0.1);
}

.well.shadow-xs {
  box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}

.well.shadow-sm {
  box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}

.well.shadow-lg {
  box-shadow: 0.625rem 1.875rem 1.875rem rgba(0, 15, 50, 0.1);
}

.well.well-fade-left {
  background-color: transparent;
  background-image: linear-gradient(to right, transparent, var(--well-bg));
}

.well.well-fade-right {
  background-color: transparent;
  background-image: linear-gradient(to left, transparent, var(--well-bg));
}

.well.well-sticky {
  position: sticky;
  top: 1.5rem;
}

.well kbd,
.well code {
  background: #fff;
}

.content-markdown .well {
  margin: 2rem 0;
}

.content-markdown .well + h2 {
  margin-top: 3rem;
}

.content-markdown .well p:last-child,
.content-markdown .well ol:last-child,
.content-markdown .well ul:last-child {
  margin-bottom: 0;
}

.content-markdown .well ul li,
.content-markdown .well ol li {
  margin-left: 0.875em;
}

header.sticky + main .well.well-sticky {
  top: calc(var(--sticky-header-height) + 1.5rem);
}

@media (min-width: 991px) {
  .well.well-lg-xl {
    padding: 3.5rem 5rem;
    border-radius: 2.5rem;
  }
}
@media (max-width: 768px) {
  .well.well-lg {
    padding: 2rem 2rem;
  }
  .well.well-xl {
    padding: 3rem 2rem;
  }
}
/*
  Tabs
*/
.tabs {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tabs .tab {
  font-family: var(--moqups-display);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0.5rem 1.125rem;
  white-space: nowrap;
  color: var(--body-color);
  border: 1.5px solid transparent;
  border-radius: 6rem;
  background: var(--tab-bg);
}

.tabs .tab.tab-icon-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0;
  padding-bottom: 0;
}

.tabs .tab.tab-icon-left .icon {
  display: flex;
  align-items: center;
}

.tabs .tab.tab-with-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.tabs .tab.tab-with-tags .tag {
  padding: 0.375rem 0.5rem;
  border-radius: 6rem;
}

.tabs .tab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tabs .tab:hover {
  border-color: rgba(0, 0, 0, 0.05);
}

.tabs .tab:visited {
  color: var(--body-color);
}

.tabs .tab.active {
  color: var(--tab-active-color);
  border-color: var(--tab-active-border);
  background: var(--tab-active-bg);
}

.tabs.tabs-sm .tab {
  padding: 0.375rem 1rem;
}

.tabs.tabs-sm .tab.tab-icon-left {
  padding: 0 2rem 0 1.625rem;
}

.tabs.tabs-lg .tab {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.tabs.tabs-lg .tab.tab-icon-left {
  padding: 0.75rem 2rem 0.75rem 1.625rem;
}

.tabs.tabs-lg .tab svg {
  width: 2rem;
  height: 2rem;
}

.tabs.tabs-switcher {
  background: var(--tab-bg);
  border-radius: 1.875rem;
  padding: 0.375rem;
  display: inline-flex;
}

.tabs.tabs-switcher .tab.active {
  box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}

.tab-content {
  display: none;
}

.tab-content.show {
  display: block;
}

@media (max-width: 576px) {
  .tabs-switcher {
    flex-direction: column;
    width: 100%;
  }
  .tabs-switcher .tab {
    text-align: center;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
  Icons, images and videos
*/
.image.ar-16-9 picture,
.ar-16-9 img,
.ar-16-9 video {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
  display: inline-block;
}

.ar-4-3 picture,
.ar-4-3 img,
.ar-4-3 video {
  aspect-ratio: 4/3;
  height: auto;
  width: 100%;
}

.ar-1-1 picture,
.ar-1-1 img,
.ar-1-1 video {
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  object-fit: contain; /* any use case of stretching? */
}

.ar-phone picture,
.ar-phone img,
.ar-phone video {
  aspect-ratio: 9/19.5;
  height: auto;
  width: 100%;
}

.container-bg {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.icon {
  --icon-size: 1.25em;
  display: inline-block;
  vertical-align: middle;
  width: var(--icon-size);
  height: var(--icon-size);
}

.icon svg {
  transform: translate(0px, 0px);
  width: var(--icon-size);
  height: var(--icon-size);
}

.icon.icon-native {
  --icon-size: inherit;
  width: auto;
  height: auto;
}

.icon.icon-native svg {
  max-width: 100%;
}

.icon.icon-xl {
  --icon-size: 3.5rem;
}

.icon.icon-lg {
  --icon-size: 2.5rem;
}

.icon.icon-2rem {
  --icon-size: 2rem;
}

.icon.icon-md {
  --icon-size: 1.5rem;
}

.icon.icon-sm {
  --icon-size: 1rem;
}

.icon.icon-primary {
  color: var(--link-color);
}

.icon.icon-secondary {
  color: #f45f20;
}

.icon.icon-muted {
  color: var(--body-muted-color);
}

.icon.icon-well {
  width: calc(var(--icon-size) + 3rem);
  height: calc(var(--icon-size) + 3rem);
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  background: var(--well-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--well-border-color);
  color: var(--body-color);
}

.content .image,
.content .image-overlay {
  margin-bottom: 1.5rem;
}

.content .image-overlay .image {
  margin-bottom: 0;
}

.content-markdown p > img,
.content-markdown p > video {
  display: inline-block;
  vertical-align: top;
  object-fit: contain;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 15, 50, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}

.content-markdown p + p > img,
.content-markdown p + p > video {
  margin-top: 0.5rem;
}

.image {
  --img-size: 100%;
  --img-border-radius: 0.25rem;
  --img-box-shadow: none;
  display: flex;
  flex-direction: column;
  width: var(--img-size);
}

.image picture,
.image video {
  display: flex;
  overflow: hidden;
}

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

.image.image-center picture {
  width: auto;
}

.image img {
  display: inline-block;
  vertical-align: top;
  object-fit: contain;
}

.image.image-cover > img, .image.image-cover > picture, .image.image-cover > video {
  object-fit: cover;
}

.image > img, .image > picture, .image > video {
  border-radius: var(--img-border-radius);
  width: var(--img-size);
  height: var(--img-size);
  box-shadow: var(--img-box-shadow);
  background: var(--body-bg);
}

.image figcaption {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.3;
  margin-top: 0.75rem;
  padding: 0 1rem;
  text-align: center;
  letter-spacing: -0.1pt;
  opacity: 0.5;
  color: var(--body-color);
  text-decoration: none;
}

.image.size-lg {
  --img-size: 8rem;
}

.image.size-md {
  --img-size: 4rem;
}

.image.size-sm {
  --img-size: 2.75rem;
}

.image.size-xs {
  --img-size: 2rem;
}

.image.size-xxs {
  --img-size: 1rem;
}

.image.grayscaled {
  filter: contrast(1.1) brightness(1.05) grayscale(1);
}

.image.parallax {
  --limit: calc(100vh / 4);
  --scale: 15;
  position: relative;
}

.image.parallax > picture {
  transform: translateY(clamp(-1 * var(--limit), var(--parallaxPos) / var(--scale) * 1px, var(--limit)));
  will-change: transform;
  perspective: 1rem;
}

.image.parallax.parallax-sm {
  --scale: 20;
}

.image.parallax.parallax-md {
  --scale: 15;
}

.image.parallax.parallax-lg {
  --scale: 5;
}

.image.elevated > img, .image.elevated picture, .image.elevated > video {
  border: 2px solid rgba(0, 15, 50, 0.1);
  border-left-color: rgba(0, 15, 50, 0.05);
  border-right-color: rgba(0, 15, 50, 0.1);
  border-top-width: 0;
}

.image.bordered > img, .image.bordered picture, .image.bordered > video {
  border: 1px solid rgba(0, 15, 50, 0.1);
}

.image.tinted > img, .image.tinted picture, .image.tinted > video {
  filter: brightness(98%);
}

.image.round, .image.circle {
  --img-border-radius: 50%;
}

.image.rounded, .image.rounded-md {
  --img-border-radius: 1rem;
}

.image.rounded-sm {
  --img-border-radius: 0.5rem;
}

.image.rounded-lg {
  --img-border-radius: 1.5rem;
}

.image.no-rounded {
  --img-border-radius: 0;
}

.image.shadow, .image.shadow-md {
  --img-box-shadow: 0.5rem 0.75rem 1.875rem rgba(0, 15, 50, 0.1);
}

.image.shadow-xs {
  --img-box-shadow: 0px 2px 0.175rem rgba(0, 15, 50, 0.05);
}

.image.shadow-sm {
  --img-box-shadow: 1px 3px 0.375rem rgba(0, 15, 50, 0.07);
}

.image.shadow-lg {
  --img-box-shadow: 0.625rem 1.875rem 1.875rem rgba(0, 15, 50, 0.1);
}

.image.no-bg > img, .image.no-bg > picture, .image.no-bg > video {
  background: none;
}

a:hover .image.bordered > img,
a:hover .image.bordered picture {
  border: 1px solid rgba(0, 15, 50, 0.2);
}

.image-hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}

.image-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}

.image-overlay .image {
  position: relative;
}

.image-overlay figcaption {
  position: absolute;
  z-index: 10;
  line-height: 1rem;
  top: calc(50% - 2.25rem);
  text-align: center;
  left: 0;
  right: 0;
  font-family: "Figtree", Helvetica, Arial, sans-Serif;
  font-weight: 650;
  color: #fff;
  font-style: normal;
  font-size: calc(0.75rem + 2cqi);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1), top 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-overlay .image::before {
  content: "";
  border-radius: var(--img-border-radius);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 8;
  background: rgba(5, 24, 55, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 25, 50, 0.15);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-overlay .image:hover figcaption {
  opacity: 1;
  top: calc(50% - 1.25rem);
}

.image-overlay .image:hover::before {
  opacity: 1;
}

.image-overlay.image-overlay--secondary .image::before {
  background: rgba(16, 104, 221, 0.75);
}

.image-hc-bottom {
  margin-top: -42px;
  max-height: 250px;
}

.youtube-embed {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.youtube-embed.rounded-md {
  border-radius: 1rem;
}

.youtube-embed.rounded-sm {
  border-radius: 0.5rem;
}

.youtube-embed.rounded-lg {
  border-radius: 1.5rem;
}

@media (min-width: 767px) {
  .background-hc {
    background-image: url("/img/imagery/help-center-left2.png"), url("/img/imagery/help-center-right2.png");
    background-position: calc(50% - 320px) center, calc(50% + 360px) 80%;
    background-size: 380px, 370px;
    background-repeat: no-repeat, no-repeat;
  }
  .image-hc-bottom {
    margin-top: 0;
  }
}
@media (min-width: 991px) {
  .background-hc {
    background-position: calc(50% - 380px) center, calc(50% + 410px) center;
  }
}
@media (min-width: 1199px) {
  .background-hc {
    background-position: calc(50% - 420px) center, calc(50% + 440px) center;
  }
  .image-hc-bottom {
    margin-top: -42px;
  }
}
@media (min-width: 1680px) {
  .image.parallax {
    --scale: 40;
  }
  .hero-image {
    margin-top: 5%;
    margin-bottom: 5%;
    transform: scale(1.2);
    transform-origin: center left;
  }
}
@media (max-width: 576px) {
  .image.parallax {
    --scale: 80;
  }
}
@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
/*
	FAQs
*/
.question-wrapper + .question-wrapper {
  border-top: 1px solid var(--table-border-color);
}

details.faq,
details.question {
  padding: 0.5rem 0;
}

details.faq + details.faq,
details.question + details.faq {
  border-top: 1px solid var(--table-border-color);
}

details.faq[open] summary .icon,
details.question[open] summary .icon {
  transform: rotate(180deg);
}

details.faq.faq-sm summary, details.faq.question-sm summary,
details.question.faq-sm summary,
details.question.question-sm summary {
  padding: 0.75rem 0;
}

details.faq.faq-sm summary .icon, details.faq.question-sm summary .icon,
details.question.faq-sm summary .icon,
details.question.question-sm summary .icon {
  --icon-size: 1.5rem;
}

details.faq.faq-sm p, details.faq.question-sm p,
details.question.faq-sm p,
details.question.question-sm p {
  font-size: 1rem;
}

details.faq summary,
details.question summary {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

details.faq summary .icon,
details.question summary .icon {
  --icon-size: 2rem;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

details.faq summary::-webkit-details-marker,
details.question summary::-webkit-details-marker {
  display: none;
}

details .answer {
  position: relative;
}

.qa-permalink {
  position: absolute;
  top: 0em;
  left: -1.25em;
  padding: 0.2em;
  color: inherit;
}

@media (min-width: 992px) {
  details.question .answer {
    padding-right: 2rem;
  }
}
/*
  Search content
  --------------
*/
.search-wrapper {
  max-width: 24rem;
  position: relative;
  transition: max-width 0.3s ease;
}

.search-wrapper.left-align .search-results-wrapper {
  right: auto;
  left: 0;
}

.search-wrapper {
  /*
  	When focused, expand the input.
  */
}

.search-wrapper:focus, .search-wrapper:focus-within {
  max-width: 100rem;
}

.search-wrapper {
  /* 
  	For browsers supporting :has(), 
  	keep the input expanded even when not focused
  	when it has a search term.
  */
}

.search-wrapper:has(.has-term) {
  max-width: 100rem;
}

.search-form:not(.has-term) [type=reset] {
  display: none;
}

/*
	Search results
	--------------
*/
.search-results-wrapper {
  position: absolute;
  contain: layout;
  top: calc(100% + 0.25rem);
  right: 0;
  z-index: 200;
  padding: 0;
  border-radius: 0.5rem;
  max-height: 54vh;
  left: auto;
  overflow-x: hidden;
  overflow: auto;
  width: 100%;
}

.search-results-wrapper:not(.has-term) {
  display: none;
}

.search-results-wrapper.has-results .no-results, .search-results-wrapper:not(.has-results) .search-results-list:not(.no-results) {
  display: none;
}

.search-results-list {
  display: flex; /*none?*/
  overflow-x: hidden;
  overflow: auto;
  flex-direction: column;
}

.search-results-list .search-result,
.search-results-list .label {
  display: flex;
  width: auto;
  margin: 0 1rem;
}

.search-results-list .search-result:first-of-type,
.search-results-list .label:first-of-type {
  margin-top: 0.75rem;
}

.search-results-list .search-result:last-of-type,
.search-results-list .label:last-of-type {
  margin-bottom: 0.75rem;
}

.search-results-list .search-result-title {
  flex-grow: 1;
  margin: 0;
  font-size: 1rem;
}

.search-results-list .search-result-title:hover + .search-preview {
  z-index: 2;
}

.search-results-list .search-result-title:focus + .search-preview {
  z-index: 1;
}

.search-preview {
  display: none;
  width: 12rem;
  flex: none;
  position: fixed;
  contain: layout;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 1rem 1.5rem;
  border-left: 1px solid rgba(0, 15, 50, 0.1);
  background-color: var(--input-bg);
  max-height: 100%;
  overflow: hidden;
}

.search-preview .search-preview-title {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0.5rem 0 0;
  padding: 0;
  color: var(--dropdown-color);
}

.search-preview .search-preview-excerpt {
  font-size: 0.75rem;
  margin: 0.375rem 0 0;
  padding: 0;
  color: var(--dropdown-color);
}

@media (min-width: 768px) {
  .search-results-wrapper {
    min-width: 36rem;
  }
  .search-results-wrapper.has-results {
    min-height: 18.5rem;
  }
  .search-results-list:not(.no-results) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 12rem;
  }
  .search-result-title:hover + .search-preview,
  .search-result-title:focus + .search-preview {
    display: block;
  }
}
.search-wrapper--no-thumb [data-search-result-image],
.search-wrapper--no-desc [data-search-result-desc],
.search-wrapper--no-excerpt [data-search-result-excerpt] {
  display: none;
}

/*
	Suppress pagefind dots for loading results
*/
[data-pfmod-loading] {
  opacity: 0;
}

/* dont include search inputs in global rem resize for mobile */
@media (max-width: 420px) {
  .search-wrapper.input input {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .search-wrapper.input input {
    font-size: 16px;
  }
}
/*
  GDPR consent box
*/
.consent-box {
  --link-color: var(--body-color);
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 400;
  background: var(--body-bg);
  border-radius: 0.5rem;
  border: 1px solid var(--tab-bg);
  padding: 1rem 2rem 1rem 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
  box-shadow: 0rem 0.5rem 0.5rem rgba(0, 15, 50, 0.2);
}

.consent-box p {
  font-size: 0.875rem;
  padding-right: 3rem;
}

.consent-box .consent-deny:hover {
  text-decoration: underline;
  color: var(--link-color);
}

.consent-box .consent-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0.5;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes backgroundShimmer {
  0% {
    background-position: -668px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.v-separator {
  display: block;
  width: 1px;
  height: 1rem;
  background: var(--body-muted-color);
}

.newsletter-thanks {
  position: relative;
  text-align: center;
  max-width: 680px;
  min-height: 380px;
  padding: 72px 0 0;
  margin: 90px auto;
  background: url("/img/blog/thanks-bg.png") no-repeat 0 0;
  background-size: 680px auto;
}

@media (max-width: 767px) {
  .newsletter-thanks {
    background: none;
    margin: 30px auto;
  }
}
.newsletter-thanks::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 0;
  background: url("/img/blog/thanks-1.png") no-repeat center center;
  background-size: 180px auto;
  width: 320px;
  height: 320px;
}

@media (max-width: 767px) {
  .newsletter-thanks::before {
    display: none;
  }
}
.newsletter-thanks::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 16px;
  background: url("/img/blog/thanks-2.png") no-repeat center center;
  background-size: 180px auto;
  width: 320px;
  height: 320px;
}

@media (max-width: 767px) {
  .newsletter-thanks::after {
    display: none;
  }
}
.newsletter-thanks h1 {
  font-size: 60px;
  color: #1071f2;
}

@media (max-width: 575px) {
  .newsletter-thanks h1 {
    font-size: 48px;
  }
}
.newsletter-thanks .entry .entry-content {
  margin: 0 auto;
  max-width: 320px;
}

.newsletter-thanks .entry .entry-content .wp-block-button {
  margin-top: 10px;
}

[data-article-hidden] {
  display: none;
}

.content-blog .image {
  margin-bottom: 2.5rem;
}

/* weird markup fixes */
.content-blog .image p,
.content-blog p:empty {
  margin: 0;
}

.content-blog h4 {
  font-size: 1.25rem;
}

/* 
applying default blog sizing for old posts 
for new posts use 'btn-md my-2' classes in buttons
*/
.content-blog .btn {
  font-size: 1.125rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p.lead-blog {
  font-size: 1.5rem;
}

@media (min-width: 1900px) {
  html {
    font-size: 18px;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .col-xxxl-12 {
    flex: 1 0 0%;
  }
}
.blog-tags {
  font-family: var(--moqups-display);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-tags > * {
  background: #eef1f5;
  color: #798da3;
  border-radius: 0.5em;
  padding: 0.25em 0.625em;
  letter-spacing: 0.05em;
}

.text-center .blog-tags {
  justify-content: center;
}

.blog-template-box {
  --bg-color: #eef1f5;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 1rem;
  border-radius: 1.25rem;
  background: var(--bg-color);
  justify-content: center;
  align-items: center;
}

.blog-template-box .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.blog-template-box figcaption {
  opacity: 0.75;
}

.blog-template-box a figure picture {
  position: relative;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  bottom: 0;
}

.blog-template-box a:hover figure picture {
  bottom: 5px;
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.container,
.container-fluid {
  background-color: var(--body-bg);
  color: var(--body-color);
}

.theme-blue {
  --link-color: #fff;
  --link-hover-color: #e2f1ff;
  --link-underline-color: #73baff;
  --heading-color: #fff;
  --active-color: #fff;
  --body-color: #f1f7fd;
  --body-muted-color: rgba(241, 247, 253, 0.5);
  --body-bg: #1071f2;
  --table-active-bg: #1068dd;
  --table-border-color: #185dcb;
  --tab-bg: rgba(0, 0, 70, 0.1);
  --tab-active-color: #1071f2;
  --tab-active-bg: #fff;
  --tab-active-border: #fff;
  --button-bg: #185dcb;
  --button-color: #fff;
  --button-hover-bg: #183eac;
  --button-main-bg: #fff;
  --button-main-color: #1068dd;
  --button-main-hover-bg: #e2f1ff;
  --input-bg: #1068dd;
  --input-color: #fff;
  --input-active-color: #fff;
  --input-placeholder-color: #73baff;
  --input-border-color: #1068dd;
  --well-bg: #1068dd;
  --well-color: #f1f7fd;
  --well-icon-color: #f1f7fd;
  --footer-heading-color: #fff;
  --footer-link-color: #badcff;
  --footer-link-hover-color: #73baff;
  --container-filter: brightness(100);
}

.theme-dark {
  --link-color: #fff;
  --link-hover-color: #dee4eb;
  --link-underline-color: rgba(255, 255, 255, 0.2);
  --heading-color: #fff;
  --active-color: #fff;
  --body-color: #dee4eb;
  --body-muted-color: rgba(222, 228, 235, 0.5);
  --body-bg: #22272f;
  --table-active-bg: #29323d;
  --table-border-color: #3b4754;
  --tab-bg: rgba(205, 205, 255, 0.1);
  --tab-active-color: #22272f;
  --tab-active-bg: #fff;
  --tab-active-border: transparent;
  --dropdown-bg: #29323d;
  --dropdown-color: #dee4eb;
  --dropdown-hover-color: #fff;
  --dropdown-hover-bg: #3b4754;
  --button-bg: #3b4754;
  --button-color: #fff;
  --button-hover-bg: #29323d;
  --button-main-bg: #fff;
  --button-main-color: #29323d;
  --button-main-hover-bg: #dee4eb;
  --input-bg: #3b4754;
  --input-color: #fff;
  --input-active-color: #fff;
  --input-placeholder-color: #677d92;
  --input-border-color: #3b4754;
  --well-bg: #29323d;
  --well-color: #eef1f5;
  --well-icon-color: #eef1f5;
  --footer-heading-color: #c9d3dd;
  --footer-link-color: #798da3;
  --footer-link-hover-color: #677d92;
  --container-filter: brightness(100);
}

.theme-light {
  --body-bg: #f7f8f9;
  --table-active-bg: #eef1f5;
  --tab-bg: #eef1f5;
  --well-bg: #fff;
}

.theme-purple {
  --body-color: #fff;
  --body-muted-color: #ded6ff;
  --heading-color: var(--body-color);
  --body-bg: #9077fc;
  --well-color: #fff;
  --well-bg: #7656f3;
  --container-filter: brightness(100);
}

.theme-yellow {
  --link-color: #185dcb;
  --link-hover-color: #183eac;
  --link-underline-color: transparent;
  --body-color: #22272f;
  --body-muted-color: rgba(34, 39, 47, 0.5);
  --body-bg: #fed62c;
  --table-active-bg: #fed62c;
  --table-border-color: #3b4754;
  --tab-bg: transparent;
  --input-border-color: #fff;
  --tab-active-border: transparent;
  --tab-active-bg: #29323d;
  --tab-active-color: #fff;
  --button-bg: #fcc223;
  --button-color: #22272f;
  --button-hover-bg: #fbaa19;
  --footer-heading-color: #29323d;
  --footer-link-color: #29323d;
  --footer-link-hover-color: #29323d;
  --container-filter: brightness(0);
}

@media (max-width: 420px) {
  html {
    font-size: 14px; /* base font size */
  }
}
@media (max-width: 320px) {
  html {
    font-size: 12px; /* base font size */
  }
}
.logo-swatch-grid {
  display: grid;
  column-gap: 0.5rem;
  row-gap: 1.25rem;
}
.logo-swatch-grid.logo-swatch-grid-3 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .logo-swatch-grid.logo-swatch-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.logo-swatch-grid.logo-swatch-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .logo-swatch-grid.logo-swatch-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.logo-swatch {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.logo-swatch .logo-swatch-label {
  font-family: var(--moqups-code);
  font-size: 0.6rem;
  color: var(--body-muted-color);
  line-height: 1.3;
}
.logo-swatch .logo-swatch-downloads {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}
.logo-swatch .logo-swatch-downloads a {
  font-family: var(--moqups-code);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--body-color);
  text-decoration: none;
}
.logo-swatch .logo-swatch-downloads a:hover {
  text-decoration: underline;
}
.logo-swatch .logo-swatch-preview {
  border: 1px solid var(--well-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(89px + 1.5rem);
  padding-block: 0.75rem;
}
.logo-swatch .logo-swatch-preview svg,
.logo-swatch .logo-swatch-preview img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-swatch .logo-swatch-preview.logo-swatch-preview--icon {
  height: calc(96px + 1.5rem);
}
.logo-swatch .logo-swatch-preview.logo-swatch-preview--icon svg,
.logo-swatch .logo-swatch-preview.logo-swatch-preview--icon img {
  max-width: 96px;
  max-height: 96px;
}
.logo-swatch .logo-swatch-preview.logo-bg-white {
  background: #fff;
}
.logo-swatch .logo-swatch-preview.logo-bg-light {
  background: #f7f8f9;
}
.logo-swatch .logo-swatch-preview.logo-bg-dark {
  background: #22272f;
}
.logo-swatch .logo-swatch-preview.logo-bg-blue {
  background: #1071f2;
}
.logo-swatch .logo-swatch-preview.logo-bg-checker {
  background-color: #fff;
  background-image: linear-gradient(45deg, #eef1f5 25%, transparent 25%), linear-gradient(-45deg, #eef1f5 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #eef1f5 75%), linear-gradient(-45deg, transparent 75%, #eef1f5 75%);
  background-size: 12px 12px;
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
}
.logo-swatch .logo-swatch-preview.logo-bg-checker-dark {
  background-color: #3b4754;
  background-image: linear-gradient(45deg, #4a5a6a 25%, transparent 25%), linear-gradient(-45deg, #4a5a6a 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #4a5a6a 75%), linear-gradient(-45deg, transparent 75%, #4a5a6a 75%);
  background-size: 12px 12px;
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
}

.palette-row {
  margin-bottom: 1.25rem;
}

.palette-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--body-muted-color);
  margin: 0 0 0.25rem;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  row-gap: 0.5rem;
}
@media (min-width: 992px) {
  .color-grid {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
  }
}
.color-grid.color-grid-16 {
  grid-template-columns: repeat(8, 1fr);
}
@media (min-width: 992px) {
  .color-grid.color-grid-16 {
    grid-template-columns: repeat(16, 1fr);
  }
}

.color-swatch {
  position: relative;
  display: flex;
  flex-direction: column;
}
.color-swatch .swatch-step {
  font-family: var(--moqups-code);
  font-size: 0.6rem;
  color: var(--body-muted-color);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.color-swatch .swatch-preview {
  border-radius: 0;
  height: 24px;
}
.color-swatch .swatch-hex {
  font-family: var(--moqups-code);
  font-size: 0.6rem;
  color: var(--body-muted-color);
  line-height: 1.3;
  margin-top: 0.2rem;
}
.color-swatch .swatch-copied {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--body-bg);
  color: var(--body-color);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  animation: swatch-fade 1.2s ease forwards;
}

@keyframes swatch-fade {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.font-specimen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--well-border-color);
}

.font-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-color);
  margin-bottom: 0.25rem;
}
.font-name .font-name-weight {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.font-use {
  font-size: 0.875rem;
  color: var(--body-muted-color);
}

.font-weights-display {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}