@charset "UTF-8";
/**
 * Selectize (v0.15.2)
 * https://selectize.dev
 *
 * Copyright (c) 2013-2015 Brian Reavis & contributors
 * Copyright (c) 2020-2022 Selectize Team & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <selectize@risadams.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input.dragging {
  overflow: visible;
}

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
  text-decoration: none;
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
  color: black;
}

.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
  display: flex;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

.selectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

.selectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: 0;
}

.selectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: white;
}

.selectize-control.plugin-clear_button .clear {
  text-decoration: none;
  display: flex;
  position: absolute;
  height: 100%;
  width: 25px;
  top: 0;
  right: 2px;
  color: #000;
  opacity: 0.4;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 21px;
  justify-content: center;
  align-items: center;
}

.selectize-control.plugin-clear_button .clear:hover {
  opacity: 1;
}

.selectize-control.plugin-clear_button.single .clear {
  right: calc(2px + 1.5rem);
}

.selectize-dropdown.plugin-auto_position.selectize-position-top {
  border-top: 1px solid #d0d0d0;
  border-bottom: 0 none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.18);
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
  border-radius: 0 0 3px 3px;
  border-top: 0 none;
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
  top: 0;
  bottom: unset;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  font-smoothing: inherit;
}

.selectize-input, .selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #fff;
}

.selectize-input.disabled, .selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: inline-block;
  zoom: 1;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: white;
  border: 0 solid white;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  user-select: auto !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input > input[placeholder] {
  box-sizing: initial;
}

.selectize-input.has-items > input {
  margin: 0 0 !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.selectize-dropdown .option, .selectize-dropdown .optgroup-header, .selectize-dropdown .no-results, .selectize-dropdown .create {
  padding: 5px 8px;
}

.selectize-dropdown .option, .selectize-dropdown [data-disabled], .selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #e8e8e8;
  color: #303030;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .selected {
  background-color: #e8e8e8;
  color: #303030;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown .active:not(.selected) {
  background: #f5fafd;
  color: #495c68;
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch;
}

.selectize-dropdown-emptyoptionlabel {
  text-align: center;
}

.selectize-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}

.selectize-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input:not(:read-only) {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl {
  text-align: right;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

.selectize-dropdown.plugin-auto_position.selectize-position-top {
  border-top: 1px solid #d0d0d0;
  border-bottom: 0 none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.18);
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
  border-radius: 0 0 3px 3px;
  border-top: 0 none;
}

.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
  top: 0;
  bottom: unset;
}

.selectize-control.plugin-clear_button .clear {
  text-decoration: none;
  display: flex;
  position: absolute;
  height: 100%;
  width: 25px;
  top: 0;
  right: 2px;
  color: #000;
  opacity: 0.4;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 21px;
  justify-content: center;
  align-items: center;
}

.selectize-control.plugin-clear_button .clear:hover {
  opacity: 1;
}

.selectize-control.plugin-clear_button.single .clear {
  right: calc(2px + 1.5rem);
}

.selectize-control.plugin-drag_drop.multi > .selectize-input.dragging {
  overflow: visible;
}

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
  text-decoration: none;
}

.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
  color: black;
}

.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
  display: flex;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

.selectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

.selectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: 0;
}

.selectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: white;
}

:root {
  /**
  * COLORS
  */
  /* Brand Colors
  -------------------------------------------------------*/
  /* Primary - Orange */
  --colors-primary-100: #FEF0EC;
  --colors-primary-200: #FFDCD1;
  --colors-primary-300: #FFB59E;
  --colors-primary-400: #FC9272;
  --colors-primary-500: #FF784F;
  --colors-primary-600: #FA5320;
  --colors-primary-700: #D44519;
  --colors-primary-800: #903013;
  --colors-primary-900: #5D2514;
  --colors-primary-1000: #4B1A0B;
  /* Secondary - Blue */
  --colors-secondary-100: #F2F9FF;
  --colors-secondary-200: #E6F4FF;
  --colors-secondary-300: #C8E6FF;
  --colors-secondary-400: #9BD2FF;
  --colors-secondary-500: #62B3F6;
  --colors-secondary-600: #0F8DF4;
  --colors-secondary-700: #0578D6;
  --colors-secondary-800: #00569C;
  --colors-secondary-900: #003F73;
  --colors-secondary-1000: #002A4D;
  /* Neutral - Greys */
  --colors-grey-50: #FCFCFD;
  --colors-grey-100: #F7F9FA;
  --colors-grey-100--rgb: 247, 249, 250;
  --colors-grey-200: #EEF0F3;
  --colors-grey-200--rgb: 238, 240, 243;
  --colors-grey-300: #DFE3E8;
  --colors-grey-300--rgb: 223, 227, 232;
  --colors-grey-400: #C7CDD4;
  --colors-grey-500: #A1A7AD;
  --colors-grey-600: #707880;
  --colors-grey-700: #4C555E;
  --colors-grey-800: #3A444F;
  --colors-grey-800--rgb: 58, 68, 79;
  --colors-grey-900: #28323B;
  --colors-grey-1000: #1D262E;
  --colors-grey-1000--rgb: 29, 38 ,46;
  /* White */
  --colors-white: #FFFFFF;
  /* Gradients */
  --colors-gradient-ai: linear-gradient(-90deg, #0F8DF4 0%, #B5A8B8 50%, #FA5320 100%);
  --colors-gradient-ai--light: linear-gradient(-45deg, #FFAD94, #F8C4C6, #85C7FF);
  /* Notifications Colors
  -------------------------------------------------------*/
  /* Success - Green */
  --colors-success-100: #F2FFF2;
  --colors-success-100--rgb: 242, 255, 242;
  --colors-success-200: #E6FCE5;
  --colors-success-300: #C6F2C5;
  --colors-success-400: #94DE93;
  --colors-success-500: #57C555;
  --colors-success-600: #24A522;
  --colors-success-700: #078605;
  --colors-success-800: #056704;
  --colors-success-900: #035502;
  --colors-success-1000: #024201;
  /* Danger - Red */
  --colors-danger-100: #FFF6F6;
  --colors-danger-200: #FFE1E1;
  --colors-danger-300: #FFC8C7;
  --colors-danger-400: #FEA6A5;
  --colors-danger-500: #FB7C79;
  --colors-danger-600: #EE413F;
  --colors-danger-700: #D91F1C;
  --colors-danger-800: #B60A07;
  --colors-danger-900: #860604;
  --colors-danger-1000: #640E0C;
  /* Warning - Orangish */
  --colors-warning-100: #FFFCEB;
  --colors-warning-100--rgb: 255, 252, 235;
  --colors-warning-200: #FFF6C9;
  --colors-warning-300: #FFEFA1;
  --colors-warning-400: #FDE34E;
  --colors-warning-500: #F6D028;
  --colors-warning-600: #E0B115;
  --colors-warning-700: #B78B06;
  --colors-warning-800: #8E6506;
  --colors-warning-900: #694907;
  --colors-warning-1000: #4B3207;
  /* Support colors */
  --colors-emerald-100: #D0FAE5;
  --colors-emerald-200: #A4F4CF;
  --colors-emerald-500: #00BC7D;
  --colors-emerald-700: #007A55;
  --colors-emerald-900: #004F3B;
  --colors-emerald-200--rgb: 164, 244, 207;
  --colors-emerald-500--rgb: 0, 188, 125;
  --colors-emerald-700--rgb: 0, 122, 85;
  --colors-cardinal-100: #FFE4E6;
  --colors-cardinal-200: #FFB8C0;
  --colors-cardinal-500: #FF2056;
  --colors-cardinal-700: #C70036;
  --colors-cardinal-900: #8B0836;
  --colors-cardinal-200--rgb: 255, 184, 192;
  --colors-cardinal-500--rgb: 255, 32, 86;
  --colors-cardinal-700--rgb: 199, 0, 54;
  --colors-cyan-100: #CEFAFE;
  --colors-cyan-200: #A2F4FD;
  --colors-cyan-500: #00B8DB;
  --colors-cyan-700: #007595;
  --colors-cyan-900: #104E64;
  --colors-cyan-200--rgb: 162, 244, 253;
  --colors-cyan-500--rgb: 6, 182, 212;
  --colors-cyan-700--rgb: 14, 116, 144;
  --colors-violette-100: #EDE9FE;
  --colors-violette-200: #DDD6FF;
  --colors-violette-500: #7F22FE;
  --colors-violette-700: #7008E7;
  --colors-violette-900: #4D179A;
  --colors-violette-200--rgb: 221, 214, 255;
  --colors-violette-500--rgb: 127, 34, 254;
  --colors-violette-700--rgb: 112, 8, 231;
  --colors-magenta-100: #FAF0FD;
  --colors-magenta-200: #F1ABFC;
  --colors-magenta-500: #D946EF;
  --colors-magenta-700: #BC26D3;
  --colors-magenta-200--rgb: 241, 171, 252;
  --colors-magenta-500--rgb: 217, 70, 239;
  --colors-magenta-700--rgb: 188, 38, 211;
  /* AI Colors - Magenta-Purple
  -------------------------------------------------------*/
  --colors-ai-100: #FAF0FD;
  --colors-ai-200: #F5D0FE;
  --colors-ai-300: #E29BF8;
  --colors-ai-400: #D946EF;
  --colors-ai-500: #940FF4;
  --colors-ai-900: #261A2A;
  /* Other brands
  -------------------------------------------------------*/
  --colors-brand-twitter-blue: #1da1f2;
  --colors-brand-twitter-black: #000;
  --colors-brand-linkedin-blue: #0077b5;
  --colors-brand-linkedin-blue: #0077b5;
  --colors-brand-facebook-blue: #3b5998;
  --colors-brand-youtube-red: #cd201f;
  --colors-brand-instagram-purple: #c13584;
  --colors-brand-android-green: #a4c639;
  --colors-brand-itunes-black: #050708;
  --colors-brand-github-black: #333;
  /* Integrations */
  --colors-brand-salesforce: #009edb;
  --colors-brand-salesforce--rgb: 0, 158, 219;
  --colors-brand-hubspot: #ff7a59;
  --colors-brand-hubspot--rgb: 255, 122, 89;
  --colors-brand-pipedrive: #26292c;
  --colors-brand-pipedrive--rgb: 38, 41, 44;
  --colors-brand-zoho: #ce2232;
  --colors-brand-zoho--rgb: 206, 34, 50;
  --colors-brand-zapier: #ff4a00;
  --colors-brand-zapier--rgb: 255, 74, 0;
  --colors-brand-outlook: #0078d4;
  --colors-brand-outlook--rgb: 0, 120, 212;
  --colors-brand-gmail: #4286f5;
  --colors-brand-gmail--rgb: 66, 134, 245;
  /**
  * TYPOGRAPHY
  */
  /* Family */
  --fonts-family-body: "Inter", "Inter UI", -apple-system,system-ui, "Segoe UI", Roboto, Noto, Oxygen-Sans, Ubuntu, Cantrell, "Helvetica Neue", sans-serif;
  --fonts-family-heading: "Familjen Grotesk", -apple-system,system-ui, "Segoe UI", Roboto, Noto, Oxygen-Sans, Ubuntu, Cantrell, "Helvetica Neue", sans-serif;
  --fonts-family-heading--website: "Familjen Grotesk", -apple-system,system-ui, "Segoe UI", Roboto, Noto, Oxygen-Sans, Ubuntu, Cantrell, "Helvetica Neue", sans-serif;
  --fonts-family-code: Menlo, Monaco, Consolas, "Courier New", monospace;
  --fonts-family-feature-settings: "cv01", "cv02", "cv03", "cv04", "cv11", "ss01";
  /* Size */
  --font-size-default: 1.4rem;
  /**
  * SPACING
  */
  --spacing-base: 4px;
  --spacing-0: 0;
  --spacing-px: calc(var(--spacing-base) / 4);
  --spacing-005: calc(var(--spacing-base) / 2);
  --spacing-01: calc(var(--spacing-base));
  --spacing-02: calc(var(--spacing-base) * 2);
  --spacing-03: calc(var(--spacing-base) * 3);
  --spacing-04: calc(var(--spacing-base) * 4);
  --spacing-05: calc(var(--spacing-base) * 5);
  --spacing-06: calc(var(--spacing-base) * 6);
  --spacing-07: calc(var(--spacing-base) * 7);
  --spacing-08: calc(var(--spacing-base) * 8);
  --spacing-10: calc(var(--spacing-base) * 10);
  --spacing-12: calc(var(--spacing-base) * 12);
  --spacing-14: calc(var(--spacing-base) * 14);
  --spacing-16: calc(var(--spacing-base) * 16);
  --spacing-20: calc(var(--spacing-base) * 20);
  --spacing-24: calc(var(--spacing-base) * 24);
  --spacing-25: calc(var(--spacing-base) * 25);
  --spacing-30: calc(var(--spacing-base) * 30);
  --spacing-40: calc(var(--spacing-base) * 40);
  --spacing-px-negative: calc(var(--spacing-px) * -1);
  --spacing-005-negative: calc(var(--spacing-005) * -1);
  --spacing-01-negative: calc(var(--spacing-01) * -1);
  --spacing-02-negative: calc(var(--spacing-02) * -1);
  --spacing-03-negative: calc(var(--spacing-03) * -1);
  --spacing-04-negative: calc(var(--spacing-04) * -1);
  --spacing-05-negative: calc(var(--spacing-05) * -1);
  --spacing-06-negative: calc(var(--spacing-06) * -1);
  --spacing-07-negative: calc(var(--spacing-07) * -1);
  --spacing-08-negative: calc(var(--spacing-08) * -1);
  --spacing-10-negative: calc(var(--spacing-10) * -1);
  --spacing-12-negative: calc(var(--spacing-12) * -1);
  --spacing-14-negative: calc(var(--spacing-14) * -1);
  --spacing-16-negative: calc(var(--spacing-16) * -1);
  --spacing-20-negative: calc(var(--spacing-20) * -1);
  --spacing-24-negative: calc(var(--spacing-24) * -1);
  --spacing-25-negative: calc(var(--spacing-25) * -1);
  --spacing-30-negative: calc(var(--spacing-30) * -1);
  --spacing-40-negative: calc(var(--spacing-40) * -1);
  /**
  * RADIUS
  */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
}

/**
* BACK VARIABLES
*/
.application-back {
  --fonts-family-body: "Inter var", "Inter", "Inter UI", -apple-system, system-ui, "Segoe UI", Roboto, Noto, Oxygen-Sans, Ubuntu, Cantrell, "Helvetica Neue", sans-serif;
  --fonts-family-heading: var(--fonts-family-body);
}

/**
* Spacing: margin / padding
*
* This file generates utility classes for spacing:
* - Positive spacing: .m-5, .mt-2, .p-4, etc.
* - Negative spacing (margins only): .-m-5, .-mt-2, etc.
*
* Negative spacing classes use a hyphen prefix (e.g., .-mt-2)
* Note: negative padding is not supported (padding cannot be negative in CSS)
*/
/**
* Spacing generation
* Generate classes for spacing (margin and padding), ex.: ml-5 { margin-left: … }
*
* @require {Map} $spacers
* @require {Map} $directions
* @param {string} $prop - CSS property to generate
* @param {string} $short - Shorthand value used in output
* @param {boolean} $negative - Generate negative values (default: false)
*/

.p-0 {
  padding: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: calc(var(--spacing-base)) !important;
}

.pt-1 {
  padding-top: calc(var(--spacing-base)) !important;
}

.px-1 {
  padding-left: calc(var(--spacing-base)) !important;
  padding-right: calc(var(--spacing-base)) !important;
}

.p-2 {
  padding: calc(var(--spacing-base) * 2) !important;
}

.pl-2 {
  padding-left: calc(var(--spacing-base) * 2) !important;
}

.pr-2 {
  padding-right: calc(var(--spacing-base) * 2) !important;
}

.py-2 {
  padding-top: calc(var(--spacing-base) * 2) !important;
  padding-bottom: calc(var(--spacing-base) * 2) !important;
}

.px-2 {
  padding-left: calc(var(--spacing-base) * 2) !important;
  padding-right: calc(var(--spacing-base) * 2) !important;
}

.p-3 {
  padding: calc(var(--spacing-base) * 3) !important;
}

.pt-3 {
  padding-top: calc(var(--spacing-base) * 3) !important;
}

.px-3 {
  padding-left: calc(var(--spacing-base) * 3) !important;
  padding-right: calc(var(--spacing-base) * 3) !important;
}

.p-4 {
  padding: calc(var(--spacing-base) * 4) !important;
}

.pt-4 {
  padding-top: calc(var(--spacing-base) * 4) !important;
}

.pb-4 {
  padding-bottom: calc(var(--spacing-base) * 4) !important;
}

.py-4 {
  padding-top: calc(var(--spacing-base) * 4) !important;
  padding-bottom: calc(var(--spacing-base) * 4) !important;
}

.px-4 {
  padding-left: calc(var(--spacing-base) * 4) !important;
  padding-right: calc(var(--spacing-base) * 4) !important;
}

.p-5 {
  padding: calc(var(--spacing-base) * 5) !important;
}

.pl-5 {
  padding-left: calc(var(--spacing-base) * 5) !important;
}

.p-6 {
  padding: calc(var(--spacing-base) * 6) !important;
}

.pl-6 {
  padding-left: calc(var(--spacing-base) * 6) !important;
}

.pt-6 {
  padding-top: calc(var(--spacing-base) * 6) !important;
}

.pb-6 {
  padding-bottom: calc(var(--spacing-base) * 6) !important;
}

.px-6 {
  padding-left: calc(var(--spacing-base) * 6) !important;
  padding-right: calc(var(--spacing-base) * 6) !important;
}

.p-8 {
  padding: calc(var(--spacing-base) * 8) !important;
}

.pl-8 {
  padding-left: calc(var(--spacing-base) * 8) !important;
}

.pr-8 {
  padding-right: calc(var(--spacing-base) * 8) !important;
}

.py-8 {
  padding-top: calc(var(--spacing-base) * 8) !important;
  padding-bottom: calc(var(--spacing-base) * 8) !important;
}

.pt-10 {
  padding-top: calc(var(--spacing-base) * 10) !important;
}

.pb-10 {
  padding-bottom: calc(var(--spacing-base) * 10) !important;
}

.py-10 {
  padding-top: calc(var(--spacing-base) * 10) !important;
  padding-bottom: calc(var(--spacing-base) * 10) !important;
}

.pb-12 {
  padding-bottom: calc(var(--spacing-base) * 12) !important;
}

.pt-20 {
  padding-top: calc(var(--spacing-base) * 20) !important;
}

.pb-20 {
  padding-bottom: calc(var(--spacing-base) * 20) !important;
}

.pt-30 {
  padding-top: calc(var(--spacing-base) * 30) !important;
}

.m-auto {
  margin: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-05 {
  margin-top: calc(var(--spacing-base) / 2) !important;
}

.mb-05 {
  margin-bottom: calc(var(--spacing-base) / 2) !important;
}

.ml-1 {
  margin-left: calc(var(--spacing-base)) !important;
}

.mt-1 {
  margin-top: calc(var(--spacing-base)) !important;
}

.mr-1 {
  margin-right: calc(var(--spacing-base)) !important;
}

.mb-1 {
  margin-bottom: calc(var(--spacing-base)) !important;
}

.my-1 {
  margin-top: calc(var(--spacing-base)) !important;
  margin-bottom: calc(var(--spacing-base)) !important;
}

.m-2 {
  margin: calc(var(--spacing-base) * 2) !important;
}

.ml-2 {
  margin-left: calc(var(--spacing-base) * 2) !important;
}

.mt-2 {
  margin-top: calc(var(--spacing-base) * 2) !important;
}

.mr-2 {
  margin-right: calc(var(--spacing-base) * 2) !important;
}

.mb-2 {
  margin-bottom: calc(var(--spacing-base) * 2) !important;
}

.my-2 {
  margin-top: calc(var(--spacing-base) * 2) !important;
  margin-bottom: calc(var(--spacing-base) * 2) !important;
}

.mx-2 {
  margin-left: calc(var(--spacing-base) * 2) !important;
  margin-right: calc(var(--spacing-base) * 2) !important;
}

.mt-3 {
  margin-top: calc(var(--spacing-base) * 3) !important;
}

.mr-3 {
  margin-right: calc(var(--spacing-base) * 3) !important;
}

.mb-3 {
  margin-bottom: calc(var(--spacing-base) * 3) !important;
}

.my-3 {
  margin-top: calc(var(--spacing-base) * 3) !important;
  margin-bottom: calc(var(--spacing-base) * 3) !important;
}

.m-4 {
  margin: calc(var(--spacing-base) * 4) !important;
}

.ml-4 {
  margin-left: calc(var(--spacing-base) * 4) !important;
}

.mt-4 {
  margin-top: calc(var(--spacing-base) * 4) !important;
}

.mr-4 {
  margin-right: calc(var(--spacing-base) * 4) !important;
}

.mb-4 {
  margin-bottom: calc(var(--spacing-base) * 4) !important;
}

.my-4 {
  margin-top: calc(var(--spacing-base) * 4) !important;
  margin-bottom: calc(var(--spacing-base) * 4) !important;
}

.ml-5 {
  margin-left: calc(var(--spacing-base) * 5) !important;
}

.mt-5 {
  margin-top: calc(var(--spacing-base) * 5) !important;
}

.mb-5 {
  margin-bottom: calc(var(--spacing-base) * 5) !important;
}

.mx-5 {
  margin-left: calc(var(--spacing-base) * 5) !important;
  margin-right: calc(var(--spacing-base) * 5) !important;
}

.m-6 {
  margin: calc(var(--spacing-base) * 6) !important;
}

.ml-6 {
  margin-left: calc(var(--spacing-base) * 6) !important;
}

.mt-6 {
  margin-top: calc(var(--spacing-base) * 6) !important;
}

.mb-6 {
  margin-bottom: calc(var(--spacing-base) * 6) !important;
}

.my-6 {
  margin-top: calc(var(--spacing-base) * 6) !important;
  margin-bottom: calc(var(--spacing-base) * 6) !important;
}

.m-8 {
  margin: calc(var(--spacing-base) * 8) !important;
}

.ml-8 {
  margin-left: calc(var(--spacing-base) * 8) !important;
}

.mt-8 {
  margin-top: calc(var(--spacing-base) * 8) !important;
}

.mb-8 {
  margin-bottom: calc(var(--spacing-base) * 8) !important;
}

.my-8 {
  margin-top: calc(var(--spacing-base) * 8) !important;
  margin-bottom: calc(var(--spacing-base) * 8) !important;
}

.mt-10 {
  margin-top: calc(var(--spacing-base) * 10) !important;
}

.mb-10 {
  margin-bottom: calc(var(--spacing-base) * 10) !important;
}

.my-10 {
  margin-top: calc(var(--spacing-base) * 10) !important;
  margin-bottom: calc(var(--spacing-base) * 10) !important;
}

.mt-12 {
  margin-top: calc(var(--spacing-base) * 12) !important;
}

.mb-12 {
  margin-bottom: calc(var(--spacing-base) * 12) !important;
}

.my-12 {
  margin-top: calc(var(--spacing-base) * 12) !important;
  margin-bottom: calc(var(--spacing-base) * 12) !important;
}

.mt-14 {
  margin-top: calc(var(--spacing-base) * 14) !important;
}

.mb-14 {
  margin-bottom: calc(var(--spacing-base) * 14) !important;
}

.my-14 {
  margin-top: calc(var(--spacing-base) * 14) !important;
  margin-bottom: calc(var(--spacing-base) * 14) !important;
}

.mt-16 {
  margin-top: calc(var(--spacing-base) * 16) !important;
}

.mb-16 {
  margin-bottom: calc(var(--spacing-base) * 16) !important;
}

.mt-20 {
  margin-top: calc(var(--spacing-base) * 20) !important;
}

.mb-20 {
  margin-bottom: calc(var(--spacing-base) * 20) !important;
}

.my-20 {
  margin-top: calc(var(--spacing-base) * 20) !important;
  margin-bottom: calc(var(--spacing-base) * 20) !important;
}

.mt-30 {
  margin-top: calc(var(--spacing-base) * 30) !important;
}

.mb-30 {
  margin-bottom: calc(var(--spacing-base) * 30) !important;
}

.-m-8 {
  margin: calc(calc(var(--spacing-base) * 8) * -1) !important;
}

.ff-code {
  font-family: var(--fonts-family-code) !important;
}

.fw-normal {
  font-weight: normal !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-white {
  color: #fff !important;
}

.text-hint {
  color: var(--colors-grey-600) !important;
}

.text-ghost {
  color: var(--colors-grey-400) !important;
}

.text-body-secondary {
  color: var(--colors-grey-700) !important;
}

.text-dark {
  color: var(--colors-grey-900) !important;
}

.text-primary {
  color: var(--colors-primary-700) !important;
}

.text-secondary {
  color: var(--colors-secondary-700) !important;
}

.text-success {
  color: var(--colors-success-700) !important;
}

.text-warning {
  color: var(--colors-warning-700) !important;
}

.text-danger {
  color: var(--colors-danger-700) !important;
}

.text-magenta {
  color: var(--colors-magenta-700) !important;
}

.text-cyan {
  color: var(--colors-cyan-700) !important;
}

.text-emerald {
  color: var(--colors-emerald-700) !important;
}

.text-linkedin {
  color: var(--colors-brand-linkedin-blue) !important;
}

@keyframes textShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.text-blurred {
  filter: blur(4px);
}

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

.word-break-all {
  word-break: break-all !important;
}

small {
  font-size: 85% !important;
}

.text-2xs {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  font-weight: 400 !important;
}

.text-xs {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-xs-medium {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-sm, .empty-state .empty-state__description {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-sm-medium {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-md-medium {
  font-size: 1.6rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

.text-lg-medium {
  font-size: 1.8rem !important;
  line-height: 2.8rem !important;
  font-weight: 500 !important;
}

.text-xl-medium {
  font-size: 2rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.white {
  color: #fff;
  fill: #fff;
}
.white[class*=fa-] {
  color: #fff;
  fill: #fff;
}
.white:hover, .white:focus, .white:active {
  color: #fff;
  text-decoration: none;
}
.white a,
.white a:hover,
.white a:focus,
.white a:active {
  border-bottom: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: all 250ms ease;
}
.white a:hover {
  border-color: #fff;
  cursor: pointer;
}
.white a.no-underline {
  border: 0;
}
.white path {
  fill: #fff;
}

.black {
  color: var(--colors-grey-900);
  fill: var(--colors-grey-800);
}
.black[class*=fa-] {
  color: var(--colors-grey-800);
  fill: var(--colors-grey-800);
}
.black:hover, .black:focus, .black:active {
  color: var(--colors-grey-900);
  text-decoration: none;
}
.black a,
.black a:hover,
.black a:focus,
.black a:active {
  border-bottom: 1px solid var(--colors-grey-500);
  color: var(--colors-grey-900);
  text-decoration: none;
  transition: all 250ms ease;
}
.black a:hover {
  border-color: var(--colors-grey-600);
  cursor: pointer;
}
.black a.no-underline {
  border: 0;
}
.black path {
  fill: var(--colors-grey-800);
}

.grey, .help-block {
  color: var(--colors-grey-600);
  fill: var(--colors-grey-500);
}
.grey[class*=fa-], [class*=fa-].help-block {
  color: var(--colors-grey-500);
  fill: var(--colors-grey-500);
}
.grey:hover, .help-block:hover, .grey:focus, .help-block:focus, .grey:active, .help-block:active {
  color: var(--colors-grey-600);
  text-decoration: none;
}
.grey a, .help-block a,
.grey a:hover,
.grey a:focus,
.grey a:active {
  border-bottom: 1px solid var(--colors-grey-300);
  color: var(--colors-grey-600);
  text-decoration: none;
  transition: all 250ms ease;
}
.grey a:hover, .help-block a:hover {
  border-color: var(--colors-grey-400);
  cursor: pointer;
}
.grey a.no-underline, .help-block a.no-underline {
  border: 0;
}
.grey path, .help-block path {
  fill: var(--colors-grey-500);
}

.light-grey {
  color: var(--colors-grey-600);
  fill: var(--colors-grey-500);
}
.light-grey[class*=fa-] {
  color: var(--colors-grey-500);
  fill: var(--colors-grey-500);
}
.light-grey:hover, .light-grey:focus, .light-grey:active {
  color: var(--colors-grey-600);
  text-decoration: none;
}
.light-grey a,
.light-grey a:hover,
.light-grey a:focus,
.light-grey a:active {
  border-bottom: 1px solid var(--colors-grey-300);
  color: var(--colors-grey-600);
  text-decoration: none;
  transition: all 250ms ease;
}
.light-grey a:hover {
  border-color: var(--colors-grey-400);
  cursor: pointer;
}
.light-grey a.no-underline {
  border: 0;
}
.light-grey path {
  fill: var(--colors-grey-500);
}

.dark-grey {
  color: var(--colors-grey-800);
  fill: var(--colors-grey-700);
}
.dark-grey[class*=fa-] {
  color: var(--colors-grey-700);
  fill: var(--colors-grey-700);
}
.dark-grey:hover, .dark-grey:focus, .dark-grey:active {
  color: var(--colors-grey-800);
  text-decoration: none;
}
.dark-grey a,
.dark-grey a:hover,
.dark-grey a:focus,
.dark-grey a:active {
  border-bottom: 1px solid var(--colors-grey-400);
  color: var(--colors-grey-800);
  text-decoration: none;
  transition: all 250ms ease;
}
.dark-grey a:hover {
  border-color: var(--colors-grey-500);
  cursor: pointer;
}
.dark-grey a.no-underline {
  border: 0;
}
.dark-grey path {
  fill: var(--colors-grey-700);
}

.orange {
  color: var(--colors-primary-700);
  fill: var(--colors-primary-600);
}
.orange[class*=fa-] {
  color: var(--colors-primary-600);
  fill: var(--colors-primary-600);
}
.orange:hover, .orange:focus, .orange:active {
  color: var(--colors-primary-700);
  text-decoration: none;
}
.orange a,
.orange a:hover,
.orange a:focus,
.orange a:active {
  border-bottom: 1px solid var(--colors-primary-300);
  color: var(--colors-primary-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.orange a:hover {
  border-color: var(--colors-primary-400);
  cursor: pointer;
}
.orange a.no-underline {
  border: 0;
}
.orange path {
  fill: var(--colors-primary-600);
}

.purple {
  color: var(--colors-violette-700);
  fill: var(--colors-violette-500);
}
.purple[class*=fa-] {
  color: var(--colors-violette-500);
  fill: var(--colors-violette-500);
}
.purple:hover, .purple:focus, .purple:active {
  color: var(--colors-violette-700);
  text-decoration: none;
}
.purple a,
.purple a:hover,
.purple a:focus,
.purple a:active {
  border-bottom: 1px solid var(--colors-violette-200);
  color: var(--colors-violette-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.purple a:hover {
  border-color: var(--colors-violette-500);
  cursor: pointer;
}
.purple a.no-underline {
  border: 0;
}
.purple path {
  fill: var(--colors-violette-500);
}

.green {
  color: var(--colors-success-700);
  fill: var(--colors-success-600);
}
.green[class*=fa-] {
  color: var(--colors-success-600);
  fill: var(--colors-success-600);
}
.green:hover, .green:focus, .green:active {
  color: var(--colors-success-700);
  text-decoration: none;
}
.green a,
.green a:hover,
.green a:focus,
.green a:active {
  border-bottom: 1px solid var(--colors-success-400);
  color: var(--colors-success-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.green a:hover {
  border-color: var(--colors-success-500);
  cursor: pointer;
}
.green a.no-underline {
  border: 0;
}
.green path {
  fill: var(--colors-success-600);
}

.emerald {
  color: var(--colors-emerald-700);
  fill: var(--colors-emerald-500);
}
.emerald[class*=fa-] {
  color: var(--colors-emerald-500);
  fill: var(--colors-emerald-500);
}
.emerald:hover, .emerald:focus, .emerald:active {
  color: var(--colors-emerald-700);
  text-decoration: none;
}
.emerald a,
.emerald a:hover,
.emerald a:focus,
.emerald a:active {
  border-bottom: 1px solid var(--colors-emerald-200);
  color: var(--colors-emerald-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.emerald a:hover {
  border-color: var(--colors-emerald-500);
  cursor: pointer;
}
.emerald a.no-underline {
  border: 0;
}
.emerald path {
  fill: var(--colors-emerald-500);
}

.dark-green {
  color: var(--colors-success-700);
  fill: var(--colors-success-600);
}
.dark-green[class*=fa-] {
  color: var(--colors-success-600);
  fill: var(--colors-success-600);
}
.dark-green:hover, .dark-green:focus, .dark-green:active {
  color: var(--colors-success-700);
  text-decoration: none;
}
.dark-green a,
.dark-green a:hover,
.dark-green a:focus,
.dark-green a:active {
  border-bottom: 1px solid var(--colors-success-400);
  color: var(--colors-success-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.dark-green a:hover {
  border-color: var(--colors-success-500);
  cursor: pointer;
}
.dark-green a.no-underline {
  border: 0;
}
.dark-green path {
  fill: var(--colors-success-600);
}

.red {
  color: var(--colors-danger-700);
  fill: var(--colors-danger-600);
}
.red[class*=fa-] {
  color: var(--colors-danger-600);
  fill: var(--colors-danger-600);
}
.red:hover, .red:focus, .red:active {
  color: var(--colors-danger-700);
  text-decoration: none;
}
.red a,
.red a:hover,
.red a:focus,
.red a:active {
  border-bottom: 1px solid var(--colors-danger-400);
  color: var(--colors-danger-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.red a:hover {
  border-color: var(--colors-danger-500);
  cursor: pointer;
}
.red a.no-underline {
  border: 0;
}
.red path {
  fill: var(--colors-danger-600);
}

.dark-red {
  color: var(--colors-danger-700);
  fill: var(--colors-danger-600);
}
.dark-red[class*=fa-] {
  color: var(--colors-danger-600);
  fill: var(--colors-danger-600);
}
.dark-red:hover, .dark-red:focus, .dark-red:active {
  color: var(--colors-danger-700);
  text-decoration: none;
}
.dark-red a,
.dark-red a:hover,
.dark-red a:focus,
.dark-red a:active {
  border-bottom: 1px solid var(--colors-danger-400);
  color: var(--colors-danger-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.dark-red a:hover {
  border-color: var(--colors-danger-500);
  cursor: pointer;
}
.dark-red a.no-underline {
  border: 0;
}
.dark-red path {
  fill: var(--colors-danger-600);
}

.beige {
  color: var(--colors-warning-700);
  fill: var(--colors-warning-500);
}
.beige[class*=fa-] {
  color: var(--colors-warning-500);
  fill: var(--colors-warning-500);
}
.beige:hover, .beige:focus, .beige:active {
  color: var(--colors-warning-700);
  text-decoration: none;
}
.beige a,
.beige a:hover,
.beige a:focus,
.beige a:active {
  border-bottom: 1px solid var(--colors-warning-400);
  color: var(--colors-warning-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.beige a:hover {
  border-color: var(--colors-warning-500);
  cursor: pointer;
}
.beige a.no-underline {
  border: 0;
}
.beige path {
  fill: var(--colors-warning-500);
}

.dark-orange {
  color: var(--colors-warning-700);
  fill: var(--colors-warning-500);
}
.dark-orange[class*=fa-] {
  color: var(--colors-warning-500);
  fill: var(--colors-warning-500);
}
.dark-orange:hover, .dark-orange:focus, .dark-orange:active {
  color: var(--colors-warning-700);
  text-decoration: none;
}
.dark-orange a,
.dark-orange a:hover,
.dark-orange a:focus,
.dark-orange a:active {
  border-bottom: 1px solid var(--colors-warning-400);
  color: var(--colors-warning-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.dark-orange a:hover {
  border-color: var(--colors-warning-500);
  cursor: pointer;
}
.dark-orange a.no-underline {
  border: 0;
}
.dark-orange path {
  fill: var(--colors-warning-500);
}

.blue {
  color: var(--colors-secondary-700);
  fill: var(--colors-secondary-600);
}
.blue[class*=fa-] {
  color: var(--colors-secondary-600);
  fill: var(--colors-secondary-600);
}
.blue:hover, .blue:focus, .blue:active {
  color: var(--colors-secondary-700);
  text-decoration: none;
}
.blue a,
.blue a:hover,
.blue a:focus,
.blue a:active {
  border-bottom: 1px solid var(--colors-secondary-400);
  color: var(--colors-secondary-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.blue a:hover {
  border-color: var(--colors-secondary-500);
  cursor: pointer;
}
.blue a.no-underline {
  border: 0;
}
.blue path {
  fill: var(--colors-secondary-600);
}

.cyan {
  color: var(--colors-cyan-700);
  fill: var(--colors-cyan-500);
}
.cyan[class*=fa-] {
  color: var(--colors-cyan-500);
  fill: var(--colors-cyan-500);
}
.cyan:hover, .cyan:focus, .cyan:active {
  color: var(--colors-cyan-700);
  text-decoration: none;
}
.cyan a,
.cyan a:hover,
.cyan a:focus,
.cyan a:active {
  border-bottom: 1px solid var(--colors-cyan-200);
  color: var(--colors-cyan-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.cyan a:hover {
  border-color: var(--colors-cyan-200);
  cursor: pointer;
}
.cyan a.no-underline {
  border: 0;
}
.cyan path {
  fill: var(--colors-cyan-500);
}

.cardinal {
  color: var(--colors-cardinal-700);
  fill: var(--colors-cardinal-500);
}
.cardinal[class*=fa-] {
  color: var(--colors-cardinal-500);
  fill: var(--colors-cardinal-500);
}
.cardinal:hover, .cardinal:focus, .cardinal:active {
  color: var(--colors-cardinal-700);
  text-decoration: none;
}
.cardinal a,
.cardinal a:hover,
.cardinal a:focus,
.cardinal a:active {
  border-bottom: 1px solid var(--colors-cardinal-200);
  color: var(--colors-cardinal-700);
  text-decoration: none;
  transition: all 250ms ease;
}
.cardinal a:hover {
  border-color: var(--colors-cardinal-200);
  cursor: pointer;
}
.cardinal a.no-underline {
  border: 0;
}
.cardinal path {
  fill: var(--colors-cardinal-500);
}
:root {
  --bs-highlight-color: var(--colors-grey-1000);
  --bs-highlight-bg: var(--colors-warning-400);
  --bs-border-color: var(--colors-grey-300);
  --bs-dropdown-item-border-radius: .2rem;
}

.modal {
  --bs-modal-border-width: .1rem;
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #1D262E;
  --bs-white: #fff;
  --bs-gray: #707880;
  --bs-gray-dark: #3A444F;
  --bs-gray-100: #F7F9FA;
  --bs-gray-200: #EEF0F3;
  --bs-gray-300: #DFE3E8;
  --bs-gray-400: #C7CDD4;
  --bs-gray-500: #A1A7AD;
  --bs-gray-600: #707880;
  --bs-gray-700: #4C555E;
  --bs-gray-800: #3A444F;
  --bs-gray-900: #28323B;
  --bs-primary: #FA5320;
  --bs-secondary: #0F8DF4;
  --bs-success: #24A522;
  --bs-info: #0F8DF4;
  --bs-warning: #FFC107;
  --bs-danger: #EE413F;
  --bs-light: #F7F9FA;
  --bs-dark: #1D262E;
  --bs-primary-rgb: 250, 83, 32;
  --bs-secondary-rgb: 15, 141, 244;
  --bs-success-rgb: 36, 165, 34;
  --bs-info-rgb: 15, 141, 244;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 238, 65, 63;
  --bs-light-rgb: 247, 249, 250;
  --bs-dark-rgb: 29, 38, 46;
  --bs-primary-text-emphasis: rgb(100, 33.2, 12.8);
  --bs-secondary-text-emphasis: rgb(6, 56.4, 97.6);
  --bs-success-text-emphasis: rgb(14.4, 66, 13.6);
  --bs-info-text-emphasis: rgb(6, 56.4, 97.6);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(95.2, 26, 25.2);
  --bs-light-text-emphasis: #4C555E;
  --bs-dark-text-emphasis: #4C555E;
  --bs-primary-bg-subtle: rgb(254, 220.6, 210.4);
  --bs-secondary-bg-subtle: rgb(207, 232.2, 252.8);
  --bs-success-bg-subtle: rgb(211.2, 237, 210.8);
  --bs-info-bg-subtle: rgb(207, 232.2, 252.8);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(251.6, 217, 216.6);
  --bs-light-bg-subtle: rgb(251, 252, 252.5);
  --bs-dark-bg-subtle: #C7CDD4;
  --bs-primary-border-subtle: rgb(253, 186.2, 165.8);
  --bs-secondary-border-subtle: rgb(159, 209.4, 250.6);
  --bs-success-border-subtle: rgb(167.4, 219, 166.6);
  --bs-info-border-subtle: rgb(159, 209.4, 250.6);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(248.2, 179, 178.2);
  --bs-light-border-subtle: #EEF0F3;
  --bs-dark-border-subtle: #A1A7AD;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 29, 38, 46;
  --bs-font-sans-serif: var(--fonts-family-body);
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-root-font-size: 62.5%;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: calc(1.265rem + 0.18vw);
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #28323B;
  --bs-body-color-rgb: 40, 50, 59;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #1D262E;
  --bs-emphasis-color-rgb: 29, 38, 46;
  --bs-secondary-color: rgba(40, 50, 59, 0.75);
  --bs-secondary-color-rgb: 40, 50, 59;
  --bs-secondary-bg: #EEF0F3;
  --bs-secondary-bg-rgb: 238, 240, 243;
  --bs-tertiary-color: rgba(40, 50, 59, 0.5);
  --bs-tertiary-color-rgb: 40, 50, 59;
  --bs-tertiary-bg: #F7F9FA;
  --bs-tertiary-bg-rgb: 247, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #FA5320;
  --bs-link-color-rgb: 250, 83, 32;
  --bs-link-decoration: none;
  --bs-link-hover-color: rgb(200, 66.4, 25.6);
  --bs-link-hover-color-rgb: 200, 66, 26;
  --bs-code-color: #d63384;
  --bs-highlight-color: #28323B;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #DFE3E8;
  --bs-border-color-translucent: rgba(29, 38, 46, 0.175);
  --bs-border-radius: 0.4rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(29, 38, 46, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(29, 38, 46, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(29, 38, 46, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(29, 38, 46, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(250, 83, 32, 0.25);
  --bs-form-valid-color: #24A522;
  --bs-form-valid-border-color: #24A522;
  --bs-form-invalid-color: #EE413F;
  --bs-form-invalid-border-color: #EE413F;
}
@media (min-width: 1200px) {
  :root {
    --bs-body-font-size: 1.4rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: var(--bs-root-font-size);
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(29, 38, 46, 0);
}

hr {
  margin: 1.6rem 0;
  color: inherit;
  border: 0;
  border-top: 0.1rem solid var(--colors-grey-300);
  opacity: 1;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1 {
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: calc(1.405rem + 1.86vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: calc(1.37rem + 1.44vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 2.45rem;
  }
}

h4 {
  font-size: calc(1.335rem + 1.02vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 2.1rem;
  }
}

h5 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h5 {
    font-size: 1.75rem;
  }
}

h6 {
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  h6 {
    font-size: 1.4rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: var(--spacing-005);
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code {
  font-family: var(--fonts-family-code);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid {
  --bs-gutter-x: 3.2rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 3.2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-10 {
  --bs-gutter-x: calc(var(--spacing-base) * 10);
}

.g-10 {
  --bs-gutter-y: calc(var(--spacing-base) * 10);
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: calc(var(--spacing-base) * 8);
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: calc(var(--spacing-base) * 8);
  }
}
@media (min-width: 768px) {
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

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


.dropend,
.dropdown {
  position: relative;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 20rem;
  --bs-dropdown-padding-x: var(--spacing-01);
  --bs-dropdown-padding-y: var(--spacing-01);
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: calc(1.255rem + 0.06vw);
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--colors-grey-300);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--colors-grey-300);
  --bs-dropdown-divider-margin-y: var(--spacing-01);
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: var(--colors-grey-900);
  --bs-dropdown-link-active-bg: var(--colors-grey-100);
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: var(--spacing-02);
  --bs-dropdown-item-padding-y: var(--spacing-02);
  --bs-dropdown-header-color: #707880;
  --bs-dropdown-header-padding-x: var(--spacing-02);
  --bs-dropdown-header-padding-y: var(--spacing-01);
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
@media (min-width: 1200px) {
  .dropdown-menu {
    --bs-dropdown-font-size: 1.3rem;
  }
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 60rem;
  --bs-modal-padding: 1.6rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--colors-grey-300);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: 0.8rem;
  --bs-modal-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  --bs-modal-inner-border-radius: calc(0.8rem - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1.6rem;
  --bs-modal-header-padding-y: 1.6rem;
  --bs-modal-header-padding: 1.6rem 1.6rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #1D262E;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 30rem;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 86rem;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 114rem;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: var(--spacing-02);
  --bs-tooltip-padding-y: var(--spacing-02);
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 1.2rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: var(--colors-grey-1000);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.95;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: calc(1.255rem + 0.06vw);
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1.6rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: calc(1.265rem + 0.18vw);
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: var(--spacing-03);
  --bs-popover-body-padding-y: var(--spacing-02);
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
@media (min-width: 1200px) {
  .popover {
    --bs-popover-font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .popover {
    --bs-popover-header-font-size: 1.4rem;
  }
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.hidden,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.d-inline {
  display: inline !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.position-relative {
  position: relative !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.gap-1 {
  gap: calc(var(--spacing-base)) !important;
}

.gap-2 {
  gap: calc(var(--spacing-base) * 2) !important;
}

.gap-3 {
  gap: calc(var(--spacing-base) * 3) !important;
}

.gap-4 {
  gap: calc(var(--spacing-base) * 4) !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

.text-end {
  text-align: right !important;
}

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-2 {
  z-index: 2 !important;
}

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .gap-sm-8 {
    gap: calc(var(--spacing-base) * 8) !important;
  }
  .row-gap-sm-8 {
    row-gap: calc(var(--spacing-base) * 8) !important;
  }
  .column-gap-sm-8 {
    column-gap: calc(var(--spacing-base) * 8) !important;
  }
}
@media (min-width: 768px) {
  .order-md-2 {
    order: 2 !important;
  }
}
@media (min-width: 992px) {
  .order-lg-2 {
    order: 2 !important;
  }
}
@media (min-width: 1200px) {
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
}
.popover-body {
  padding: var(--spacing-04);
}
.popover-body ul {
  padding-left: var(--spacing-04);
  list-style-type: disc;
}
.popover-body li {
  margin: 0 0 var(--spacing-01) 0;
}
.popover-body p:not(:last-child),
.popover-body ul:not(:last-child),
.popover-body ol:not(:last-child) {
  margin-bottom: 1em;
}
.popover-body a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-500);
}
.popover-body a:hover, .popover-body a:focus {
  color: var(--colors-grey-1000);
  text-decoration-color: transparent;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("/assets/FamiljenGrotesk-Regular-ksMFmFXT.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Familjen Grotesk";
  src: url("/assets/FamiljenGrotesk-Medium-D8Lgm0iZ.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-Regular-eQfoMGUi.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-Medium-OtfyKQWv.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-SemiBold-BpZ6hwUa.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  src: url("data:font/woff2;base64,d09GMgABAAAAAAqsAAoAAAAAE5UAAAplAACPAAAAAAAAAAAAAAAAAAAAAAAAAAAAATYCJAQgBmADSACHNMqVGMsmBYdhByAFygkRRX0IQCNl4fz94Pn/nFb3yZF+JFuSUQqR9QvoB6TuFDmNhO4B13IIybMC3gGmedVnnCKwfEqd31sJJIsgI4Jk5wX+l4yD0IK1a/gpRHBGDOhCDtXl9nIbYn1Vrs5FcylUvv9ba51KqUzaXyoS882czpxYQj0Nm04M18ijkaiadhFLJ40kGgnFNaplQkqEWrERbcmasT3EgX5GggC8i78++VjzxnDHAYrWfwDIee0T60Zv8vmR/CfWHvkNMEiT6QWkm3fBaudH8iPWnrG8H2h1dFGVx7Hp1QWh5cwDcqDwDmwsOU/uAM58PdYBhnkHWLiFITtJmQeZlSsvPZ82f8tzHNnSpTVLsMjJ8gVgCqQNFoRWOz/yWtyiLm2m6mxIb8NoHrcjz86rVhusFnWGZRgACsDcOlOeoyC7wjkKeGW/XgNyFXABLWwC/tb8dPOHzb80jzWPJ5XkM8lXk69pWzd0pM/bOLfxolfOfOW8nt1zen7vjN65vat61/c+2Ptt78210lpl7Zy1f+09tO+tffsP2Ae6B8/Ic+BvzTHj7tzSP6zJ+E/HfxTmEB6G8GfhtwDCVjgDwZHg1+A3SlOlkaLnXeT+AeEiLuOCY3jncRHncA5ncRbLnETKLraNXLgOmM/ROUkmwkxdM2M8hDuAjYNiEBePIiUA66QmxVuAv91jbGh+GjAIzR8CHGj+BeBB8xhux44TYBCSCqAIyWcALiRfBXiQfA3ggbYBRdANgA06wnl2HgFs2DgH8GDjRYABeOVMxbLHv3IuvHIe5mfr2QkwAD0H55lPABt6ZwCK0DsX4EDvKoCC3vWY2AcJMAi932JibxLAhbUSwIO1CiZ2DgGKsPYvgAd7DwFKsO8tgA/79gMCOGADQjjQBZTh4BkCKsiBRSF4yIElQvQfJAQbObSK66yHXiaypq8QWdNXibSjr9FfF3jYkHelLV0cfOqMsgRZpjJtKvHC7II2Kot1XDEqm12YjU3WTDNj0mzaRHEUV4yjHDVtEp3oSuuaa665Rn/ve9+75ur21VdfffXC9773vauv6b8hflCXqXrgi/hBvb9aD3xZ7nQ6nf7+5U6n2+l0pNTpdjrleuCL+EG9f1M98EX8oC6fBigQ5r+QNekyzgZ2giSzM0oZRzkNJ47iKI6yNEuzVC/qRGsVxQ3jqEQvmTRTi5kx6cJ8HDXqypmd0cmS+I5Szi8qXlGq1a1brhgZuWLL1mpVil7lF35kWVFkWdGU6waB67puELiu/KJQuEiFYX3h9NNXTtlYKm08ZeX00xfqYaguet6KHoosK3ooslYD13XdIHBd1w0AKz+S/8TaI79hgk0g83Fsojhq1JWjYhMpR4tJsjSOTWbSBSUijnJ0ohOdaGkpmHPkB7PvLJfC2olvl0th7bpvO+r/cnv/Y3J7ko6MXLx5S71mSbcA8JFu3rFjx11hrVySv4a1cumscwqf7r8pw/0350ZKpXU7d6ysLIIlzzbtYqfEx8WRUiZGfYK1UcbRSZYZbZJMnJu7oVLZurVSCYKtW4MgX+p7DV/vQhKJp0HU859Zm6SLBkm0o5TB/x9IHBtlnDjKMhObKEu1NplJdaK10bLTrde81rtrjhPcNWyF5Wr7pUq5XBi6y7dV7d0t+WZFpPKOqFCtBXe+t1Yquqed5hZLtffeGdSqhegdgDDFlNwkN2FA0iVjFnUyO6OU0SaZnVFOox7HRhmnUY+jhfksM7GJFuazdGlRa5PJla7r+b53992e73uue889ruv5vnf33Z7ve657zz2y3qtVlSnegax1/g9py5eoQC1RjqqYKI6ypkmzRDfPHhoaEhkaGpKpSCTqr8pHAj8Y6396LPCDbwejI+G3Pah83rWQLiNsAXtpTkyXFq0u0VEON3wUR3FNZfpulGRWsCHhjOXluZmZueXlM3L8w+12u1JpqS3qwc23ZHpmx85TT925Y2ZarvzWdrsdBC1TSHkwCPS648hXpSufZhhq/mVqpFodldZotSpSrY72u7nqbirD7WYDwmj+E/mC/IZRkFQnyjZOHMULlkKb9vF4Zk0m17u1Ri2n/JCq5doHtEwuQ5BSe8xgP3nOSiV7V3qzWfJhTolZJcdS70ohsdIJCOtHJQuXKSCjqIzp2cHKMy64MK4t5aPqUcvGR0rNEiM1S16TV++D6TR5XzWVJT8RK1aThanUXrb668hK6xJq+zW+ziNw/arVVDWA/ecUtpgWXAjGqznDMHzaUPkO85jHCKC5Kep2x071vudQAwEKUt62+iC5dfXBIue1ursXIFiBaw9ZFMgEGywjo4VnXQgubMd2Co7tr2iavrtWLxQIyavJRCIhy0o/kTg/qmsaeU3XNFIo1Gu7d9USsqyoyURiwj/KuaTFEz4C/P+JdI/t9edhL44DomKBCYoFW1U1IYesZVbzrFIVzACKxbWqUBVVjyVtx2G2avU5gM+sleLwcNow0sPDxdwnc/dVK5LWkyT3y3LNtEj/wHni33zzzTohifjwCNc0PjIcTxCi36xpc1LOrFz6zDBGRgqFkRHDWC25J1Wq+5I92qSYcdWDnucpqXypZNtWJGLZdqmUTyleJHJyrDQ++JENSD4/qAFsBdYyxixmMYc5TDBxGYTDHMaYYYUnSS4EE4wL07KYmfwsqsosQgdPGNHczsvDyYl35VQqfffd6VSv1D+nK0rm6c2xTFbb/HRGjSbn+nbr7tWh3A49OnB69adrscEncih1RPwrvxUnMIfQPosYMy2+3NhVM/qrrJUpb0kMjt06247tTwsu7CjMWVzwqqrmFH/aCTV9mVVr2mGsyLUiuO9wx1aD4K1DMGSayf6B/mw2qqiWruu6pSrRbLZ/oD9pmkMtogf6jZvf9nTTNP21t0Fcr64bxt0vmiOf9Sy/WausjFzl8gWHEHr3i/kFgKN4B/+Rk+RZ8g35R9osLUgvS1/JMfm0/Ir8TeRg5K3ofgAm0T+diwAM4Lk8IujDj0hCFKOJMkZbkM+rXu1QFAwHkIIc7kQxTOJtFIeFNSiFNNZRY46RZJCIBmBasvKIwJPeRBJipIxkbMTvlSMJRXGVPIYUjJOfUQynpX0oDpfUUApryOycGIiR8s6gFdItNzW6wXKDcnq4E9BjwdL89SnP9VzBSH4uDNvderncDFrhleY9uNeC5e6XerLR6c4HLeq5vj/j16rCp2OTsBsb2er0VlzaGbRCAIX8cCeYmvIQ24L2LZ352bmQjl0r0TFelONzDXpT46rTpctBN6TtoH3D0pUOnb8WtGi3EdIrres0DIKlxfnQRUiYWyPsRIAWQlBswU1ooIsAy2iAgoPiMDoIQHEMAZYwj+uYggf3ubMAq5t5DiFCtNFFHWWU0Ry76pVdootrc5R5ZseTaKCDLubbU3q9SX34mIGPGqoQ8EExNl7VG0fR1/cq/MYSEj87PcdQeYpD6W0I0MYt6GAes+5p6CjGcA0l0JR4HHNIpr4JDVyFgy4olhGgOwJtjyp1A5ZwBR1QzEtH2AJFFw2pK2jhOihCBFiGeRHzCOFCfj5a8/riVuAHAwM=") format("woff2");
  font-display: block;
}

.fas {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fa-regular-400-C_8RtCDq.woff2") format("woff2");
}
.far {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("/assets/fa-light-300-evZfCicc.woff2") format("woff2");
}
.fal {
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url("data:font/woff2;base64,d09GMgABAAAAAAm4AAoAAAAADowAAAlwAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgCJAQgBmADKAB4ypE4yxgFiCAHIIVFBxFFfQhAI2Xh/P38x3f6dY9kS3YcJ3ZqSy8pOp5KA22T1I2VdobbDi8wdgm6QDzYv0XOwh/R9wz/Eif+fzr97puRZAfIJJvHxJJMiQLsBcCAEra8lj5VyzVCBdjt6RHqf7aiot86B9cUH/gRTPl7FbZRUEXgbKAFFhVABTSReYP5g823ubc66NbzAuT3ggl06joEIqKcnn/7T46f1z7nXorYPwCU3fh8fvRtNp+yY0yJKCAWFskOwXQ+JWIXEBGxkbbAB7uh36pB11JAUiUE4hzt4U58lnxiuBIvJaJL6E73Upc+SMTI50oLkehvcuHTnvQYmt4g73q/H0pM6QK/DiDCLq4nojUiHBMxoiYjWsS0bU6MKMAdnnPbfVwizTkRZcSjos7IoxefpyTEybtB3rZ4xyfv+MadL7vzlXcN73r5Xe+fz4lGmL72iNWHure339p+VesqIqL4qvgjhJrbjAd9IvJJkk80n+IYU+IkKaI2rROdD5vqykqnU+lK7YrajWpXKK10KqSQhbHGpsOjo+Xbjo4+e3T01NuOjmZ/Q9zKsJa1YiBuZbMbslaM3snJ7Cdnnpz88wRXnvzz5CRrxUDcymbPz1oxELcyXEWMmvM/4278hji9g2hhuAvf2JGxSg9zY4011ridciSkkEIKKXSms0pV22ejdkorbayRSisprLHGGle72tVuxxprrLH9PkKOjDVuqOcMUkiRK6200rWrXW2N3Rm9H88P41acec00WejqGCjzXHQ1AwDibxCneoNeL2gk7c6GDJYWz93sLXIk7Uo2IkRRqxUCDc/jQWByCQaPI47iJA09MKwVzh08e/+itgxCDxdsZmlHnrmGVaWyxVIx5P1+HxEYYwxABKZ0Evge625umnXwpaVV3llgiBo+hC+DgKHhMbaystCL8ixkDGEUd7smabflgXNrBdju5OnjsgxAjBbnd+B2fJaalBKhkrq0snS20o5XvFzAhy75+k8//br3XnL99z73kjd1T3/0zDk++4M7Pve539zyoQ/NPo7Hzn5EROQRzW/AFFdRRl06iw6JUPSlyNNMq6rYdvU43bGmRDmuctu3IzPecXW1rZUWUpR+Oa6tsUIKnZfjKq9qV1dKK5njqtlxKwzDsIXjVhiGYWt2+0X7/SSKoihJGxEQNVL0LoLwu91AYv8CiCTpjpKE4aqwEc+O40YYNmIcx41wdvz//98dRUkaRVGUJlF098uzTsqQJOqV/1+OGxGWljfeTEQEovkdjPBZmhBB5aPhKJNCCmmsqmpnrLGq2nbGGjtW2tjaKa20GdeudkrXTsjaCYm/oOzvX/SCZ17SjK+YnNbrNcJGO17XGnlvg6NlJ+4ihuWVjcHKaatxsbqsVnG6FJccHGxuMmwBG8iyVfBgacmyJlvdXT41XF72ms2NlRVgTXbWcy9e00QECuZ/wQP4BQ2J1o0dGTsyVkghhVRa6XE5rsa1q6ttrfRwlJd9KXReyTKvXe3wAIpiMjk8nEyKAmxv71nnn49u96w8TbCqwxCH0d6z9vbY9HAyKQqgKCaTw+ft7yffvdRtdbuM4dxm1B5c+t1kf/95FBDN/4c78AsKKKUevYc+Qp+lr9E1RE6U/XFdbWsrtHK1NdKJXFX12JQLQo6EzL5Wdme8M+5LYY1N2KGu1kqratvVzlhjd2hkZMBwVFfbesfVrtZKIubl2NVZnuUi8dGUl3GhLUtt1uDrXvyghyfwBDwfq/B9wPex4cP34V/0qoMDhq2tx3TA0k6WBUHQZEKmiOOok6um19woCib8JmMs7JzqspVibTVuJkkzZIw3pUSS9nrLCdC5cmsTKPqT3Yu/yDhnjDMecQ5wzgrGPQ7usSZjnDPGeeV5nHucgT8kEXFGEmec09Nsa+vkvrW1KE1JE6rKSFZCbHrKSx6FSJZ8MSU8zgL+fmBqalLx+aJ8eoqPjZHXq3h41OdTJqemApoa8nrZRDafmJKnKLq2dl+/1xMpuviUmT+GeRkjxhixLJc44xJn00zixCRp0RoyAzCdnoGJFYDiXJbJZrL1VB4IBu4GITWkGi1NN1q1FS3HjE6786Tkjuphhcl82DCqVc6rVcMI5ydlzogYl8cqXHz/0ku0xTtGTabCKjE1nEyp+YnPEhN5NZUMq4zUcCqpXv/wrrtr1grfMtC3mEYCdawCvW7vRWN7/NJ1O4Vi630SrxIwWbHbW17Eurz+cUI1DBG6ESg9mEsk8sHArU8urzA697Py237KZMyFG8+f+lvLZMZuy7XbKzeaZubid4pE8vlIhOgf+vYG85ukz+d5cabf39tI5hbz9dYNppnJ0NffUzxRf7EejRJlsuYzknYUieTB8bgVsYRHAX/GYLmALJSKVep0oz0s4+n2uj1N72a1BfIrB4JM3FUnTazLYNmZBZLmtHshNdQzVqmrhjyaHtC1Bbq6euO9C2YiQdlcq+f3kUyzrN2+faGlJpNjRLPMF8w9smgSKxQX5htSKZ4gup184eZKPFoMhfhMsNHsNatMkWWF3isQZTOGYRj5LKPJCa8sE/nCy6USi1XjMYUuvqtXSgl//8bHStEYUZpm6/VOLR6qeCfncvlKKt5KJilIkuTxEAAAG/ifwvQM/cWS3MeH/Lr0KAAgRNMgAAAQxU0g7BfZCQrdbck9+HJfpOXI4b89UqLEBzJ07IGCKL6CcdSQgAmoeB1mEcSf7DkbrThIGgPQprfaQDBJBoZp9ghw3Mh+SZROkLFLf4CCNjuGcTxIqzCBBqvDLCrsgzuYwzR7pG8PXLF+xXLsc0t0xcZoZ7DviLutw0tnO6N7jyxxxdotOuLcdlwxtIeXznZG4njPHgjHcsXOYF+4tn12euw2Nu3htdHx4ZErSntl0bcHrlhX/dD7rZFzbA+E1tDmDa2lGx1RMs25zLSkKbSG1tC18pHrDh2z2TywB+6Oe6rGnn3umKpvD1xpTtflxPpoaDyRg+TUrZ4ZfdgYwIXAOq7AggMb57Ag0IXABkbYwQD7cCBwNywc4hLOsIMR7sURr/kVWNhFkUt9DhuORv0QNob8aoFj7FlTCziwbKK6FxFwYcPGGU5xDBcNbEq7X8MIxzjEkX/1K2EPZQiP3e+HhREcHCNaTEBDAxrmYUBDCzoMdDRFiDj5sha+eZs3oEND2ZfWLoZwYKKJJg5il7xzsRtIU51HC49ziCu5G+FM6nJRzk2MuEPOYlEdOLFfWZE+DAMAAA==") format("woff2");
}
.fab {
  font-family: "Font Awesome 6 Brands";
}

.fak.fa-regular-envelope-circle-plus::before {
  content: "\e000";
}

.fak.fa-regular-globe-circle-minus::before {
  content: "\e002";
}

.fak.fa-regular-globe-circle-plus::before {
  content: "\e001";
}

.fak {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome Kit";
}

@font-face {
  font-family: "Font Awesome Kit";
  font-style: normal;
  font-display: block;
  src: url("data:font/woff2;base64,d09GMgABAAAAAAWMAAoAAAAACs8AAAVDAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAATYCJAQgBmADEAA0yoo0ywoFiFMHIAVnBQDE6tPZ9wiQnIQAg+S0uw9kS/YGzLOM5A0pnxKLhZEDciHZW779kCM/31Ki7v/nwyWEcMR/3DvwxB8I/dmicA3qou5Tc1g2qAuw87E2jomLC9cCCSzQNNWcUNtVGAmsrJ+tgADgHGZ33ClfUDb9h07hHwD8vj699/9TouWmcAU1AbQBEp8Aai43AeEK4IBoGV4wo+qUKF5CG1heICCLR4VtdAdiEOgQVQDsvZ3uP/TiGkBALCLpQQlcJNh+9uRhNL/El4Ifcmpim5XEoPX0LAAG0BUe4tccwH/VCIA0IrEr0oiC+YvMqb4UlpeBL7G8zA7/KwYsN+kKakKEjDT6UQQcR3JMntQs3TK55GimluSSo1u6xp2s7XBuO1muaqqW5KIkSllumIaZLARBEKz4/vvvg+COIAiCM99//30QtD4iOZ4mlo7LRHI83foyHZepr9FoNFqvrm40Pm00GnSo8WmjkY7LRHI83bqYjsvE5D+BaH12ugJrsBUnEADdXtSX4YYuSqIkcVHPmSbPcFXLXiN+NWZlihmNq9aY4/AiN8wsF6WYRl5VUzVREiXDNExL1Sx6PNspcovbjmHqnA0QpQzXuSiBUql+uqI/laK2tq2jeSWycnBw5W2kUCTW2fqtP5WiwiuJ7nTiZVJaVyhEBWF4ZPPmkWHh9rbbSCmQolBBobnubf2pFFEq1b+daGhoY0TTFl5WqE81uQdUVb2tq+s2VSFS/hQMKAyPbJ6oSoEUoC1n5ZvYgoM4jXOYwyJuxIu5o6la/Tk9J+lczYiSXRw3dS5m0prFRUnP7KJUR3Vsx3ZUTdQN0zCN4rijpTWLG8VxR+dixrF0i3PbEaWMqnFumLpj6Rb8ckuGJEqi5KiaxTk3zO6Uf5Dc4IYNe/Zs2DCYbI9Gh7MjxJKC8HAk8mC7cH27nJBlUZTlRLsUWWNt3LNhw2AuFxcPCcIhUduxY0enuj2X257p2hHccsst59CQ2x/JdO3Ibe+ozvg35bJE2dymVdlEl9xvZtReTevt1bTeof6V7R1EHe0ru3t2jvZSNrdp886dm6/AbHPRNldubW5dadpNeCj0D50z7a0rW1+U0rLxt9zXoBX8srrxrlDoxpdUS0qKQhVKfgw/0ofCQwBUin+aKoHd+Pw+EHrwtkCA9PlNQQSr8HDrGMVBDBwSiFBxFDpgwIVOaJiABBK4mZm0kSwCirYDuEl4pwNCQbgZBMRJgwi2CIcdox3EcImGQMRaeg06cIi+gk7k6XpIgAnrhpxEnLQT7tTCbKl+xq0Hnl9jhbxlW2MTfKzIhvf4tZBtv+wG/pzLFpcGN7BCvpAft0eqYTgfbBgdrfi1sNRq5cv+3B6/FtLkB71wnYU3LS8EoT/HvLJfC1il7s+xg17IQn/GrbHJyQmnYBWLVtmmz4Ne+BibKbLWuWERZMA7/fmlujdVDQM2V1piVXd2kl1aYmHVZYuluucvBKxcd0uhXw+YX3kOdW4pvBoLq17AKn4txAm4mMICZlFCHWfgoo4AHnzUwFBAHhZsWBjDBDjGUATDMPZg7huCYTsuw0UAH3NwwbCowt4w91NAHuOwMYIqQoSYR4ANGMUoKljvECUtbh5lVdyWiSm4g/AQYp3/qmUsIECI4zJ4Kto1BGCooP4MymYyJHcGbpyvdBKTmICDAiwUUYSFcoyoilUYVyy3buuQCZsqxN8JH/NYQh0eprJYbwCGOZSwBIYqXMxiEgyXHmOGM5dhkc/14OdGnaGMOlyU4mfWe08fFY5R1phedhQhqvD4eKUMfhaavzAAAwAAAA==") format("woff2");
}
/*!
 * Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
.fab {
  font-weight: 400;
}

.fa-edge:before {
  content: "\f282";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-x-twitter:before {
  content: "\e61b";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-firefox-browser:before {
  content: "\e007";
}

/*!
 * Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */

.fa-solid,
.fas,
.far,
.fab,
.fal,
.fad,
.fast {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.far,
.fal,
.fa-solid {
  font-family: "Font Awesome 6 Pro";
}

.fab {
  font-family: "Font Awesome 6 Brands";
}

.fad {
  font-family: "Font Awesome 6 Duotone";
}


.fast {
  font-family: "Font Awesome 6 Sharp";
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

@media (prefers-reduced-motion: reduce) {
  
  .fa-spin {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-at::before {
  content: "@";
}

.fa-phone-arrow-up-right::before {
  content: "\e224";
}

.fa-phone-arrow-up::before {
  content: "\e224";
}

.fa-phone-outgoing::before {
  content: "\e224";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-map-marker-minus::before {
  content: "\f609";
}

.fa-building-memo::before {
  content: "\e61e";
}

.fa-user-vneck::before {
  content: "\e461";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-map-marker-plus::before {
  content: "\f60a";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-webhook::before {
  content: "\e5d5";
}

.fa-archive::before {
  content: "\f187";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-arrow-progress::before {
  content: "\e5df";
}

.fa-user-chef::before {
  content: "\e3d2";
}

.fa-users-medical::before {
  content: "\f830";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-empty-set::before {
  content: "\f656";
}

.fa-radar::before {
  content: "\e024";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-face-frown-slight::before {
  content: "\e376";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-compress::before {
  content: "\f066";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-user-beard-bolt::before {
  content: "\e689";
}

.fa-lock::before {
  content: "\f023";
}

.fa-globe-pointer::before {
  content: "\e60e";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-edit::before {
  content: "\f044";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-reply-clock::before {
  content: "\e239";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-minus-octagon::before {
  content: "\f308";
}

.fa-user-helmet-safety::before {
  content: "\f82c";
}

.fa-user-construction::before {
  content: "\f82c";
}

.fa-user-hard-hat::before {
  content: "\f82c";
}

.fa-sparkles::before {
  content: "\f890";
}

.fa-user-alien::before {
  content: "\e04a";
}

.fa-shield-check::before {
  content: "\f2f7";
}

.fa-briefcase-blank::before {
  content: "\e0c8";
}

.fa-filters::before {
  content: "\e17e";
}

.fa-bell-on::before {
  content: "\f8fa";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-map-marker-smile::before {
  content: "\f60d";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-badge-percent::before {
  content: "\f646";
}

.fa-user::before {
  content: "\f007";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-key::before {
  content: "\f084";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-bell-exclamation::before {
  content: "\f848";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-box::before {
  content: "\f466";
}

.fa-shield-slash::before {
  content: "\e24b";
}

.fa-phone-square-down::before {
  content: "\e27a";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-map-marker-times::before {
  content: "\f60e";
}

.fa-map-marker-xmark::before {
  content: "\f60e";
}

.fa-sliders-simple::before {
  content: "\e253";
}

.fa-server::before {
  content: "\f233";
}

.fa-user-hair-buns::before {
  content: "\e3d3";
}

.fa-hourglass-clock::before {
  content: "\e41b";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-crown::before {
  content: "\f521";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-user-pilot-tie::before {
  content: "\e2c1";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-signal-stream::before {
  content: "\f8dd";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-rectangle-history-circle-plus::before {
  content: "\e4a3";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-bold::before {
  content: "\f032";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-user-unlock::before {
  content: "\e058";
}

.fa-image::before {
  content: "\f03e";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-shield-xmark::before {
  content: "\e24c";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-hand-holding-circle-dollar::before {
  content: "\e621";
}

.fa-phone-rotary::before {
  content: "\f8d3";
}

.fa-user-police::before {
  content: "\e333";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-star-shooting::before {
  content: "\e036";
}

.fa-globe-snow::before {
  content: "\f7a3";
}

.fa-user-vneck-hair-long::before {
  content: "\e463";
}

.fa-inbox-full::before {
  content: "\e1ba";
}

.fa-envelope-circle::before {
  content: "\e10c";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-phone-arrow-right::before {
  content: "\e5be";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-memo::before {
  content: "\e1d8";
}

.fa-italic::before {
  content: "\f033";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-user-group-crown::before {
  content: "\f6a5";
}

.fa-users-crown::before {
  content: "\f6a5";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-phone-circle::before {
  content: "\e11b";
}

.fa-user-nurse-hair::before {
  content: "\e45d";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-code::before {
  content: "\f121";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-user-cowboy::before {
  content: "\f8ea";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-heart::before {
  content: "\f004";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-user-shakespeare::before {
  content: "\e2c2";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-lock-alt::before {
  content: "\f30d";
}

.fa-circle::before {
  content: "\f111";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-inbox-out::before {
  content: "\f311";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-user-crown::before {
  content: "\f6a4";
}

.fa-user-tie-hair-long::before {
  content: "\e460";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-user-robot::before {
  content: "\e04b";
}

.fa-arrow-up-right::before {
  content: "\e09f";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-user-police-tie::before {
  content: "\e334";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-user-nurse-hair-long::before {
  content: "\e45e";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-face-pensive::before {
  content: "\e384";
}

.fa-user-music::before {
  content: "\f8eb";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-spinner-third::before {
  content: "\f3f4";
}

.fa-phone::before {
  content: "\f095";
}

.fa-home-blank::before {
  content: "\e487";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-phone-laptop::before {
  content: "\f87a";
}

.fa-phone-arrow-down-left::before {
  content: "\e223";
}

.fa-phone-arrow-down::before {
  content: "\e223";
}

.fa-phone-incoming::before {
  content: "\e223";
}

.fa-phone-xmark::before {
  content: "\e227";
}

.fa-envelope-open-dollar::before {
  content: "\f657";
}

.fa-campfire::before {
  content: "\f6ba";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-briefcase-arrow-right::before {
  content: "\e2f2";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-map-marker-exclamation::before {
  content: "\f608";
}

.fa-user-visor::before {
  content: "\e04c";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-inboxes::before {
  content: "\e1bb";
}

.fa-brackets-curly::before {
  content: "\f7ea";
}

.fa-comment::before {
  content: "\f075";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-home-heart::before {
  content: "\f4c9";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-bell-school-slash::before {
  content: "\f5d6";
}

.fa-minus::before {
  content: "\f068";
}

.fa-user-chart::before {
  content: "\f6a3";
}

.fa-user-doctor-hair-long::before {
  content: "\e459";
}

.fa-cog::before {
  content: "\f013";
}

.fa-folder-xmark::before {
  content: "\f65f";
}

.fa-clock::before {
  content: "\f017";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-map-marker-alt-slash::before {
  content: "\f605";
}

.fa-bell-school::before {
  content: "\f5d5";
}

.fa-industry-windows::before {
  content: "\f3b3";
}

.fa-industry-alt::before {
  content: "\f3b3";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-coin::before {
  content: "\f85c";
}

.fa-phone-circle-down::before {
  content: "\e11d";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-user-hair::before {
  content: "\e45a";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-download::before {
  content: "\f019";
}

.fa-user-pilot::before {
  content: "\e2c0";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-video-circle::before {
  content: "\e12b";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-upload::before {
  content: "\f093";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-users-class::before {
  content: "\f63d";
}

.fa-face-smile-hearts::before {
  content: "\e390";
}

.fa-circle-dollar::before {
  content: "\f2e8";
}

.fa-industry::before {
  content: "\f275";
}

.fa-chart-mixed::before {
  content: "\f643";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-bells::before {
  content: "\f77f";
}

.fa-globe-wifi::before {
  content: "\e685";
}

.fa-envelope-dot::before {
  content: "\e16f";
}

.fa-envelope-badge::before {
  content: "\e16f";
}

.fa-user-tie-hair::before {
  content: "\e45f";
}

.fa-user-hair-mullet::before {
  content: "\e45c";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-file::before {
  content: "\f15b";
}

.fa-user-robot-xmarks::before {
  content: "\e4a7";
}

.fa-bullseye-pointer::before {
  content: "\f649";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-user-bounty-hunter::before {
  content: "\e2bf";
}

.fa-rectangle-terminal::before {
  content: "\e236";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-play::before {
  content: "\f04b";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-map-marker-question::before {
  content: "\f60b";
}

.fa-user-hoodie::before {
  content: "\e68a";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-bell-plus::before {
  content: "\f849";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-envelopes::before {
  content: "\e170";
}

.fa-phone-office::before {
  content: "\f67d";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-user-doctor-hair::before {
  content: "\e458";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-megaphone::before {
  content: "\f675";
}

.fa-user-headset::before {
  content: "\f82d";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-user-magnifying-glass::before {
  content: "\e5c5";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-phone-intercom::before {
  content: "\e434";
}

.fa-globe-stand::before {
  content: "\f5f6";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-user-vneck-hair::before {
  content: "\e462";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-plus::before {
  content: "+";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-phone-circle-alt::before {
  content: "\e11c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-equals::before {
  content: "=";
}

.fa-building-magnifying-glass::before {
  content: "\e61c";
}

.fa-user-hair-long::before {
  content: "\e45b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-percentage::before {
  content: "%";
}

.fa-map-marker-check::before {
  content: "\f606";
}

.fa-phone-hangup::before {
  content: "\e225";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-party-horn::before {
  content: "\e31b";
}

.fa-user-group-simple::before {
  content: "\e603";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-history::before {
  content: "\f1da";
}

.fa-phone-missed::before {
  content: "\e226";
}

.fa-shield::before {
  content: "\f132";
}

.fa-phone-plus::before {
  content: "\f4d2";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-hashtag::before {
  content: "#";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-user-doctor-message::before {
  content: "\f82e";
}

.fa-user-md-chat::before {
  content: "\f82e";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-grip-dots-vertical::before {
  content: "\e411";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-check::before {
  content: "\f00c";
}

.fa-buildings::before {
  content: "\e0cc";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-map-marker-edit::before {
  content: "\f607";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-bell-ring::before {
  content: "\e62c";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-trash-check::before {
  content: "\e2af";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-shield-exclamation::before {
  content: "\e247";
}

.fa-map-marker-slash::before {
  content: "\f60c";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-exclamation::before {
  content: "!";
}

.fa-dollar::before {
  content: "$";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-video::before {
  content: "\f03d";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1.4rem;
  font-display: swap;
  font-family: var(--fonts-family-body) !important;
  font-feature-settings: var(--fonts-family-feature-settings);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--colors-grey-900);
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

[hidden],
.hidden {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fonts-family-heading);
  font-weight: 700;
  line-height: 1;
}

strong,
.strong {
  font-weight: 600;
}

a {
  color: var(--colors-secondary-700);
  transition: color 100ms ease-in;
  text-underline-offset: var(--spacing-01);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 150ms ease-in-out, color 150ms ease-in-out;
}
a:hover, a:focus, a:active {
  text-decoration-color: var(--colors-secondary-700);
}

.container-fluid {
  max-width: 140rem;
  margin: 0 auto;
}

.container-fluid--xxs {
  max-width: 72rem;
}

.container-fluid--xs {
  max-width: 96rem;
}

.container-fluid--sm {
  max-width: 104rem;
}

.container-fluid--md {
  max-width: 120rem;
}

.h-separator {
  width: 100%;
  max-width: 140rem;
  height: 1px;
  margin: 0 auto;
  border: 0;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.h-separator--sm {
  max-width: 96rem;
}

.generic-hero {
  position: relative;
  background-color: var(--colors-grey-50);
  text-align: center;
  padding: calc(var(--spacing-base) * 40) 0 var(--spacing-30);
  overflow: hidden;
}
.generic-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.generic-hero--sm {
  padding: calc(var(--spacing-base) * 30) 0 var(--spacing-10);
}

.generic-hero__title {
  position: relative;
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
  z-index: 2;
}

.generic-hero__subtitle {
  position: relative;
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 3.01456rem + 1.561vw, 5.2rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 90rem;
  margin: 0 auto;
  z-index: 2;
}
.generic-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}
.generic-hero__subtitle:lang(fr) {
  max-width: 88rem;
}

.generic-hero__subtitle--lg {
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
}

.generic-hero__subtitle--start {
  text-align: left;
  max-width: none;
  margin: 0;
}

.generic-hero__description {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-800);
  margin: var(--spacing-06) auto 0;
}

.generic-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-02);
}

@media screen and (min-width: 62em) {
  .generic-hero {
    padding: calc(var(--spacing-base) * 50) 0 calc(var(--spacing-base) * 40);
  }
  .generic-hero--md {
    padding: calc(var(--spacing-base) * 50) 0 calc(var(--spacing-base) * 30);
  }
  .generic-hero--sm {
    padding: calc(var(--spacing-base) * 40) 0 var(--spacing-20);
  }
}
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

#copy-area {
  position: fixed;
  top: 0px;
  left: 0px;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.breadcrumb {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-01);
  padding-left: 0;
  margin: 0 0 var(--spacing-02);
}

.breadcrumb--center {
  justify-content: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  color: var(--colors-grey-600);
  font-size: 1.2rem;
  line-height: 1.2307692308;
}
.breadcrumb__item:not(:first-child)::before {
  content: "›";
  color: var(--colors-grey-500);
}

.breadcrumb__link {
  color: inherit;
  text-decoration-color: var(--colors-grey-400);
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: var(--colors-grey-800);
  text-decoration-color: var(--colors-grey-500);
}

.codeblock__header {
  padding: var(--spacing-04);
  display: flex;
  gap: var(--spacing-03);
  align-items: center;
  min-width: 0;
  background-color: var(--colors-grey-800);
  color: var(--colors-grey-400);
  border-radius: 0.4rem 0.4rem 0 0;
}

.codeblock__url {
  flex: 1;
  color: var(--colors-grey-300);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.codeblock__response {
  color: var(--colors-success-500);
}

.codeblock .CodeRay {
  border-radius: 0 0 0.4rem 0.4rem;
  max-height: 42rem;
  overflow: auto;
}

code,
.CodeRay {
  color: var(--colors-grey-900);
  background-color: var(--colors-grey-100);
  border-radius: 3px;
  display: inline-block;
  padding: 0 5px;
}
code .integer,
.CodeRay .integer {
  color: var(--colors-primary-500);
}
code .key,
.CodeRay .key {
  color: var(--colors-success-500);
}
code .value,
.CodeRay .value {
  color: var(--colors-secondary-500);
}
code .param,
.CodeRay .param {
  color: var(--colors-secondary-500);
}

pre,
.CodeRay {
  border-radius: 5px;
  background-color: var(--colors-grey-1000);
  border: 0;
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
  overflow-x: auto;
  padding: 15px;
}
pre code,
.CodeRay code {
  background-color: transparent;
  font-size: 13px;
  white-space: pre;
  padding: 0;
}
pre::-webkit-scrollbar,
.CodeRay::-webkit-scrollbar {
  height: 10px;
}
pre::-webkit-scrollbar-track,
.CodeRay::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--colors-grey-700);
}
pre::-webkit-scrollbar-thumb,
.CodeRay::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--colors-grey-600);
}
pre::-webkit-scrollbar-thumb:hover,
.CodeRay::-webkit-scrollbar-thumb:hover {
  background-color: var(--colors-grey-500);
}
pre::-webkit-scrollbar-thumb:active,
.CodeRay::-webkit-scrollbar-thumb:active {
  background-color: var(--colors-grey-400);
}

.CodeRay {
  padding: 0;
}

.argument-icon {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
  margin-bottom: var(--spacing-10);
  text-align: center;
}

.argument-icon__icon {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: var(--colors-grey-100);
  border: 0.1rem solid var(--colors-grey-300);
  border-radius: 0.4rem;
  color: var(--colors-grey-600);
  font-size: 2rem;
}

.argument-icon__title {
  font-size: clamp(2.1rem, 1.99024rem + 0.2927vw, 2.4rem);
  line-height: 1.3333333333;
  color: var(--colors-grey-900);
  margin-top: var(--spacing-02);
}

.argument-icon__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
  max-width: 38rem;
  margin: var(--spacing-02) auto 0;
}

[data-header-observer] {
  position: absolute;
  top: var(--spacing-10);
  left: 0;
  z-index: -10;
}

.main-header {
  position: fixed;
  top: var(--spacing-06);
  left: 50%;
  width: calc(100% - 6.4rem);
  max-width: 160rem;
  padding: var(--spacing-03) var(--spacing-10);
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 4.8rem;
  transform: translateX(-50%);
  z-index: 1001;
  transition: box-shadow 500ms ease-in-out;
}
.main-header.is-sticky {
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.04), 0 0.2rem 2.4rem 0 rgba(0, 0, 0, 0.05);
}
.static-menu .main-header {
  position: absolute;
}

.main-header__inner {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.main-header__logo {
  position: relative;
  line-height: 1;
  fill: var(--colors-primary-600);
}

.main-header__account-name {
  color: var(--colors-grey-700);
  font-size: 14px;
}

.main-header__product-brand {
  color: var(--colors-grey-600);
  font-size: 17px;
  font-weight: 600;
  margin-left: 10px;
}

.main-header__home-link {
  display: block;
}

.main-header__end {
  margin-left: auto;
}

.main-header__cta {
  color: var(--colors-grey-600);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  line-height: 1.6;
}
.main-nav ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  margin-left: var(--spacing-08);
}

.main-menu__item:hover .main-dropdown, .main-menu__item:focus-within .main-dropdown {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}

.main-menu__link {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  padding: var(--spacing-02) var(--spacing-03);
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  color: var(--colors-grey-700);
  border: 0;
  border-radius: 2rem;
  background-color: transparent;
  position: relative;
}
.main-menu__link .fa-angle-down {
  font-size: 1.4rem;
  color: var(--colors-grey-500);
  transition: color 0.1s ease-in-out;
}
.main-menu__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -16px;
  left: 0;
  right: 0;
}
.main-menu__link:hover, .main-menu__link:focus {
  color: var(--colors-grey-800);
  background-color: var(--colors-grey-100);
  text-decoration: none;
  outline: none;
}
.main-menu__link:hover .fa-angle-down, .main-menu__link:focus .fa-angle-down {
  color: var(--colors-grey-600);
}
.main-menu__link:focus-visible {
  outline: 1px solid var(--colors-secondary-600);
  box-shadow: 0 0 0 3px var(--colors-secondary-300);
}

.main-dropdown {
  visibility: hidden;
  position: absolute;
  margin-left: -10px;
  top: 100%;
  margin-top: var(--spacing-01);
  opacity: 0;
  transform: scale(0.98) translateY(2%);
  z-index: 101;
  background-color: #fff;
  border: 1px solid var(--colors-grey-300);
  border-radius: 0.4rem;
  border: 1px solid var(--colors-grey-200);
  box-shadow: 0px 40px 80px -16px rgba(199, 205, 212, 0.25), 0px 20px 60px -20px rgba(29, 38, 46, 0.1);
  min-width: 400px;
  transition: all 200ms ease-in-out 0s, visibility 0s linear 0.2s, z-index 0s linear 0.01s;
}

.main-dropdown__primary-wrapper {
  display: flex;
}
.main-dropdown__primary-wrapper::before {
  content: "";
  align-self: stretch;
  flex: 0 0 0.1rem;
  background-color: var(--colors-grey-200);
}
.main-dropdown__primary-wrapper .main-dropdown__primary {
  padding: var(--spacing-05) var(--spacing-03) var(--spacing-03);
}

.main-dropdown__separator {
  margin: var(--spacing-03) calc(var(--spacing-02) * -1) var(--spacing-05) calc(var(--spacing-03) * -1);
  border: 0;
  height: 0.1rem;
  background-color: var(--colors-grey-200);
}

.main-dropdown__primary {
  min-width: 36rem;
  background-color: transparent;
  padding: var(--spacing-02);
  border-radius: 0.4rem;
}

.main-dropdown__secondary {
  background-color: var(--colors-grey-100);
  padding: var(--spacing-02);
  margin: var(--spacing-02);
  border-radius: 0.4rem;
}
.main-dropdown__secondary .main-dropdown-feature:hover,
.main-dropdown__secondary .main-dropdown-feature:focus-visible {
  background-color: var(--colors-grey-200);
}

.main-dropdown__title {
  display: block;
  margin-bottom: var(--spacing-01);
  color: var(--colors-secondary-700);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.main-dropdown[id=resources-submenu] {
  display: flex;
}
.main-dropdown[id=resources-submenu] .main-dropdown__primary-wrapper::before {
  display: none;
}
.main-dropdown[id=product-submenu] .main-dropdown__title {
  margin-left: var(--spacing-04);
}
.main-dropdown[id=product-submenu] .main-dropdown-feature {
  position: relative;
  flex-direction: column;
  gap: var(--spacing-01);
}
.main-dropdown[id=product-submenu] .main-dropdown-feature__title {
  gap: var(--spacing-01);
}
.main-dropdown[id=product-submenu] .main-dropdown__primary:first-child {
  order: -1;
}
.main-dropdown[id=locale-submenu] {
  min-width: 12rem;
}
.main-dropdown[id=locale-submenu]::before, .main-dropdown[id=locale-submenu]::after {
  left: 2rem;
}

.main-dropdown-feature {
  background-color: transparent;
  display: flex;
  padding: var(--spacing-03) var(--spacing-04);
  margin-bottom: var(--spacing-005);
  border-radius: 0.4rem;
  transition: background-color 200ms ease-in;
  text-decoration-color: transparent;
}
.main-dropdown-feature:last-child {
  margin-bottom: 0;
}
.main-dropdown-feature[target=_blank] .main-dropdown-feature__title::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Pro";
  font-size: 1.2rem;
  color: var(--colors-grey-600);
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  transform: translateX(-25%);
  transition: opacity 150ms ease-in, transform 150ms ease-in;
  margin-left: 0;
  position: relative;
}
.main-dropdown-feature:hover, .main-dropdown-feature:focus {
  text-decoration-color: transparent;
  outline: none;
  background-color: var(--colors-grey-100);
}
.main-dropdown-feature:hover .main-dropdown-feature__title::after, .main-dropdown-feature:focus .main-dropdown-feature__title::after {
  opacity: 1;
  transform: translateX(0);
}
.main-dropdown-feature:hover .main-dropdown-feature__desc, .main-dropdown-feature:focus .main-dropdown-feature__desc {
  color: var(--colors-grey-900);
}
.main-dropdown-feature:focus-visible {
  outline: 2px solid var(--colors-primary-600);
}

.main-dropdown-feature__icon {
  align-self: flex-start;
  width: 1.25em;
  margin-right: var(--spacing-02);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
  color: var(--colors-grey-700);
}

.main-dropdown-feature__title {
  color: var(--colors-grey-900);
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
}

.main-dropdown-feature__desc {
  color: var(--colors-grey-700);
  font-size: 1.3rem;
  line-height: 1.2307692308;
  transition: color 0.1s ease-in-out;
  white-space: nowrap;
}

.main-dropdown__label {
  display: inline-block;
  padding: var(--spacing-005) var(--spacing-02);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4545454545;
  border-radius: 1em;
  color: #fff;
  background-color: var(--colors-secondary-600);
}

.user-nav {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-06);
  margin-bottom: 0;
  padding-left: 0;
  color: var(--colors-grey-700);
}

.user-nav__link,
.user-nav__btn {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  padding: var(--spacing-01) 0;
  border-bottom: 0.15rem solid transparent;
  color: var(--colors-grey-800);
  transition: border-bottom-color 0.2s ease-in-out;
}
.user-nav__link:hover, .user-nav__link:focus,
.user-nav__btn:hover,
.user-nav__btn:focus {
  color: var(--colors-grey-800);
  outline: none;
  text-decoration: none;
  border-bottom-color: currentColor;
}

.user-nav__btn {
  color: var(--colors-primary-600);
}
.user-nav__btn:hover, .user-nav__btn:focus {
  color: var(--colors-primary-600);
}

.locale-switcher:hover .main-dropdown, .locale-switcher:focus-within .main-dropdown {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}

.locale-switcher__trigger {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 1.25em;
  background-color: transparent;
  color: var(--colors-grey-600);
  text-align: center;
}
.locale-switcher__trigger::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2rem;
  left: 0;
  right: 0;
}
.locale-switcher__trigger:hover, .locale-switcher__trigger:focus {
  color: var(--colors-grey-800);
}

.locale-switcher-languages {
  padding: 0;
  margin: 0;
}

.locale-switcher-languages__item {
  overflow: hidden;
}

.locale-switcher-languages__name {
  display: block;
  padding: var(--spacing-02) var(--spacing-04);
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: var(--colors-grey-700);
  transition: color 0.1s ease-in-out;
}
.locale-switcher-languages__name:hover, .locale-switcher-languages__name:focus {
  color: var(--colors-grey-900);
  background-color: var(--colors-grey-200);
  text-decoration: none;
}
.locale-switcher-languages__name[aria-current] {
  font-weight: normal;
  background-color: var(--colors-grey-100);
}

.mobile-nav {
  display: none;
}
.mobile-nav .locale-switcher__trigger {
  position: absolute;
  right: var(--spacing-20);
  top: 22px;
  height: auto;
}
.mobile-nav .locale-switcher__trigger::before {
  display: none;
}

.mobile-nav-trigger {
  background-color: transparent;
  border: 0;
  padding: 10px 0;
  position: absolute;
  right: var(--spacing-08);
  top: 22px;
  color: var(--colors-grey-700);
  z-index: 1002;
}
.mobile-nav-trigger[aria-expanded=true] .mobile-nav-trigger__burger {
  background-color: transparent;
}
.mobile-nav-trigger[aria-expanded=true] .mobile-nav-trigger__burger:before {
  background-color: currentColor;
  top: 0;
  transform: rotate(-45deg);
}
.mobile-nav-trigger[aria-expanded=true] .mobile-nav-trigger__burger:after {
  background-color: currentColor;
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav-trigger__burger {
  color: inherit;
  background-color: currentColor;
  display: block;
  height: 3px;
  position: relative;
  width: 20px;
  border-radius: 3px;
}
.mobile-nav-trigger__burger::before, .mobile-nav-trigger__burger::after {
  background-color: inherit;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: -0.7rem;
  border-radius: 3px;
  transition: top 250ms ease-in-out, transform 250ms ease-in-out;
  width: 100%;
}
.mobile-nav-trigger__burger::after {
  top: 0.7rem;
}

.mobile-main-nav,
.mobile-locale-switcher {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: var(--spacing-01);
  background-color: #fff;
  padding: var(--spacing-02);
  z-index: 999;
  line-height: 24px;
  min-height: calc(100vh - 80px);
  border-radius: 0.4rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.2);
  transform: scale(0.95) translateY(20px);
  transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.mobile-main-nav[aria-hidden=false],
.mobile-locale-switcher[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.mobile-user-menu {
  list-style-type: none;
  background-color: var(--colors-grey-100);
  border-radius: 3px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.mobile-user-menu__item {
  margin: var(--spacing-02);
  flex: 1;
}

.mobile-main-menu {
  margin: var(--spacing-02);
  list-style-type: none;
  padding-left: 0;
}

.mobile-main-menu__item {
  border-bottom: 1px solid var(--colors-grey-300);
}

.mobile-main-menu__link {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  padding: var(--spacing-03) 0;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: var(--colors-grey-900);
  transition: color 0.1s ease-in-out, background-color 0.2s ease-in-out;
}
.mobile-main-menu__link[aria-expanded=true] .mobile-main-menu__carret {
  transform: rotate(-180deg);
}
.mobile-main-menu__link:hover, .mobile-main-menu__link:focus {
  text-decoration: none;
  color: var(--colors-grey-1000);
}
.mobile-main-menu__link:active {
  background-color: var(--colors-grey-200);
}

.mobile-main-menu__carret {
  margin-left: auto;
  color: var(--colors-grey-600);
  font-size: 1.6rem;
  margin-right: var(--spacing-01);
  transition: transform 200ms ease-in-out;
}

.mobile-submenu {
  border-top: 1px solid var(--colors-grey-300);
  overflow: hidden;
  max-height: 500px;
  transition: max-height 250ms ease-in-out, opacity 250ms 50ms ease-in;
}
.mobile-submenu[aria-hidden=true] {
  max-height: 0;
  opacity: 0;
}

.mobile-submenu-feature {
  display: flex;
  align-items: center;
  margin: var(--spacing-04) 0;
  gap: var(--spacing-03);
}
.mobile-submenu-feature:hover, .mobile-submenu-feature:focus {
  text-decoration: none;
  outline: none;
}
.mobile-submenu-feature:hover .mobile-submenu-feature__desc, .mobile-submenu-feature:focus .mobile-submenu-feature__desc {
  color: var(--colors-grey-900);
}
.mobile-submenu-feature:hover .mobile-submenu-feature__icon, .mobile-submenu-feature:focus .mobile-submenu-feature__icon {
  background-color: var(--colors-secondary-600);
  color: #fff;
}

.mobile-submenu-feature__title {
  color: var(--colors-grey-900);
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
}

.mobile-submenu-feature__desc {
  color: var(--colors-grey-700);
  font-size: 12px;
  line-height: 1.6666666667;
  transition: color 0.1s ease-in-out;
}

.mobile-locale-switcher {
  min-height: auto;
}
.mobile-locale-switcher .locale-switcher-languages__item {
  border-radius: 0.4rem;
}

@media screen and (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .main-header {
    top: var(--spacing-04);
    width: calc(100% - 3.2rem);
    padding: var(--spacing-03) var(--spacing-08);
  }
  .main-header__account-name {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  .main-nav {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .main-menu {
    margin-left: var(--spacing-10);
  }
  .main-menu__link {
    padding: var(--spacing-02) var(--spacing-04);
  }
}
.main-footer {
  background-color: var(--colors-grey-1000);
  color: var(--colors-grey-500);
  font-size: 1.4rem;
  padding: var(--spacing-20) var(--spacing-04);
}
.main-footer a:hover, .main-footer a:focus, .main-footer a:active,
.main-footer button:hover,
.main-footer button:focus,
.main-footer button:active {
  text-decoration: none;
  color: #ffffff;
}

.footer-legal {
  display: flex;
  flex-direction: column;
}

.footer-legal__logo {
  fill: #fff;
}

.footer-legal__copyright {
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  color: var(--colors-grey-500);
  margin-top: var(--spacing-03);
}

.footer__title {
  display: block;
  margin: var(--spacing-10) 0 var(--spacing-06) 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: var(--colors-grey-100);
}

.footer-menu {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

.footer-menu__item {
  font-size: 1.3rem;
  line-height: 1.2307692308;
}
.footer-menu__item:not(:first-child) {
  margin-top: var(--spacing-04);
}

.footer-menu__link {
  color: var(--colors-grey-500);
  transition: color 100ms ease-in-out;
}

.footer-status__dot {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: var(--spacing-01);
  border-radius: 50%;
  border: 0.5px solid var(--colors-grey-1000);
  background-color: var(--colors-success-600);
  box-shadow: 0px 0px 2px var(--colors-success-300);
  vertical-align: 1px;
}
.footer-status__dot.is-down {
  background-color: var(--colors-danger-600);
  box-shadow: 0px 0px 2px var(--colors-danger-300);
}

.footer__label {
  display: inline-block;
  margin-left: var(--spacing-01);
  padding: var(--spacing-005) var(--spacing-01);
  border-radius: 0.2rem;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  color: var(--colors-grey-700);
  background-color: var(--colors-grey-200);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--spacing-04);
  margin-bottom: var(--spacing-06);
  margin-top: var(--spacing-10);
}

.footer-socials__link {
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--colors-grey-300);
}

.footer-legal-menu {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-01);
  font-size: 1.1rem;
  line-height: 1.4545454545;
}

.footer-legal-menu__item {
  display: flex;
  align-items: center;
  align-items: center;
  gap: var(--spacing-01);
}
.footer-legal-menu__item:not(:last-child)::after {
  content: "•";
  opacity: 0.8;
}

.footer-legal-menu__link {
  color: var(--colors-grey-400);
}

.footer-references {
  padding: var(--spacing-05) var(--spacing-04);
  border-bottom: 1px solid var(--colors-grey-900);
  background-color: var(--colors-grey-1000);
  color: var(--colors-grey-500);
  text-align: center;
  font-size: 1rem;
}
.footer-references a,
.footer-references button {
  color: inherit;
  text-decoration: underline;
  padding: 0;
  border: 0;
  background-color: transparent;
}
.footer-references + .main-footer {
  padding-top: var(--spacing-20);
}

.footer-references__content {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
  margin: var(--spacing-06) auto;
  color: #fff;
  max-width: 68rem;
  text-align: left;
}
.footer-references__content p {
  margin-bottom: 1em;
}

@media screen and (min-width: 62em) {
  .main-footer {
    padding-top: 12rem;
  }
}
@media screen and (min-width: 75em) {
  .footer-legal {
    height: 100%;
  }
  .footer__title {
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .footer-menu__item {
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
  .footer-socials {
    margin-top: auto;
  }
}
body .cookies-form .cookies-form__group-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--spacing-03);
  margin-top: var(--spacing-08);
  margin-bottom: var(--spacing-04);
  border-bottom: 1px solid var(--colors-grey-300);
}
body .cookies-form .cookies-form__title {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  border: 0;
  padding: 0;
}
body .cookies-form__group-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--colors-grey-600);
}

.cookies-form__desc {
  font-size: 1.3rem;
  line-height: 1.5384615385;
}

.visitors .cookies-form .cookies-form__title {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  color: var(--colors-grey-900);
}
.visitors .cookies-form .cookies-form__group-title {
  padding-bottom: var(--spacing-02);
}
.visitors .cookies-form .modal-footer {
  padding: 0;
  border-top: 0;
  margin-top: var(--spacing-06);
}

[id=manage-cookies-modal] .modal-close {
  position: absolute;
  right: var(--spacing-02);
  top: var(--spacing-02);
}

:root {
  --testimonial-bg-color: rgba(var(--colors-cyan-200--rgb), .1);
  --testimonial-highlight-color: rgba(var(--colors-cyan-200--rgb), .5);
  --testimonial-quotes-color: rgba(var(--colors-cyan-500--rgb), .04);
  --testimonial-padding: var(--spacing-06);
}

.testimonial {
  position: relative;
  padding: var(--testimonial-padding);
  border-radius: 0.4rem;
  background-color: var(--testimonial-bg-color);
  overflow: hidden;
}

.testimonial__quotes {
  fill: var(--testimonial-quotes-color);
}

.testimonial__quote {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}
.testimonial__quote em {
  font-style: normal;
  background-color: var(--testimonial-highlight-color);
  padding: 0 0.125em;
  border-radius: 0.2rem;
}

.testimonial__quote--sm {
  font-size: clamp(1.6rem, 1.52688rem + 0.1951vw, 1.8rem);
}

.testimonial__source {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-01);
  margin-left: var(--spacing-12);
  margin-top: var(--spacing-06);
  font-style: normal;
  color: var(--colors-grey-700);
}

.testimonial__author {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2307692308;
}

.testimonial__position {
  font-size: 1.2rem;
  line-height: 1.3333333333;
}

.testimonial__visual {
  position: relative;
  line-height: 0;
}

.testimonial__avatar {
  width: 19.5rem;
  height: auto;
  border-radius: 0.2rem;
}

.testimonial__logo {
  position: absolute;
  bottom: 0.2rem;
  left: 0.2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial--secondary {
  --testimonial-bg-color: var(--colors-secondary-100);
  --testimonial-highlight-color: var(--colors-secondary-300);
  --testimonial-quotes-color: var(--colors-secondary-200);
}

.testimonial--cardinal {
  --testimonial-bg-color: rgba(var(--colors-cardinal-200--rgb), .1);
  --testimonial-highlight-color: rgba(var(--colors-cardinal-200--rgb), .5);
  --testimonial-quotes-color: rgba(var(--colors-cardinal-500--rgb), .04);
}

.testimonial--emerald {
  --testimonial-bg-color: rgba(var(--colors-emerald-200--rgb), .1);
  --testimonial-highlight-color: rgba(var(--colors-emerald-200--rgb), .5);
  --testimonial-quotes-color: rgba(var(--colors-emerald-500--rgb), .04);
}

.testimonial--no-picture .testimonial__source {
  margin-left: 0;
}

@media screen and (max-width: calc(48em - 1px)) {
  .testimonial__logo {
    display: none;
  }
  .testimonial__avatar {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: calc(62em - 1px)) {
  .testimonial__quotes {
    position: absolute;
    width: 10rem;
    height: auto;
    top: calc(var(--spacing-04) * -1);
    left: var(--spacing-04);
    z-index: -1;
  }
}
@media screen and (min-width: 48em) {
  .testimonial {
    --testimonial-padding: var(--spacing-04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-10);
  }
  .testimonial__content {
    flex: 1;
  }
  .testimonial__source {
    margin-left: 0;
    margin-top: var(--spacing-04);
    flex-direction: row;
  }
  .testimonial__author {
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.1428571429;
  }
  .testimonial__author::after {
    content: ", ";
  }
  .testimonial__position {
    font-size: 1.3rem;
    line-height: 1.2307692308;
  }
  .testimonial--no-picture {
    --testimonial-padding: var(--spacing-10) var(--spacing-06);
    justify-content: flex-start;
  }
  .testimonial--no-picture .testimonial__quotes {
    margin-top: calc(var(--spacing-10) * -1);
  }
}
@media screen and (min-width: 62em) {
  .testimonial__content {
    flex: 0 0 auto;
    width: 62%;
  }
  .testimonial__quotes {
    align-self: flex-start;
    margin-top: calc(var(--spacing-08) * -1);
    margin-left: var(--spacing-06);
  }
}
.testimonial-alt {
  padding: var(--spacing-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 0.4rem;
  background-color: var(--testimonial-bg-color);
}
.testimonials-carousel .testimonial-alt {
  flex: 0 0 95%;
  height: 40rem;
  max-width: 63rem;
  user-select: none;
}

.testimonial-alt__quotes {
  fill: var(--testimonial-quotes-color);
  position: absolute;
  right: 4rem;
  top: 0;
}

.testimonial-alt__quote {
  position: relative;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  line-height: 1.6;
  color: var(--colors-grey-1000);
}
.testimonial-alt__quote em {
  font-style: normal;
  background-color: var(--testimonial-highlight-color);
  padding: 0 0.125em;
  border-radius: 0.2rem;
}

.testimonial-alt__source {
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-03);
}

.testimonial-alt__avatar {
  flex: 0 1 auto;
  width: 12rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.4rem;
}

.testimonial-alt__author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-01);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.testimonial-alt__author-name {
  font-weight: 500;
}

@media screen and (max-width: calc(48em - 1px)) {
  .testimonial-alt__avatar {
    width: 6rem;
  }
  .testimonial-alt__logo {
    display: none;
  }
  .testimonial-alt__quotes {
    width: 50%;
  }
}
.testimonials-carousel {
  position: relative;
  overflow-x: hidden;
  padding-left: calc(33.3333333333% - var(--spacing-06) * 2);
}

.testimonials-carousel__track {
  display: flex;
  gap: var(--spacing-06);
  will-change: transform;
}

.testimonials-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-04);
  margin-top: var(--spacing-10);
}

.feature-card {
  --feature-card-margin-bottom: var(--spacing-08);
  --featured-card-body-padding: var(--spacing-10) var(--spacing-08);
  height: calc(100% - var(--feature-card-margin-bottom));
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: var(--colors-grey-50);
  border: 1px solid var(--colors-grey-200);
  border-radius: 0.8rem;
  margin-bottom: var(--feature-card-margin-bottom);
  overflow: hidden;
}

.feature-card--square::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 25%;
  background: linear-gradient(to left, rgba(252, 252, 253, 0) 0%, var(--colors-grey-50) 90%), url("/assets/pattern-square-p9r7i-J3.svg") top right repeat-y;
}

.feature-card--hatch::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 25%;
  background: linear-gradient(to left, rgba(252, 252, 253, 0) 0%, var(--colors-grey-50) 90%), url("/assets/pattern-hatch-qOgVKVE8.svg") top right repeat-y;
}

.feature-card--dots::before {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  bottom: -25%;
  left: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(252, 252, 253, 0) 62.5%, var(--colors-grey-50) 100%), url("/assets/pattern-dots-Dtt2PbpS.svg") center repeat;
}

.feature-card__body {
  position: relative;
  padding: var(--featured-card-body-padding);
}

.feature-card__heading {
  font-family: var(--fonts-family-heading);
  font-size: clamp(2rem, 1.8536rem + 0.3902vw, 2.4rem);
  line-height: 1.25;
  text-wrap: balance;
}

.feature-card__heading--big {
  font-size: clamp(2rem, 1.70736rem + 0.7805vw, 2.8rem);
}

.feature-card__title,
.feature-card__description {
  display: inline;
  font-size: 1em;
  color: var(--colors-grey-900);
}

.feature-card__title {
  color: var(--colors-grey-900);
}

.feature-card__description {
  color: var(--colors-grey-700);
}

.feature-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-10);
  align-items: center;
}

.feature-card__link {
  --h-mainlink-color: var(--section-color);
  margin-top: 1.5em;
}

.feature-card__hint {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-top: var(--spacing-02);
  color: var(--colors-grey-600);
}

.feature-card__visual {
  position: relative;
}

.feature-card--discover .feature-card__visual {
  line-height: 0;
  width: 100%;
  max-height: 28rem;
}
.feature-card--discover .feature-card__img {
  max-width: none;
  margin-left: var(--spacing-06);
}

.feature-card--domain-search .feature-card__visual {
  line-height: 0;
  width: 100%;
  max-height: 25.6rem;
}
.feature-card--domain-search .feature-card__visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  height: 6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--colors-grey-50) 75%);
}
.feature-card--domain-search .feature-card__img {
  max-width: none;
  margin-left: var(--spacing-08);
}

.feature-card--email-finder .feature-card__img {
  max-width: none;
}

.feature-card--personal-emails .feature-card__visual {
  min-width: 0;
  text-align: right;
  flex: 1;
  width: 100%;
  padding-left: var(--spacing-06);
}
.feature-card--personal-emails .feature-card__img {
  max-width: none;
  min-width: 100%;
}

.feature-card--email-finder .feature-card__visual {
  width: 100%;
  padding-left: var(--spacing-04);
  margin-top: calc(var(--spacing-04) * -1);
  text-align: center;
}
.feature-card--email-finder .feature-card__img {
  width: clamp(20rem, 100% + 6rem, 50rem);
}

.feature-card--email-verifier .feature-card__visual {
  text-align: center;
}
.feature-card--email-verifier .feature-card__img {
  max-width: 112%;
}

.feature-card--personal-emails__img-options {
  position: absolute;
  bottom: 2.4rem;
  right: 0;
}

.feature-card--deliverability .feature-card__img {
  max-width: none;
}

.feature-card--campaigns-steps .feature-card__visual {
  width: 100%;
  text-align: center;
}

.feature-card--integrations .feature-card__visual {
  width: 100%;
  flex: 1;
  margin-bottom: var(--spacing-10);
  min-width: 0;
  line-height: 0;
  text-align: center;
}

.feature-card--data-platform {
  background: url("/assets/home-data-platform-bg-D7SfohPM.svg") var(--colors-grey-50) no-repeat right center;
  background-size: cover;
}
.feature-card--data-platform .feature-card__body {
  max-width: 62rem;
}
.feature-card--data-platform .feature-card__heading {
  text-wrap: unset;
}

@media screen and (max-width: calc(48em - 1px)) {
  .feature-card--campaigns-steps .feature-card__visual {
    margin-bottom: var(--spacing-06);
  }
}
@media screen and (min-width: 48em) {
  .feature-card:not(.feature-card--sm) {
    flex-direction: row;
    gap: var(--spacing-10);
  }
  .feature-card:not(.feature-card--sm) .feature-card__body {
    flex: 1;
  }
  .feature-card.feature-card--column {
    flex-direction: column;
  }
  .feature-card--square::before,
  .feature-card--hatch::before,
  .feature-card--dots::before {
    left: 50%;
  }
  .feature-card--dots::before {
    left: 50%;
    top: 0;
    bottom: 0;
  }
  .feature-card--discover .feature-card__visual,
  .feature-card--domain-search .feature-card__visual {
    max-height: 32rem;
    align-self: flex-end;
    flex: 1;
    min-width: 0;
  }
  .feature-card--discover .feature-card__img,
  .feature-card--domain-search .feature-card__img {
    margin-left: 0;
    margin-top: var(--spacing-10);
  }
  .feature-card--personal-emails .feature-card__visual {
    margin: var(--spacing-06) 0;
  }
  .feature-card--integrations .feature-card__visual {
    margin-top: var(--spacing-10);
  }
  .feature-card--data-platform .feature-card__body {
    padding-top: var(--spacing-25);
    padding-bottom: var(--spacing-25);
  }
}
@media screen and (max-width: calc(62em - 1px)) {
  .feature-card--email-finder .feature-card__visual {
    text-align: center;
  }
  .feature-card--email-verifier .feature-card__visual {
    text-align: center;
    max-height: 19.2rem;
    padding: 0 var(--spacing-08);
    width: 100%;
  }
  .feature-card--deliverability .feature-card__visual {
    text-align: center;
    max-height: 28rem;
    padding-left: var(--spacing-08);
    width: 100%;
  }
}
@media screen and (min-width: 62em) {
  .feature-card {
    --feature-card-margin-bottom: var(--spacing-12);
    --featured-card-body-padding: var(--spacing-10) 0 var(--spacing-10) var(--spacing-16);
  }
  .feature-card__body {
    flex: 1;
  }
  .feature-card--sm {
    flex-direction: row;
    gap: var(--spacing-10);
  }
  .feature-card--sm .feature-card__body {
    flex: 1 0 55%;
  }
  .feature-card--email-finder .feature-card__img {
    margin-left: calc(var(--spacing-06) * -1);
    width: auto;
  }
  .feature-card--personal-emails {
    --featured-card-body-padding: var(--spacing-25) 0 var(--spacing-25) var(--spacing-16);
  }
  .feature-card--deliverability {
    --featured-card-body-padding: var(--spacing-16) 0 var(--spacing-16) var(--spacing-16);
  }
}
@media screen and (min-width: 75em) {
  .feature-card--discover .feature-card__heading {
    max-inline-size: 32ch;
  }
  .feature-card--discover .feature-card__visual {
    max-height: none;
    min-width: 50%;
  }
  .feature-card--discover .feature-card__img {
    max-width: 100%;
  }
  .feature-card--domain-search .feature-card__heading {
    max-inline-size: 35ch;
  }
  .feature-card--domain-search .feature-card__body {
    order: 2;
  }
  .feature-card--domain-search .feature-card__visual {
    max-height: none;
    padding-left: calc(var(--spacing-base) * 9);
  }
  .feature-card--domain-search .feature-card__img {
    max-width: 100%;
  }
  .feature-card--email-finder,
  .feature-card--email-verifier {
    --featured-card-body-padding: var(--spacing-16) 0 var(--spacing-16) var(--spacing-16);
  }
  .feature-card--email-verifier .feature-card__visual {
    padding-right: calc(var(--spacing-base) * 9);
  }
  .feature-card--personal-emails .feature-card__heading {
    max-inline-size: 38ch;
  }
  .feature-card--personal-emails .feature-card__visual {
    margin-right: var(--spacing-08);
    padding-left: 0;
  }
  .feature-card--personal-emails__img-options {
    right: 1.2rem;
  }
  .feature-card--integrations .feature-card__heading {
    max-inline-size: 35ch;
  }
  .feature-card--data-platform .feature-card__body {
    padding-top: var(--spacing-30);
    padding-bottom: var(--spacing-30);
  }
}
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-08);
  text-align: center;
}

.reviews__title {
  font-family: var(--fonts-family-body);
  font-weight: 600;
  font-size: clamp(2rem, 1.99024rem + 0.2927vw, 2.4rem);
  line-height: 2.4rem;
  color: var(--colors-grey-1000);
}

.reviews-sm {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 4rem;
}

.reviews-sm--center {
  justify-content: center;
}

.review-block {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}

.review-block__label {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  margin-top: var(--spacing-02);
}
.review-block__label a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
}

.review-block__stars {
  font-size: 1.2rem;
  color: var(--colors-warning-500);
}

.review-block--inline {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
}
.review-block--inline .review-block__label {
  margin-top: 0;
}
.review-block--inline .review-block__label::before {
  content: "•";
  color: var(--colors-grey-500);
}

@media screen and (min-width: 48em) {
  .reviews {
    flex-direction: row;
    gap: min(5vw, 12rem);
  }
}
.promo-toast {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--spacing-base) * 22);
  width: calc(100% - 3.2rem);
  max-width: 160rem;
  margin: 0 auto;
  padding: var(--spacing-02) var(--spacing-06);
  border-radius: 4rem;
  background-color: var(--colors-grey-1000);
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  z-index: 5;
}
.promo-toast .far {
  margin-right: var(--spacing-01);
  font-size: 1em;
  line-height: inherit;
}
.promo-toast a {
  color: currentColor;
  font-weight: 600;
  text-decoration: underline;
  margin-left: var(--spacing-01);
}
.promo-toast a:hover, .promo-toast a:focus {
  text-decoration: none;
}

@media screen and (min-width: 62em) {
  .promo-toast {
    width: calc(100% - 6.4rem);
    top: calc(var(--spacing-base) * 24);
  }
}
#extensionPopup .modal-dialog {
  width: 680px;
  margin: 40px auto;
}
#extensionPopup .modal-content {
  text-align: center;
}
#extensionPopup h2 {
  font-size: 26px;
  margin: 30px auto 20px;
  font-weight: 500;
}
#extensionPopup .modal-close {
  background-color: transparent;
  padding: 0;
  border: 0;
  font-size: 36px;
  position: absolute;
  right: 15px;
  top: 10px;
}
#extensionPopup p {
  color: var(--colors-grey-600);
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 15px;
}
#extensionPopup .light-grey {
  color: var(--colors-grey-600);
}
#extensionPopup .light-grey a {
  border-bottom: 1px solid var(--colors-grey-300);
  color: inherit;
  text-decoration: none;
  transition: all 250ms ease;
}
#extensionPopup .light-grey a:hover, #extensionPopup .light-grey a:focus {
  border-color: var(--colors-grey-400);
}
#extensionPopup .subtitle {
  margin: 0 0 30px 0;
  font-size: 18px;
  color: var(--colors-grey-600);
}
#extensionPopup img {
  width: calc(100% - 20px);
  margin: auto;
  border-bottom: 1px solid var(--colors-grey-300);
}
#extensionPopup .cta-container {
  margin: 20px 10px 10px;
}
#extensionPopup .cta-container .h-button--primary {
  margin: 16px 0 0 0;
  padding: 20px;
  font-size: 16px;
  height: 69px;
}
#extensionPopup .cta-container .h-button--primary .far, #extensionPopup .cta-container .h-button--primary .fas, #extensionPopup .cta-container .h-button--primary .fal {
  margin-right: 10px;
}
#extensionPopup .cta-container strong {
  font-size: 16px;
  margin-top: 15px;
  display: inline-block;
}
#extensionPopup .cta-container .fa-star {
  font-size: 17px;
  margin: 5px 3px 5px 3px;
  color: var(--colors-warning-500);
}

.header-logo-ressources {
  position: absolute;
  top: 100%;
  left: 10%;
  padding: var(--spacing-01);
  background-color: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.06), 0 0.2rem 2.4rem 0 rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  opacity: 0;
  z-index: -5;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 100ms ease-in, transform 100ms ease-in-out;
}
.header-logo-ressources.active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.header-logo-ressources__link {
  display: block;
  padding: var(--spacing-02);
  border-radius: 0.2rem;
  border: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
}
.header-logo-ressources__link:hover, .header-logo-ressources__link:focus {
  background-color: var(--colors-grey-100);
  text-decoration: none;
  color: var(--colors-grey-900);
}

.product-feature {
  margin-bottom: var(--spacing-10);
}

.product-feature__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-02);
  margin-bottom: var(--spacing-02);
}
.product-feature__header .product-feature__title {
  margin-bottom: 0;
}

.product-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  background-color: var(--colors-secondary-100);
  color: var(--colors-secondary-600);
  border: 0.1rem solid var(--colors-secondary-300);
  font-size: 1.6rem;
}

.product-feature__visual {
  margin-bottom: var(--spacing-06);
}

.product-feature__img {
  height: auto;
}

.product-feature__title {
  margin-bottom: var(--spacing-02);
  font-size: clamp(2.1rem, 1.99024rem + 0.2927vw, 2.4rem);
  line-height: 1.1428571429;
  color: var(--colors-grey-900);
}

.product-feature__description {
  margin-bottom: var(--spacing-04);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
}

@media screen and (min-width: 48em) {
  .product-feature__title {
    line-height: 1.3333333333;
  }
  .product-feature__description {
    padding-right: var(--spacing-08);
  }
}
.related-product {
  --related-product-icon-bg-color: rgba(var(--colors-cyan-200--rgb), .2);
  --related-product-icon-border-color: rgba(var(--colors-cyan-500--rgb), .5);
  --related-product-card-color: var(--colors-cyan-500);
  --h-mainlink-color: var(--related-product-card-color);
  position: relative;
  height: calc(100% - var(--spacing-10));
  padding: var(--spacing-08) var(--spacing-06);
  margin-bottom: var(--spacing-10);
  background-color: var(--colors-grey-50);
  border: 1px solid var(--colors-grey-200);
  border-radius: 0.4rem;
  z-index: 1;
}
.related-product::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  z-index: -1;
}

.related-product--cardinal {
  --related-product-icon-bg-color: rgba(var(--colors-cardinal-200--rgb), .2);
  --related-product-icon-border-color: rgba(var(--colors-cardinal-500--rgb), .5);
  --related-product-card-color: var(--colors-cardinal-500);
}

.related-product--emerald {
  --related-product-icon-bg-color: rgba(var(--colors-emerald-200--rgb), .2);
  --related-product-icon-border-color: rgba(var(--colors-emerald-500--rgb), .5);
  --related-product-card-color: var(--colors-emerald-500);
}

.related-product--square::before {
  background: linear-gradient(to left, rgba(252, 252, 253, 0) 0%, var(--colors-grey-50) 90%), url("/assets/pattern-square-p9r7i-J3.svg") center right repeat-y;
}

.related-product--hatch::before {
  background: linear-gradient(to left, rgba(252, 252, 253, 0) 0%, var(--colors-grey-50) 90%), url("/assets/pattern-hatch-qOgVKVE8.svg") top right repeat-y;
}

.related-product--dots::before {
  background: linear-gradient(to left, rgba(252, 252, 253, 0) 0%, var(--colors-grey-50) 90%), url("/assets/pattern-dots-Dtt2PbpS.svg") center right repeat;
}

.related-product__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-04);
  background-color: var(--related-product-icon-bg-color);
  border: 1px solid var(--related-product-icon-border-color);
  border-radius: 0.4rem;
  color: var(--related-product-card-color);
}
.related-product__icon > svg {
  width: 2.4rem;
  height: 2.4rem;
}

.related-product__title {
  margin-bottom: var(--spacing-02);
  font-size: clamp(2.1rem, 1.99024rem + 0.2927vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1428571429;
  color: var(--colors-grey-900);
}

.related-product__description {
  margin-bottom: var(--spacing-04);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
}

@media screen and (min-width: 62em) {
  .related-product {
    height: 100%;
    padding: var(--spacing-10) var(--spacing-08);
    margin-bottom: 0;
  }
  .related-product__title {
    line-height: 1.3333333333;
  }
}
.accordion {
  border-bottom: 1px solid var(--colors-grey-300);
}

.accordion__title {
  font-family: var(--fonts-family-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.accordion__button {
  position: relative;
  text-align: left;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  padding: var(--spacing-04) var(--spacing-10) var(--spacing-04) var(--spacing-05);
  cursor: pointer;
}
.accordion__button.is-open::before, .accordion__button.is-open::after {
  display: none;
}
.accordion__button::before, .accordion__button::after {
  content: "";
  width: 1.2rem;
  height: 0.15rem;
  background-color: var(--colors-grey-600);
  position: absolute;
  right: var(--spacing-02);
  top: calc(50% - 0.1rem);
  border-radius: 0.2rem;
}
.accordion__button::after {
  transform: rotate(90deg);
}
.accordion__button[aria-expanded=true]::after {
  transform: rotate(0deg);
}

.accordion__content {
  padding: 0 var(--spacing-02) var(--spacing-08);
  font-size: 1.5rem;
  line-height: 1.6;
  will-change: max-height;
  transition: max-height 400ms ease-in-out;
  overflow: hidden;
}
.accordion__content a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-500);
}
.accordion__content a:hover, .accordion__content a:focus {
  text-decoration-color: currentColor;
}
.accordion__content p:not(:first-child),
.accordion__content ul:not(:first-child),
.accordion__content ol:not(:first-child),
.accordion__content img:not(:first-child) {
  margin-top: 1em;
}
.accordion__content[hidden] {
  padding: 0;
  max-height: 0 !important;
}

@media screen and (min-width: 48em) {
  .accordion__title {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }
  .accordion__button {
    padding: var(--spacing-06) var(--spacing-10) var(--spacing-06) var(--spacing-02);
  }
}
.customers-logos {
  --customers-logos-bg: var(--colors-grey-100);
  --customers-logos-opacity: .48;
  padding: var(--spacing-12) 0;
  background-color: var(--customers-logos-bg);
}

.customers-logos--light {
  --customers-logos-bg: #fff;
  --customers-logos-opacity: .30;
}

.customers-logos__title {
  margin-bottom: var(--spacing-06);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
  color: var(--colors-grey-800);
}

.customers-logos__logos {
  align-items: center;
  justify-content: space-between;
  text-align: center;
  opacity: var(--customers-logos-opacity);
}

@media screen and (max-width: calc(48em - 1px)) {
  .customers-logos__title {
    text-align: center;
  }
  .customers-logos__logos {
    gap: var(--spacing-02);
  }
}
@media screen and (max-width: calc(75em - 1px)) {
  .customers-logos--light .customers-logos__logos {
    justify-content: center;
  }
}
@media screen and (min-width: 75em) {
  .customers-logos__title {
    text-align: left;
    margin-bottom: 0;
  }
}
.email_verifier .video-onboarding {
  --iframe-ratio: 55.938951559389515%;
}

.verify-result {
  padding: var(--spacing-08) !important;
}

.verify-result__data {
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
}

.verify-result__icon {
  --verify-result-background: var(--colors-grey-100);
  --verify-result-color: var(--colors-grey-600);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--verify-result-background);
  color: var(--verify-result-color);
}
.verify-result__icon .verification-status-icon {
  font-size: 1.6rem;
}

.verify-result__avatar {
  display: flex;
  min-width: 8rem;
  width: 8rem;
  height: 8rem;
  margin-right: var(--spacing-01);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.verify-result__avatar img {
  object-fit: contain;
}

.verify-result__primary {
  flex: 1;
  min-width: 0;
}
.verify-result__primary .verify-result__title {
  margin: 0;
  font-family: var(--fonts-family-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: var(--colors-grey-800);
  overflow: hidden;
  text-overflow: ellipsis;
}
.verify-result__primary .verify-result__title--sm {
  font-size: 1.6rem;
}

.verify-result__subtitle {
  margin-top: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.5384615385;
  color: var(--colors-grey-700);
}

.verify-result__verification {
  margin-top: var(--spacing-02);
  display: flex;
  gap: var(--spacing-03);
  align-items: center;
  line-height: 1.3333333333;
}

.verify-result__actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
  align-self: center;
  min-width: 12rem;
  text-align: right;
}
.verify-result__actions .h-button {
  text-wrap: nowrap;
}
.verify-result__actions .h-button-group {
  max-inline-size: none;
  width: 100%;
}

.verify-result__sources {
  margin-top: var(--spacing-08);
  padding-top: var(--spacing-04);
  border-top: 1px solid var(--colors-grey-300);
  font-size: 1.3rem;
  line-height: 1.2307692308;
  color: var(--colors-grey-700);
}

.verify-result__sources-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-04);
}

.verify-result-details {
  margin: var(--spacing-06) calc(var(--spacing-08) * -1) calc(var(--spacing-08) * -1);
  width: calc(100% + var(--spacing-08) * 2);
  padding: var(--spacing-08) var(--spacing-08) var(--spacing-02);
  border-radius: 0 0 0.3rem 0.3rem;
  background-color: var(--colors-grey-100);
  position: relative;
  z-index: 5;
}

.verify-result-detail {
  margin-bottom: var(--spacing-06);
}
.verify-result-detail .verify-result-detail__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  color: var(--colors-grey-900);
  margin: 0;
}

.verify-result-detail__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.verify-result-detail__desc {
  margin-top: var(--spacing-02);
  font-size: 1.3rem;
  line-height: 1.5384615385;
  color: var(--colors-grey-700);
}
.verify-result-detail__desc a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
  text-decoration-line: underline;
  text-underline-offset: var(--spacing-01);
}
.verify-result-detail__desc a:hover, .verify-result-detail__desc a:focus {
  text-decoration-color: currentColor;
}

.visitors.email_verifier .data-product-demo:not(:has(.product-no-demo)) {
  max-width: 64rem;
}
.visitors.email_verifier .verify-result {
  padding-bottom: 0 !important;
}
.visitors.email_verifier .verify-result-details {
  margin: var(--spacing-06) calc(var(--spacing-08) * -1) 0;
}

@media screen and (max-width: calc(48em - 1px)) {
  .verify-result {
    padding: var(--spacing-06) !important;
  }
  .verify-result__data {
    flex-direction: column;
  }
  .verify-result__avatar {
    display: none;
  }
  .verify-result__primary {
    width: 100%;
  }
  .verify-result__actions {
    flex-direction: row;
    width: 100%;
    margin-top: var(--spacing-04);
  }
}
.data-product-demo {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.ds-form {
  position: relative;
  margin: calc(var(--spacing-10) * -1) auto var(--spacing-04);
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--colors-grey-300);
  z-index: 1;
}

.ds-search {
  margin: -1px;
  display: flex;
  align-items: center;
  border: 1px solid var(--colors-grey-300);
  transition: border-color 150ms ease-in, box-shadow 150ms ease-in;
}
.ds-search:focus-within {
  border-color: var(--colors-secondary-600);
  box-shadow: 0px 0px 0px 2px var(--colors-secondary-300);
}

.ds-search-result {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: 0 var(--spacing-03) 0 var(--spacing-04);
  min-width: 0;
}
.ds-search-result .ds-search-result__input {
  flex: 1;
  padding: var(--spacing-06) 0;
  height: auto;
  align-self: stretch;
  min-width: 0;
  border: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #fff;
}
.ds-search-result .ds-search-result__input:hover, .ds-search-result .ds-search-result__input:focus, .ds-search-result .ds-search-result__input:focus-visible {
  border: 0 !important;
  outline: none !important;
}

.ds-search-result--smaller {
  flex: 0.9;
}

.ds-search-result__logo {
  width: 2.4rem;
  height: auto;
  border-radius: 0.2rem;
}

.ds-search-result__summary {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
}

.ds-search-result__domain {
  font-size: 1.2rem;
  color: var(--colors-grey-600);
  margin-right: var(--spacing-01);
}

.ds-search-result__count {
  font-size: 1.1rem;
  font-weight: 500;
}

.ds-search__at {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-04);
  border-left: 1px solid var(--colors-grey-300);
  border-right: 1px solid var(--colors-grey-300);
  font-size: 1.6rem;
  color: var(--colors-grey-500);
}

.ds-search__submit {
  align-self: stretch;
  padding: var(--spacing-02) var(--spacing-06);
  border-width: 0 0 0 1px;
  border-color: var(--colors-grey-300);
  border-radius: 0 4px 4px 0;
  font-weight: 500;
  color: var(--colors-grey-900);
  background-color: #fff;
  transition: background-color 150ms ease-in;
  cursor: pointer;
}
.ds-search__submit:hover {
  background-color: var(--colors-grey-100);
}
.ds-search__submit:active {
  border-color: var(--colors-grey-300);
}

.ds-search__submit-text {
  display: none;
}

.ds-form__hint {
  color: var(--colors-grey-600);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
.ds-form__hint button {
  color: currentColor;
  text-decoration: underline;
  cursor: pointer;
}
.ds-form__hint button:hover, .ds-form__hint button:focus {
  text-decoration: none;
}

.ds-results {
  margin-top: var(--spacing-06);
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid var(--colors-grey-300);
}

.ds-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-04) var(--spacing-04) var(--spacing-04) var(--spacing-06);
  border-bottom: 1px solid var(--colors-grey-300);
}

.ds-results__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7142857143;
  color: var(--colors-grey-900);
}
.ds-results__title strong {
  font-weight: 500;
}

.ds-result {
  padding: var(--spacing-06);
  border-bottom: 1px solid var(--colors-grey-300);
}

.ds-result--single {
  padding: var(--spacing-08);
}
.ds-result--single .ds-result__fullname {
  font-size: 1.6rem;
}
.ds-result--single .ds-result__sources {
  padding-top: var(--spacing-04);
  border-top: 1px solid var(--colors-grey-300);
}
.ds-result--single .ds-result__sources a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
  text-decoration-line: underline;
  text-underline-offset: var(--spacing-01);
}
.ds-result--single .ds-result__sources a:hover, .ds-result--single .ds-result__sources a:focus {
  text-decoration-color: currentColor;
}

.ds-result__avatar {
  display: flex;
  width: 8rem;
  height: 8rem;
  margin-right: var(--spacing-02);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
.ds-result__avatar img {
  object-fit: contain;
}

.ds-result__data {
  display: flex;
  align-items: center;
  gap: var(--spacing-04);
}

.ds-result__primary {
  flex: 0 0 35%;
  max-width: 35%;
}

.ds-result__secondary {
  flex: 1;
  padding-left: var(--spacing-02);
}

.ds-result__email {
  display: inline-block;
  max-width: 100%;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ds-result__email span {
  filter: blur(4px);
}

.ds-result__verification {
  display: flex;
  gap: var(--spacing-02);
  align-items: center;
  line-height: 1.3333333333;
}

.ds-result__attribute {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.2307692308;
  color: var(--colors-grey-800);
}
.ds-result__attribute .far {
  color: var(--colors-grey-500);
}
.ds-result__attribute:not(:first-child) {
  margin-top: var(--spacing-01);
}
.ds-result__social:hover, .ds-result__social:focus {
  text-decoration: none;
  opacity: 0.8;
}

.ds-result__source {
  margin-left: auto;
  align-self: center;
  padding: var(--spacing-005);
  min-width: 9rem;
  font-size: 1.2rem;
  text-align: right;
  color: var(--colors-grey-700);
  cursor: pointer;
}
.ds-result__source:hover, .ds-result__source:focus {
  color: var(--colors-grey-900);
}

.ds-result__sources {
  margin-top: var(--spacing-06);
  color: var(--colors-grey-700);
  font-size: 1.3rem;
  line-height: 1.2307692308;
}

.ds-sources-list {
  margin: var(--spacing-04) 0 0 0;
  padding: 0;
  list-style-type: none;
}

.ds-sources-list__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}
.ds-sources-list__item:not(:first-child) {
  margin-top: var(--spacing-02);
}

.ds-sources-list__link {
  flex: 1;
  max-width: max-content;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  white-space: nowrap;
}
.ds-sources-list__link:hover, .ds-sources-list__link:focus {
  text-decoration: underline;
}

.ds-sources-list__date {
  margin-left: auto;
  color: var(--colors-grey-600);
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.ds-sources-list--outdated .ds-sources-list__link,
.ds-sources-list__item--outdated .ds-sources-list__link {
  color: var(--colors-grey-600);
  text-decoration: line-through;
}

.ds-sources__toggle {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}

.ds-upgrade {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-04);
  margin: var(--spacing-02);
  padding: var(--spacing-06);
  border-radius: 4px;
  background-color: var(--colors-secondary-100);
}

.ds-upgrade__content {
  flex: 1;
}

.ds-upgrade__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
}

.ds-upgrade__desc {
  max-width: 40rem;
  margin-top: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.2307692308;
  color: var(--colors-grey-700);
  margin-bottom: 0;
}

.ds-more-results {
  display: flex;
  align-items: center;
  gap: var(--spacing-04);
  padding: var(--spacing-06) var(--spacing-08);
}

.ds-more-results__content {
  flex: 1;
}

.ds-more-results__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
}

.ds-more-results__desc {
  max-width: 36rem;
  margin-top: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.2307692308;
  color: var(--colors-grey-700);
  margin-bottom: 0;
}

.finder-result-container {
  display: none;
}

.product-no-demo {
  position: relative;
  margin-top: calc(var(--spacing-10) * -1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-04);
  padding: var(--spacing-08);
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--colors-grey-300);
  border-radius: 0.4rem;
  z-index: 1;
}

.product-no-demo__title {
  margin: 0 0 var(--spacing-02);
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--colors-grey-900);
}

.product-no-demo__content {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--colors-grey-700);
  text-wrap: balance;
}
@media screen and (min-width: 48em) {
  .ds-search__submit-text {
    display: inline-block;
  }
  .ds-search__submit-icon {
    display: none;
  }
  .ds-form,
  .ds-search {
    border-radius: 4px;
  }
  .ds-upgrade {
    flex-direction: row;
    align-items: center;
    padding: var(--spacing-06) var(--spacing-08);
  }
}
@media screen and (max-width: calc(48em - 1px)) {
  .ds-result--single {
    padding: var(--spacing-06);
  }
  .ds-result__data {
    flex-wrap: wrap;
  }
  .ds-result__primary {
    flex: 0 0 calc(100% - 12rem);
    max-width: calc(100% - 12rem);
  }
  .ds-result__secondary {
    padding-left: 10.4rem;
  }
}
.billing-switcher {
  display: flex;
  gap: var(--spacing-01);
  align-items: center;
  justify-content: center;
  padding: var(--spacing-01);
  width: max-content;
  background-color: var(--colors-grey-100);
  border: 0.1rem solid var(--colors-grey-200);
  border-radius: 5rem;
}

.billing-switcher__option {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  padding: var(--spacing-02) var(--spacing-04);
  background-color: transparent;
  border: 0;
  border-radius: 5rem;
  color: var(--colors-grey-600);
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 500;
  transition: background-color 200ms ease-in, color 200ms ease-in, box-shadow ease-in;
}
.billing-switcher__option:has(.billing-switcher__tag) {
  padding-right: var(--spacing-03);
}
.billing-switcher__option:hover, .billing-switcher__option:focus {
  color: var(--colors-grey-900);
}
.billing-switcher__option:hover .billing-switcher__tag, .billing-switcher__option:focus .billing-switcher__tag {
  opacity: 1;
}
.billing-switcher__option.is-active {
  background-color: #fff;
  color: var(--colors-grey-900);
  box-shadow: 0 0 2px rgba(29, 38, 46, 0.08), 0 0 4px rgba(29, 38, 46, 0.06);
}
.billing-switcher__option.is-active .billing-switcher__tag {
  opacity: 1;
}

.billing-switcher__tag {
  padding: var(--spacing-01) var(--spacing-02);
  border-radius: 2em;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2307692308;
  color: #fff;
  background-color: var(--colors-secondary-600);
  opacity: 0.5;
  transition: opacity 200ms ease-in;
}

.pricing-table {
  width: 100%;
  font-size: 1.5rem;
  border-radius: 0.4rem;
  background-color: #fff;
  box-shadow: 0px 12px 64px -12px rgba(29, 38, 46, 0.12), 0px 12px 52px -16px rgba(29, 38, 46, 0.08);
  border-collapse: collapse;
}
.pricing-table td {
  padding: 8px 25px;
}
.pricing-table thead tr:first-child td {
  padding-top: 25px;
}
.pricing-table .fa-check {
  color: var(--colors-success-700);
  font-size: 16px;
}
.pricing-table .fa-times {
  color: var(--colors-grey-600);
  font-size: 16px;
}

.pricing-table__top-hint-cell {
  vertical-align: top;
  color: var(--colors-grey-700);
  padding-right: 30px;
}
.pricing-table__top-hint-cell select {
  width: 100%;
}

.pricing-table__plan-column {
  width: 200px;
}

.pricing-table__plan-name {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-table__price {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.2;
}

.pricing-table__discount {
  font-size: 13px;
  font-weight: 600;
  color: var(--colors-secondary-700);
}
.pricing-table__discount .fa-tag {
  margin-right: 2px;
}

.pricing-table__buttons-row a {
  margin-bottom: 10px;
  display: block;
}

.pricing-table__billing-cycle-hint {
  font-size: 13px;
  line-height: 20px;
  color: var(--colors-grey-600);
  opacity: 1;
  transition: 100ms ease-in;
}

.pricing-table__plan-column {
  border-left: 1px solid var(--colors-grey-300);
}

.pricing-table__row-section-end td {
  padding-bottom: 20px;
}

.pricing-table__row-section-start td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--colors-grey-300);
}
.pricing-table__row-section-start td strong {
  font-size: 16px;
}

.pricing-table__row-secondary td {
  font-size: 13px;
  color: var(--colors-grey-700);
  padding-top: 0;
}

.plan-details-table {
  width: 100%;
}
.plan-details-table tr {
  border-bottom: 1px solid var(--colors-grey-300);
}
.plan-details-table td {
  padding: 9px 0;
}
.plan-details-table .fa-check {
  color: var(--colors-success-700);
  font-size: 15px;
}
.plan-details-table .fa-times {
  color: var(--colors-grey-600);
  font-size: 15px;
}
.plan-details-table .plan-details-table__row-section-start {
  font-size: 15px;
}
.plan-details-table .plan-details-table__row-section-start td {
  padding: 18px 0;
}

.pricing-enterprise {
  margin-top: var(--spacing-10);
  padding: var(--spacing-10) var(--spacing-12);
  background-color: #fff;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pricing-enterprise__heading {
  flex: 1;
  max-width: 30rem;
}

.pricing-enterprise__title {
  display: block;
  font-family: var(--fonts-family-heading);
  font-size: 2.2rem;
  line-height: 1.25;
}

.pricing-enterprise__description {
  font-size: 1.5rem;
  color: var(--colors-grey-700);
}

.pricing-enterprise-advantages {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  flex: 1;
  max-width: 55rem;
  column-count: 2;
  color: var(--colors-grey-700);
  font-size: 1.5rem;
}

.pricing-enterprise-advantages__item {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: 0 var(--spacing-04) var(--spacing-02) 0;
}

.pricing-enterprise-advantages__icon {
  color: var(--colors-grey-500);
}

/* On any screen below 1200px, the pricing table is reduced */
@media screen and (max-width: 75em) {
  .pricing-table {
    font-size: 14px;
  }
  .pricing-table .pricing-table__row-section-start td strong {
    font-size: 15px;
  }
  .pricing-table .pricing-table__plan-column {
    width: 170px;
  }
  .pricing-enterprise__heading {
    max-width: 20rem;
  }
  .pricing-enterprise-advantages {
    max-width: 50rem;
    flex: auto;
  }
}
/* On medium screen, the table is reduced to just 2 columns */
@media screen and (max-width: 62em) {
  .pricing-table .pricing-table__plan-column {
    width: 240px;
  }
  .pricing-enterprise {
    display: block;
    padding: var(--spacing-10) var(--spacing-06);
  }
  .pricing-enterprise-advantages {
    display: block;
    margin: var(--spacing-04) 0;
    font-size: 1.4rem;
    max-width: none;
  }
  .pricing-enterprise__heading {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .pricing-table {
    border-radius: 0;
  }
  .pricing-table td {
    padding: 4px 18px;
  }
  .pricing-table .pricing-table__row-section-end td {
    padding-bottom: 18px;
  }
  .pricing-table .pricing-table__row-section-start td {
    padding-top: 18px;
  }
  .pricing-enterprise-advantages {
    column-count: 1;
  }
}
@media screen and (min-width: 62em) {
  .billing-switcher {
    margin-bottom: var(--spacing-10);
  }
  .pricing-table--premium {
    table-layout: fixed;
  }
  .pricing-table--premium tr td:first-child {
    width: 35%;
  }
}
.pricing-data-platform {
  padding: var(--spacing-08) var(--spacing-04);
  border-radius: 0.4rem;
  background-color: #fff;
  box-shadow: 0px 12px 64px -12px rgba(29, 38, 46, 0.12), 0px 12px 52px -16px rgba(29, 38, 46, 0.08);
}

.pricing-data-platform__header {
  text-align: center;
  margin: 0 auto var(--spacing-20);
  max-width: 92rem;
}

.pricing-data-platform__title {
  margin: var(--spacing-04) 0 var(--spacing-06);
  font-family: var(--fonts-family-heading--website);
  font-size: clamp(3.6rem, 3.4536rem + 1.1707vw, 4rem);
  font-weight: 600;
}

.pricing-data-platform__description {
  font-size: clamp(1.6rem, 1.52688rem + 0.3902vw, 1.8rem);
  color: var(--colors-grey-700);
  line-height: 1.6;
}

.pricing-calculator {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-10);
}

.pricing-calculator-input {
  flex: 1;
}

.pricing-calculator-input__title {
  margin: 0 0 var(--spacing-10);
  font-family: var(--fonts-family-heading--website);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}

.pricing-calculator-input__hint {
  margin-top: var(--spacing-12);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}
.pricing-calculator-input__hint a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
}
.pricing-calculator-input__hint a:hover, .pricing-calculator-input__hint a:focus {
  color: var(--colors-grey-700);
  text-decoration-color: var(--colors-grey-600);
}
.pricing-calculator-input__hint p + p {
  margin-top: 1em;
}

.pricing-slider {
  margin-bottom: calc(var(--spacing-base) * 18);
}
.pricing-slider .pricing-slider__input {
  width: 10.8rem;
  padding: var(--spacing-01) var(--spacing-02);
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  border: 0.1rem solid transparent;
  text-align: right;
  color: var(--colors-grey-700);
  background-color: transparent;
  transition: border-color 150ms ease-in;
}
.pricing-slider .pricing-slider__input:hover, .pricing-slider .pricing-slider__input:focus {
  border-color: var(--colors-grey-200);
}

.pricing-slider__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  margin-bottom: var(--spacing-03);
}

.pricing-slider__label {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-slider__slider {
  margin-left: var(--spacing-02);
}

.pricing-calculator-output {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-left: calc(var(--spacing-02) * -1);
  margin-right: calc(var(--spacing-02) * -1);
}

.pricing-calculator-output__content {
  background-color: var(--colors-grey-100);
  border: 0.1rem solid var(--colors-grey-200);
  border-radius: 0.4rem;
  padding: var(--spacing-10) var(--spacing-08) var(--spacing-08);
}

.pricing-calculator-ouput__title {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: var(--colors-grey-700);
  margin-bottom: var(--spacing-02);
}

.pricing-calculator-ouput__value {
  display: block;
  margin-bottom: var(--spacing-12);
  font-family: var(--fonts-family-heading--website);
  font-size: clamp(3.6rem, 3.16096rem + 1.1707vw, 4.8rem);
  line-height: 1.1666666667;
  color: var(--colors-grey-900);
  text-align: center;
}

.pricing-calculator-discount {
  position: absolute;
  top: var(--spacing-02);
  left: 0;
  right: 0;
  display: flex;
  gap: var(--spacing-02);
  align-items: center;
  padding: var(--spacing-03) var(--spacing-06) var(--spacing-05);
  background-color: var(--colors-secondary-200);
  border-radius: 0.4rem 0.4rem 0 0;
  text-align: center;
  opacity: 0;
  z-index: -1;
  transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
  transform-origin: bottom;
  transform: scale(0.96);
}
.pricing-calculator-discount.is-visible {
  opacity: 1;
  transform: translateY(-100%);
}

.pricing-calculator-breakdown {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-bottom: var(--spacing-06);
  color: var(--colors-grey-800);
}
.pricing-calculator-breakdown tr + tr {
  position: relative;
}
.pricing-calculator-breakdown tr + tr th::before {
  content: "+";
  width: 1em;
  position: absolute;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -1.875em;
  background: var(--colors-grey-100);
  color: var(--colors-grey-500);
  font-size: 1.6rem;
  text-align: center;
}
.pricing-calculator-breakdown td,
.pricing-calculator-breakdown th {
  padding: var(--spacing-04) 0;
  border-top: 0.1rem solid var(--colors-grey-300);
  font-variant-numeric: tabular-nums;
}

.pricing-calculator-breakdown__hint {
  padding-top: var(--spacing-02);
  font-size: 1.4rem;
  font-variant-numeric: normal;
  line-height: 0.8333333333;
  color: var(--colors-grey-600);
}

@media screen and (min-width: 62em) {
  .pricing-data-platform {
    padding: var(--spacing-16);
  }
  .pricing-calculator {
    flex-direction: row;
    gap: var(--spacing-14);
    align-items: center;
  }
  .pricing-calculator-output {
    margin: 0;
  }
  .pricing-calculator-input__hint {
    margin-top: var(--spacing-48);
  }
  .pricing-calculator-breakdown {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-06);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04);
  padding: var(--spacing-06) var(--spacing-04) var(--spacing-04);
  background: #fff;
  border: 0.1rem solid var(--colors-grey-300);
  box-shadow: 0 4px 15px rgba(29, 38, 46, 0.05), 0 2px 50px rgba(29, 38, 46, 0.02);
  border-radius: 0.8rem;
}

.pricing-card--highlighted {
  position: relative;
  background-color: var(--colors-primary-100);
  border-color: var(--colors-primary-300);
}
.pricing-card--highlighted::before {
  content: attr(data-before-content);
  position: absolute;
  bottom: calc(100% - var(--spacing-02));
  left: -0.1rem;
  right: -0.1rem;
  padding: var(--spacing-01) var(--spacing-02) var(--spacing-03);
  background-color: var(--colors-primary-300);
  color: var(--colors-primary-900);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5384615385;
  text-align: center;
  border-radius: 0.8rem 0.8rem 0 0;
  z-index: -1;
}

.pricing-card__header,
.pricing-card__cost {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-01);
}

.pricing-card__header {
  min-height: 8.4rem;
}

.pricing-card__title {
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.pricing-card__description {
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--colors-grey-600);
}

.pricing-card__cost {
  min-height: 6.8rem;
}

.pricing-card__amount {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
}

.pricing-card__price {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 3.4536rem + 1.1707vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.pricing-card__features {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}

.pricing-card__feature {
  display: flex;
  align-items: baseline;
  padding: var(--spacing-02) 0;
  gap: var(--spacing-02);
}

@media screen and (max-width: calc(75em - 1px)) {
  .pricing-card--highlighted {
    margin-top: var(--spacing-06);
  }
}
@media screen and (min-width: 75em) {
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-06);
  }
  .pricing-cards--premium {
    grid-template-columns: repeat(4, 1fr);
  }
}
:root {
  --comparison-table-head-top: 9rem;
}

.comparison-table-section {
  display: none;
  position: relative;
  padding: var(--spacing-08);
  background-color: var(--colors-grey-100);
}

.comparison-table {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  border-collapse: collapse;
}
.comparison-table th {
  font-weight: normal;
}

.comparison-table__head {
  position: sticky;
  top: var(--comparison-table-head-top);
  z-index: 10;
  background-color: var(--colors-grey-100);
  box-shadow: 0 0.2rem 0 0 var(--colors-grey-300);
}
.comparison-table__head th {
  padding: var(--spacing-04) var(--spacing-05);
}
.comparison-table__head th:not(:first-child) {
  box-shadow: 0 -0.1rem 0 0 var(--colors-grey-300);
  width: 18rem;
}
.comparison-table__head th:nth-child(2) {
  box-shadow: 0 -0.1rem 0 0 var(--colors-grey-300), -0.1rem 0 0 0 var(--colors-grey-300);
  border-top-left-radius: 0.4rem;
}
.comparison-table__head th:last-child {
  box-shadow: 0 -0.1rem 0 0 var(--colors-grey-300), 0.1rem 0 0 0 var(--colors-grey-300);
  border-top-right-radius: 0.4rem;
}
.comparison-table__head .comparison-table__plan-name {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}

.comparison-table__plan-name {
  display: block;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-1000);
}

.comparison-table__price {
  margin-bottom: var(--spacing-01);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}

.comparison-table__body th {
  font-weight: 400;
  text-align: start;
  border-right: 0.1rem solid var(--colors-grey-300);
}

.comparison-table__body td:nth-child(even) {
  background-color: var(--colors-grey-200);
}

.comparison-table__row td,
.comparison-table__row th {
  padding: var(--spacing-04) 0;
}
.comparison-table__row:not(:first-child) th,
.comparison-table__row:not(:first-child) td {
  border-top: 0.1rem solid var(--colors-grey-300);
}

.comparison-table__subrow th,
.comparison-table__subrow td {
  padding: 0 0 var(--spacing-02) 0;
}
.comparison-table__subrow th {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.comparison-table__spacer th,
.comparison-table__spacer td {
  padding: var(--spacing-04) 0;
}
.comparison-table__spacer + .comparison-table__row th,
.comparison-table__spacer + .comparison-table__row td {
  border-top: 0;
}

.comparison-table__section-title {
  display: block;
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.comparison-accordions {
  position: relative;
  display: none;
  padding: var(--spacing-04) var(--spacing-02);
  background-color: var(--colors-grey-100);
}

.comparison-accordion-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-01);
  margin-top: var(--spacing-10);
  padding: 0 var(--spacing-03);
}

.comparison-accordion-group__name {
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.comparison-accordion-group__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-600);
}

.comparison-accordion__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-04) var(--spacing-03);
  border-bottom: 0.1rem solid var(--colors-grey-300);
  background-color: var(--colors-grey-100);
}
.comparison-accordion__header .question-circle {
  position: relative;
  z-index: 5;
}

.comparison-accordion__heading {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-01);
}

.comparison-accordion__title {
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}

.comparison-accordion__toggle[aria-expanded=true] .fa-angle-down {
  transform: rotate(180deg);
}
.comparison-accordion__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
}

.comparison-accordion__row {
  padding: var(--spacing-02) var(--spacing-03);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  display: flex;
  align-items: center;
}
.comparison-accordion__row > * {
  flex: 1 0 50%;
}
.comparison-accordion__row:nth-child(even) {
  background-color: var(--colors-grey-200);
}

@media (max-width: calc(75em - 1px)) {
  .comparison-accordions {
    display: block;
  }
}
@media (min-width: 75em) {
  .comparison-table-section {
    display: block;
  }
}
.page-content {
  margin-top: var(--spacing-20);
  font-size: 1.6rem;
  line-height: 1.75;
}
.page-content h2 {
  font-size: clamp(2.8rem, 2.6536rem + 0.3902vw, 3.2rem);
  margin: var(--spacing-10) 0 var(--spacing-06);
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content h3 {
  font-size: clamp(2rem, 1.8536rem + 0.3902vw, 2.4rem);
  margin: var(--spacing-08) 0 var(--spacing-04);
}
.page-content h4 {
  margin: var(--spacing-06) 0 var(--spacing-04);
  font-size: 1.8rem;
  color: var(--colors-grey-800);
}
.page-content p:not(:last-child),
.page-content ol:not(:last-child),
.page-content ul:not(:last-child) {
  margin-bottom: 1.25em;
}
.page-content li {
  line-height: 1.5;
}
.page-content li + li {
  margin-top: var(--spacing-02);
}
.page-content a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-500);
  transition: color 150ms ease-in, text-decoration-color 150ms ease-in;
}
.page-content a:hover, .page-content a:focus {
  color: var(--colors-secondary-700);
  text-decoration-color: transparent;
}
.page-content table {
  width: 100%;
  margin: var(--spacing-06) 0;
  font-size: 1.4rem;
  border-collapse: collapse;
  border-spacing: 0;
}
.page-content table tr {
  border-bottom: 0.1rem solid var(--colors-grey-300);
}
.page-content table td, .page-content table th {
  padding: var(--spacing-03);
  text-align: left;
}
.page-content table th {
  font-weight: 600;
}
.page-content .highlight {
  padding: var(--spacing-06);
  background-color: var(--colors-grey-100);
  border-radius: 0.4rem;
}
.page-content code {
  font-family: var(--fonts-family-code);
  display: block;
  color: var(--colors-grey-100);
  background-color: var(--colors-grey-900);
  padding: var(--spacing-04);
  font-size: 1.3rem;
  margin: var(--spacing-06) 0;
  border-radius: 0.4rem;
}

.aside-menu {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.aside-menu__item:not(:last-child) {
  margin-bottom: var(--spacing-01);
}

.aside-menu__link {
  display: block;
  padding: var(--spacing-02) var(--spacing-04);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  border-radius: 0.4rem;
  color: var(--colors-grey-800);
  transition: background-color 150ms ease-in;
}
.aside-menu__link:focus, .aside-menu__link:hover {
  background-color: var(--colors-grey-100);
  text-decoration-color: transparent;
}
.aside-menu__link:focus-visible {
  background-color: var(--colors-grey-100);
}
.aside-menu__link[aria-current=page] {
  background-color: var(--colors-grey-100);
  font-weight: 600;
}

.wide-slider {
  position: relative;
  max-width: 120rem;
  padding: 0 var(--spacing-04);
  margin: calc(var(--spacing-20) * -1) auto 0;
  text-align: center;
  z-index: 1;
}
.wide-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 20%;
  background: linear-gradient(to bottom, rgba(29, 38, 46, 0.12), rgba(29, 38, 46, 0));
  filter: blur(20px);
}
.wide-slider .swiper-pagination {
  position: relative;
}
.wide-slider .swiper-pagination-bullet {
  width: 1.6rem;
  height: 0.4rem;
  border-radius: 0.4rem;
  margin: 0 5px;
  transition: width 500ms ease-in-out;
}
.wide-slider .swiper-pagination-bullet-active {
  width: 2.4rem;
  background-color: var(--colors-primary-600);
}
.wide-slider img {
  border: 1px solid var(--colors-grey-300);
  border-radius: 0.4rem;
  height: auto;
}
.wide-slider figcaption {
  margin-top: var(--spacing-03);
  color: var(--colors-grey-700);
  font-size: 1.4rem;
  top: calc(100% + 1.6rem);
}

.wide-slider__title {
  font-size: clamp(2.1rem, 1.99024rem + 0.2927vw, 2.4rem);
  line-height: 1.3333333333;
  text-align: center;
  color: var(--colors-grey-900);
  margin-top: var(--spacing-08);
}

.wide-slider__description {
  margin: var(--spacing-01) var(--spacing-12) var(--spacing-04);
  color: var(--colors-grey-700);
  font-size: 1.6rem;
  line-height: 1.5;
}

.wide-slider__next,
.wide-slider__prev {
  position: absolute;
  bottom: var(--spacing-10);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  color: var(--colors-grey-600);
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 1px 2px -1px rgba(29, 38, 46, 0.06), 0px 1px 4px -1px rgba(29, 38, 46, 0.08);
  border-radius: 50%;
  opacity: 0.9;
  z-index: 10;
  cursor: pointer;
  transition: opacity 150ms ease-in, color 150ms ease-in;
}
.wide-slider__next:hover, .wide-slider__next:focus,
.wide-slider__prev:hover,
.wide-slider__prev:focus {
  opacity: 1;
  color: var(--colors-grey-700);
}

.wide-slider__next {
  right: var(--spacing-01);
}

.wide-slider__prev {
  left: var(--spacing-01);
}

@media screen and (max-width: calc(48em - 1px)) {
  .wide-slider__next,
  .wide-slider__prev {
    display: none;
  }
}

.lp-full-heigt-header {
  padding: 16rem 1.5rem 10rem;
  position: relative;
}
.lp-full-heigt-header .generic-hero__subtitle,
.lp-full-heigt-header .generic-hero__description {
  max-width: 56rem;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.lp-full-heigt-header .customers-logos__logos {
  --customers-logos-opacity: .30;
  gap: 0;
}
.lp-full-heigt-header .lp-full-heigt-header__end {
  background-color: var(--colors-primary-100);
  padding: var(--spacing-08);
  margin: var(--spacing-06) -1.5rem 0;
}
.lp-full-heigt-header .plan-block {
  margin: var(--spacing-12) 0 var(--spacing-08);
}
@media screen and (min-width: 48em) {
  .lp-full-heigt-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(50% + 4rem);
    background-color: var(--colors-primary-100);
  }
  .lp-full-heigt-header .container-fluid {
    position: relative;
    min-height: calc(100vh - 26rem);
    display: flex;
    z-index: 5;
  }
  .lp-full-heigt-header .lp-full-heigt-header__start,
  .lp-full-heigt-header .lp-full-heigt-header__end {
    display: flex;
    flex-direction: column;
  }
  .lp-full-heigt-header .lp-full-heigt-header__start {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .lp-full-heigt-header .lp-full-heigt-header__end {
    flex: 0 0 41.5%;
    max-width: 41.5%;
    align-self: flex-end;
    margin: 0 0 0 auto;
    padding: 0;
  }
}

.landing-testimonial {
  position: relative;
}

.landing-testimonial__quotes {
  max-width: 4.8rem;
  height: auto;
  margin-bottom: var(--spacing-02);
  fill: var(--colors-primary-200);
}

.landing-testimonial__citation {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 50rem;
}
.landing-testimonial__citation em {
  font-style: normal;
  background-color: var(--colors-primary-200);
  padding: 0 0.125em;
  border-radius: 0.2rem;
}

.landing-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  margin-top: var(--spacing-06);
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}
.landing-testimonial__author img {
  border-radius: 50%;
}
.landing-testimonial__author strong {
  font-weight: 600;
}

.plan-block {
  position: relative;
  margin: var(--spacing-02) 0;
  padding: var(--spacing-08);
  background-color: #fff;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--colors-grey-200);
  max-width: 40rem;
  font-size: 1.4rem;
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}
.plan-block.plan-block--highlight, .plan-block:hover, .plan-block:focus-within {
  border-color: var(--colors-primary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-primary-200);
}
.plan-block .plan-block__title {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-1000);
  margin: 0 0 var(--spacing-04) 0;
  text-align: left;
}
.plan-block .plan-block__subtitle {
  font-size: 1.8rem;
  font-family: var(--fonts-family-heading);
  font-weight: normal;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}
.plan-block .plan-block__desc {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.plan-block .price-change__current {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.3333;
  color: var(--colors-grey-700);
}
.plan-block .price-change__current::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  height: 0.2rem;
  left: 0;
  right: 0;
  background-color: var(--colors-grey-700);
  transform: rotate(-1deg);
}
.plan-block .price-change__new {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}
.plan-block .price-change__value {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 500;
  line-height: 1;
}
.plan-block .price-change__hint {
  font-size: 1.2rem;
  line-height: 1.33333;
  color: var(--colors-grey-600);
}
.plan-block .pricing-preview-features {
  margin-top: var(--spacing-02);
}

.plan-block__action {
  margin-top: var(--spacing-08);
}

.plans__hint {
  font-size: 1.4rem;
  text-align: center;
  color: var(--colors-grey-600);
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-06);
  margin: calc(var(--spacing-20) * -1) 0 var(--spacing-10);
}
.plans-grid .plan-block {
  flex: 1;
}
@media screen and (min-width: 30em) {
  .plans-grid .plan-block {
    flex: 0 0 calc(50% - var(--spacing-06));
    max-width: calc(50% - var(--spacing-06));
  }
}
@media screen and (min-width: 62em) {
  .plans-grid .plan-block {
    flex: 1;
    max-width: none;
  }
}

.plan-block--wide {
  max-width: none;
}

.plan-block--wide__content {
  margin-bottom: var(--spacing-08);
}

@media screen and (min-width: 48em) {
  .plan-block--wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-06) var(--spacing-10);
  }
  .plan-block--wide__content {
    max-width: 60rem;
    margin-bottom: 0;
  }
}
.hero-banner {
  position: relative;
  text-align: center;
  padding: calc(var(--spacing-base) * 48) 0 calc(var(--spacing-base) * 40);
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("/assets/home-hero-pattern-kJ4UYPnJ.svg") center no-repeat var(--colors-primary-100);
  background-size: cover;
  z-index: -1;
}

.hero-banner__title {
  font-size: clamp(4.4rem, 3.52192rem + 2.3415vw, 6.8rem);
  margin-bottom: var(--spacing-08);
}
.hero-banner__title em {
  font-style: normal;
  color: var(--colors-primary-600);
}
.hero-banner__title:lang(fr) {
  font-size: clamp(4.4rem, 3.66832rem + 2.3415vw, 6.4rem);
}

.hero-banner__description {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-800);
  max-width: 48rem;
  margin: 0 auto;
}

.hero-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-08);
  margin-top: var(--spacing-10);
}

.hero-banner__hint {
  margin-top: var(--spacing-04);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--colors-grey-600);
}

.hero-banner__animation {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}
.hero-banner__animation > canvas {
  position: absolute;
  top: 0;
  left: 0;
  height: auto !important;
  opacity: 0;
  transition: opacity 200ms linear;
}
.hero-banner__animation.active > canvas {
  opacity: 1;
}

.hero-banner__animation-placeholder {
  margin: 0 auto;
  max-width: 90%;
  opacity: 1;
  transition: opacity 500ms linear;
}

.callout {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  max-width: max-content;
  padding: var(--spacing-01) var(--spacing-04) var(--spacing-01) var(--spacing-01);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  background-color: var(--colors-secondary-100);
  border-radius: 2em;
  border: 0.1rem solid transparent;
  transition: box-shadow 200ms ease-in-out, border-color 200ms ease-in-out;
}
.callout:hover, .callout:focus {
  border-color: var(--colors-secondary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-300);
}

.callout__badge {
  background-color: var(--colors-secondary-600);
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
  padding: 0 var(--spacing-02);
  border-radius: 2em;
}

.callout__title {
  color: var(--colors-grey-800);
  text-decoration: none;
}
.callout__title:hover, .callout__title:focus {
  text-decoration: none;
}

.section {
  --section-color: var(--colors-grey-700);
  --section-bg: transparent;
  --section-padding-y: var(--spacing-20);
  background-color: var(--section-bg);
  padding: var(--section-padding-y) 0;
}

.section--lg {
  --section-padding-y: var(--spacing-25);
}

.section--xl {
  --section-padding-y: var(--spacing-30);
}

.section--cyan {
  --section-color: var(--colors-cyan-500);
}

.section--cardinal {
  --section-color: var(--colors-cardinal-500);
}

.section--emerald {
  --section-color: var(--colors-emerald-500);
}

.section--lightgrey {
  --section-bg: var(--colors-grey-100);
}

.section--primary {
  --section-bg: var(--colors-primary-600);
  color: var(--colors-primary-100);
}
.section--primary .section__title {
  color: #fff;
}
.section--primary .section__description {
  color: var(--colors-primary-100);
}

.section--darkgrey {
  --section-bg: var(--colors-grey-1000);
  color: var(--colors-grey-200);
}
.section--darkgrey .section__title {
  color: #fff;
}
.section--darkgrey .section__description {
  color: var(--colors-grey-200);
}

.section--primary-light {
  --section-bg: var(--colors-primary-100);
}

.section--bordered {
  position: relative;
}
.section--bordered::before, .section--bordered::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}
.section--bordered::before {
  top: 0;
}
.section--bordered::after {
  bottom: 0;
}

.section__header {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto var(--spacing-20);
  text-wrap: balance;
}

.section__header--lg {
  max-width: 92rem;
}

.section__header--full {
  max-width: none;
}

.section__label {
  display: inline-block;
  color: var(--section-color);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6666666667;
}

.section__label--pill {
  padding: var(--spacing-005) var(--spacing-02);
  background-color: var(--section-color);
  color: #fff;
}

.section__label--secondary {
  --section-color: var(--colors-secondary-600);
}

.section__label--primary {
  --section-color: var(--colors-primary-600);
}

.section__title {
  font-size: clamp(3.6rem, 3.16096rem + 1.1707vw, 4.8rem);
  margin: var(--spacing-04) 0 var(--spacing-06);
}
.section__title a {
  color: currentColor;
}
.section__title a:hover, .section__title a:focus {
  text-decoration-color: transparent;
}
.section__title em {
  font-style: normal;
  color: var(--section-color);
}
.section__title strong {
  color: var(--colors-primary-600);
}

.section__title--sm {
  font-size: clamp(3.6rem, 3.4536rem + 1.1707vw, 4rem);
}

.section__title--xs {
  font-size: clamp(2.8rem, 2.50736rem + 0.7805vw, 3.6rem);
}

.section__title--xxs {
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.section__description {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-700);
  line-height: 1.6;
}
.section__description p:not(:first-child) {
  margin-top: 1.25em;
}
.section__description a {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-400);
  transition: text-decoration-color 100ms ease-in;
}
.section__description a:hover, .section__description a:focus {
  color: var(--colors-grey-900);
  text-decoration-color: var(--colors-grey-600);
}

.section__description--sm {
  font-size: clamp(1.6rem, 1.52688rem + 0.3902vw, 1.8rem);
}

.section__description--lg {
  font-size: clamp(2rem, 1.8536rem + 0.3902vw, 2.4rem);
}

.section__description--xs {
  font-size: 1.6rem;
  line-height: 1.5;
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-04);
  margin-top: var(--spacing-06);
}

.section__hint {
  margin-top: var(--spacing-02);
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-600);
}

.compliance-ratings {
  text-align: center;
}

.section--compliance {
  --section-color: var(--colors-secondary-700);
  position: relative;
}
.section--compliance::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  bottom: 0;
  left: -2rem;
  background-color: var(--colors-secondary-100);
  z-index: -1;
}
.section--compliance .section__description {
  max-width: 56rem;
  margin: 0 auto;
}

.section--ratings {
  --section-color: var(--colors-primary-600);
  position: relative;
}
.section--ratings::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  bottom: 0;
  left: -2rem;
  background-color: var(--colors-primary-100);
  z-index: -1;
}

.section--extension {
  padding-top: var(--spacing-20);
  text-align: center;
}
.section--extension .review-block__label {
  justify-content: center;
}
.section--extension .row {
  align-items: flex-end;
}

.section--extension__content {
  max-width: 48rem;
  padding-bottom: var(--spacing-16);
  margin: 0 auto;
}

.section--extension__visual {
  vertical-align: bottom;
  height: auto;
}

.h-mainlink {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--h-mainlink-color, var(--colors-grey-800));
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 0.15rem;
  transition: background-size 0.25s ease-in-out;
}
.h-mainlink::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.39, 1.87);
}
.h-mainlink:hover, .h-mainlink:focus {
  color: var(--h-mainlink-color, var(--colors-grey-900));
  text-decoration: none;
  background-size: 100% 0.15rem;
}
.h-mainlink:hover::after, .h-mainlink:focus::after {
  transform: translateX(0.25em);
}

.h-mainlink--back::after {
  display: none;
}
.h-mainlink--back::before {
  content: "←";
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.39, 1.87);
}
.h-mainlink--back:hover::before, .h-mainlink--back:focus::before {
  transform: translateX(-0.25em);
}

.h-mainlink--no-arrow {
  color: var(--colors-grey-800);
}
.h-mainlink--no-arrow::after {
  display: none;
}
.h-mainlink--no-arrow:hover, .h-mainlink--no-arrow:focus {
  color: var(--colors-grey-900);
}

.h-mainlink--cardinal {
  --h-mainlink-color: var(--colors-cardinal-500);
}

.h-mainlink--secondary {
  --h-mainlink-color: var(--colors-secondary-700);
}

.h-mainlink--sm {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

@media screen and (max-width: calc(48em - 1px)) {
  .hero-banner__actions .h-button--primary {
    --h-button-padding: var(--spacing-03) var(--spacing-04);
    --h-button-height: 4rem;
    --h-button-font-size: 1.3rem;
    --h-button-line-height: calc(16/13);
  }
  .hero-banner__actions .h-mainlink {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 48em) {
  .section--lg {
    --section-padding-y: var(--spacing-30);
  }
  .section--xl {
    --section-padding-y: var(--spacing-40);
  }
  .compliance-ratings {
    background-image: linear-gradient(to right, var(--colors-secondary-100) 0%, var(--colors-secondary-100) 50%, var(--colors-primary-100) 50%);
  }
  .section--extension .review-block {
    text-align: left;
  }
}
@media screen and (max-width: calc(62em - 1px)) {
  
  .hero-banner__animation {
    display: none;
  }
  .callout {
    margin: auto;
  }
}
@media screen and (min-width: 62em) {
  .hero-banner {
    text-align: left;
    padding: calc(var(--spacing-base) * 64) 0 calc(var(--spacing-base) * 48);
  }
  .hero-banner:has(.callout) {
    padding-top: calc(var(--spacing-base) * 45);
  }
  .hero-banner::before {
    left: 50%;
  }
  .hero-banner__description {
    margin: 0;
  }
  .hero-banner__actions {
    justify-content: flex-start;
  }
  .hero-banner__hint {
    font-size: 1.2rem;
    line-height: 1.6666666667;
  }
  .section--extension {
    text-align: left;
  }
  .section--extension .review-block__label {
    justify-content: flex-start;
  }
  .section--extension__content {
    align-self: center;
    margin: 0;
    padding-bottom: var(--spacing-25);
  }
}
.bulk_email_verifier .generic-hero__subtitle:lang(fr) {
  min-width: 98rem;
}

.integrations-hero {
  position: relative;
  background-color: var(--colors-grey-50);
  background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='20'%20viewBox='0%200%2020%2020'%20width='20'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20fill='%23eef0f3'%3e%3cpath%20d='m4%204h2v2h-2z'/%3e%3cpath%20d='m4%2014h2v2h-2z'/%3e%3cpath%20d='m14%204h2v2h-2z'/%3e%3cpath%20d='m14%2014h2v2h-2z'/%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-repeat: repeat;
  text-align: center;
  padding: calc(var(--spacing-base) * 40) 0 var(--spacing-20);
  overflow: hidden;
}
.integrations-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(39.04% 33.53% at 50% 38.82%, rgba(252, 252, 253, 0.75) 62.5%, rgba(252, 252, 253, 0) 80%);
}
.integrations-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.integrations-hero__title {
  position: relative;
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
  z-index: 2;
}

.integrations-hero__subtitle {
  position: relative;
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 3.01456rem + 1.561vw, 5.2rem);
  line-height: 1.15;
  font-weight: 600;
  max-width: 90rem;
  margin: 0 auto var(--spacing-20);
  z-index: 2;
}
.integrations-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}
.integrations-hero__subtitle:lang(fr) {
  max-width: 88rem;
}

.integrations-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.integrations-hero__logos {
  max-width: none;
}

.integrations-hero__circles {
  position: absolute;
  top: calc(50% - 0.4rem);
  left: 50%;
  max-width: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.integration-category-title {
  margin: calc(var(--spacing-16) * -1) auto var(--spacing-02);
  padding-top: calc(var(--spacing-base) * 40);
}

.sticky-subnav {
  position: sticky;
  top: 8.8rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.sticky-subnav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.sticky-submenu {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}

.sticky-submenu__link {
  display: block;
  position: relative;
  padding: var(--spacing-03) var(--spacing-05);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--colors-grey-700);
  text-decoration: none;
  z-index: 1;
}
.sticky-submenu__link.is-active {
  color: var(--colors-grey-1000);
}
.sticky-submenu__link:hover, .sticky-submenu__link:focus {
  color: var(--colors-grey-900);
  text-decoration: none;
}

.sticky-subnav__spy {
  position: absolute;
  top: 100%;
  height: 1px;
  left: var(--scrollSpy-left, 0);
  width: var(--scrollSpy-width, 0);
  background: linear-gradient(90deg, rgba(250, 83, 23, 0) 0%, var(--colors-primary-600) 50%, rgba(250, 83, 23, 0) 100%);
  z-index: 1;
  transition: left 250ms ease-in-out;
}

.integration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(28rem, 100%), 1fr));
  gap: var(--spacing-10);
}

.integration-card {
  position: relative;
  padding: var(--spacing-06);
  background: var(--colors-grey-50);
  border: 1px solid var(--colors-grey-200);
  border-radius: 0.4rem;
  transition: border-color 200ms ease-in, box-shadow 200ms ease-in;
}
.integration-card:hover, .integration-card:focus-within {
  border-color: var(--colors-secondary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-200);
}

.integration-card__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
}

.integration-card__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border: 1px solid var(--colors-grey-200);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
  border-radius: 0.2rem;
}
.integration-card__icon img {
  max-width: 2.4rem;
  height: auto;
}

.integration-card__zapier {
  position: absolute;
  right: -0.4rem;
  bottom: -0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  color: #fff;
  background-color: var(--colors-brand-zapier);
  text-align: center;
  line-height: 1.6rem;
  font-size: 0.8rem;
  z-index: 5;
}

.integration-card__link {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--colors-grey-900);
  line-height: 1.25;
  text-decoration: none;
}
.integration-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
}

.integration-card__category {
  font-size: 1.2rem;
  color: var(--colors-grey-600);
  line-height: 1.6666666667;
}

.integration-card__description {
  margin-top: var(--spacing-04);
  font-size: 1.4rem;
  color: var(--colors-grey-700);
  line-height: 1.4285714286;
}

.section-api-promotion {
  max-width: 104rem;
  padding: var(--spacing-20) var(--spacing-10);
  margin: var(--spacing-30) auto;
  background-color: var(--colors-grey-1000);
  background-image: url("/assets/api-promotion-bg-top-BmzcjTAm.svg"), url("/assets/api-promotion-bg-bottom-DQw-RqJE.svg");
  background-position: top center, bottom center;
  background-repeat: no-repeat;
  border-radius: 0.8rem;
  text-align: center;
  color: var(--colors-grey-200);
}

.section-api-promotion__title {
  color: #fff;
  font-size: clamp(3.6rem, 3.16096rem + 1.1707vw, 4.8rem);
  line-height: 1.1666666667;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.16);
  margin: 0;
}

.section-api-promotion__description {
  max-width: 42rem;
  margin: var(--spacing-04) auto var(--spacing-08);
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  line-height: 1.5;
}

.integration-hero {
  position: relative;
  background-color: var(--colors-grey-50);
  background-image: linear-gradient(180deg, rgba(252, 252, 253, 0.75) 47.21%, rgba(252, 252, 253, 0) 75%), url("data:image/svg+xml,%3csvg%20fill='none'%20height='20'%20viewBox='0%200%2020%2020'%20width='20'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20fill='%23eef0f3'%3e%3cpath%20d='m4%204h2v2h-2z'/%3e%3cpath%20d='m4%2014h2v2h-2z'/%3e%3cpath%20d='m14%204h2v2h-2z'/%3e%3cpath%20d='m14%2014h2v2h-2z'/%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-repeat: repeat;
  padding: var(--spacing-40) 0;
  overflow: hidden;
}
.integration-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.integration-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  margin-bottom: var(--spacing-10);
  background: #FFFFFF;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 2px 4px rgba(29, 38, 46, 0.04);
  border-radius: 50%;
}
.integration-hero__logo img {
  max-width: 5.6rem;
  height: auto;
}

.integration-hero__title {
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
  line-height: 1.0666666667;
  margin: 0 0 var(--spacing-04);
}

.integration-hero__subtitle {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-800);
  line-height: 1.6;
  max-width: 62rem;
}

.integration-details__description p:not(:last-child),
.integration-details__description ul:not(:last-child),
.integration-details__description ol:not(:last-child) {
  margin-bottom: 1em;
}

.integration-details__title {
  margin: 0 0 var(--spacing-04);
  font-size: 1.8rem;
  line-height: 1.3333333333;
}

.integration-details__about {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--colors-grey-700);
  margin-bottom: var(--spacing-04);
}

.integration-details__links {
  margin-top: var(--spacing-02);
  display: flex;
  gap: var(--spacing-04);
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
.integration-details__links a {
  color: var(--colors-grey-600);
  text-decoration-color: var(--colors-grey-400);
}
.integration-details__links a:hover, .integration-details__links a:focus {
  color: var(--colors-secondary-700);
  text-decoration-color: currentColor;
}

@media screen and (min-width: 48em) {
  .integration-hero {
    padding-top: calc(var(--spacing-base) * 50);
  }
  .integration-hero__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .integration-hero__logo {
    order: 2;
    margin-bottom: 0;
  }
}
@media screen and (max-width: calc(48em - 1px)) {
  .integration-details__description {
    margin-bottom: var(--spacing-10);
  }
}
@media screen and (max-width: calc(62em - 1px)) {
  .sticky-subnav {
    display: none;
  }
}
.campaigns-hero {
  position: relative;
  background: url("/assets/campaigns-hero-bg-DB760uTE.svg") center no-repeat var(--colors-grey-50);
  background-size: cover;
  text-align: center;
  padding-top: calc(var(--spacing-base) * 40);
}
.campaigns-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.campaigns-hero__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
}

.campaigns-hero__subtitle {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 68rem;
  margin: 0 auto;
}
.campaigns-hero__subtitle:lang(fr) {
  max-width: 90rem;
}
.campaigns-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}

.campaigns-hero__description {
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-800);
  margin: var(--spacing-06) auto 0;
}

.campaigns-hero__hint {
  margin-top: var(--spacing-04);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}

.campaigns-hero-preview {
  position: relative;
  margin-bottom: var(--spacing-30);
  margin-top: calc(var(--spacing-10) * -1);
  text-align: center;
  transform: translateY(var(--spacing-30));
  z-index: 5;
}

.campaigns-hero-preview__visuals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-10);
}
.campaigns-hero-preview__visuals img {
  box-shadow: 0px 12px 64px -12px rgba(29, 38, 46, 0.12), 0px 12px 52px -16px rgba(29, 38, 46, 0.08);
  height: auto;
  min-width: 0;
}

.campaigns-hero-preview__legend {
  margin-top: var(--spacing-06);
}
.campaigns-hero-preview__legend img {
  vertical-align: middle;
  margin-right: var(--spacing-01);
}

.campaigns-hero-preview__subtitle {
  font-size: 1.2rem;
  color: var(--colors-grey-600);
}

.features-list .section__title {
  max-width: 54rem;
  margin-top: 0;
  margin-bottom: var(--spacing-10);
}

.product-preview-visual__campaigns-personalization {
  position: absolute;
  right: 0;
  bottom: 0;
}

.product-preview-visual--dots {
  background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='20'%20viewBox='0%200%2020%2020'%20width='20'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20fill='%23eef0f3'%3e%3cpath%20d='m4%204h2v2h-2z'/%3e%3cpath%20d='m4%2014h2v2h-2z'/%3e%3cpath%20d='m14%204h2v2h-2z'/%3e%3cpath%20d='m14%2014h2v2h-2z'/%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-repeat: repeat;
}

.product-preview-visual__campaigns-follow-ups,
.product-preview-visual__campaigns-integration,
.product-preview-visual__campaigns-analytics {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: var(--spacing-06);
}
.feature-block-grid .feature-block {
  margin-bottom: 0;
  height: 100%;
}

.feature-block {
  --h-feature-block-icon-color: var(--colors-cardinal-500);
  margin-bottom: var(--spacing-08);
}

.feature-block--boxed {
  height: calc(100% - var(--spacing-08));
  padding: var(--spacing-06);
  border: 0.1rem solid var(--colors-grey-300);
  border-radius: 0.4rem;
  background-color: #fff;
}

.feature-block--secondary {
  --h-feature-block-icon-color: var(--colors-secondary-600);
}

.feature-block--lightgrey {
  background-color: var(--colors-grey-100);
  border: 0;
}

.feature-block__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  margin-bottom: var(--spacing-03);
}
.feature-block__header .feature-block__icon,
.feature-block__header .feature-block__title {
  margin-bottom: 0;
}

.feature-block__icon {
  display: block;
  color: var(--h-feature-block-icon-color);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-03);
}

.feature-block__title {
  font-family: var(--fonts-family-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--colors-grey-900);
  margin-bottom: var(--spacing-02);
}

.feature-block__title--lg {
  font-size: 2rem;
  line-height: 1.2;
}

.feature-block__description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--colors-grey-700);
  text-wrap: balance;
}

.pricing-preview-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-12);
}

.pricing-preview {
  padding: var(--spacing-08);
  background-color: #fff;
  border-radius: 0.4rem;
  flex: 0 0 42rem;
  max-width: 100%;
}
.pricing-preview:lang(fr) {
  flex: 0 0 44rem;
}

.pricing-preview--highlight {
  border: 0.1rem solid var(--colors-primary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-primary-200);
}

.pricing-preview__title {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-1000);
}

.pricing-preview__price {
  font-size: 1.8rem;
  font-family: var(--fonts-family-heading);
  font-weight: normal;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}

.pricing-preview-features {
  margin: var(--spacing-04) 0;
  padding: 0;
  list-style-type: none;
}

.pricing-preview-features__item {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-02);
  font-size: 1.5rem;
  line-height: 1.6;
}
.pricing-preview-features__item:not(:first-child) {
  margin-top: var(--spacing-01);
}

.pricing-preview-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  background-color: var(--colors-primary-600);
}

.pricing-preview-features__item--disabled {
  color: var(--colors-grey-600);
}
.pricing-preview-features__item--disabled .pricing-preview-features__icon {
  color: inherit;
  background-color: var(--colors-grey-300);
}

.pills-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-06);
  flex-wrap: wrap;
}

.pill-tab {
  border: 0.1rem solid var(--colors-grey-300);
  border-radius: 4rem;
  padding: var(--spacing-02) var(--spacing-04);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
  color: var(--colors-grey-700);
  background-color: transparent;
  transition: background-color 200ms ease-in, color 200ms ease-in;
}
.pill-tab:hover, .pill-tab:focus-visible {
  color: var(--colors-grey-900);
  background-color: var(--colors-grey-50);
}
.pill-tab.is-active, .pill-tab[aria-selected=true] {
  color: var(--colors-grey-1000);
  background-color: #fff;
  border-color: var(--colors-grey-400);
}

@media screen and (max-width: calc(48em - 1px)) {
  .campaigns-hero-preview {
    margin-bottom: var(--spacing-40);
  }
  .campaigns-hero-preview__legend {
    position: relative;
    top: var(--spacing-20);
  }
  .campaigns-hero-preview__metrics {
    position: absolute;
    max-width: 60%;
    right: 2vw;
    top: var(--spacing-20);
  }
}
@media screen and (min-width: 62em) {
  .campaigns-hero {
    padding-top: calc(var(--spacing-base) * 50);
  }
  .features-list {
    padding-left: var(--spacing-08);
  }
}
.discover-hero {
  position: relative;
  background: url("/assets/bg-data-hero-CzTkV_TZ.svg") top center repeat var(--colors-grey-50);
  text-align: center;
  padding: calc(var(--spacing-base) * 40) 0;
}
.discover-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, var(--colors-grey-50) 0%, rgba(255, 255, 255, 0) 100%);
}
.discover-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}
.discover-hero .container-fluid {
  position: relative;
}

.discover-hero__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
}

.discover-hero__subtitle {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 76rem;
  margin: 0 auto;
}
.discover-hero__subtitle:lang(fr) {
  max-width: 104rem;
}
.discover-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}

.discover-hero__hint {
  margin-top: var(--spacing-04);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}

.discover-demo {
  position: relative;
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin: calc(var(--spacing-20) * -1) auto 0;
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  border-bottom: 0;
  padding: var(--spacing-02);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.05), 0px 20px 25px -5px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 4px #F7F9FA;
  border-radius: 0.4rem;
}
.discover-demo::after {
  content: "";
  position: absolute;
  left: -4rem;
  right: -4rem;
  bottom: -4rem;
  height: 24rem;
  background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.discover-demo.is-playing .discover-demo__preview,
.discover-demo.is-playing .discover-demo-play {
  opacity: 0;
  z-index: 1;
}
.discover-demo.is-playing .discover-demo__arcade {
  opacity: 1;
}

.discover-demo__preview {
  transition: opacity 200ms ease-in;
}

.discover-demo__arcade {
  position: absolute;
  border-radius: 0.2rem;
  top: var(--spacing-01);
  left: var(--spacing-01);
  z-index: 5;
  height: 0;
  width: calc(100% - var(--spacing-02));
  padding-bottom: calc(54.4312169312% + 27px);
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.discover-demo__arcade iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.discover-demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  background-color: #fff;
  box-shadow: 0 0 0 0.8rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
  border: 0;
  border-radius: 6rem;
  height: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding: var(--spacing-04) var(--spacing-06);
  max-width: 6rem;
  overflow: hidden;
  transition: box-shadow 200ms ease-in-out, max-width 200ms ease-in-out, opacity 200ms ease-in;
  z-index: 10;
}
.discover-demo-play:hover, .discover-demo-play:focus {
  box-shadow: 0 0 0 1.2rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
  max-width: 24rem;
}
.discover-demo-play:hover .discover-demo-play__icon, .discover-demo-play:focus .discover-demo-play__icon {
  color: var(--colors-secondary-600);
}
.discover-demo-play:hover .discover-demo-play__label, .discover-demo-play:focus .discover-demo-play__label {
  opacity: 1;
}
.discover-demo-play:active {
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
}

.discover-demo-play__label {
  opacity: 0;
  white-space: nowrap;
  transition: all 150ms ease-in-out;
}

@media screen and (min-width: 48em) {
  .discover-demo {
    margin-top: calc(var(--spacing-30) * -1);
  }
}
.discover .section--preview .section__description {
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}

.sheets-hero {
  position: relative;
  background-color: var(--colors-grey-50);
  background-image: url("/assets/sheets-hero-bg-BCRxOYtr.svg");
  background-position: top center;
  background-repeat: repeat;
  text-align: center;
  padding: calc(var(--spacing-base) * 40) 0 calc(var(--spacing-base) * 32);
  overflow: hidden;
}
.sheets-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.sheets-hero__title {
  position: relative;
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
  z-index: 2;
}

.sheets-hero__subtitle {
  position: relative;
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 3.01456rem + 1.561vw, 5.2rem);
  line-height: 4rem;
  font-weight: 600;
  max-width: 76rem;
  margin: 0 auto var(--spacing-10);
  z-index: 2;
}
.sheets-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}
.sheets-hero__subtitle:lang(fr) {
  max-width: 86rem;
}

@media screen and (min-width: 48em) {
  .sheets-hero__subtitle {
    line-height: 6rem;
  }
  .sheets-hero {
    padding: calc(var(--spacing-base) * 50) 0 calc(var(--spacing-base) * 62);
  }
  .sheets .wide-slider {
    max-width: 132rem;
    margin-top: calc(var(--spacing-base) * 40 * -1);
  }
}
.webinars .generic-hero {
  padding-bottom: calc(var(--spacing-base) * 60);
}
.webinars .generic-hero__description {
  max-width: 42rem;
}
.webinars .generic-hero__description:lang(fr) {
  max-width: 52rem;
}

.register-live {
  position: relative;
  margin: calc(var(--spacing-40) * -1) auto 0;
  padding: var(--spacing-10) var(--spacing-05);
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 12px 64px -12px rgba(29, 38, 46, 0.12), 0px 12px 52px -16px rgba(29, 38, 46, 0.08);
  border-radius: 0.4rem;
}

.registration-form {
  max-width: 68rem;
  margin: 0 auto;
}
.registration-form:lang(fr) {
  max-width: 70rem;
}
.registration-form.is-registered .registration-form-confirmation {
  opacity: 1;
  z-index: 1;
}

.registration-form__consent {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}
.registration-form__consent a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
}
.registration-form__consent a:hover, .registration-form__consent a:focus {
  text-decoration-color: var(--colors-grey-600);
}

/* Confirmation message */
.registration-form-confirmation {
  position: absolute;
  padding: 20px 10px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  z-index: -5;
  transition: opacity 0.2s ease-in-out;
}

.registration-form-confirmation__icon {
  font-size: 6.4rem;
  color: var(--colors-success-600);
  margin-bottom: var(--spacing-08);
  display: inline-block;
}

.registration-form-confirmation__title {
  display: block;
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-1000);
  margin-bottom: var(--spacing-02);
}

.registration-form-confirmation__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
  margin-bottom: var(--spacing-06);
}

.demo-card {
  display: flex;
  flex-direction: column;
  margin: var(--spacing-20) auto;
  background-color: var(--colors-grey-100);
  border-radius: 0.4rem;
  overflow: hidden;
}
.demo-card .section__label {
  background-color: var(--colors-secondary-700);
  min-width: 4.8rem;
  text-align: center;
  margin-bottom: var(--spacing-01);
}

.demo-card--highlighted {
  background-color: var(--colors-primary-100);
}

.demo-card__content {
  flex: 1;
  padding: var(--spacing-06);
}

.demo-card__thumbnail {
  flex: 1;
  min-width: 0;
}
.demo-card__thumbnail img {
  width: 100%;
  display: block;
}

.demo-card__title {
  font-size: clamp(2.8rem, 2.6536rem + 0.3902vw, 3.2rem);
  min-height: 1.25;
  margin: 0 0 var(--spacing-04) 0;
}

.demo-card__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-800);
  margin-bottom: var(--spacing-06);
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-02);
  margin-top: var(--spacing-08);
  background-color: var(--colors-grey-100);
  border: 1px solid var(--colors-grey-200);
  border-radius: 0.4rem;
  transition: border-color 200ms ease-in, box-shadow 200ms ease-in;
}
.video-card:hover, .video-card:focus-within {
  border-color: var(--colors-secondary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-200);
}

.video-card__thumbnail img {
  display: block;
  width: 100%;
}

.video-card__content {
  flex: 2;
  padding: var(--spacing-04);
}

.video-card__title {
  font-size: clamp(2rem, 1.8536rem + 0.3902vw, 2.4rem);
  line-height: 1.3333333333;
  margin: 0;
}

.video-card__link {
  color: currentColor;
}
.video-card__link:hover, .video-card__link:focus {
  text-decoration-color: transparent;
}
.video-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
}

.video-card__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-800);
  margin: var(--spacing-02) 0 var(--spacing-04);
}

@media screen and (min-width: 48em) {
  .register-live {
    padding: var(--spacing-20) 0;
  }
  .demo-card,
  .video-card {
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-10);
  }
  .demo-card--ltr {
    flex-direction: row-reverse;
  }
  .demo-card--ltr .demo-card__content {
    padding: var(--spacing-10) 0 var(--spacing-10) var(--spacing-12);
  }
  .demo-card__content {
    padding: var(--spacing-10) var(--spacing-10) var(--spacing-10) 0;
  }
  .video-card__thumbnail {
    flex: 1;
    max-width: 31.2rem;
  }
  .video-card__content {
    padding: 0 var(--spacing-10) 0 0;
  }
}
.customers .generic-hero__description {
  max-width: 50rem;
}

.content-card {
  margin-bottom: var(--spacing-20);
}

.content-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.content-card__title {
  margin: var(--spacing-06) 0 var(--spacing-04);
  font-size: clamp(2.8rem, 2.125rem + 0.7805vw, 3.2rem);
  line-height: 1.25;
}
.content-card__title a {
  color: currentColor;
}
.content-card__title a:hover, .content-card__title a:focus {
  text-decoration-color: transparent;
}

.affiliate-hero {
  min-height: 76rem;
  background-color: var(--colors-grey-50);
  background-image: url("/assets/affiliate-program-hero-DFy85aAx.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.affiliate-hero .generic-hero__description {
  max-width: 57rem;
}
.affiliate-hero .generic-hero__description:lang(fr) {
  max-width: 60rem;
}

.affiliatesContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-03) var(--spacing-06);
}

.affiliateLogo {
  height: 48px;
}

.advantagesContainer {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: var(--spacing-08);
}

.advantage {
  width: 100%;
  text-align: start;
  padding: var(--spacing-06);
  border-radius: var(--spacing-base);
  border: 1px solid var(--border-primary, #dfe3e8);
  background: var(--background-secondary, #fcfcfd);
}

.advantageHeadline {
  margin-top: var(--spacing-03);
  margin-bottom: var(--spacing-02);
}

.advantageDescription {
  color: var(--colors-grey-700);
  font-size: 1.6rem;
  line-height: 1.5;
}

.usersReview {
  display: flex;
  margin-top: 16px;
  align-items: center;
  gap: var(--spacing-02);
  flex-direction: column;
  justify-content: center;
}

.usersReviewTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  font-style: normal;
  font-family: "Familjen Grotesk";
}

.usersReviewIconsContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-base);
}

.usersReviewNumbersContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-02);
  justify-content: center;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--colors-grey-500);
  border-radius: 50%;
}

.userReviewNumbers {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  font-style: normal;
  font-family: Inter;
  color: var(--colors-grey-700);
}

.userReviewNumbers > span {
  font-weight: 600;
}

.usersReviewNumbersContainer > div {
  gap: 2px;
  display: flex;
  align-items: center;
}

.usersReviewNumbersContainer > div > p {
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  font-style: normal;
  font-family: Inter;
  color: var(--colors-grey-700);
}

#affiliatesGrowth {
  width: 100%;
  max-width: unset;
  position: relative;
  background: url("/assets/bg-data-hero-CzTkV_TZ.svg") top center repeat var(--colors-grey-50);
}

.affiliatesGrowthContainer {
  width: 100%;
  max-width: 1200px;
  display: flex;
  text-align: center;
  align-items: center;
  gap: var(--spacing-12);
  flex-direction: column;
  padding: 0 20px;
  margin: 0 auto;
}

.calculatorContainer {
  width: 100%;
}

.calculator {
  gap: 16px;
  display: flex;
  margin-bottom: 40px;
  align-self: stretch;
  align-items: center;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
  border-radius: var(--spacing-base);
  background: var(--background-primary, #fff);
  box-shadow: 2px 6px 10px -6px rgba(0, 0, 0, 0.03), 0px 16px 25px -5px rgba(0, 0, 0, 0.04);
}

.sliderContainer {
  width: 90%;
  height: 77px;
  max-width: 600px;
}

.valueDisplay {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: right;
  font-family: Inter;
  font-style: normal;
  color: var(--colors-primary-600);
}

.sliderTrack {
  height: 8px;
  margin-top: 15px;
  position: relative;
  border-radius: 10px;
  border-radius: 10px;
  background: rgba(250, 83, 32, 0.15);
}

.sliderProgress {
  height: 100%;
  position: absolute;
  background-color: #ff5722;
  border-radius: 10px 0 0 10px;
  transition: width 0.2s ease;
}

.sliderThumb {
  top: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  box-sizing: border-box;
  background-color: white;
  transition: left 0.2s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.sliderThumb::after {
  top: 50%;
  left: 50%;
  width: 10px;
  content: "";
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background-color: #ff5722;
  transform: translate(-50%, -50%);
}

.slider {
  top: 0;
  left: 0;
  margin: 0;
  z-index: 2;
  width: 100%;
  height: 20px;
  outline: none;
  cursor: pointer;
  position: absolute;
  background: transparent;
  -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
  opacity: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
}

.slider::-moz-range-thumb {
  opacity: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
}

.sliderResultContainer {
  flex-grow: 1;
  display: flex;
  height: 96px;
  text-align: center;
  padding: 12px 56px;
  align-self: stretch;
  border-radius: 100px;
  align-items: center;
  flex-direction: column;
  gap: var(--spacing-02);
  justify-content: center;
  background: linear-gradient(87deg, #f7f9fa -3.53%, #fcfcfd 109.59%);
}

.sliderResultContainer > p:first-of-type {
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.002px;
  text-align: center;
}

.divider {
  display: none;
}

#resultingCost {
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  text-align: center;
  font-style: normal;
  font-family: "Familjen Grotesk";
  color: var(--colors-primary-600);
  font-variant-numeric: tabular-nums;
}

.affiliatesGrowthHint {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-600);
}

.testimonialsContainer {
  display: flex;
  align-items: center;
  gap: var(--spacing-08);
  flex-direction: column;
  justify-content: center;
}
.testimonialsContainer .testimonial:not(.active) {
  display: none;
}

.sliderDotsContainer {
  gap: 9px;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.sliderDot {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.sliderDot.active {
  background-color: var(--colors-grey-600);
}

#getingStarted {
  gap: 48px;
  width: 100%;
  height: 100%;
  padding-left: var(--spacing-05);
  padding-right: var(--spacing-05);
  display: flex;
  max-width: unset;
  align-items: center;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/assets/getting_started_bg_desktop-D2tR5O5k.png");
}

.stepsContainer {
  gap: 0 96px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  width: 100%;
  max-width: 116rem;
}

.step {
  flex: 1;
  z-index: 2;
  display: flex;
  position: relative;
  align-items: center;
  gap: var(--spacing-06);
  flex-direction: column;
  box-sizing: border-box;
}

.stepTitle {
  font-family: "Familjen Grotesk";
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.stepDescription {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
  text-wrap: balance;
}

.stepNumber {
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  flex-shrink: 0;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  background: var(--colors-primary-100);
  border: 1px solid var(--colors-primary-600);
  color: var(--colors-primary-600);
  font-family: "Familjen Grotesk";
  font-size: 2rem;
}

.stepTitle {
  margin-bottom: 8px;
  text-align: center;
}

.stepDescription {
  font-size: 16px;
  text-align: center;
}

.dottedLine {
  left: 15%;
  right: 15%;
  top: 20px;
  z-index: 1;
  height: 2px;
  position: absolute;
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, #ff5722 50%, transparent 50%);
}

#becomeAnAffiliate {
  width: 100%;
  display: flex;
  gap: var(--spacing-12);
  flex-direction: column;
  align-items: center;
}

.formContainer {
  width: 100%;
  flex-grow: 1;
  height: 626px;
  min-width: 335px;
  border-radius: 4px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.05), 0px 0px 10px -6px rgba(0, 0, 0, 0.05), 0px 0px 50px -5px rgba(0, 0, 0, 0.05);
}

.formContainer > div:first-of-type {
  height: 100% !important;
}

@media screen and (max-width: calc(48em - 1px)) {
  .affiliate-hero {
    background-image: url("/assets/affiliate-program-hero--mobile-C_G98aMQ.png");
  }
}
@media screen and (max-width: calc(75em - 1px)) {
  #getingStarted {
    background-image: url("/assets/getting_started_bg_mobile-DK-2voax.png");
  }
  .stepsContainer {
    gap: 0;
    flex-direction: column;
  }
  .step {
    width: 100%;
    text-align: start;
    position: relative;
    flex-direction: row;
    gap: var(--spacing-06);
  }
  .step:not(:last-child) {
    padding-bottom: var(--spacing-10);
  }
  .stepTitle {
    text-align: start;
  }
  .stepNumber {
    align-self: flex-start;
  }
  .stepDescription {
    font-size: 15px;
    text-align: start;
  }
  .step:not(:last-child)::after {
    top: 0;
    left: 20px;
    z-index: 1;
    width: 2px;
    content: "";
    height: 100%;
    position: absolute;
    background-size: 2px 10px;
    transform: translateX(-50%);
    background-repeat: repeat-y;
    background-image: linear-gradient(to bottom, #ff5722 50%, transparent 50%);
  }
  .dottedLine {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  .affiliatesContainer {
    gap: 64px var(--spacing-12);
  }
  .advantagesContainer {
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .advantage {
    min-height: 21rem;
    padding: var(--spacing-08);
  }
  .usersReviewContaner {
    margin-top: var(--spacing-08);
  }
  .usersReview {
    margin-top: var(--spacing-08);
    flex-direction: row;
    gap: var(--spacing-03);
  }
  .usersReviewTitle {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
  .calculator {
    height: 100%;
    min-width: 746px;
    gap: var(--spacing-06);
  }
  .sliderContainer {
    height: 65px;
  }
  .sliderResultContainer > p:first-of-type {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.002px;
  }
  .sliderResultContainer {
    height: 132px;
    flex-direction: row;
    gap: var(--spacing-08);
    justify-content: space-between;
  }
  .calculatorContainer {
    width: unset;
    padding: unset;
  }
  .divider {
    height: 2px;
    flex-grow: 1;
    display: block;
    background-color: var(--colors-grey-300);
  }
  #resultingCost {
    font-size: 60px;
    line-height: 64px;
  }
  .formContainer {
    width: 986px;
    height: 548px;
  }
}

.about .our-team {
  position: relative;
  overflow: hidden;
}
.about .section__description--lg {
  max-width: 68rem;
  margin: 0 auto;
  text-align: center;
}
.about .careers-cta .section__header {
  max-width: 52rem;
}
.about .generic-hero__subtitle:lang(fr) {
  max-width: 110rem;
}

.about-hero {
  background-image: url("/assets/about-hero-bg-DM66NtpN.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

.team-members {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(30rem, 100%), 1fr));
  gap: var(--spacing-10);
  max-width: 104rem;
  position: relative;
  z-index: 2;
}

.member-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-04);
}
.member-card:hover .member-card__infos, .member-card:focus-within .member-card__infos {
  transform: translateY(-0.2rem);
}
.member-card:hover .member-card__contact, .member-card:focus-within .member-card__contact {
  opacity: 1;
}

.member-card__thumbnail {
  position: relative;
}

.member-card__avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
}

.member-card__country {
  position: absolute;
  bottom: 0.2rem;
  right: 0.4rem;
  font-size: 2rem;
  z-index: 2;
}

.member-card__infos {
  transform: translateY(0.8rem);
  transition: transform 250ms ease-in;
}

.member-card__name {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0 0 var(--spacing-01) 0;
}

.member-card__position {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  color: var(--colors-grey-700);
}

.member-card__contact {
  margin-top: var(--spacing-03);
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  opacity: 0;
  transition: opacity 250ms ease-in;
}

.member-card__email {
  color: var(--colors-grey-800);
  text-decoration-color: var(--colors-grey-400);
  margin-right: var(--spacing-02);
  font-size: 1.4rem;
  line-height: 1.1428571429;
}
.member-card__email:hover, .member-card__email:focus {
  text-decoration-color: var(--colors-grey-800);
}

.member-card__linkedin,
.member-card__twitter {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  text-decoration: none;
}
.member-card__linkedin:hover, .member-card__linkedin:focus,
.member-card__twitter:hover,
.member-card__twitter:focus {
  color: var(--colors-secondary-600);
  text-decoration-color: transparent;
}

.member-card__linkedin {
  color: var(--colors-brand-linkedin-blue);
}

.member-card__twitter {
  color: var(--colors-brand-twitter-black);
}

.team-globe {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 72rem;
}

@media screen and (max-width: calc(48em - 1px)) {
  .team-globe {
    display: none;
  }
}
.value-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
  margin-bottom: var(--spacing-14);
}

.value-block__icon {
  align-self: flex-start;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--colors-secondary-500) 0%, var(--colors-secondary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.value-block__title {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  margin: var(--spacing-02) 0 0 0;
}

.value-block__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
  max-width: 40rem;
}

.our_data .generic-hero__description {
  max-width: 92rem;
}

.data-hero {
  background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='160'%20viewBox='0%200%201593%20160'%20width='1593'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h1593v160h-1593z'/%3e%3c/clipPath%3e%3cg%20clip-path='url(%23a)'%20fill='%23f7f9fa'%3e%3cpath%20d='m-8%2029.9187h40.4018v130.0813h-40.4018z'/%3e%3cpath%20d='m187.948%2035h40.402v125h-40.402z'/%3e%3cpath%20d='m383.897%2040h40.402v120h-40.402z'/%3e%3cpath%20d='m579.846%2029.9187h40.401v130.0813h-40.401z'/%3e%3cpath%20d='m775.794%2029.9187h40.402v130.0813h-40.402z'/%3e%3cpath%20d='m971.743%2038h40.397v122h-40.397z'/%3e%3cpath%20d='m1167.69%2065h40.4v95h-40.4z'/%3e%3cpath%20d='m40.9872%2048.1301h40.4017v111.8699h-40.4017z'/%3e%3cpath%20d='m237.441%2071h40.401v89h-40.401z'/%3e%3cpath%20d='m432.379%2071h40.402v89h-40.402z'/%3e%3cpath%20d='m628.328%2061h40.401v99h-40.401z'/%3e%3cpath%20d='m824.276%2061h40.402v99h-40.402z'/%3e%3cpath%20d='m1020.22%2061h40.41v99h-40.41z'/%3e%3cpath%20d='m1216.17%2038h40.4v122h-40.4z'/%3e%3cpath%20d='m89.9742%2013.0081h40.4018v146.9919h-40.4018z'/%3e%3cpath%20d='m285.923%2011h40.402v149h-40.402z'/%3e%3cpath%20d='m481.871%2043h40.402v117h-40.402z'/%3e%3cpath%20d='m677.82%2030h40.402v130h-40.402z'/%3e%3cpath%20d='m873.768%2030h40.402v130h-40.402z'/%3e%3cpath%20d='m1069.72%2024h40.4v136h-40.4z'/%3e%3cpath%20d='m1265.67%2024h40.4v136h-40.4z'/%3e%3cpath%20d='m1363.64%2030h40.4v130h-40.4z'/%3e%3cpath%20d='m1413.13%2074h40.4v86h-40.4z'/%3e%3cpath%20d='m1462.62%2052h40.41v108h-40.41z'/%3e%3cpath%20d='m1560.6%2027h40.4v133h-40.4z'/%3e%3cpath%20d='m1511.11%205h40.4v155h-40.4z'/%3e%3cpath%20d='m138.961%200h40.402v160h-40.402z'/%3e%3cpath%20d='m335.415%2022h40.402v138h-40.402z'/%3e%3cpath%20d='m531.363%200h40.402v160h-40.402z'/%3e%3cpath%20d='m727.312%2011h40.402v149h-40.402z'/%3e%3cpath%20d='m923.26%2017h40.402v143h-40.402z'/%3e%3cpath%20d='m1119.21%2017h40.4v143h-40.4z'/%3e%3cpath%20d='m1315.16%2048h40.4v112h-40.4z'/%3e%3c/g%3e%3c/svg%3e");
  background-position: bottom center;
  background-repeat: repeat-x;
}

.stat-highlight {
  padding-left: var(--spacing-06);
  padding-bottom: var(--spacing-01);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04);
  border-left: 0.4rem solid var(--colors-secondary-600);
  font-size: 1.6rem;
  line-height: 1.25;
}

.stat-highlight--sm .stat-highlight__title {
  font-size: clamp(4.8rem, 4.50736rem + 0.7805vw, 5.6rem);
}

.stat-highlight__title {
  font-family: var(--fonts-family-heading);
  font-size: clamp(5.6rem, 5.01456rem + 1.561vw, 7.2rem);
  line-height: 1;
}

.section-crawler .section__description {
  max-width: 68rem;
}

.crawler-chart {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-600);
}

.crawler-chart__title {
  margin-bottom: -4rem;
}

.crawler-chart__chart {
  min-height: 20rem;
}

.section-standard {
  counter-reset: ourPrinciples;
}
.section-standard .section__description {
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
}

.section-standard__subtitle {
  counter-increment: ourPrinciples;
  font-size: 2.8rem;
  display: flex;
  gap: 0.85em;
  margin-bottom: var(--spacing-10);
}
.section-standard__subtitle::before {
  content: counter(ourPrinciples);
  font-family: var(--fonts-family-heading);
  font-size: clamp(5.6rem, 5.01456rem + 1.561vw, 7.2rem);
  line-height: 1;
  color: var(--colors-grey-200);
  position: relative;
  top: -0.125em;
}

@media screen and (max-width: calc(48em - 1px)) {
  .crawler-chart {
    display: none;
  }
  .stat-highlight {
    margin-bottom: var(--spacing-10);
  }
}
.signals-hero {
  position: relative;
  background: var(--colors-grey-50);
  background-size: cover;
  text-align: center;
  padding-top: calc(var(--spacing-base) * 40);
  padding-bottom: calc(var(--spacing-base) * 20);
  overflow: hidden;
}
.signals-hero .container-fluid {
  position: relative;
  z-index: 10;
}
.signals-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}

.signals-hero__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
}

.signals-hero__subtitle {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 76rem;
  margin: 0 auto;
}
.signals-hero__subtitle:lang(fr) {
  max-width: 96rem;
}
.signals-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}

.signals-hero__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.signals-hero__bg [class*=dots-] {
  animation: radarBlink 10s ease-out infinite;
}
.signals-hero__bg .dots-1 {
  animation-delay: 1.5s;
}
.signals-hero__bg .dots-2 {
  animation-delay: 2.25s;
}
.signals-hero__bg .dots-3 {
  animation-delay: 3.25s;
}
.signals-hero__bg .dots-4 {
  animation-delay: 6.25s;
}
.signals-hero__bg .dots-5 {
  animation-delay: 7.25s;
}
.signals-hero__bg .dots-6 {
  animation-delay: 7.5s;
}

.signals-radar {
  left: 50%;
  position: absolute;
  top: calc(100% + 2rem);
  width: 100%;
  max-width: 200rem;
  min-width: 160rem;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-radius: 50%;
  overflow: hidden;
}
.signals-radar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: conic-gradient(transparent 90%, var(--colors-primary-200));
  border-radius: 50%;
  opacity: 0.8;
  animation: radarSpin 10s 1s linear infinite;
}

@keyframes radarSpin {
  to {
    transform: rotate(0.75turn);
  }
}
@keyframes radarBlink {
  0% {
    fill: var(--colors-primary-600);
  }
  40%, 100% {
    fill: transparent;
  }
}
@media (prefers-reduced-motion) {
  .signals-radar::after {
    animation: none !important;
    transform: rotate(25deg);
  }
  .signals-hero__bg [class*=dots-] {
    animation: none !important;
    fill: var(--colors-primary-600);
  }
}
.signals-demo-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: #fff;
  width: max-content;
  margin: var(--spacing-12) auto var(--spacing-10);
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0 1.2rem 1.6rem rgba(40, 50, 59, 0.06), 0 0.4rem 0.6rem rgba(58, 68, 79, 0.08), 0 0.1rem 0.2rem rgba(58, 68, 79, 0.08);
  border-radius: 0.8rem;
}

.signals-demo-tabs__tab {
  flex: 1;
  width: 100%;
  padding: var(--spacing-03) var(--spacing-04);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  border: 0;
  background-color: var(--colors-grey-100);
  color: var(--colors-grey-700);
  box-shadow: inset 0px -4px 0px #DFE3E8;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 150ms ease-in, background-color 150ms ease-in, color 150ms ease-in;
}
.signals-demo-tabs__tab:not([aria-selected=true]):hover, .signals-demo-tabs__tab:not([aria-selected=true]):focus {
  box-shadow: inset 0px -3px 0px #DFE3E8;
  color: var(--colors-grey-1000);
}
.signals-demo-tabs__tab[aria-selected=true] {
  box-shadow: none;
  background-color: #fff;
  color: var(--colors-grey-1000);
}

.signals-demo {
  position: relative;
  margin: calc(var(--spacing-20) * -1) auto 0;
  max-width: 80rem;
  width: calc(100% - 1.6rem);
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.05), 0px 20px 25px -5px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 4px #F7F9FA;
  border-radius: 0.4rem;
  z-index: 10;
}

[data-tabs-target=tabContent][aria-hidden=true] {
  display: none;
}

.signal-company {
  position: relative;
  padding: var(--spacing-05) var(--spacing-04);
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
  border-bottom: 0.1rem solid var(--colors-grey-300);
}

.signal-company__name {
  display: inline-block;
  vertical-align: baseline;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-900);
}

.signal-company__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  flex-wrap: wrap;
}

.signal-company__logo,
.signal-company__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.2rem;
  object-fit: contain;
  border: 0.1rem solid rgba(0, 0, 0, 0.05);
}

.signal-company__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--colors-grey-100);
  border: 1px solid var(--colors-grey-200);
  border-radius: 0.4rem;
  font-size: 1.6rem;
}

.signal-company__icon--secondary {
  background-color: var(--colors-secondary-100);
  border-color: var(--colors-secondary-300);
  color: var(--colors-secondary-600);
}

.signal-company__icon--violette {
  background-color: rgba(var(--colors-violette-200--rgb), 0.2);
  border-color: rgba(var(--colors-violette-200--rgb), 0.5);
  color: var(--colors-violette-500);
}

.signal-company__icon--cyan {
  background-color: rgba(var(--colors-cyan-200--rgb), 0.2);
  border-color: rgba(var(--colors-cyan-200--rgb), 0.5);
  color: var(--colors-cyan-500);
}

.signal-company__icon--success {
  background-color: var(--colors-success-100);
  border-color: var(--colors-success-300);
  color: var(--colors-success-600);
}

.signal-company__icon--danger {
  background-color: var(--colors-danger-100);
  border-color: var(--colors-danger-300);
  color: var(--colors-danger-600);
}

.signal-company__heading {
  flex: 1;
}

.signal-company__category {
  display: flex;
  align-items: center;
  gap: 0.25em;
  color: var(--colors-grey-700);
  font-size: 1.3rem;
  line-height: 1.5384615385;
}
.signal-company__category span {
  color: var(--colors-grey-600);
}

.signal-company__metas,
.signal-company__meta {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.signal-company__meta {
  gap: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.5384615385;
}

.signal-company__meta-icon {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-500);
}

.signal-company__tags {
  display: flex;
  gap: var(--spacing-02);
}

.signal-company--updates .signal-company__heading {
  min-width: 0;
}

.signals .feature-card {
  --featured-card-body-padding: var(--spacing-10) var(--spacing-08) 0;
  gap: var(--spacing-08);
}

.feature-card--warm-prospects .feature-card__visual,
.feature-card--sources .feature-card__visual {
  flex: 1;
  min-width: 0;
  text-align: right;
}
.feature-card--warm-prospects .feature-card__visual::before, .feature-card--warm-prospects .feature-card__visual:after,
.feature-card--sources .feature-card__visual::before,
.feature-card--sources .feature-card__visual:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6rem;
}
.feature-card--warm-prospects .feature-card__visual::before,
.feature-card--sources .feature-card__visual::before {
  bottom: -1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--colors-grey-50) 75%);
}
.feature-card--warm-prospects .feature-card__visual:after,
.feature-card--sources .feature-card__visual:after {
  top: -1rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, var(--colors-grey-50) 75%);
}
.feature-card--warm-prospects .feature-card__img,
.feature-card--sources .feature-card__img {
  max-width: none;
}

.feature-card--relevant-campaigns .feature-card__visual {
  width: 100%;
}
.feature-card--relevant-campaigns .feature-card__img {
  margin-left: var(--spacing-08);
  max-width: none;
}

.feature-card--sources .feature-card__visual {
  max-height: 24rem;
  margin-top: calc(var(--spacing-14) * -1);
}
.feature-card--sources .feature-card__heading {
  position: relative;
  z-index: 1;
}

.feature-card--signals-emails .feature-card__visual {
  width: 100%;
}
.feature-card--signals-emails .feature-card__visual::before, .feature-card--signals-emails .feature-card__visual:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
}
.feature-card--signals-emails .feature-card__visual::before {
  left: 0;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, var(--colors-grey-50) 75%);
}
.feature-card--signals-emails .feature-card__visual:after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--colors-grey-50) 75%);
}
.feature-card--signals-emails .feature-card__img {
  max-width: none;
}

@media screen and (max-width: calc(48em - 1px)) {
  .feature-card--warm-prospects .feature-card__visual {
    max-height: 24rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
  }
  .feature-card--warm-prospects .feature-card__img {
    margin-left: var(--spacing-08);
    min-width: 0;
  }
  .feature-card--relevant-campaigns .feature-card__visual {
    text-align: right;
  }
}
@media screen and (min-width: 48em) {
  .signals-demo-tabs {
    flex-direction: row;
    border-radius: 6rem;
    margin-top: var(--spacing-16);
  }
  .signals-demo-tabs__tab {
    width: auto;
    padding: var(--spacing-03) var(--spacing-06);
    font-size: 1.6rem;
  }
  .signals-demo-tabs__tab:first-child {
    border-radius: 6rem 0 0 6rem;
  }
  .signals-demo-tabs__tab:last-child {
    border-radius: 0 6rem 6rem 0;
  }
  .signals-demo-tabs__tab:not(:first-child) {
    border-left: 0.1rem solid var(--colors-grey-200);
  }
}
@media screen and (min-width: 62em) {
  .signals .feature-card {
    --featured-card-body-padding: var(--spacing-10) var(--spacing-10) 0 var(--spacing-12);
    background-repeat: no-repeat;
  }
  .signals-hero {
    padding-top: calc(var(--spacing-base) * 50);
    padding-bottom: calc(var(--spacing-base) * 30);
  }
  .feature-card--warm-prospects {
    background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='420'%20viewBox='0%200%20920%20420'%20width='920'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h920v420h-920z'%20transform='matrix(-1%200%200%201%20920%200)'/%3e%3c/clipPath%3e%3cmask%20id='b'%20height='420'%20maskUnits='userSpaceOnUse'%20width='920'%20x='0'%20y='0'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h904c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-903.99999c-4.41828%200-8.00001-3.582-8.00001-8z'%20fill='%23fcfcfd'%20fill-opacity='.5'/%3e%3cpath%20d='m8-1h904v2h-904zm913%209v404h-2v-404zm-9%20413h-903.99999v-2h903.99999zm-913-9v-404h2v404zm9.00001%209c-4.97056%200-9.00001-4.029-9.00001-9h2c0%203.866%203.13401%207%207.00001%207zm912.99999-9c0%204.971-4.029%209-9%209v-2c3.866%200%207-3.134%207-7zm-9-413c4.971%200%209%204.02944%209%209h-2c0-3.86599-3.134-7-7-7zm-904%202c-3.86599%200-7%203.13401-7%207h-2c0-4.97056%204.02944-9%209-9z'%20fill='%23eef0f3'%20mask='url(%23c)'/%3e%3c/mask%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h904c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-903.99999c-4.41828%200-8.00001-3.582-8.00001-8z'%20fill='%23fff'/%3e%3c/mask%3e%3cg%20clip-path='url(%23a)'%3e%3cg%20mask='url(%23b)'%20stroke='%23eef0f3'%3e%3ccircle%20cx='69.5825'%20cy='69.5825'%20r='69.0825'%20transform='matrix(-1%200%200%201%20719.583%20370.417)'/%3e%3ccircle%20cx='38.9662'%20cy='38.9662'%20r='38.4662'%20transform='matrix(-1%200%200%201%20688.966%20401.034)'/%3e%3ccircle%20cx='109.94'%20cy='109.94'%20r='109.44'%20transform='matrix(-1%200%200%201%20759.94%20330.06)'/%3e%3ccircle%20cx='153.082'%20cy='153.082'%20r='152.582'%20transform='matrix(-1%200%200%201%20803.082%20286.919)'/%3e%3ccircle%20cx='218.489'%20cy='218.489'%20r='217.989'%20transform='matrix(-1%200%200%201%20868.489%20221.511)'/%3e%3ccircle%20cx='283.897'%20cy='283.897'%20r='283.397'%20transform='matrix(-1%200%200%201%20933.896%20156.103)'/%3e%3cpath%20d='m301.196%20440c0%20193.409%20156.477%20350.196%20349.5%20350.196%20193.022%200%20349.504-156.787%20349.504-350.196s-156.482-350.1958-349.504-350.1958c-193.023%200-349.5%20156.7868-349.5%20350.1958z'/%3e%3ccircle%20cx='436.978'%20cy='436.978'%20r='436.478'%20transform='matrix(-1%200%200%201%201086.98%203.02188)'/%3e%3ccircle%20cx='569.185'%20cy='569.185'%20r='568.685'%20transform='matrix(-1%200%200%201%201219.19%20-129.185)'/%3e%3ccircle%20cx='700'%20cy='700'%20r='699.5'%20transform='matrix(-1%200%200%201%201350%20-260)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  }
  .feature-card--reach-out {
    background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='420'%20viewBox='0%200%20440%20420'%20width='440'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h440v420h-440z'%20transform='matrix(-1%200%200%201%20440%200)'/%3e%3c/clipPath%3e%3cmask%20id='b'%20height='420'%20maskUnits='userSpaceOnUse'%20width='440'%20x='0'%20y='0'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fcfcfd'%20fill-opacity='.5'/%3e%3cpath%20d='m8-1h424v2h-424zm433%209v404h-2v-404zm-9%20413h-424.00001v-2h424.00001zm-433-9v-404h2v404zm8.99999%209c-4.97056%200-8.99999-4.029-8.99999-9h2c0%203.866%203.134%207%206.99999%207zm433.00001-9c0%204.971-4.029%209-9%209v-2c3.866%200%207-3.134%207-7zm-9-413c4.971%200%209%204.02944%209%209h-2c0-3.86599-3.134-7-7-7zm-424%202c-3.86599%200-7%203.13401-7%207h-2c0-4.97056%204.02944-9%209-9z'%20fill='%23eef0f3'%20mask='url(%23c)'/%3e%3c/mask%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fff'/%3e%3c/mask%3e%3cg%20clip-path='url(%23a)'%3e%3cg%20mask='url(%23b)'%20stroke='%23eef0f3'%3e%3cpath%20d='m-658.804%20440c0%20193.409%20156.477%20350.196%20349.5%20350.196%20193.022%200%20349.4998-156.787%20349.4998-350.196s-156.4778-350.1958-349.4998-350.1958c-193.023%200-349.5%20156.7868-349.5%20350.1958z'/%3e%3ccircle%20cx='436.978'%20cy='436.978'%20r='436.478'%20transform='matrix(-1%200%200%201%20126.978%203.02188)'/%3e%3ccircle%20cx='569.185'%20cy='569.185'%20r='568.685'%20transform='matrix(-1%200%200%201%20259.185%20-129.185)'/%3e%3ccircle%20cx='700'%20cy='700'%20r='699.5'%20transform='matrix(-1%200%200%201%20390%20-260)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  }
  .feature-card--relevant-campaigns {
    background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='420'%20viewBox='0%200%20440%20420'%20width='440'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h440v420h-440z'%20transform='matrix(-1%200%200%201%20440%200)'/%3e%3c/clipPath%3e%3cmask%20id='b'%20height='420'%20maskUnits='userSpaceOnUse'%20width='440'%20x='0'%20y='0'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fcfcfd'%20fill-opacity='.5'/%3e%3cpath%20d='m8-1h424v2h-424zm433%209v404h-2v-404zm-9%20413h-424.00001v-2h424.00001zm-433-9v-404h2v404zm8.99999%209c-4.97056%200-8.99999-4.029-8.99999-9h2c0%203.866%203.134%207%206.99999%207zm433.00001-9c0%204.971-4.029%209-9%209v-2c3.866%200%207-3.134%207-7zm-9-413c4.971%200%209%204.02944%209%209h-2c0-3.86599-3.134-7-7-7zm-424%202c-3.86599%200-7%203.13401-7%207h-2c0-4.97056%204.02944-9%209-9z'%20fill='%23eef0f3'%20mask='url(%23c)'/%3e%3c/mask%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fff'/%3e%3c/mask%3e%3cg%20clip-path='url(%23a)'%3e%3cg%20mask='url(%23b)'%20stroke='%23eef0f3'%3e%3ccircle%20cx='218.489'%20cy='218.489'%20r='217.989'%20transform='matrix(-1%200%200%201%20868.489%20-238.489)'/%3e%3ccircle%20cx='283.897'%20cy='283.897'%20r='283.397'%20transform='matrix(-1%200%200%201%20933.896%20-303.897)'/%3e%3cpath%20d='m301.196-20c0%20193.409%20156.477%20350.196%20349.5%20350.196%20193.022%200%20349.504-156.787%20349.504-350.196s-156.482-350.196-349.504-350.196c-193.023%200-349.5%20156.787-349.5%20350.196z'/%3e%3ccircle%20cx='436.978'%20cy='436.978'%20r='436.478'%20transform='matrix(-1%200%200%201%201086.98%20-456.978)'/%3e%3ccircle%20cx='569.185'%20cy='569.185'%20r='568.685'%20transform='matrix(-1%200%200%201%201219.19%20-589.185)'/%3e%3ccircle%20cx='700'%20cy='700'%20r='699.5'%20transform='matrix(-1%200%200%201%201350%20-720)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  }
  .feature-card--sources {
    background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='420'%20viewBox='0%200%20440%20420'%20width='440'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h440v420h-440z'%20transform='matrix(-1%200%200%201%20440%200)'/%3e%3c/clipPath%3e%3cmask%20id='b'%20height='420'%20maskUnits='userSpaceOnUse'%20width='440'%20x='0'%20y='0'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fcfcfd'%20fill-opacity='.5'/%3e%3cpath%20d='m8-1h424v2h-424zm433%209v404h-2v-404zm-9%20413h-424.00001v-2h424.00001zm-433-9v-404h2v404zm8.99999%209c-4.97056%200-8.99999-4.029-8.99999-9h2c0%203.866%203.134%207%206.99999%207zm433.00001-9c0%204.971-4.029%209-9%209v-2c3.866%200%207-3.134%207-7zm-9-413c4.971%200%209%204.02944%209%209h-2c0-3.86599-3.134-7-7-7zm-424%202c-3.86599%200-7%203.13401-7%207h-2c0-4.97056%204.02944-9%209-9z'%20fill='%23eef0f3'%20mask='url(%23c)'/%3e%3c/mask%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fff'/%3e%3c/mask%3e%3cg%20clip-path='url(%23a)'%3e%3cg%20mask='url(%23b)'%20stroke='%23eef0f3'%3e%3ccircle%20cx='69.5825'%20cy='69.5825'%20r='69.0825'%20transform='matrix(-1%200%200%201%20239.583%20-89.5825)'/%3e%3ccircle%20cx='38.9662'%20cy='38.9662'%20r='38.4662'%20transform='matrix(-1%200%200%201%20208.966%20-58.9662)'/%3e%3ccircle%20cx='109.94'%20cy='109.94'%20r='109.44'%20transform='matrix(-1%200%200%201%20279.94%20-129.94)'/%3e%3ccircle%20cx='153.082'%20cy='153.082'%20r='152.582'%20transform='matrix(-1%200%200%201%20323.082%20-173.081)'/%3e%3ccircle%20cx='218.489'%20cy='218.489'%20r='217.989'%20transform='matrix(-1%200%200%201%20388.489%20-238.489)'/%3e%3ccircle%20cx='283.897'%20cy='283.897'%20r='283.397'%20transform='matrix(-1%200%200%201%20453.896%20-303.897)'/%3e%3cpath%20d='m-178.804-20c0%20193.409%20156.4772%20350.196%20349.5%20350.196%20193.022%200%20349.5-156.787%20349.5-350.196s-156.478-350.196-349.5-350.196c-193.0228%200-349.5%20156.787-349.5%20350.196z'/%3e%3ccircle%20cx='436.978'%20cy='436.978'%20r='436.478'%20transform='matrix(-1%200%200%201%20606.978%20-456.978)'/%3e%3ccircle%20cx='569.185'%20cy='569.185'%20r='568.685'%20transform='matrix(-1%200%200%201%20739.185%20-589.185)'/%3e%3ccircle%20cx='700'%20cy='700'%20r='699.5'%20transform='matrix(-1%200%200%201%20870%20-720)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  }
  .feature-card--signals-emails {
    background-image: url("data:image/svg+xml,%3csvg%20fill='none'%20height='420'%20viewBox='0%200%20440%20420'%20width='440'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cclipPath%20id='a'%3e%3cpath%20d='m0%200h440v420h-440z'%20transform='matrix(-1%200%200%201%20440%200)'/%3e%3c/clipPath%3e%3cmask%20id='b'%20height='420'%20maskUnits='userSpaceOnUse'%20width='440'%20x='0'%20y='0'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fcfcfd'%20fill-opacity='.5'/%3e%3cpath%20d='m8-1h424v2h-424zm433%209v404h-2v-404zm-9%20413h-424.00001v-2h424.00001zm-433-9v-404h2v404zm8.99999%209c-4.97056%200-8.99999-4.029-8.99999-9h2c0%203.866%203.134%207%206.99999%207zm433.00001-9c0%204.971-4.029%209-9%209v-2c3.866%200%207-3.134%207-7zm-9-413c4.971%200%209%204.02944%209%209h-2c0-3.86599-3.134-7-7-7zm-424%202c-3.86599%200-7%203.13401-7%207h-2c0-4.97056%204.02944-9%209-9z'%20fill='%23eef0f3'%20mask='url(%23c)'/%3e%3c/mask%3e%3cmask%20id='c'%20fill='%23fff'%3e%3cpath%20d='m0%208c0-4.41828%203.58172-8%208-8h424c4.418%200%208%203.58172%208%208v404c0%204.418-3.582%208-8%208h-424.00001c-4.41828%200-7.99999-3.582-7.99999-8z'%20fill='%23fff'/%3e%3c/mask%3e%3cg%20clip-path='url(%23a)'%3e%3cg%20mask='url(%23b)'%20stroke='%23eef0f3'%3e%3cpath%20d='m-658.804-20c0%20193.409%20156.477%20350.196%20349.5%20350.196%20193.022%200%20349.4998-156.787%20349.4998-350.196s-156.4778-350.196-349.4998-350.196c-193.023%200-349.5%20156.787-349.5%20350.196z'/%3e%3ccircle%20cx='436.978'%20cy='436.978'%20r='436.478'%20transform='matrix(-1%200%200%201%20126.978%20-456.978)'/%3e%3ccircle%20cx='569.185'%20cy='569.185'%20r='568.685'%20transform='matrix(-1%200%200%201%20259.185%20-589.185)'/%3e%3ccircle%20cx='700'%20cy='700'%20r='699.5'%20transform='matrix(-1%200%200%201%20390%20-720)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  }
}
.data_platform .section--faq {
  padding-top: calc(var(--spacing-base) * 50);
}
.data_platform .section--data-platform-pricing {
  position: relative;
  margin-bottom: -8rem;
  z-index: 1;
}

.data-platform-hero {
  background: url("/assets/data-platform-hero-bg-DnbHJccD.svg") top center repeat var(--colors-grey-50);
  padding-bottom: var(--spacing-25);
}

.enrichment-api-hero {
  text-align: left;
  background: url("/assets/enrichment-hero-bg-CYc1hAzB.svg") center no-repeat var(--colors-grey-50);
  background-size: cover;
}

.enrichment-api-hero__animation {
  margin-top: var(--spacing-10);
  width: 100%;
  aspect-ratio: 1/0.7;
  position: relative;
  text-align: center;
}

.browser-preview {
  margin: var(--spacing-08) 0;
  background-color: var(--colors-grey-900);
  color: #fff;
  border-radius: 0.4rem;
  overflow: hidden;
}

.browser-preview__header {
  background-color: var(--colors-grey-800);
  border-radius: 0.4rem 0.4rem 0 0;
  margin-bottom: var(--spacing-005);
  display: flex;
  align-items: center;
  gap: var(--spacing-14);
  padding: var(--spacing-02) var(--spacing-04);
}

.browser-preview__actions {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--colors-danger-600);
  box-shadow: 14px 0 0 var(--colors-warning-600), 28px 0 0 var(--colors-success-600);
}

.browser-preview__tabs {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
}

.browser-preview__tab {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  padding: var(--spacing-02) var(--spacing-06) var(--spacing-02) var(--spacing-03);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--colors-grey-100);
  border: 0;
  border-radius: 0.4rem;
  background-color: transparent;
  transition: background-color 200ms ease-in, color 200ms ease-in;
}
.browser-preview__tab .far {
  font-size: 1.2rem;
  transition: color 200ms ease-in;
}
.browser-preview__tab:hover, .browser-preview__tab:focus {
  color: #fff;
}
.browser-preview__tab:hover .far, .browser-preview__tab:focus .far {
  color: var(--colors-secondary-600);
}
.browser-preview__tab[aria-selected=true] {
  color: #fff;
  background-color: var(--colors-grey-700);
}
.browser-preview__tab[aria-selected=true] .far {
  color: var(--colors-secondary-600);
}

.section-enrichment-api-promotion {
  max-width: 104rem;
  padding: var(--spacing-20) var(--spacing-10);
  margin: var(--spacing-10) auto var(--spacing-30) auto;
  background-color: var(--colors-grey-1000);
  background-image: url("/assets/enrichment-promotion-section-bg-AtChMHTr.svg");
  background-position: top center;
  background-repeat: repeat-x;
  border-radius: 0.8rem;
  text-align: center;
  color: var(--colors-grey-200);
}
.section-enrichment-api-promotion .h-button--primary {
  min-width: 16rem;
}

.section-enrichment-api-promotion__title {
  color: #fff;
  font-size: clamp(2.8rem, 2.50736rem + 0.7805vw, 3.6rem);
  line-height: 1.1666666667;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.16);
  text-wrap: balance;
  margin: 0 0 var(--spacing-10) 0;
}

.animation-preview {
  margin-top: var(--spacing-10);
  width: 100%;
  aspect-ratio: 1/0.625;
}

.section--enrichment-ctas {
  position: relative;
  padding: var(--spacing-16) 0 0;
  overflow: hidden;
}

.prospector-replacement {
  position: relative;
  margin: var(--spacing-20) 0 var(--spacing-10);
}
.prospector-replacement > * {
  position: relative;
}
.prospector-replacement::before {
  content: "";
  position: absolute;
  background-color: var(--colors-grey-50);
  inset: calc(var(--spacing-10) * -1) 0 calc(var(--spacing-10) * -1) 0;
}

@media screen and (max-width: calc(48em - 1px)) {
  .enrichment-api-hero {
    text-align: center;
  }
}
@media screen and (max-width: calc(75em - 1px)) {
  .enrichment_api .related-product {
    height: calc(100% - var(--spacing-10));
    margin-bottom: var(--spacing-10);
  }
}
@media screen and (min-width: 62em) {
  .section--enrichment-ctas {
    padding: var(--spacing-16) 0;
  }
  .section--enrichment-ctas::before {
    content: "";
    position: absolute;
    inset: 0 0 0 71.25%;
    background-color: #fff;
  }
  .prospector-replacement {
    margin: var(--spacing-20) 0;
  }
  .prospector-replacement::before {
    border-radius: 0.8rem;
    inset: calc(var(--spacing-20) * -1) 0 calc(var(--spacing-20) * -1) calc(var(--spacing-10) * -1);
  }
}
@media screen and (min-width: 87.5em) {
  .prospector-replacement::before {
    border-radius: 0.8rem;
    inset: calc(var(--spacing-20) * -1) -100% calc(var(--spacing-20) * -1) calc(var(--spacing-10) * -1);
  }
}
.ai-writing-assistant-hero {
  position: relative;
  text-align: center;
  padding-top: calc(var(--spacing-base) * 40);
  background: radial-gradient(112.29% 112.29% at 51.28% 0%, rgba(255, 185, 164, 0) 0%, rgba(241, 202, 204, 0.5) 43.27%, #B8DFFF 97.12%), #FFFFFF;
}
.ai-writing-assistant-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: #fff;
}

.ai-writing-assistant-hero__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  margin: 0 auto;
  width: max-content;
  background: linear-gradient(270.25deg, #0F92FF 0%, #ED6870 50.38%, #FF5F2E 100.75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.ai-writing-assistant-hero__subtitle {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 2.72192rem + 2.3415vw, 6rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 68rem;
  margin: 0 auto;
}
.ai-writing-assistant-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}
.ai-writing-assistant-hero__subtitle:lang(fr) {
  max-width: 100rem;
}

.ai-writing-assistant-hero__hint {
  margin-top: var(--spacing-04);
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}

.ai-writing-assistant-demo {
  position: relative;
  max-width: 120rem;
  width: 100%;
  aspect-ratio: 1088/566;
  margin: var(--spacing-12) auto 0;
  background: var(--colors-grey-100);
  border: 1px solid var(--colors-grey-300);
  padding: var(--spacing-02);
  box-shadow: 0px 2px 50px 0px rgba(29, 38, 46, 0.0196078431), 0px 4px 80px 0px rgba(29, 38, 46, 0.0509803922);
  border-radius: 0.8rem;
}
.ai-writing-assistant-demo::after {
  content: "";
  position: absolute;
  left: -4rem;
  right: -4rem;
  bottom: -4rem;
  height: 24rem;
  background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.ai-writing-assistant-demo.is-playing .ai-writing-assistant-demo__preview,
.ai-writing-assistant-demo.is-playing .ai-writing-assistant-demo-play {
  opacity: 0;
  z-index: 1;
}
.ai-writing-assistant-demo.is-playing .ai-writing-assistant-demo__arcade {
  opacity: 1;
}

.ai-writing-assistant-demo__preview {
  display: block;
  width: 100%;
  border-radius: 0.2rem; /* match discover */
  transition: opacity 200ms ease-in;
}

.ai-writing-assistant-demo__arcade {
  position: absolute;
  border-radius: 0.2rem;
  top: var(--spacing-01);
  left: var(--spacing-01);
  z-index: 5;
  width: calc(100% - var(--spacing-02));
  height: calc(100% - var(--spacing-02));
  opacity: 0;
  transition: opacity 200ms ease-in;
}

.ai-writing-assistant-demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  background-color: #fff;
  box-shadow: 0 0 0 0.8rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
  border: 0;
  border-radius: 6rem;
  height: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding: var(--spacing-04) var(--spacing-06);
  max-width: 6rem;
  overflow: hidden;
  transition: box-shadow 200ms ease-in-out, max-width 200ms ease-in-out, opacity 200ms ease-in;
  z-index: 10;
}
.ai-writing-assistant-demo-play:hover, .ai-writing-assistant-demo-play:focus {
  box-shadow: 0 0 0 1.2rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
  max-width: 24rem;
}
.ai-writing-assistant-demo-play:hover .ai-writing-assistant-demo-play__icon, .ai-writing-assistant-demo-play:focus .ai-writing-assistant-demo-play__icon {
  color: var(--colors-secondary-600);
}
.ai-writing-assistant-demo-play:hover .ai-writing-assistant-demo-play__label, .ai-writing-assistant-demo-play:focus .ai-writing-assistant-demo-play__label {
  opacity: 1;
}
.ai-writing-assistant-demo-play:active {
  box-shadow: 0 0 0 0.4rem rgba(0, 0, 0, 0.1), 0 0 4.8rem rgba(0, 0, 0, 0.25);
}

.ai-writing-assistant-demo-play__label {
  opacity: 0;
  white-space: nowrap;
  transition: all 150ms ease-in-out;
}

.ai-assistant-feature {
  padding: var(--spacing-05);
  background: var(--colors-grey-100);
  border: 1px solid var(--colors-grey-300);
  border-radius: 0.8rem;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: var(--spacing-06);
}
.ai-assistant-feature > .row {
  min-height: 64rem;
}

.ai-assistant-feature-1 {
  background-image: url("/assets/bg-mobile-card-1-B-A_erXw.png");
}

.ai-assistant-feature-2 {
  background-image: url("/assets/bg-mobile-card-2-9ej19dno.png");
}

.ai-assistant-feature-3 {
  background-image: url("/assets/bg-mobile-card-3-kKDLj4kf.png");
}

.ai-assistant-feature-4 {
  background-image: url("/assets/bg-mobile-card-4-Bc1rR_T2.png");
}

.carousel-box__container {
  margin: 0 2rem;
  position: absolute;
  inset: 0;
  border: 1px solid var(--colors-grey-300);
  border-radius: var(--spacing-01);
  background-color: var(--colors-grey-50);
  height: 100%;
}

.carousel {
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 2rem;
}

.track {
  display: flex;
  gap: 2rem;
}

.track-left {
  animation: scroll-left 20s linear infinite;
}

.track-right {
  animation: scroll-right 20s linear infinite;
}

.tool-tag {
  flex: 0 0 auto;
  padding: var(--spacing-04) var(--spacing-06);
  font-family: var(--fonts-family-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  white-space: nowrap;
}

.carousel-box {
  position: relative;
  height: 30rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: calc(62em - 1px)) {
  .ai-assistant-feature__image {
    max-width: 48rem;
    margin: 0 auto;
  }
}
@media (min-width: 35em) {
  .ai-writing-assistant-hero::before {
    height: 20rem;
  }
}
@media (min-width: 62em) {
  .ai-assistant-feature {
    padding: var(--spacing-12) 0 var(--spacing-12) var(--spacing-12);
  }
  .ai-assistant-feature:nth-child(odd) {
    padding: var(--spacing-12) var(--spacing-12) var(--spacing-12) 0;
  }
  .ai-assistant-feature:nth-child(odd) .ai-assistant-feature__image {
    padding-left: 0;
  }
  .ai-assistant-feature:nth-child(even) .ai-assistant-feature__image {
    padding-right: 0;
  }
  .carousel-box__container {
    margin: 0 10rem;
  }
  .ai-assistant-feature-1 {
    background-image: url("/assets/bg-card-1-BitvQ780.png");
  }
  .ai-assistant-feature-2 {
    background-image: url("/assets/bg-card-2-BhydnstG.png");
  }
  .ai-assistant-feature-3 {
    background-image: url("/assets/bg-card-3-quvRLEuO.png");
  }
  .ai-assistant-feature-4 {
    background-image: url("/assets/bg-card-4-Dju6oMAP.png");
  }
}
.plan_calculator .generic-hero__subtitle:lang(fr) {
  max-width: 100rem;
}

.usage-table {
  overflow: hidden;
  border: 1px solid var(--colors-grey-300);
  border-radius: 0.4rem;
}

.usage-table__table {
  width: 100%;
  font-size: 1.5rem;
  border-radius: 0.4rem;
  background-color: #fff;
  border: none;
}

.usage-table th,
.usage-table td {
  border-bottom: 1px solid var(--colors-grey-300);
}
.usage-table thead {
  border-bottom: 1px solid var(--colors-grey-300);
}
.usage-table th:not(:last-child),
.usage-table td:not(:last-child) {
  border-right: 1px solid var(--colors-grey-300);
}
.usage-table tr:last-child th,
.usage-table tr:last-child td {
  border-bottom: none;
}
.usage-table tbody > tr > th,
.usage-table tbody > tr > td {
  padding: 2.4rem;
}
.usage-table thead > tr > th,
.usage-table thead > tr > td {
  padding: 1.6rem 2.4rem;
  background-color: var(--bs-tertiary-bg);
}
.usage-table thead > tr > th {
  color: var(--colors-grey-1000);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
}
.usage-table tbody > tr > td {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.usage-table tbody > tr > td:nth-child(even) {
  background-color: var(--bs-tertiary-bg);
  color: var(--color-gray-600);
  font-style: italic;
}

.usage-table__link {
  color: var(--colors-primary-600);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  text-decoration-line: underline;
  text-underline-offset: var(--spacing-01);
  text-decoration-color: currentColor;
}
.usage-table__link:hover, .usage-table__link:focus {
  color: var(--colors-grey-900);
  text-decoration-color: transparent;
}

.good-to-know__list {
  list-style-type: none;
  margin: 0;
  padding: var(--spacing-06) 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-06);
}

.good-to-know__item {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  gap: var(--spacing-06);
  align-items: center;
}

.good-to-know__item-icon {
  border: 1px solid var(--colors-secondary-300);
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
}

.good-to-know__item-description {
  margin: 0;
  grid-column: 2;
}

@media screen and (max-width: 48em) {
  .usage-table thead {
    display: none;
  }
  .usage-table tbody {
    display: grid;
  }
  .usage-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .usage-table tbody th[scope=row] {
    grid-column: 1/-1;
    display: block;
  }
  .usage-table tr:last-child th {
    border-bottom: 1px solid var(--colors-grey-300);
  }
  .usage-table th {
    border-right: none !important;
  }
  .good-to-know__list {
    grid-template-columns: 1fr;
  }
}
.plan-calculator {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-10);
  background-color: var(--colors-grey-100);
  padding: var(--spacing-05);
  min-height: 58rem;
}

.plan-calculator__input {
  flex: 1;
}
.plan-calculator__input .h-input {
  background-color: transparent;
}
.plan-calculator__input .h-input:focus-visible {
  background-color: #fff;
}

.plan-calculator__label {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  margin-bottom: var(--spacing-03);
}

.plan-calculator__label--sm {
  font-size: 1.6rem;
  line-height: 1.5;
}

.plan-calculator__input-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-05);
}

.plan-calculator__radio-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}
.plan-calculator__radio-group label {
  font-size: 1.6rem;
  line-height: 1.5;
}
.plan-calculator__radio-group [type=radio] {
  width: 1.6rem;
  height: 1.6rem;
}

.plan-calculator__output {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(29, 38, 46, 0.05), 0px 2px 50px rgba(29, 38, 46, 0.02);
  border-radius: 0.8rem;
}

.plan-calculator-result {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.plan-calculator-result__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-05);
  border-bottom: 1px solid var(--colors-grey-300);
  background-color: var(--colors-grey-50);
}

.plan-calculator-result__content {
  flex: 1;
  padding: var(--spacing-08);
}

.plan-calculator-result__title {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: var(--colors-grey-700);
  margin-bottom: var(--spacing-02);
}

.plan-calculator-result__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--spacing-03);
  font-family: var(--fonts-family-heading--website);
  font-size: clamp(3.6rem, 3.16096rem + 1.1707vw, 4.8rem);
  line-height: 1.1666666667;
  color: var(--colors-grey-900);
  text-align: center;
}
.plan-calculator-result__value em {
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-800);
}

.plan-calculator-result__savings {
  max-width: max-content;
  margin: 0 auto;
  background-color: var(--colors-grey-100);
  padding: var(--spacing-01) var(--spacing-03);
  border-radius: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
  text-align: center;
}
.plan-calculator-result__savings .text-primary {
  text-decoration: line-through;
}

.plan-calculator-breakdown {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-800);
  max-width: 48rem;
  margin: var(--spacing-08) auto 0;
}
.plan-calculator-breakdown tr + tr {
  position: relative;
}
.plan-calculator-breakdown tr + tr th::before {
  content: "+";
  width: 1em;
  position: absolute;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -2em;
  background-color: #fff;
  color: var(--colors-grey-500);
  font-size: 1.6rem;
  text-align: center;
}
.plan-calculator-breakdown td,
.plan-calculator-breakdown th {
  padding: var(--spacing-04) 0;
  border-top: 0.1rem solid var(--colors-grey-300);
  font-variant-numeric: tabular-nums;
}

.plan-calculator-result__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-04);
  padding: var(--spacing-05) var(--spacing-04) var(--spacing-10);
}
.plan-calculator-result__footer .h-button--primary {
  min-width: 28rem;
}

@media screen and (min-width: 48em) {
  .plan-calculator__input-group {
    flex-direction: row;
  }
}
@media screen and (min-width: 62em) {
  .plan-calculator {
    flex-direction: row;
    gap: var(--spacing-14);
    padding: var(--spacing-10);
  }
}
.ai-email-quiz-hero__content {
  position: absolute !important;
  inset: 0;
  padding-top: 180px;
  text-align: center;
}

.ai-email-quiz-hero {
  position: relative;
  background-color: var(--colors-grey-50);
  margin-bottom: 60rem;
}

.ai-email-quiz__bg {
  min-height: 50vh;
}

.result-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-email-quiz-hero__subtitle {
  min-width: 100%;
  width: 100%;
  margin: 0%;
  font-family: var(--fonts-family-heading);
  font-size: clamp(2.8rem, 4vw, 6rem);
}

.ai-email-quiz-hero__subtitle strong {
  background: linear-gradient(270.25deg, #ff5f2e 0%, #ed6870 50.38%, #0f92ff 100.75%) !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.ai-email-quiz__container {
  position: relative;
  max-width: 120rem;
  text-align: start;
}

.ai-email-quiz__container-inner-wrapper {
  padding-bottom: 11.2rem;
}

.ai-email-quiz__container-inner {
  position: relative;
  max-width: 80rem;
  margin: var(--spacing-12) auto 0;
  padding: 1.2rem;
  aspect-ratio: 800/566;
  border-radius: 0.8rem;
  background: white;
  box-shadow: 0 4px 80px 0 rgba(29, 38, 46, 0.05), 0 2px 50px 0 rgba(29, 38, 46, 0.02);
}

.ai-email-quiz__container-inner-content {
  gap: 2.8rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 3.2rem 4.8rem;
  height: 100%;
  border: 1px solid var(--border-secondary, #eef0f3);
  background: var(--background-secondary, #fcfcfd);
  scrollbar-width: thin;
  scrollbar-color: var(--colors-grey-400);
  border-radius: 0.4rem;
  max-height: 39rem;
  min-height: 32rem;
}

.ai-email-quiz__container-inner-content-question {
  color: var(--colors-grey-800);
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.2rem;
  white-space: pre-line;
}

.ai-email-quiz__container-inner-answers-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}

.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button {
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  height: 5.6rem;
  min-width: 14.2rem;
  border: 1px solid transparent;
  background: #fff;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 1px 1px 0 rgba(29, 38, 46, 0.05);
  margin-bottom: 2.4rem;
  margin-top: 2.8rem;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 0;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button {
  position: relative;
  z-index: 0;
  border-radius: 0.4rem;
  background-clip: padding-box;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to right, #417eff, #c0aff4, #ffb7ce, #fe6f05);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button.answer-incorrect {
  color: var(--colors-danger-600);
  border: 1px solid var(--colors-danger-400);
  background: var(--colors-danger-100);
  box-shadow: 0 1px 1px 0 rgba(29, 38, 46, 0.05);
  opacity: 1;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button.answer-incorrect::before {
  opacity: 0;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button.answer-correct {
  color: var(--colors-success-600);
  border: 1px solid var(--colors-success-400);
  background: var(--colors-success-100);
  box-shadow: 0 1px 1px 0 rgba(29, 38, 46, 0.05);
  opacity: 1;
}
.ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button.answer-correct::before {
  opacity: 0;
}

.ai-email-quiz__container-inner-content-result {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-email-quiz__container-inner-content-result i {
  font-size: 2.4rem;
}

.ai-email-quiz__container-inner-content-result.success {
  color: var(--colors-success-600);
}

.ai-email-quiz__container-inner-content-result.error {
  color: var(--colors-danger-600);
}

.ai-email-quiz__container-inner-answers-result {
  height: 5.4rem;
}

.ai-email-quiz__result-progress-bar {
  position: absolute;
  height: 0.4rem;
  background: linear-gradient(90deg, #417eff 0%, #c0aff4 68.85%, #ffb7ce 147.7%, #fe6f05 230.99%);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0.8rem;
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  bottom: 1px;
  left: 1px;
  transition: width 0.3s ease-in-out;
}

.ai-email-quiz__container-inner-answers-result-answer-number {
  color: var(--colors-grey-600);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  text-align: end;
}

.ai-email-quiz__result {
  display: none;
  position: relative;
  max-width: 120rem;
  text-align: start;
}

.ai-email-quiz__result .ai-email-quiz__container-inner-content {
  padding: 3.2rem;
  position: relative;
  background: transparent;
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-height: 44rem;
}

.ai-email-quiz__result .ai-email-quiz__container-inner-content::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/result-bg-BmgMEwhf.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.orange-text {
  color: var(--colors-primary-600);
}

.ai-email-quiz__result-score {
  color: var(--colors-grey-400);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 100%;
}

.ai-email-quiz__result-score strong {
  font-size: 9.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.ai-email-quiz-result-title {
  position: relative;
  max-width: 80rem;
}

.ai-email-quiz__result-score-description {
  font-family: var(--fonts-family-heading);
  color: var(--colors-grey-800);
  font-size: 4rem;
  font-weight: 600;
  line-height: 5.6rem;
}

.ai-email-quiz__result-score-hint {
  color: var(--colors-grey-500);
  vertical-align: baseline;
}

.ai-email-quiz__result-share-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-email-quiz__result-see-how-others-did {
  margin-top: 2.8rem;
  margin-bottom: 6.4rem;
  text-align: center;
}

.ai-email-quiz__result-see-how-others-did a,
.ai-email-quiz__result-see-how-others-did a:focus,
.ai-email-quiz__result-see-how-others-did a:active {
  color: var(--colors-primary-600);
  text-decoration-color: var(--colors-primary-600);
}

@media (max-width: 992px) {
  .ai-email-quiz__bg {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: url("/assets/tak-a-task-mobile-BADG5K02.png") no-repeat center var(--colors-grey-50);
    background-size: cover;
  }
  .ai-email-quiz__bg svg {
    opacity: 0;
  }
  .ai-email-quiz__container-inner {
    padding: 0px;
    box-shadow: none;
  }
  .ai-email-quiz__container-inner-content {
    padding: 1.6rem;
  }
  .ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin: 3.2rem;
  }
  .ai-email-quiz__container .ai-email-quiz__container-inner-answers-buttons-button {
    margin: 0;
    width: 100%;
  }
  .ai-email-quiz__container-inner-answers-result-answer-number {
    padding-bottom: 12px;
  }
  .ai-email-quiz__result .ai-email-quiz__container-inner-content {
    overflow-y: unset !important;
    min-height: 39.3rem;
  }
  .ai-email-quiz__container-inner-wrapper {
    padding-bottom: 3.2rem;
  }
  .ai-email-quiz__container-inner-content-question {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .ai-email-quiz__result-score span {
    font-size: 6.6rem;
  }
  .ai-email-quiz__result-score {
    font-size: 2.2rem;
  }
  .ai-email-quiz__result-score-description {
    font-size: 2.8rem;
  }
  .ai-email-quiz__container-inner-content-result {
    font-size: 1.6rem;
  }
  .ai-email-quiz__container-inner-content-result {
    padding-top: 0.8rem;
  }
}
@media (max-width: 576px) {
  .ai-email-quiz__result .ai-email-quiz__container-inner-content::before {
    background: url("/assets/result-bg-mobile-DMT7ZB6O.png") no-repeat center center;
    background-size: cover;
  }
}
.logo-api-hero {
  position: relative;
  padding-bottom: 22rem;
}
.logo-api-hero .container-fluid {
  position: relative;
  z-index: 1;
}
.logo-api-hero .generic-hero__description {
  max-width: 68rem;
}

.logo-api-hero-logos-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: var(--spacing-04);
  width: 40%;
  max-width: 46.4rem;
}

.logo-api-hero-logos-grid--start {
  bottom: calc(var(--spacing-02) * -1);
  left: 0;
  transform: translateX(calc(-20% + (var(--spacing-04))));
}

.logo-api-hero-logos-grid--end {
  bottom: calc(var(--spacing-02) * -1);
  right: 0;
  transform: translateX(calc(20% - (var(--spacing-04))));
}

.logo-api-hero-logos-grid__cell {
  background-color: var(--colors-grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 8rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.logo-api-hero-logos-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.logo-api-hero-logos-grid__cell:nth-child(5n+1), .logo-api-hero-logos-grid__cell:nth-child(5n+3), .logo-api-hero-logos-grid__cell:nth-child(5n+5) {
  transform: translateY(50%);
}

.logo-api-demo {
  max-width: 68rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: var(--spacing-10) var(--spacing-06);
  background: #fff;
  border: 0.1rem solid var(--colors-grey-300);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.05), 0px 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: -16rem;
  position: relative;
}

.logo-api-demo__title {
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.logo-api-demo__description {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  font-weight: 400 !important;
  color: var(--colors-grey-700);
  margin-top: var(--spacing-02);
  margin-bottom: var(--spacing-08);
}

.logo-api-demo__form {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

.logo-api-demo-result {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  margin: var(--spacing-04) 0;
  background-color: var(--colors-grey-100);
  padding: var(--spacing-02);
  border-radius: var(--radius-sm);
}

.logo-api-demo-result__details {
  flex: 1;
  min-width: 0;
}

.logo-api-demo-result__logo {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: var(--radius-xs);
  object-fit: contain;
}

.logo-api-demo-result__logo-url {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.logo-api-demo-result__loader {
  position: absolute;
  inset: 0;
  background-color: rgba(var(--colors-grey-100--rgb), 0.8);
  backdrop-filter: blur(1rem);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}
.logo-api-demo-result__loader.is-visible {
  z-index: 10;
  opacity: 1;
}

@media (max-width: calc(48em - 1px)) {
  .logo-api-hero-logos-grid {
    display: none;
  }
}
.browser_extension .data-product-tabs {
  margin-top: 0;
  margin-bottom: var(--spacing-10);
  max-width: 38rem;
}
.browser_extension .data-product-tabs:lang(fr) {
  max-width: 38rem;
}
.browser_extension .data-product-tabs:before, .browser_extension .data-product-tabs::after {
  display: none;
}

.browser_extension .generic-hero,
.extension_welcome .generic-hero {
  padding-bottom: 20rem;
}
.browser_extension .wide-slider,
.extension_welcome .wide-slider {
  max-width: 92rem;
  margin-top: -12rem;
  margin-bottom: 16rem;
}
.browser_extension .wide-slider img,
.browser_extension .wide-slider iframe,
.extension_welcome .wide-slider img,
.extension_welcome .wide-slider iframe {
  border: 0;
  border-radius: 0.8rem;
}

.extension_welcome .wide-slider__description {
  margin-left: 0;
  margin-right: 0;
}

.uninstall_extension .generic-hero {
  padding-bottom: 28rem;
}

.extension-uninstall-survey {
  position: relative;
  max-width: 80rem;
  min-height: 28rem;
  margin: -18rem auto var(--spacing-40);
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 12px 56px -16px rgba(29, 38, 46, 0.08), 0px 12px 64px -12px rgba(29, 38, 46, 0.12);
  border-radius: 0.8rem;
  z-index: 1;
}

@media screen and (min-width: 62em) {
  .browser_extension .generic-hero {
    padding-top: calc(var(--spacing-40));
  }
}
.whr-items {
  list-style-type: none;
  padding-left: 0;
  margin: var(--spacing-04) 0 0 0;
}

.whr-item {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  padding: var(--spacing-04) 0;
  border-top: 0.1rem solid var(--colors-grey-300);
  border-bottom: 0.1rem solid var(--colors-grey-300);
}

.whr-title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-800);
}
.whr-title a {
  color: currentColor;
}
.whr-title a::after {
  content: "→";
  display: inline-block;
  font-size: 0.75em;
  font-weight: normal;
  opacity: 0;
  transform: translateX(-0.25em);
  transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.39, 1.87), opacity 0.2s ease-in;
}
.whr-title a:hover, .whr-title a:focus {
  text-decoration-color: transparent;
}
.whr-title a:hover::after, .whr-title a:focus::after {
  opacity: 1;
  transform: translateX(0.25em);
}

.whr-info {
  list-style-type: none;
  margin-left: auto;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--colors-grey-600);
}

.whr-location,
.whr-date,
.whr-dept span {
  display: none;
}

.whr-loading {
  font-size: 2rem;
  margin: var(--spacing-04) 0;
  color: var(--colors-grey-600);
}

.whr-empty-text {
  padding: var(--spacing-04) 0;
  border-top: 0.1rem solid var(--colors-grey-300);
  border-bottom: 0.1rem solid var(--colors-grey-300);
  color: var(--colors-grey-700);
  font-size: 2rem;
}

.perks-list {
  list-style-type: none;
  padding-left: 0;
  margin: var(--spacing-14) 0 0 0;
}

.perks-list__item {
  display: flex;
  gap: var(--spacing-04);
  align-items: center;
  margin-bottom: var(--spacing-08);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--colors-grey-800);
}

.perks-list__icon {
  width: 2.8rem;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  background: linear-gradient(90deg, var(--colors-secondary-500) 0%, var(--colors-secondary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hiring-process {
  position: relative;
  list-style-type: none;
  margin: var(--spacing-14) 0 0 0;
  padding-left: 5.4rem;
  counter-reset: hiringProcess;
}
.hiring-process + .h-mainlink {
  margin-left: 5.4rem;
}
.hiring-process::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--spacing-05);
  width: 0.2rem;
  background-color: var(--colors-grey-200);
}

.hiring-process__item {
  position: relative;
  counter-increment: hiringProcess;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--colors-grey-900);
}
.hiring-process__item::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: -3.8rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.2rem solid var(--colors-grey-300);
}
.hiring-process__item:not(:first-child) {
  margin-top: var(--spacing-14);
}

.hiring-process__title {
  display: block;
  font-family: var(--fonts-family-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 1.8536rem + 0.3902vw, 2.8rem);
  line-height: 1.4285714286;
  color: var(--colors-grey-800);
  margin-bottom: var(--spacing-02);
}
.hiring-process__title::before {
  content: counter(hiringProcess) ". ";
  font-size: 0.85em;
  font-weight: 500;
  color: var(--colors-grey-600);
}

.careers-fancy-grid img {
  object-fit: cover;
  height: 100%;
  border-radius: 0.8rem;
}
.careers-fancy-grid figure {
  position: relative;
}
.careers-fancy-grid figcaption {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.25;
  padding: var(--spacing-02) var(--spacing-03);
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0.4rem;
}

.careers-fancy-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-04);
  padding: var(--spacing-04) var(--spacing-02);
  background-color: var(--colors-grey-1000);
  color: var(--colors-grey-100);
  border-radius: 0.4rem;
  font-size: 2rem;
  line-height: 1.2;
}
.careers-fancy-metric strong {
  font-family: var(--fonts-family-heading);
  font-size: clamp(4.8rem, 4.36096rem + 1.1707vw, 6rem);
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: calc(62em - 1px)) {
  .careers-fancy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-05);
  }
  .careers-fancy-metric {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 62em) {
  .careers-fancy-grid {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(24, 1fr);
    grid-column-gap: var(--spacing-10);
    grid-row-gap: var(--spacing-10);
    max-height: 96rem;
  }
  .careers-fancy-grid__1 {
    position: relative;
    grid-area: 3/1/20/11;
  }
  .careers-fancy-grid__1::before {
    content: url("/assets/hunter-stamp-B4yvhCKn.svg");
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(15%, -33%);
  }
  .careers-fancy-grid__2 {
    grid-area: 20/1/25/6;
  }
  .careers-fancy-grid__3 {
    grid-area: 20/6/25/11;
  }
  .careers-fancy-grid__4 {
    grid-area: 1/11/15/21;
  }
  .careers-fancy-grid__5 {
    grid-area: 10/21/15/25;
  }
  .careers-fancy-grid__6 {
    grid-area: 5/21/10/25;
  }
  .careers-fancy-grid__7 {
    grid-area: 15/11/25/25;
  }
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 40rem;
  margin: 0 auto;
  border: 2px solid var(--colors-grey-300);
  border-radius: 4px;
  background-color: #fff;
  padding: 0.2rem;
}
.newsletter-form:focus-within {
  border-color: var(--colors-secondary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-300);
}

.newsletter-form__input {
  height: auto;
  font-size: 1.4rem;
  border: 0;
  flex: 1;
  padding: 0.8rem 1.4rem;
}
.newsletter-form__input:hover, .newsletter-form__input:focus {
  border: 0;
  outline: 0;
}

.newsletter-form__submit {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 35em) {
  .newsletter-form__submit {
    width: auto;
  }
}
@media screen and (min-width: 48em) {
  .perks-list {
    column-count: 2;
  }
}
.pricing .section--pricing,
.landing_upgrade .section--pricing {
  position: relative;
  margin-top: calc((var(--spacing-25) + var(--spacing-005)) * -1);
  z-index: 5;
}

.pricing .generic-hero__subtitle {
  max-width: none;
}

.mega-tabs {
  display: flex;
  flex-wrap: wrap;
}

.mega-tabs__item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-04) var(--spacing-03);
  border-bottom: 0.2rem solid var(--colors-grey-200);
  color: var(--colors-grey-700);
  border-radius: 0.4rem 0.4rem 0 0;
  transition: border-color 200ms ease-in, background-color 200ms ease-in;
}
.mega-tabs__item:hover, .mega-tabs__item:focus-within {
  border-bottom-color: var(--colors-grey-300);
}
.mega-tabs__item:has([aria-selected=true]) {
  border-bottom-color: var(--colors-secondary-600);
  background-color: var(--colors-grey-100);
  color: var(--colors-grey-900);
}

.mega-tabs__title {
  color: var(--colors-grey-600);
  font-family: var(--fonts-family-body);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: var(--spacing-01);
}

.mega-tabs__link {
  color: currentColor;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  text-decoration: none;
}
.mega-tabs__link:hover, .mega-tabs__link:focus {
  text-decoration: none;
}
.mega-tabs__link::before {
  content: "";
  position: absolute;
  inset: 0;
}

[id=pricing-outreach-platform],
[id=pricing-data-platform] {
  scroll-margin-block-start: 20rem;
}

@media screen and (max-width: calc(62em - 1px)) {
  .pricing .section--pricing,
  .landing_upgrade .section--pricing {
    margin-left: calc(var(--spacing-05) * -1);
    margin-right: calc(var(--spacing-05) * -1);
  }
}
@media screen and (min-width: 48em) {
  .mega-tabs__item {
    width: auto;
    flex: 1;
    padding: var(--spacing-06);
  }
  .mega-tabs__title {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .mega-tabs__link {
    font-size: 2rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 62em) {
  .pricing .generic-hero,
  .landing_upgrade .generic-hero {
    padding-bottom: calc(var(--spacing-base) * 60);
  }
}
.landing_upgrade .generic-hero__subtitle {
  max-width: 62rem;
}
.landing_upgrade .generic-hero__subtitle:lang(fr) {
  max-width: 70rem;
}
.landing_upgrade .generic-hero__description {
  max-width: 52rem;
}
.landing_upgrade .generic-hero__description:lang(fr) {
  max-width: 60rem;
}

.support-avatars {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--spacing-08);
}

.support-avatars__item {
  position: relative;
}
.support-avatars__item:hover {
  z-index: 2;
}
.support-avatars__item:hover > .support-avatars__avatar {
  transform: translateY(calc(var(--spacing-02) * -1));
}
.support-avatars__item:hover > .support-avatars__tag {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.support-avatars__item:not(:first-child) {
  margin-left: calc(var(--spacing-06) * -1);
}

.support-avatars__avatar {
  width: 8rem;
  height: 8rem;
  display: inline-block;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  transition: transform 150ms ease-in;
}

.support-avatars__tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: var(--spacing-01) var(--spacing-02);
  border-radius: 0.2rem;
  color: #fff;
  background-color: var(--colors-secondary-700);
  font-size: 1.2rem;
  line-height: 1.3333333333;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate(-50%, -60%);
  transition: opacity 150ms ease-in, transform 150ms ease-in;
}

@media screen and (min-width: 75em) {
  .support-avatars__avatar {
    width: 10rem;
    height: 10rem;
  }
}
.data-product-hero {
  position: relative;
  background: url("/assets/bg-data-hero-CzTkV_TZ.svg") top center repeat var(--colors-grey-50);
  text-align: center;
  padding: calc(var(--spacing-base) * 40) 0 calc(var(--spacing-base) * 36);
}
.data-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, var(--colors-grey-50) 0%, rgba(255, 255, 255, 0) 100%);
}
.data-product-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, var(--colors-grey-300) 50%, rgba(223, 227, 232, 0) 100%);
}
.data-product-hero .container-fluid, .data-product-hero .container-sm, .data-product-hero .container-md, .data-product-hero .container-lg, .data-product-hero .container-xl, .data-product-hero .container-xxl {
  position: relative;
}

.data-product-hero__title {
  font-family: var(--fonts-family-body);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.8536rem + 0.3vw, 2.4rem);
  line-height: 1.6666666667;
  letter-spacing: -0.019em;
  color: var(--colors-grey-800);
  margin: 0 auto;
}

.data-product-hero__subtitle {
  font-family: var(--fonts-family-heading);
  font-size: clamp(3.6rem, 3.01456rem + 1.561vw, 5.2rem);
  line-height: 4rem;
  font-weight: 600;
  max-width: 80rem;
  margin: 0 auto;
}
.data-product-hero__subtitle:lang(fr) {
  max-width: 88rem;
}
.data-product-hero__subtitle strong {
  font-weight: 600;
  color: var(--colors-primary-600);
}

.data-product-preview__description {
  max-width: 56rem;
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  color: var(--colors-grey-800);
  line-height: 1.6;
}

.product-preview-visual {
  position: relative;
  aspect-ratio: 1.42;
  background-color: var(--colors-grey-50);
  border: 0.1rem solid var(--colors-grey-200);
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: var(--spacing-10);
}
.product-preview-visual img {
  height: auto;
}

.product-preview-visual__ds--people {
  position: absolute;
  right: -4rem;
  top: 2.4rem;
}

.product-preview-visual__ds--company {
  max-width: 60%;
  position: absolute;
  left: 2rem;
  bottom: -31%;
  transition: bottom 200ms ease-in-out;
}
.product-preview-visual__ds--company:hover {
  bottom: -4rem;
}

.product-preview-visual__ds--technologies {
  max-width: 60%;
  position: absolute;
  right: 2rem;
  bottom: -28%;
  transition: bottom 200ms ease-in-out;
}
.product-preview-visual__ds--technologies:hover {
  bottom: -4rem;
}

.product-preview-visual__email-finder,
.product-preview-visual__email-verifier {
  position: absolute;
  left: max(2vw, 2.4rem);
  top: 2.4rem;
}

.section--related-products {
  margin-bottom: var(--spacing-20);
}
.section--related-products .section__header {
  max-width: max-content;
  margin-bottom: var(--spacing-10);
}

.data-product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-005);
}

.data-product-tabs__link {
  flex: 1;
  padding: var(--spacing-02) var(--spacing-03);
  font-weight: 500;
}

.visitors.email_finder .data-product-hero__subtitle {
  max-width: 72rem;
}
.visitors.email_finder .data-product-hero__subtitle:lang(fr) {
  max-width: 96rem;
}

@media screen and (min-width: 48em) {
  .data-product-hero__subtitle {
    line-height: 6rem;
  }
  .product-preview-visual {
    margin-bottom: 0;
  }
}
.visitors.email_verifier .api-type {
  max-width: 62rem;
}
.visitors.email_verifier .api-type__desc {
  margin-top: var(--spacing-04);
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 1.52688rem + 0.3902vw, 1.8rem);
  color: var(--colors-grey-700);
}

.checklist__item + .checklist__item {
  margin-top: var(--spacing-04);
}
.checklist__item strong {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  font-weight: 500;
}

@media screen and (max-width: calc(62em - 1px)) {
  .data-product-tabs {
    position: fixed;
    bottom: 2.4rem;
    left: 1rem;
    right: 1rem;
    max-width: 46rem;
    margin: auto;
    background-color: #fff;
    border: 1px solid var(--colors-grey-200);
    border-radius: 2rem;
    z-index: 100;
    box-shadow: 0px 2px 4px rgba(29, 38, 46, 0.04), 0px 3px 8px rgba(29, 38, 46, 0.07);
  }
  .data-product-tabs__link {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    border-radius: 2rem;
    border: 1px solid transparent;
    color: var(--colors-grey-700);
  }
  .data-product-tabs__link:hover, .data-product-tabs__link:focus {
    text-decoration-color: transparent;
  }
  .data-product-tabs__link.is-active {
    background-color: var(--colors-grey-1000);
    border: 1px solid var(--colors-grey-800);
    box-shadow: 0px 1px 2px -1px rgba(29, 38, 46, 0.08), 0px 1px 4px -1px rgba(29, 38, 46, 0.12);
    color: var(--colors-grey-100);
  }
  .data-product-tabs__link .data-product-tabs__cta {
    display: none;
  }
}
@media screen and (min-width: 62em) {
  .data-product-hero {
    padding: calc(var(--spacing-base) * 50) 0 calc(var(--spacing-base) * 30);
  }
  .data-product-tabs {
    position: relative;
    width: 100%;
    max-width: 56rem;
    min-height: 4rem;
    margin: var(--spacing-20) auto 0;
    border: 0.05rem solid var(--colors-grey-300);
    background-color: var(--colors-grey-100);
    z-index: 1;
  }
  .data-product-tabs:lang(fr) {
    max-width: 96rem;
  }
  .data-product-tabs::before {
    content: "";
    position: absolute;
    top: -0.05rem;
    bottom: -0.05rem;
    left: -4rem;
    right: -4rem;
    height: 4rem;
    background-image: linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, rgb(223, 227, 232) 4rem, rgb(223, 227, 232) 50%, rgb(223, 227, 232) calc(100% - 4rem), rgba(223, 227, 232, 0) 100%), linear-gradient(90deg, rgba(223, 227, 232, 0) 0%, rgb(223, 227, 232) 4rem, rgb(223, 227, 232) 50%, rgb(223, 227, 232) calc(100% - 4rem), rgba(223, 227, 232, 0) 100%);
    background-position: 0 0, 0 100%;
    background-size: 100% 0.05rem, 100% 0.05rem;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .data-product-tabs::after {
    content: "";
    position: absolute;
    left: -0.05rem;
    right: -0.05rem;
    top: -4rem;
    bottom: -4rem;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(223, 227, 232, 0) 0%, rgb(223, 227, 232) 4rem, rgb(223, 227, 232) 50%, rgb(223, 227, 232) calc(100% - 4rem), rgba(223, 227, 232, 0) 100%), linear-gradient(to bottom, rgba(223, 227, 232, 0) 0%, rgb(223, 227, 232) 4rem, rgb(223, 227, 232) 50%, rgb(223, 227, 232) calc(100% - 4rem), rgba(223, 227, 232, 0) 100%);
    background-position: 0 0, 0 100%;
    background-size: 0.05rem 100%, 0.05rem 100%;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .data-product-tabs__link {
    font-size: 1.4rem;
    line-height: 1.1428571429;
    border-radius: 2px;
    border: 1px solid transparent;
    color: var(--colors-grey-600);
  }
  .data-product-tabs__link:hover, .data-product-tabs__link:focus {
    color: var(--colors-grey-900);
    text-decoration-color: transparent;
  }
  .data-product-tabs__link.is-active {
    color: var(--colors-grey-1000);
    background-color: #fff;
    border-color: var(--colors-grey-200);
    box-shadow: 0px 1px 2px -1px rgba(29, 38, 46, 0.08), 0px 1px 4px -1px rgba(29, 38, 46, 0.12);
  }
  .data-product-tabs__name {
    display: none;
  }
}
.api-hero {
  background-color: var(--colors-grey-50);
  background-image: url("/assets/api-hero-bg-CzLAkBf6.svg");
  background-position: bottom center;
  background-repeat: repeat-x;
}
.api-hero .generic-hero__subtitle {
  max-width: 72rem;
}

.people_enrichment_api .generic-hero__subtitle {
  max-width: 90rem;
}

.company_enrichment_api .generic-hero__subtitle {
  max-width: 80rem;
}

.combined_enrichment_api .generic-hero__subtitle {
  max-width: 100rem;
}

.api-type {
  padding: var(--spacing-06) 0;
}
.api-type + .api-type {
  border-top: 0.1rem solid var(--colors-grey-300);
}
.api-type[aria-expanded=true] .api-type__expand {
  display: none;
}
.api-type[aria-expanded=false] .api-type__content {
  display: none;
}
.api-type[aria-expanded=false] .api-type__header {
  opacity: 0.7;
  transition: opacity 150ms ease-in;
}
.api-type[aria-expanded=false] .api-type__header:hover, .api-type[aria-expanded=false] .api-type__header:focus-within {
  opacity: 1;
}

.api-type__header {
  position: relative;
  display: flex;
  align-items: center;
}

.api-type__title {
  flex: 1;
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-900);
}

.api-type__title--lg {
  font-size: clamp(3.6rem, 3.4536rem + 1.1707vw, 4rem);
  line-height: 1.2;
}

.api-type__expand {
  font-size: 2rem;
  color: var(--colors-grey-600);
  cursor: pointer;
}
.api-type__expand::before {
  content: "";
  position: absolute;
  inset: 0;
}
.api-type__expand[aria-expanded=true] {
  display: none;
}

.api-type__desc {
  margin: var(--spacing-02) 0 var(--spacing-04);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--colors-grey-700);
}

.api-type--last {
  border-bottom: 0.1rem solid var(--colors-grey-300);
}

.section-integrations-promotion {
  position: relative;
  max-width: 104rem;
  margin: var(--spacing-30) auto;
  padding: var(--spacing-20) var(--spacing-10);
  background-color: var(--colors-grey-50);
  background-image: linear-gradient(270deg, rgba(252, 252, 253, 0) 0%, rgba(252, 252, 253, 0.75) 100%), url("data:image/svg+xml,%3csvg%20fill='none'%20height='20'%20viewBox='0%200%2020%2020'%20width='20'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20fill='%23eef0f3'%3e%3cpath%20d='m4%204h2v2h-2z'/%3e%3cpath%20d='m4%2014h2v2h-2z'/%3e%3cpath%20d='m14%204h2v2h-2z'/%3e%3cpath%20d='m14%2014h2v2h-2z'/%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-repeat: repeat;
  border-radius: 0.8rem;
  border: 0.1rem solid var(--colors-grey-200);
}

.section-integrations-promotion__title {
  font-size: clamp(3.6rem, 3.16096rem + 1.1707vw, 4.8rem);
  line-height: 1.1666666667;
  margin: 0;
}

.section-integrations-promotion__description {
  max-width: 42rem;
  margin: var(--spacing-04) 0 var(--spacing-08);
  font-size: clamp(1.6rem, 1.4536rem + 0.3902vw, 2rem);
  line-height: 1.5;
}

.domain_search_api .generic-hero__subtitle {
  max-width: 100rem;
}

.email_finder_api:lang(fr) .generic-hero__subtitle,
.email_verifier_api:lang(fr) .generic-hero__subtitle {
  max-width: 104rem;
}

.campaigns_api .generic-hero__subtitle {
  max-width: 100rem;
}

@media screen and (min-width: 48em) {
  .section-integrations-promotion {
    padding: var(--spacing-04) var(--spacing-10);
  }
}
@media screen and (min-width: 62em) {
  .api-hero {
    padding: calc(var(--spacing-base) * 50) 0 calc(var(--spacing-base) * 30);
  }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  touch-action: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Wrapper for all connect elements. */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements. */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement */
.noUi-horizontal {
  height: 0.8rem;
}

.noUi-horizontal .noUi-handle {
  width: 2rem;
  height: 2rem;
  right: -1rem;
  top: -0.6rem;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  display: flex;
}
.noUi-target .noUi-base {
  background: var(--colors-grey-300);
  border-radius: 1.6rem;
}

.noUi-connects {
  border-radius: 1.6rem;
}

.noUi-connect {
  background: var(--colors-secondary-600);
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border-radius: 50%;
  background: var(--colors-secondary-600);
  border: 0.2rem solid #fff;
  cursor: pointer;
  outline: 0 solid #fff;
  transition: outline 200ms ease-in;
  z-index: 3;
}

.noUi-active {
  outline: 0.3rem solid #fff;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: var(--colors-grey-600);
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #fff;
  width: 0.2rem;
  height: 0.8rem;
  z-index: 2;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: var(--spacing-02) 0 0;
  top: calc(var(--spacing-02) * -1);
  left: 0;
  width: 100%;
}
.noUi-pips-horizontal .noUi-marker:first-child, .noUi-pips-horizontal .noUi-marker:nth-last-child(2) {
  display: none;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

@media screen and (min-width: 48em) {
  .noUi-target {
    gap: var(--spacing-01);
  }
  .noUi-target::after {
    content: "";
    width: 2rem;
    background: var(--colors-grey-300);
    border-radius: 1.6rem;
    box-shadow: 24px 0px 0px var(--colors-grey-200), 48px 0px 0px var(--colors-grey-100);
  }
  .noUi-base {
    width: calc(100% - 7rem);
  }
  .noUi-pips-horizontal {
    width: calc(100% - 7rem);
  }
}
/**
* Highlighted Icon
*
* Display on icon in a rounded-square with a light background
* Mainly used for features icons in menu and landing pages
*
* @type: component
*/
.highlighted-icon {
  background-color: var(--colors-secondary-200);
  color: var(--colors-secondary-600);
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  padding: var(--spacing-01);
  transition: background-color 0.25s ease-in-out, color 0.15s ease-in-out;
  border: 0.2rem solid transparent;
}

.highlighted-icon__icon {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  fill: currentColor;
  margin-right: 0;
}

/* Modifier
============================= */
/* Style */

/* Size */

.highlighted-icon--sm {
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
}
.highlighted-icon--sm .highlighted-icon__icon {
  width: 2.8rem;
  height: 2.8rem;
}
/**
* Icon
* A component to display an icon
*
* @selector .h-icon
* @haml app/components/icon_component.html.haml
* @controller app/components/icon_component_controller.rb
*/
:root {
  --h-icon-size: 2rem;
  --h-icon-font-size: 1.6rem;
  --h-icon-size-correction: 0rem;
}

.h-icon, .score.tag__icon, .tag__icon {
  --fa-display: inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--h-icon-size);
  aspect-ratio: 1/1;
  color: currentColor;
  font-size: calc(var(--h-icon-font-size) - var(--h-icon-size-correction));
  line-height: var(--h-icon-size);
}

.h-icon--sm, .score.tag__icon, .tag__icon {
  --h-icon-size: 1.6rem;
  --h-icon-font-size: 1.3rem;
}

@property --gradient-border-opacity {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

 .h-button--ai {
  border: 0.1rem solid transparent;
  border-radius: var(--h-button-border-radius, 4px);
  background: linear-gradient(var(--colors-white), var(--colors-white)) padding-box, linear-gradient(to right, #ECD1FF 0%, var(--colors-grey-300) 40%) border-box;
  background-clip: padding-box, border-box;
}

 .h-button--ai:not(.h-button--icon) [class*=fa-] {
  background: linear-gradient(306deg, rgba(176, 107, 245, 0.3) 21.9%, #B06BF5 44.54%, #940FF4 58.13%, #D56BF5 74.33%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ff-code {
  font-family: var(--fonts-family-code) !important;
}

.fw-normal {
  font-weight: normal !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-white {
  color: #fff !important;
}

.text-hint {
  color: var(--colors-grey-600) !important;
}

.text-ghost {
  color: var(--colors-grey-400) !important;
}

.text-body-secondary {
  color: var(--colors-grey-700) !important;
}

.text-dark {
  color: var(--colors-grey-900) !important;
}

.text-primary {
  color: var(--colors-primary-700) !important;
}

.text-secondary {
  color: var(--colors-secondary-700) !important;
}

.text-success {
  color: var(--colors-success-700) !important;
}

.text-warning {
  color: var(--colors-warning-700) !important;
}

.text-danger {
  color: var(--colors-danger-700) !important;
}

.text-magenta {
  color: var(--colors-magenta-700) !important;
}

.text-cyan {
  color: var(--colors-cyan-700) !important;
}

.text-emerald {
  color: var(--colors-emerald-700) !important;
}

.text-linkedin {
  color: var(--colors-brand-linkedin-blue) !important;
}

@keyframes textShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.text-blurred {
  filter: blur(4px);
}

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

.word-break-all {
  word-break: break-all !important;
}

small {
  font-size: 85% !important;
}

.text-2xs {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  font-weight: 400 !important;
}

.text-xs {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-xs-medium {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-sm, .empty-state .empty-state__description {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-sm-medium {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-md-medium {
  font-size: 1.6rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

.text-lg-medium {
  font-size: 1.8rem !important;
  line-height: 2.8rem !important;
  font-weight: 500 !important;
}

.text-xl-medium {
  font-size: 2rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

.btn-google {
  display: inline-block;
  border: 0;
  text-align: center;
  color: var(--colors-grey-900);
  background-color: #ffffff;
  padding: 18px 24px 18px 18px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  border-radius: 3px;
  transition: all 250ms ease;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--colors-grey-300);
  vertical-align: baseline;
  height: 54px;
}
.btn-google img {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  width: 16px;
  margin-top: -1px !important;
}
.btn-google .fa-linkedin {
  font-size: 1.125em;
  margin-right: 0.25em;
  color: var(--colors-brand-linkedin-blue);
}
.btn-google:hover, .btn-google:focus {
  color: var(--colors-grey-900);
  text-decoration: none;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.12);
}
.btn-google:active {
  background-color: var(--colors-grey-100);
}
.btn-google:focus {
  outline: 0 !important;
}
.btn-google:disabled, .btn-google.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.btn-empty, .question-circle {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.h-button {
  --h-button-padding: var(--spacing-03) var(--spacing-04);
  --h-button-gap: var(--spacing-02);
  --h-button-border-width: 1px;
  --h-button-border-color: var(--colors-grey-300);
  --h-button-border-radius: 4px;
  --h-button-box-shadow: 0px 1px 1px rgba(29, 38, 46, 0.05);
  --h-button-font-size: 1.3rem;
  --h-button-line-height: calc(16 / 13);
  --h-button-text-shadow: none;
  --h-button-color: var(--colors-grey-800);
  --h-button-background: #fff;
  --h-button-height: 4rem;
  --h-button-width: max-content;
  --h-button-icon-color: var(--colors-grey-600);
  --h-button-suffix-border-color: var(--colors-grey-300);
  --h-button-color-hover: var(--colors-grey-800);
  --h-button-background-hover: var(--colors-grey-100);
  --h-button-border-color-hover: var(--colors-grey-300);
  --h-button-box-shadow-hover:
    0px 1px 4px 2px rgba(29, 38, 46, 0.04), 0px 1px 1px rgba(29, 38, 46, 0.05);
  --h-button-box-shadow-focus:
    0px 0px 0px 2px var(--colors-secondary-600),
    0px 1px 1px rgba(29, 38, 46, 0.05);
  --h-button-color-active: var(--colors-grey-800);
  --h-button-background-active: var(--colors-grey-100);
  --h-button-box-shadow-active: none;
  --h-button-background-selected: var(--colors-grey-200);
  --h-button-color-disabled: var(--colors-grey-800);
  --h-button-background-disabled: #ffffff;
  --h-button-border-color-disabled: var(--colors-grey-300);
  --h-button-box-shadow-disabled: none;
  --h-button-suffix-border-color-disabled: var(--colors-grey-300);
  --h-button-hint-color: var(--colors-grey-600);
  --h-button-hint-font-size: 0.8em;
  --h-cost-indicator-color: var(--h-button-color);
  --h-cost-indicator-icon-color: var(--h-button-color);
  --h-cost-indicator-border-color: var(--h-button-border-color);
  --h-cost-indicator-gap: var(--h-button-gap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--h-button-gap);
  padding: var(--h-button-padding);
  height: var(--h-button-height);
  width: var(--h-button-width);
  flex-shrink: 0;
  border: var(--h-button-border-width) solid var(--h-button-border-color);
  border-radius: var(--h-button-border-radius);
  box-shadow: var(--h-button-box-shadow);
  font-size: var(--h-button-font-size);
  font-weight: 500;
  line-height: var(--h-button-line-height);
  text-decoration: none;
  text-shadow: var(--h-button-text-shadow);
  background: var(--h-button-background);
  color: var(--h-button-color);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 250ms ease, color 250ms ease-in, border-color 250ms ease-in, opacity 150ms ease-in, text-decoration-color 250ms ease-in;
}
.h-button img {
  width: 1.6rem;
  height: auto;
}
.h-button:not(.h-button--icon) [class*=fa-] {
  color: var(--h-button-icon-color);
}
.h-button:visited {
  color: var(--h-button-color);
  text-decoration: none;
}
.h-button:hover, .h-button:focus, .h-button:focus-visible {
  color: var(--h-button-color-hover);
  background-color: var(--h-button-background-hover);
  border-color: var(--h-button-border-color-hover);
  box-shadow: var(--h-button-box-shadow-hover);
  text-decoration: none;
}
.h-button:focus-visible {
  box-shadow: var(--h-button-box-shadow-focus);
}
.h-button:active, .h-button.active, .h-button[aria-expanded=true] {
  color: var(--h-button-color-active);
  background-color: var(--h-button-background-active);
  box-shadow: var(--h-button-box-shadow-active);
  text-decoration: none;
}
.h-button:disabled, .h-button.disabled {
  background-color: var(--h-button-background-disabled);
  color: var(--h-button-color-disabled);
  border: var(--h-button-border-width) solid var(--h-button-border-color-disabled);
  box-shadow: var(--h-button-box-shadow-disabled);
  --h-button-text-shadow: none;
  opacity: 0.5;
  user-select: none;
  cursor: not-allowed;
}
.h-button:disabled .h-button__suffix, .h-button.disabled .h-button__suffix {
  border-left-color: 1px solid var(--h-button-suffix-border-color-disabled);
}
.h-button[data-bs-toggle=dropdown][aria-expanded=true] .fa-angle-down {
  transform: rotate(180deg);
}

.h-button__hint {
  font-size: var(--h-button-hint-font-size);
  color: var(--h-button-hint-color);
}

.h-button__suffix {
  line-height: 1;
  max-width: 200px;
  transition: max-width 0.2s ease, margin-left 0.3s ease;
}
.h-button__suffix:has(.cost-indicator--animated:not(.is-visible)) {
  margin-left: calc(-1 * var(--h-button-gap));
  max-width: 0;
}

.h-button--primary {
  --h-button-border-color: transparent;
  --h-button-box-shadow: none;
  --h-button-text-shadow: 0px 1px 0px rgba(212, 69, 25, 0.5);
  --h-button-color: #fff;
  --h-button-background: var(--colors-primary-600);
  --h-button-icon-color: currentColor;
  --h-button-suffix-border-color: var(--colors-primary-500);
  --h-button-color-hover: #fff;
  --h-button-background-hover: var(--colors-primary-700);
  --h-button-border-color-hover: var(--colors-primary-700);
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-primary-700);
  --h-button-color-active: #fff;
  --h-button-background-active: var(--colors-primary-700);
  --h-button-box-shadow-active: none;
  --h-button-color-disabled: #ffffff;
  --h-button-background-disabled: var(--colors-grey-500);
  --h-button-border-color-disabled: transparent;
  --h-button-box-shadow-disabled: none;
  --h-button-hint-color: var(--colors-primary-200);
  border-bottom-color: var(--colors-primary-700);
  --h-cost-indicator-border-color: rgb(from var(--h-button-color) r g b / 0.3);
}

.h-button--secondary {
  --h-button-border-color: transparent;
  --h-button-box-shadow: none;
  --h-button-color: var(--colors-secondary-600);
  --h-button-background: var(--colors-secondary-100);
  --h-button-icon-color: currentColor;
  --h-button-color-hover: #fff;
  --h-button-background-hover: var(--colors-secondary-600);
  --h-button-border-color-hover: var(--colors-secondary-600);
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-secondary-600);
  --h-button-color-active: #fff;
  --h-button-background-active: var(--colors-secondary-600);
  --h-button-box-shadow-active: none;
  --h-button-hint-color: var(--colors-primary-200);
}

.h-button--danger {
  --h-button-border-color: transparent;
  --h-button-box-shadow: none;
  --h-button-color: #fff;
  --h-button-background: var(--colors-danger-700);
  --h-button-icon-color: currentColor;
  --h-button-color-hover: #fff;
  --h-button-background-hover: var(--colors-danger-800);
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-danger-700);
  --h-button-color-active: #fff;
  --h-button-background-active: var(--colors-danger-800);
  --h-button-box-shadow-active: none;
  --h-button-color-disabled: #ffffff;
  --h-button-background-disabled: var(--colors-grey-500);
  --h-button-border-color-disabled: var(--colors-grey-500);
  --h-button-box-shadow-disabled: none;
}

.h-button--ghost {
  --h-button-border-color: transparent;
  --h-button-box-shadow: none;
  --h-button-background: transparent;
  --h-button-background-hover: rgba(var(--colors-grey-800--rgb), 0.05);
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px var(--colors-grey-100),
    0px 0px 0px 3px var(--colors-grey-300);
  --h-button-background-active: rgba(var(--colors-grey-800--rgb), 0.10);
  --h-button-box-shadow-active: none;
  --h-button-color-disabled: var(--colors-grey-700);
  --h-button-background-disabled: transparent;
  --h-button-border-color-disabled: transparent;
  --h-button-box-shadow-disabled: none;
  --h-cost-indicator-border-color: rgb(from var(--h-button-color) r g b / 0.3);
}

.h-button--danger-light {
  --h-button-border-color: var(--colors-danger-600);
  --h-button-color: var(--colors-danger-700);
  --h-button-background: #fff;
  --h-button-icon-color: var(--colors-danger-600);
  --h-button-color-hover: var(--colors-danger-700);
  --h-button-background-hover: var(--colors-danger-100);
  --h-button-border-color-hover: currentColor;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-danger-700);
  --h-button-color-active: var(--colors-danger-700);
  --h-button-background-active: var(--colors-danger-100);
  --h-button-box-shadow-active: none;
}

.h-button--success-light {
  --h-button-border-color: var(--colors-success-600);
  --h-button-color: var(--colors-success-700);
  --h-button-background: #fff;
  --h-button-icon-color: var(--colors-success-600);
  --h-button-color-hover: var(--colors-success-700);
  --h-button-background-hover: var(--colors-success-100);
  --h-button-border-color-hover: currentColor;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-success-700);
  --h-button-color-active: var(--colors-success-700);
  --h-button-background-active: var(--colors-success-100);
  --h-button-box-shadow-active: none;
}

.h-button--invert {
  --h-button-border-color: var(--colors-grey-700);
  --h-button-color: var(--colors-grey-300);
  --h-button-background: var(--colors-grey-900);
  --h-button-icon-color: var(--colors-grey-500);
  --h-button-color-hover: var(--colors-grey-100);
  --h-button-background-hover: var(--colors-grey-800);
  --h-button-border-color-hover: var(--colors-grey-600);
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-grey-700);
  --h-button-color-active: var(--colors-grey-100);
  --h-button-background-active: var(--colors-grey-700);
  --h-button-box-shadow-active: none;
  --h-button-color-disabled: #ffffff;
  --h-button-background-disabled: var(--colors-grey-500);
  --h-button-border-color-disabled: var(--colors-grey-500);
  --h-button-box-shadow-disabled: none;
}

.h-button--sm {
  --h-button-padding: var(--spacing-02);
  --h-button-font-size: 1.3rem;
  --h-button-line-height: calc(16 / 13);
  --h-button-height: 3.2rem;
}

.h-button--xs {
  --h-button-padding: var(--spacing-01) var(--spacing-02);
  --h-button-gap: var(--spacing-01);
  --h-button-font-size: 1.2rem;
  --h-button-line-height: calc(16 / 12);
  --h-button-height: 2.4rem;
}

.h-button--xxs {
  --h-button-padding: var(--spacing-005);
  --h-button-gap: var(--spacing-01);
  --h-button-font-size: .8rem;
  --h-button-line-height: calc(12 / 8);
  --h-button-height: 1.6rem;
}

.h-button--md {
  --h-button-font-size: 1.4rem;
  --h-button-line-height: calc(24 / 14);
}

.h-button--lg {
  --h-button-padding: var(--spacing-04);
  --h-button-font-size: 1.6rem;
  --h-button-line-height: calc(24 / 16);
  --h-button-height: 5.6rem;
}

.h-button--block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.h-button--link-grey {
  --h-button-height: auto;
  --h-button-padding: 0;
  --h-button-border-color: transparent;
  --h-button-color: var(--colors-grey-700);
  --h-button-background: transparent;
  --h-button-box-shadow: none;
  --h-button-icon-color: var(--colors-grey-600);
  --h-button-color-hover: var(--colors-grey-900);
  --h-button-background-hover: transparent;
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-secondary-700);
  --h-button-color-active: var(--colors-grey-900);
  --h-button-background-active: transparent;
  --h-button-box-shadow-active: none;
  --h-button-border-color-disabled: transparent;
  font-weight: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-400);
  text-underline-offset: var(--spacing-01);
  transition: color 250ms ease-in, text-decoration-color 250ms ease-in;
}
.h-button--link-grey:hover, .h-button--link-grey:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-500);
}
.h-button--link-grey:focus-visible {
  box-shadow: var(--h-button-box-shadow-focus);
}

.h-button--link {
  --h-button-height: auto;
  --h-button-padding: 0;
  --h-button-border-color: transparent;
  --h-button-color: var(--colors-secondary-700);
  --h-button-background: transparent;
  --h-button-box-shadow: none;
  --h-button-icon-color: var(--colors-secondary-600);
  --h-button-color-hover: var(--colors-secondary-800);
  --h-button-background-hover: transparent;
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-box-shadow-focus:
    0px 0px 0px 1px #ffffff, 0px 0px 0px 3px var(--colors-secondary-700);
  --h-button-color-active: var(--colors-secondary-900);
  --h-button-background-active: transparent;
  --h-button-box-shadow-active: none;
  --h-button-border-color-disabled: transparent;
  font-weight: normal;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-secondary-300);
  text-underline-offset: var(--spacing-01);
  transition: color 250ms ease-in, text-decoration-color 250ms ease-in;
}
.h-button--link:hover, .h-button--link:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: var(--colors-secondary-400);
}
.h-button--link:focus-visible {
  box-shadow: var(--h-button-box-shadow-focus);
}
.h-button--link.disabled, .h-button--link:disabled {
  text-decoration-color: var(--colors-grey-400);
}

.h-button--icon {
  --h-button-padding: 0;
  --h-button-width: 4rem;
  justify-content: center;
}
.h-button--icon.h-button--sm {
  --h-button-width: 3.2rem;
}
.h-button--icon.h-button--xs {
  --h-button-width: 2.4rem;
}
.h-button--icon.h-button--xxs {
  --h-button-width: 1.6rem;
}
.h-button--icon.h-button--lg {
  --h-button-width: 5.6rem;
}

.h-button-group {
  display: flex;
  max-inline-size: max-content;
}
.h-button-group > .h-button {
  --h-button-border-radius: 0;
  margin-inline-end: -1px;
}
.h-button-group > .h-button:first-child {
  --h-button-border-radius: 4px;
  border-radius: var(--h-button-border-radius) 0 0 var(--h-button-border-radius);
}
.h-button-group > .h-button:last-child {
  --h-button-border-radius: 4px;
  border-radius: 0 var(--h-button-border-radius) var(--h-button-border-radius) 0;
}
.h-button-group > .h-button--primary,
.h-button-group > .h-button--danger {
  position: relative;
}
.h-button-group > .h-button--primary:not(:last-child)::after,
.h-button-group > .h-button--danger:not(:last-child)::after {
  content: "";
  position: absolute;
  inline-size: 1px;
  inset-block: 0;
  inset-inline-end: 0px;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.h-button-group .dropdown > .h-button {
  --h-button-border-radius: 0 .4rem .4rem 0;
}

/**
* Tag
* A tag labels UI objects for quick recognition and navigation.
*
* @selector .tag

%span.tag.tag--dissmissable.tag--info
  %i.tag__icon.far.fa-check
  Connected (can be link)
  %button.tag__dissmiss{ type: "button", "aria-label": "Dissmiss tag" }
    %i.tag__dissmiss-icon.far.fa-times

*/
.tag {
  --c-tag-background: var(--colors-grey-200);
  --c-tag-background-hover: var(--colors-grey-300);
  --c-tag-color: var(--colors-grey-700);
  --c-tag-icon-color: var(--colors-grey-600);
  --c-tag-padding: var(--spacing-01) var(--spacing-02);
  display: inline-flex;
  align-items: center;
  padding: var(--c-tag-padding);
  overflow: hidden;
  border: 0;
  border-radius: 0.4rem;
  background-color: var(--c-tag-background);
  color: var(--c-tag-color);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2307692308;
  transition: background-color 0.3s ease;
}
.tag:has(.tag__label) {
  --c-tag-padding: var(--spacing-005);
}
.tag:has(.tag__label) .tag__icon {
  margin-left: var(--spacing-005);
}
.tag:not(:has(.tag__label)):has(.tag__icon) {
  gap: var(--spacing-01);
}

.tag__icon {
  color: var(--c-tag-icon-color) !important;
  transition: color 0.3s ease;
}

.tag__label {
  white-space: nowrap;
  overflow: hidden;
  color: var(--c-tag-color);
  text-decoration: none;
  text-overflow: ellipsis;
  padding-inline: var(--spacing-01);
}
.tag__label:has(.tag__icon) {
  display: flex;
  align-items: center;
}

.tag__tooltip-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}

.tag__live-dot {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: var(--spacing-01);
  border: 0.05rem solid var(--colors-danger-700);
  border-radius: 1em;
  background-color: #fff;
  animation: liveStatus 1.8s ease-in-out infinite;
}

.tag__dissmiss {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-02) 0 var(--spacing-01);
  border: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: var(--c-tag-icon-color, var(--colors-grey-600));
  transition: color 100ms ease-in;
}
.tag__dissmiss:hover, .tag__dissmiss:focus {
  color: var(--colors-grey-900);
}

/* MODIFIER */
/* Is link */
.tag--linkable {
  padding: 0;
}
.tag--linkable .tag__label {
  padding: var(--spacing-01) var(--spacing-02);
}
.tag--linkable .tag__label:hover, .tag--linkable .tag__label:focus {
  text-decoration: none;
  background-color: var(--c-tag-background-hover);
  color: var(--c-tag-color);
}

/* Dissmissable */
.tag--dissmissable {
  padding-right: 0;
}

/* Rounded */
.tag--rounded {
  border-radius: 1em;
}

/* Size */
.tag--sm {
  --c-tag-padding: var(--spacing-005);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

/* Colors */
.tag--success {
  --c-tag-background: var(--colors-success-200);
  --c-tag-background-hover: var(--colors-success-300);
  --c-tag-color: var(--colors-success-700);
  --c-tag-icon-color: var(--colors-success-600);
}

.tag--warning {
  --c-tag-background: var(--colors-warning-200);
  --c-tag-background-hover: var(--colors-warning-300);
  --c-tag-color: var(--colors-warning-800);
  --c-tag-icon-color: var(--colors-warning-600);
}

.tag--danger {
  --c-tag-background: var(--colors-danger-200);
  --c-tag-background-hover: var(--colors-danger-300);
  --c-tag-color: var(--colors-danger-700);
  --c-tag-icon-color: var(--colors-danger-600);
}

.tag--info {
  --c-tag-background: var(--colors-secondary-200);
  --c-tag-background-hover: var(--colors-secondary-300);
  --c-tag-color: var(--colors-secondary-700);
  --c-tag-icon-color: var(--colors-secondary-600);
}

.tag--emerald {
  --c-tag-background: var(--colors-emerald-100);
  --c-tag-background-hover: var(--colors-emerald-200);
  --c-tag-color: var(--colors-emerald-700);
  --c-tag-icon-color: var(--colors-emerald-500);
}

.tag--cyan {
  --c-tag-background: var(--colors-cyan-100);
  --c-tag-background-hover: var(--colors-cyan-200);
  --c-tag-color: var(--colors-cyan-700);
  --c-tag-icon-color: var(--colors-cyan-500);
}

.tag--violette {
  --c-tag-background: var(--colors-violette-100);
  --c-tag-background-hover: var(--colors-violette-200);
  --c-tag-color: var(--colors-violette-700);
  --c-tag-icon-color: var(--colors-violette-500);
}

.tag--dark {
  --c-tag-background: var(--colors-grey-800);
  --c-tag-background-hover: var(--colors-grey-1000);
  --c-tag-color: var(--colors-grey-100);
  --c-tag-icon-color: var(--colors-grey-300);
}

.tags-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-01);
}
.tags-list:has(.tags-list__actions) {
  flex-wrap: nowrap;
}
.tags-list:has(.tags-list__actions) .tag__label {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tags-list__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
}

.tags-list__action {
  padding: var(--spacing-01);
  border: 0;
  background-color: transparent;
  border-radius: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-600);
  transition: color 150ms ease-in, background-color 150ms ease-in;
}
.tags-list__action:hover, .tags-list__action:focus {
  color: var(--colors-grey-800);
  background-color: var(--colors-grey-50);
}
.tags-list__action.active {
  color: var(--colors-grey-800);
  text-decoration: underline;
}

.tag__separator {
  color: var(--colors-grey-500);
}

.tag__secondary {
  color: var(--colors-secondary-600);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-01);
  padding: var(--spacing-01) var(--spacing-02);
  font-size: 1.3rem;
  font-weight: 450;
  line-height: 1.2307692308;
  border: 0.1rem solid var(--tag-pill-accent, var(--colors-grey-300));
  border-radius: 2rem;
}

.tag-pill__marker {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--tag-pill-accent, var(--colors-grey-300));
}

@keyframes liveStatus {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0);
  }
}
.external-integrations-table {
  width: 100%;
}

.external-integrations-table__name {
  font-weight: 600;
  font-size: 1.4rem;
  white-space: nowrap;
}
.external-integrations-table__name img {
  display: inline-block;
  vertical-align: middle;
  max-width: 2rem;
  height: auto;
  margin-right: var(--spacing-01);
}

.external-integrations-table__desc {
  font-size: 1.3rem;
  color: var(--colors-grey-600);
}

.external-integrations-table__link {
  font-size: 1.3rem;
  white-space: nowrap;
}

@media screen and (max-width: calc(48em - 1px)) {
  .external-integrations-table tr {
    display: flex;
    flex-direction: column;
    padding-top: var(--spacing-06);
    padding-bottom: var(--spacing-06);
    border-bottom: 1px solid var(--colors-grey-300);
  }
  .external-integrations-table__name {
    flex: 1;
    min-width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .external-integrations-table td {
    padding-top: var(--spacing-04);
    padding-bottom: var(--spacing-04);
  }
  .external-integrations-table tr + tr td {
    border-top: 1px solid var(--colors-grey-300);
  }
  .external-integrations-table__desc {
    padding-left: var(--spacing-08);
    padding-right: var(--spacing-08);
  }
  .external-integrations-table__link {
    text-align: right;
  }
}
/**
 * Swiper 6.6.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 11, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#support-notification {
  display: none;
  position: fixed;
  height: 50px;
  line-height: 20px;
  font-weight: 600;
  border-radius: 30px;
  padding: 15px 24px;
  bottom: 19px;
  right: 80px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 6px 0px, rgba(0, 0, 0, 0.16) 0px 2px 32px 0px;
  transform: translateY(200%);
  opacity: 0;
  animation-name: slideInFromBottom;
  animation-duration: 250ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transition: all 150ms ease-in-out;
  z-index: 100;
}
#support-notification:hover {
  background-color: var(--colors-grey-100);
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=phone],
input[type=number],
input[type=tel],
input[type=url],
select,
textarea {
  border: 1px solid var(--colors-grey-400);
  box-shadow: none;
  border-radius: 3px;
  background-color: rgb(252.45, 252.45, 252.45);
  transition: all 250ms ease;
  height: 36px;
  font-size: 13px;
  line-height: 25px;
  padding: 6px 8px;
}
input[type=text]:focus, input[type=text]:active, input[type=text].focus,
input[type=email]:focus,
input[type=email]:active,
input[type=email].focus,
input[type=password]:focus,
input[type=password]:active,
input[type=password].focus,
input[type=phone]:focus,
input[type=phone]:active,
input[type=phone].focus,
input[type=number]:focus,
input[type=number]:active,
input[type=number].focus,
input[type=tel]:focus,
input[type=tel]:active,
input[type=tel].focus,
input[type=url]:focus,
input[type=url]:active,
input[type=url].focus,
select:focus,
select:active,
select.focus,
textarea:focus,
textarea:active,
textarea.focus {
  background-color: #fff;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  border: 1px solid var(--colors-primary-600) !important;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=phone]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--colors-grey-200);
  color: var(--colors-grey-600);
  opacity: 1;
}
input[type=text].input-lg,
input[type=email].input-lg,
input[type=password].input-lg,
input[type=phone].input-lg,
input[type=number].input-lg,
input[type=tel].input-lg,
input[type=url].input-lg,
select.input-lg,
textarea.input-lg {
  height: 46px;
  padding: 10px 12px;
  font-size: 15px;
}

textarea {
  width: 100%;
  height: 100px;
}

select {
  background-color: #ffffff;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--colors-grey-600);
}

input[type=text]:focus::-webkit-input-placeholder,
input[type=email]:focus::-webkit-input-placeholder,
input[type=password]:focus::-webkit-input-placeholder,
input[type=number]:focus::-webkit-input-placeholder,
input[type=tel]:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: var(--colors-grey-600);
}

input[type=text]:disabled::-webkit-input-placeholder,
input[type=email]:disabled::-webkit-input-placeholder,
input[type=password]:disabled::-webkit-input-placeholder,
input[type=number]:disabled::-webkit-input-placeholder,
input[type=tel]:disabled::-webkit-input-placeholder,
select:disabled::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder {
  color: var(--colors-grey-600);
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

label {
  font-size: 13px;
  color: var(--colors-grey-1000);
  font-weight: 600;
  margin-bottom: 3px;
}

.main-input-group {
  width: calc(100% + 8px);
  margin: 0 -4px;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  transition: all 150ms ease;
  height: 52px;
  z-index: 1;
}
.main-input-group.focus, .main-input-group:focus-within {
  border-color: var(--colors-grey-400);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.main-input-group.focus button, .main-input-group:focus-within button {
  border-color: var(--colors-grey-400);
}
.main-input-group input[type=text],
.main-input-group input[type=email] {
  background: #ffffff;
  padding: 15px 14px;
  font-size: 15px;
  height: 52px;
  border: 0 !important;
}
.main-input-group button {
  text-align: center;
  padding: 12px 30px;
  color: var(--colors-grey-700);
  height: 52px;
  min-width: 82px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-left: 1px solid var(--colors-grey-300);
  border-radius: 0 3px 3px 0;
  transition: all 150ms ease;
}
.main-input-group button:hover, .main-input-group button:focus {
  color: var(--colors-grey-700);
  background-color: var(--colors-grey-100);
}
.main-input-group button:active {
  background-color: var(--colors-grey-200);
}
.main-input-group button:disabled {
  color: var(--colors-grey-400);
  background-color: var(--colors-grey-100);
  cursor: default !important;
}
.main-input-group button .far,
.main-input-group button .fal,
.main-input-group button .fas {
  margin: 0;
}
.main-input-group button .loader {
  display: inline-block;
  border: 2px solid var(--colors-grey-500);
  border-top: 2px solid var(--colors-grey-900);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.4s linear infinite;
  margin-top: 4px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.checkbox-container {
  position: relative;
  font-weight: 500;
}
.checkbox-container:hover {
  cursor: pointer;
}
.checkbox-container.disabled {
  user-select: none;
  cursor: none;
  opacity: 0.6;
}
.checkbox-container [type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -10;
}
.checkbox-container [type=checkbox]:focus-visible + .checkbox-icon {
  box-shadow: 0px 0px 0 1px #fff, 0px 0px 0 3px var(--colors-secondary-700);
}
.checkbox-container .checkbox-icon {
  display: inline-block;
  font-size: 14px;
  margin: 0 3px 0 0;
  border-radius: 2px;
  vertical-align: text-top;
}
.checkbox-container .checkbox-icon.fa-check-square {
  color: var(--colors-primary-600);
}
.checkbox-container .checkbox-icon.fa-square {
  color: var(--colors-grey-300);
}
.checkbox-container .checkbox-icon.checked {
  background-position-y: 0px;
}
.checkbox-container.checkbox-container-lg {
  font-size: 15px;
}
.checkbox-container.checkbox-container-lg .checkbox-icon {
  font-size: 17px;
  margin-right: 5px;
  margin-top: 2px;
}
.checkbox-container.disabled {
  opacity: 0.6;
  cursor: auto;
}

.radios-container {
  position: relative;
}
.radios-container label {
  font-weight: 500;
}
.radios-container label:hover {
  cursor: pointer;
}
.radios-container [type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -10;
}
.radios-container [type=radio]:focus-visible + .radio-icon {
  box-shadow: 0px 0px 0 1px #fff, 0px 0px 0 3px var(--colors-secondary-700);
}
.radios-container .radio-icon {
  display: inline-block;
  font-size: 15px;
  border-radius: 50%;
  margin: 0 3px 0 0;
  vertical-align: text-top;
  transition: color 150ms ease-in;
}
.radios-container .radio-icon.fa-check-circle {
  color: var(--colors-primary-600);
}
.radios-container .radio-icon.fa-circle {
  color: var(--colors-grey-300);
}

.block-radio-container,
.block-checkbox-container {
  position: relative;
  border: 1px solid var(--colors-grey-300);
  border-radius: 3px;
  transition: all 150ms ease;
  width: 100%;
  padding: 10px 15px 10px 42px;
  background: #ffffff;
  opacity: 1;
  font-weight: 500;
  line-height: 1.5;
}
.block-radio-container > strong,
.block-checkbox-container > strong {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 5px;
}
.block-radio-container .radio-icon,
.block-radio-container .checkbox-icon,
.block-checkbox-container .radio-icon,
.block-checkbox-container .checkbox-icon {
  color: var(--colors-primary-600);
  position: absolute;
  border-radius: 2px;
  left: 15px;
  top: calc(50% - 8px);
  font-size: 14px;
}
.block-radio-container .radio-icon,
.block-checkbox-container .radio-icon {
  border-radius: 50%;
}
.block-radio-container:hover,
.block-checkbox-container:hover {
  border-color: var(--colors-grey-400);
  cursor: pointer;
  opacity: 1;
}
.block-radio-container.active,
.block-checkbox-container.active {
  border-color: var(--colors-grey-500);
  opacity: 1;
}
.block-radio-container.disabled,
.block-checkbox-container.disabled {
  opacity: 0.6;
  border-color: var(--colors-grey-300);
  cursor: auto;
}
.block-radio-container [type=radio],
.block-checkbox-container [type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -10;
}
.block-radio-container [type=radio]:focus-visible + .radio-icon,
.block-checkbox-container [type=radio]:focus-visible + .radio-icon {
  box-shadow: 0px 0px 0 1px #fff, 0px 0px 0 3px var(--colors-secondary-700);
}
.block-radio-container .block-lg, .block-radio-container.block-lg,
.block-checkbox-container .block-lg,
.block-checkbox-container.block-lg {
  padding: 15px 20px 15px 58px;
  font-size: 14px;
}
.block-radio-container .block-lg .radio-icon,
.block-radio-container .block-lg .checkbox-icon, .block-radio-container.block-lg .radio-icon,
.block-radio-container.block-lg .checkbox-icon,
.block-checkbox-container .block-lg .radio-icon,
.block-checkbox-container .block-lg .checkbox-icon,
.block-checkbox-container.block-lg .radio-icon,
.block-checkbox-container.block-lg .checkbox-icon {
  left: 20px;
  top: calc(50% - 10px);
  font-size: 18px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group .help-block {
  margin-top: var(--spacing-01);
  font-size: 1.2rem;
  line-height: 1.3333333333;
}

.help-block {
  font-size: 13px;
  margin-top: 8px;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-top: -7px;
}

input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

input[type=range]::-ms-thumb {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background-color: var(--colors-grey-200);
  border-radius: 3px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background-color: var(--colors-grey-200);
  border-radius: 3px;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}
body.search .autocomplete-logo,
body.email_finder .autocomplete-logo {
  width: 2.4rem;
  height: 2.4rem;
}
body.search .autocomplete-logo img,
body.email_finder .autocomplete-logo img {
  display: inline-block !important;
  width: 2.4rem;
  height: 2.4rem;
  object-fit: cover;
  margin-right: 0;
  background-size: 2.4rem 2.4rem;
  border-radius: 0.2rem;
}
body.search .autocomplete-value,
body.email_finder .autocomplete-value {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-900);
}
body.search .autocomplete-data,
body.email_finder .autocomplete-data {
  margin-left: auto;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}
body.search .autocomplete-count,
body.email_finder .autocomplete-count {
  font-size: 1.1rem;
  font-weight: 500;
}

trix-editor {
  min-height: 15em !important;
}
trix-editor:empty:not(:focus)::before {
  color: var(--colors-grey-600) !important;
}

trix-editor {
  border: 1px solid var(--colors-grey-400) !important;
  background-color: rgb(252.45, 252.45, 252.45) !important;
  transition: all 250ms ease;
}
trix-editor:focus, trix-editor:active {
  background-color: #ffffff !important;
  border: 1px solid var(--colors-primary-600) !important;
}

/* Files uploads */
#upload-overlay {
  transition: all 250ms ease;
}
#upload-overlay .upload-instructions {
  position: fixed;
  top: 200px;
  left: 20px;
  right: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
}
#upload-overlay .upload-instructions i {
  font-size: 160px;
  margin-bottom: 40px;
}

.file-area {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-08) var(--spacing-06);
  border: 0.1rem dashed var(--colors-grey-400);
  color: var(--colors-grey-700);
  background-color: var(--colors-grey-100);
  border-radius: 0.8rem;
  text-align: center;
  transition: all 250ms ease;
}
.file-area:hover, .file-area.is-uploading {
  cursor: pointer;
  border-color: var(--colors-secondary-300);
  background-color: var(--colors-secondary-100);
}

.file-area__icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-01);
  font-size: 2rem;
  line-height: 1;
  background-color: var(--colors-secondary-600);
  color: #fff;
  border-radius: 2rem;
}

.file-area__title {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
  color: var(--colors-grey-900);
}
.file-area__title u {
  color: var(--colors-secondary-700);
}

.file-area__subtitle {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  font-weight: 400 !important;
  color: var(--colors-grey-700);
}

.file-area__hint {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}

.file-preview {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-06);
  background-color: var(--colors-white);
  border: 0.1rem solid var(--colors-grey-200);
  border-radius: 0.8rem;
  text-align: left;
  max-width: 100%;
  width: 40rem;
  gap: var(--spacing-03);
  transition: min-height 200ms ease-in-out;
}

.file-preview--small {
  min-height: 12rem;
}

.file-preview--auto-height {
  min-height: 0;
}

.file-preview__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
}

.file-preview__heading {
  flex: 1;
  min-width: 0;
}

.file-preview__title {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
  color: var(--colors-grey-900);
  display: block;
  margin-bottom: var(--spacing-005);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-preview__metas {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
  text-align: left;
}

.file-preview__infos {
  width: 100%;
  margin: var(--spacing-03) 0 0;
  padding-top: var(--spacing-04);
  border-top: 0.1rem solid var(--colors-grey-300);
  display: flex;
  gap: var(--spacing-10);
  align-items: center;
  justify-content: flex-start;
}
.file-preview__infos:has(.file-preview-info--ignored) {
  gap: var(--spacing-04);
  justify-content: space-between;
}

.file-preview-info {
  min-width: 8rem;
}

.file-preview-info__name {
  margin-bottom: var(--spacing-02);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: var(--colors-grey-700);
}

.file-preview-info__value {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.selected-file {
  display: none;
  margin-top: 15px;
  padding: 14px 18px;
  background: var(--colors-grey-100);
  font-weight: 600;
  border-radius: 3px;
}
.selected-file .remove-selected-file {
  float: right;
  display: inline-block;
  line-height: 21px;
  font-size: 24px;
  color: var(--colors-grey-600);
  transition: all 150ms ease;
}
.selected-file .remove-selected-file:hover, .selected-file .remove-selected-file:active, .selected-file .remove-selected-file:focus {
  color: var(--colors-grey-800);
  cursor: pointer;
}

/* Selectized fields */
/* To prevent a "jump" when the element is initialized, it is hidden by
 * by default. It is shown once the element has been initialized. */
.selectize {
  visibility: hidden;
}

.selectize-input {
  border: 1px solid var(--colors-grey-400);
  box-shadow: none;
  border-radius: 3px !important;
  background-color: rgb(252.45, 252.45, 252.45);
  transition: all 250ms ease;
  min-height: 36px;
  height: auto;
  font-size: 13px;
  line-height: 25px;
  padding: 6px 8px;
}
.selectize-input input[type^=select-multiple],
.selectize-input input[type^=select-one] {
  width: fit-content;
}
.selectize-input > input {
  height: auto;
}
.selectize-input > input[placeholder] {
  width: 100% !important;
}
.selectize-input.focus {
  background-color: #fff;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none !important;
  border: 1px solid var(--colors-primary-600) !important;
}
.selectize-input.focus input {
  border: 0 !important;
}
.selectize-input:after {
  right: 12px !important;
  top: calc(50% + 1px) !important;
}
.selectize-input > div {
  border-radius: 3px;
  padding: 2px 4px 2px 8px;
}
.selectize-input .remove {
  border: 0 !important;
  padding: 2px 2px 0;
}

.selectize-dropdown {
  margin-top: 4px;
  border-radius: 5px;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown--auto-width {
  width: max-content !important;
}

.selectize-dropdown-content {
  border-radius: 5px;
}
.selectize-dropdown-content::-webkit-scrollbar {
  width: 10px;
}
.selectize-dropdown-content::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--colors-grey-100);
}
.selectize-dropdown-content::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--colors-grey-200);
}
.selectize-dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: var(--colors-grey-300);
}
.selectize-dropdown-content::-webkit-scrollbar-thumb:active {
  background-color: var(--colors-grey-400);
}
.selectize-dropdown-content .optgroup-header {
  padding: 12px;
  font-weight: 600;
}
.selectize-dropdown-content .option {
  padding: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--colors-grey-900);
}
.selectize-dropdown-content .option.active {
  color: var(--colors-grey-900);
  background-color: var(--colors-grey-100);
}
.selectize-dropdown-content .option .highlight {
  background-color: var(--colors-grey-100);
}
.selectize-dropdown-content .option:hover {
  cursor: pointer;
}

.selectize-control.multi {
  line-height: normal;
}
.selectize-control.multi .selectize-input {
  transition: none;
}
.selectize-control.multi .selectize-input > input[placeholder] {
  width: 100% !important;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .autocomplete-value {
    max-width: 190px;
  }
  .main-input-group button {
    padding: 12px 20px;
    font-size: 13px;
  }
  .main-input-group input[type=text],
  .main-input-group input[type=email] {
    font-size: 14px;
    padding: 15px 10px;
  }
}
/**
* Alerts
* Provide contextual feedback messages to users
*
* @selector .h-alert
* @haml app/views/components/_alert.haml
*/
.ff-code {
  font-family: var(--fonts-family-code) !important;
}

.fw-normal {
  font-weight: normal !important;
}

.fw-medium {
  font-weight: 500 !important;
}

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

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-white {
  color: #fff !important;
}

.text-hint {
  color: var(--colors-grey-600) !important;
}

.text-ghost {
  color: var(--colors-grey-400) !important;
}

.text-body-secondary {
  color: var(--colors-grey-700) !important;
}

.text-dark {
  color: var(--colors-grey-900) !important;
}

.text-primary {
  color: var(--colors-primary-700) !important;
}

.text-secondary {
  color: var(--colors-secondary-700) !important;
}

.text-success {
  color: var(--colors-success-700) !important;
}

.text-warning {
  color: var(--colors-warning-700) !important;
}

.text-danger {
  color: var(--colors-danger-700) !important;
}

.text-magenta {
  color: var(--colors-magenta-700) !important;
}

.text-cyan {
  color: var(--colors-cyan-700) !important;
}

.text-emerald {
  color: var(--colors-emerald-700) !important;
}

.text-linkedin {
  color: var(--colors-brand-linkedin-blue) !important;
}

@keyframes textShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.text-blurred {
  filter: blur(4px);
}

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

.word-break-all {
  word-break: break-all !important;
}

small {
  font-size: 85% !important;
}

.text-2xs {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  font-weight: 400 !important;
}

.text-xs {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-xs-medium {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-sm, .empty-state .empty-state__description {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
}

.text-sm-medium {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
}

.text-md-medium {
  font-size: 1.6rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

.text-lg-medium {
  font-size: 1.8rem !important;
  line-height: 2.8rem !important;
  font-weight: 500 !important;
}

.text-xl-medium {
  font-size: 2rem !important;
  line-height: 2.4rem !important;
  font-weight: 500 !important;
}

:root {
  --c-alert-border: var(--colors-grey-400);
  --c-alert-background: var(--colors-grey-100);
  --c-alert-title-color: var(--colors-grey-800);
  --c-alert-icon-color: var(--colors-grey-600);
  --c-alert-icon-size: 1.4rem;
  --c-alert-font-size: 1.4rem;
}

.h-alert {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: var(--spacing-04);
  background: var(--c-alert-background);
  border: 1px solid var(--c-alert-border);
  border-radius: 0.4rem;
  font-size: var(--c-alert-font-size);
  line-height: 1.4285714286;
}

.h-alert__icon-wrapper {
  padding-right: var(--spacing-02);
}

.h-alert__icon {
  font-size: var(--c-alert-icon-size);
  line-height: 1.25;
  color: var(--c-alert-icon-color);
}

.h-alert__content {
  flex: 1;
}
.h-alert__content a:not(.h-button):not(.btn-google) {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-500);
  text-underline-offset: var(--spacing-01);
  cursor: pointer;
}
.h-alert__content a:not(.h-button):not(.btn-google):hover, .h-alert__content a:not(.h-button):not(.btn-google):focus {
  text-decoration-color: currentColor;
}

.h-alert__title {
  font-size: 1.4rem !important;
  line-height: 2rem !important;
  font-weight: 500 !important;
  display: block;
  margin-bottom: var(--spacing-01);
  color: var(--c-alert-title-color);
}

.h-alert__description {
  font-size: 1.3rem !important;
  line-height: 2rem !important;
  font-weight: 400 !important;
  margin-top: var(--spacing-005);
  color: var(--colors-grey-800);
  text-align: left;
}
.h-alert__description a:not(.h-button),
.h-alert__description a:not([class*=btn]) {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-500);
  text-underline-offset: var(--spacing-01);
  cursor: pointer;
}
.h-alert__description a:not(.h-button):hover, .h-alert__description a:not(.h-button):focus,
.h-alert__description a:not([class*=btn]):hover,
.h-alert__description a:not([class*=btn]):focus {
  text-decoration-color: currentColor;
}
.h-alert__description ul:last-child,
.h-alert__description ol:last-child,
.h-alert__description p:last-child {
  margin-bottom: 0;
}
.h-alert__description ul,
.h-alert__description ol {
  padding-left: 1em;
}

.h-alert__actions {
  margin-top: var(--spacing-03);
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.h-alert__dissmiss {
  position: absolute;
  top: var(--spacing-04);
  right: var(--spacing-02);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background-color: transparent;
  font-size: 1.6rem;
  color: var(--colors-grey-600);
  transition: color 100ms ease-in;
}
.h-alert__dissmiss:hover, .h-alert__dissmiss:focus {
  color: var(--colors-grey-800);
}
.h-alert__dissmiss:active {
  transform: scale(0.96);
}

/**
* MODIFIER
*/
/* Sizing */
.h-alert--sm {
  --c-alert-font-size: 1.3rem;
  --c-alert-icon-size: 1.3rem;
  padding: var(--spacing-02) var(--spacing-03);
}
.h-alert--sm .h-alert__icon-wrapper {
  padding-right: var(--spacing-02);
}
.h-alert--sm .h-alert__dissmiss {
  top: var(--spacing-02);
}

/* Is dissmissable */
.h-alert--dissmissable {
  padding-right: var(--spacing-10);
}

/* Box Model */
.h-alert--inline {
  display: inline-flex;
  width: auto;
}

/* Colors */

.h-alert--info {
  --c-alert-border: var(--colors-secondary-400);
  --c-alert-background: var(--colors-secondary-100);
  --c-alert-icon-color: var(--colors-secondary-600);
  --c-alert-title-color: var(--colors-secondary-700);
}
.autocomplete-suggestions {
  background: #FFFFFF;
  border: 1px solid var(--colors-grey-300);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.autocomplete-suggestion {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-02) var(--spacing-04);
  transition: background-color 150ms ease-in;
}
.autocomplete-suggestion:not(:first-child) {
  border-top: 1px solid var(--colors-grey-300);
}
.autocomplete-suggestion:hover {
  background-color: var(--colors-grey-100);
}

.autocomplete-logo {
  width: 2.4rem;
  height: 2.4rem;
}
.autocomplete-logo img {
  display: inline-block !important;
  width: 2.4rem;
  height: 2.4rem;
  object-fit: cover;
  margin-right: 0;
  background-size: 2.4rem 2.4rem;
  border-radius: 0.2rem;
}

.autocomplete-value {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-900);
}

.autocomplete-data {
  margin-left: auto;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-600);
}

.autocomplete-count {
  font-size: 1.1rem;
  font-weight: 500;
}
.score {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.score.low-score {
  border-color: var(--colors-grey-500);
}
.score.average-score {
  background: linear-gradient(0deg, var(--colors-grey-500), var(--colors-grey-500) 50%, transparent 0, transparent);
  border-color: var(--colors-grey-500);
}
.score.high-score {
  background-color: var(--colors-grey-500);
}

.score.tag__icon {
  margin-left: var(--spacing-005);
  position: relative;
  border: none;
  background: none;
}
.score.tag__icon::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.score.tag__icon.low-score::before {
  border-color: var(--colors-grey-500);
}
.score.tag__icon.average-score::before {
  background: linear-gradient(0deg, var(--colors-grey-500), var(--colors-grey-500) 50%, transparent 0, transparent);
  border-color: var(--colors-grey-500);
}
.score.tag__icon.high-score::before {
  background-color: var(--colors-grey-500);
}

.empty-state {
  position: relative;
  padding: var(--spacing-14) var(--spacing-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--spacing-08);
}
.empty-state .empty-state__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--colors-grey-900);
  margin-top: 0 !important;
  margin-bottom: var(--spacing-02) !important;
  padding: 0 !important;
  border: 0 !important;
}
.empty-state .empty-state__description {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--colors-grey-600);
  text-wrap: balance;
}

.empty-state__img {
  max-width: 20rem;
  height: auto;
}

.empty-state__img--full {
  max-width: none;
}

.empty-state__video {
  max-width: 43rem;
  width: 100%;
}

.empty-state__icon {
  font-size: 5.6rem;
  color: var(--colors-grey-300);
}

.empty-state__content {
  font-size: 1.3rem;
  text-align: center;
  color: var(--colors-grey-700);
  line-height: 1.5;
  text-wrap: balance;
}

.empty-state__actions a:not([class*=btn]):not([class*=h-button]),
.empty-state__content a:not([class*=btn]):not([class*=h-button]) {
  font-size: 1em;
  color: var(--colors-grey-700);
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-300);
  text-underline-offset: var(--spacing-01);
}
.empty-state__actions a:not([class*=btn]):not([class*=h-button]):hover, .empty-state__actions a:not([class*=btn]):not([class*=h-button]):focus,
.empty-state__content a:not([class*=btn]):not([class*=h-button]):hover,
.empty-state__content a:not([class*=btn]):not([class*=h-button]):focus {
  text-decoration-color: var(--colors-grey-400);
}

.empty-state__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-02);
  margin-top: var(--spacing-04);
}

.empty-state__hint {
  margin-top: var(--spacing-04);
  color: var(--colors-grey-600);
  font-size: 1.2rem;
  line-height: 1.3333333333;
}

.empty-state--lg {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.empty-state--sidepanel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Mobile */
@media screen and (min-width: 48em) {
  .empty-state--horizontal {
    flex-direction: row;
    gap: var(--spacing-10);
  }
  .empty-state--horizontal .empty-state__content {
    text-align: left;
  }
  .empty-state--horizontal .empty-state__content p,
  .empty-state--horizontal .empty-state__content ul,
  .empty-state--horizontal .empty-state__content ol {
    max-width: 36rem;
  }
  .empty-state--horizontal .empty-state__actions {
    justify-content: flex-start;
  }
}
.upgrade-empty-state {
  text-align: center;
}

.upgrade-empty-state__icon {
  font-size: 2em;
  background: linear-gradient(90deg, var(--colors-secondary-500) 0%, var(--colors-secondary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.upgrade-empty-state__title {
  font-size: 2rem;
  line-height: 1.2;
  margin: var(--spacing-04) 0 0 0;
}

.upgrade-empty-state__description {
  max-width: 32rem;
  margin: var(--spacing-02) auto var(--spacing-06);
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-700);
}

.h-select {
  --h-select-padding: calc(var(--spacing-02) - 1px) var(--spacing-08) calc(var(--spacing-02) - 1px) var(--spacing-03);
  --h-select-border-color: var(--colors-grey-300);
  --h-select-border-radius: 4px;
  --h-select-font-size: 1.3rem;
  --h-select-line-height: calc(16/13);
  --h-select-color: var(--colors-grey-900);
  --h-select-background: #fff;
  --h-select-height: 4rem;
  --h-select-border-color-hover: var(--colors-grey-400);
  --h-select-border-color-focus: var(--colors-secondary-600);
  --h-select-box-shadow-focus: 0px 0px 0px 2px var(--colors-secondary-300);
  --h-select-border-color-error: var(--colors-danger-700);
  background-image: url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.55078%2011.1992L3.80078%207.44922C3.54688%207.21484%203.54688%206.80469%203.80078%206.57031C4.03516%206.31641%204.44531%206.31641%204.67969%206.57031L8%209.87109L11.3008%206.57031C11.5352%206.31641%2011.9453%206.31641%2012.1797%206.57031C12.4336%206.80469%2012.4336%207.21484%2012.1797%207.44922L8.42969%2011.1992C8.19531%2011.4531%207.78516%2011.4531%207.55078%2011.1992Z'%20fill='%23707880'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--spacing-03) center;
  background-size: 1.6rem;
  appearance: none;
  display: inline-block;
  padding: var(--h-select-padding);
  height: var(--h-select-height);
  max-width: 100%;
  border: 1px solid var(--h-select-border-color);
  border-radius: var(--h-select-border-radius);
  box-shadow: none;
  font-size: var(--h-select-font-size);
  font-weight: normal;
  line-height: var(--h-select-line-height);
  text-decoration: none;
  text-align: left;
  background-color: var(--h-select-background);
  color: var(--h-select-color);
  transition: background-color 250ms ease, color 250ms ease-in, border-color 250ms ease-in;
}
.h-select:hover {
  border-color: var(--h-select-border-color-hover) !important;
}
.h-select:focus {
  outline: none;
  border-color: var(--h-select-border-color-focus) !important;
  box-shadow: var(--h-select-box-shadow-focus) !important;
}
.h-select.error {
  border-color: var(--h-select-border-color-error) !important;
}
.h-select:disabled, .h-select.disabled {
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.h-select[aria-expanded=true] {
  background-color: var(--colors-grey-100);
}

.h-select::-ms-expand {
  display: none;
}

.h-select--xs {
  --h-select-padding: calc(var(--spacing-01) - 1px) var(--spacing-05) calc(var(--spacing-01) - 1px) var(--spacing-02);
  --h-select-font-size: 1.2rem;
  --h-select-line-height: calc(16/12);
  --h-select-height: 2.4rem;
  background-position: right var(--spacing-01) center;
}

.h-select--sm {
  --h-select-padding: calc(var(--spacing-02) - 1px) var(--spacing-08) calc(var(--spacing-02) - 1px) var(--spacing-02);
  --h-select-font-size: 1.3rem;
  --h-select-line-height: calc(16/13);
  --h-select-height: 3.2rem;
  background-position: right var(--spacing-02) center;
}

.h-select--block {
  display: block;
  width: 100%;
}

.h-select--blank {
  --h-select-color: var(--colors-grey-600);
}

.h-selectize {
  --h-selectize-padding: calc(var(--spacing-02) - 1px) var(--spacing-07) calc(var(--spacing-02) - 1px) var(--spacing-03);
  --h-selectize-border-color: var(--colors-grey-300);
  --h-selectize-border-radius: 4px;
  --h-selectize-font-size: 1.3rem;
  --h-selectize-line-height: calc(16/13);
  --h-selectize-color: var(--colors-grey-900);
  --h-selectize-background: #fff;
  --h-selectize-height: 4rem;
  --h-selectize-border-color-hover: var(--colors-grey-400);
  --h-selectize-border-color-focus: var(--colors-secondary-600);
  --h-selectize-box-shadow-focus: 0px 0px 0px 2px var(--colors-secondary-300);
}
.h-selectize .selectize-input {
  display: inline-flex !important;
  align-items: center;
  padding: var(--h-selectize-padding) !important;
  height: auto;
  min-height: var(--h-selectize-height);
  border: 1px solid var(--h-selectize-border-color);
  border-radius: var(--h-selectize-border-radius) !important;
  font-size: var(--h-selectize-font-size);
  font-weight: normal;
  line-height: var(--h-selectize-line-height);
  text-decoration: none;
  background-color: var(--h-selectize-background);
  box-shadow: none;
  transition: all 250ms ease;
}
.h-selectize .selectize-input:hover {
  border-color: var(--h-selectize-border-color-hover) !important;
}
.h-selectize .selectize-input.focus, .h-selectize .selectize-input:focus-within {
  outline: none;
  border-color: var(--h-selectize-border-color-focus) !important;
  box-shadow: var(--h-selectize-box-shadow-focus) !important;
}
.h-selectize .selectize-input > input {
  font-size: var(--h-selectize-font-size) !important;
}
.h-selectize .selectize-input > .item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}
.h-selectize .option,
.h-selectize .create {
  padding: var(--spacing-02) var(--spacing-04);
  color: var(--colors-grey-900);
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.2307692308;
}
.h-selectize .create.active {
  color: var(--colors-grey-900);
}
.h-selectize.multi .selectize-input {
  --h-selectize-padding: calc(var(--spacing-02) - 1px) var(--spacing-03);
}

.h-selectize.single .selectize-input:after {
  content: none;
}

.h-selectize.single .selectize-input {
  background-image: url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.55078%2011.1992L3.80078%207.44922C3.54688%207.21484%203.54688%206.80469%203.80078%206.57031C4.03516%206.31641%204.44531%206.31641%204.67969%206.57031L8%209.87109L11.3008%206.57031C11.5352%206.31641%2011.9453%206.31641%2012.1797%206.57031C12.4336%206.80469%2012.4336%207.21484%2012.1797%207.44922L8.42969%2011.1992C8.19531%2011.4531%207.78516%2011.4531%207.55078%2011.1992Z'%20fill='%23707880'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right var(--spacing-03) center !important;
  background-size: 1.6rem;
}

.h-selectize--sm {
  --h-selectize-padding: calc(var(--spacing-02) - 1px) var(--spacing-06) calc(var(--spacing-02) - 1px) var(--spacing-02);
  --h-selectize-height: 3.2rem;
}
.h-selectize--sm .selectize-dropdown-content .option,
.h-selectize--sm .selectize-dropdown-content .create {
  padding: var(--h-selectize-padding);
}
.h-selectize--sm.single .selectize-input {
  background-position: right var(--spacing-02) center !important;
}
.h-selectize--sm.multi .selectize-input {
  --h-selectize-padding: calc(var(--spacing-02) - 1px) var(--spacing-02);
}

.h-selectize--xs {
  --h-selectize-padding: calc(var(--spacing-01) - 1px) var(--spacing-06) calc(var(--spacing-01) - 1px) var(--spacing-02);
  --h-selectize-font-size: 1.2rem;
  --h-selectize-line-height: calc(16/12);
  --h-selectize-height: 2.4rem;
}
.h-selectize--xs.single .selectize-input {
  background-position: right var(--spacing-02) center !important;
}
.h-selectize--xs.multi .selectize-input {
  --h-selectize-padding: calc(var(--spacing-01) - 1px) var(--spacing-02);
}

.h-selectize--lg {
  --h-selectize-padding: calc(var(--spacing-04) - 1px) var(--spacing-08) calc(var(--spacing-04) - 1px) var(--spacing-04);
  --h-selectize-font-size: 1.6rem;
  --h-selectize-line-height: calc(24/16);
  --h-selectize-height: 5.6rem;
}
.h-selectize--lg.single .selectize-input {
  background-position: right var(--spacing-04) center !important;
}
.h-selectize--lg.multi .selectize-input {
  --h-selectize-padding: calc(var(--spacing-04) - 1px) var(--spacing-04);
}

#flash {
  display: block;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 30px;
  width: max-content;
  z-index: 1000;
  text-align: center;
  transform: translateY(200%);
  opacity: 0;
  animation-name: slideInFromBottom;
  animation-duration: 250ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
#flash .alert {
  color: #fff;
  margin: auto;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px 20px;
  font-size: 14px;
  border: 0;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.3);
}
#flash .alert > .fas, #flash .alert .far {
  margin-right: var(--spacing-02);
  font-size: 19px;
  color: #fff;
}
#flash .alert .fa-circle-xmark {
  color: var(--colors-danger-600);
}
#flash .alert .fa-check {
  color: var(--colors-success-600);
}
#flash .alert .fa-exclamation-triangle {
  color: var(--colors-warning-600);
}
#flash .alert a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#flash .alert a:hover, #flash .alert a:focus {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
#flash .alert-dismissible .close {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: var(--colors-grey-500);
  right: 0;
  top: 0;
  opacity: 1;
  text-shadow: none;
  font-size: 1.6rem;
  margin-left: var(--spacing-04);
}
#flash .alert-dismissible .close:hover, #flash .alert-dismissible .close:focus {
  color: var(--colors-grey-400);
}
#flash .alert-dismissible .close .far {
  margin-right: 0;
}
.modal-open #flash {
  z-index: 1060;
}
body.discover #flash {
  z-index: 1005;
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
:root {
  --h-input-padding: calc(var(--spacing-02) - 1px) var(--spacing-05) calc(var(--spacing-02) - 1px) var(--spacing-03);
  --h-input-border-color: var(--colors-grey-300);
  --h-input-border-radius: 4px;
  --h-input-font-size: 1.3rem;
  --h-input-line-height: calc(16/13);
  --h-input-color: var(--colors-grey-900);
  --h-input-background: #fff;
  --h-input-height: 4rem;
  --h-input-border-color-hover: var(--colors-grey-400);
  --h-input-border-color-focus: var(--colors-secondary-600);
  --h-input-box-shadow-focus: 0 0 0 .2rem var(--colors-secondary-300);
  --h-input-background-active: var(--colors-grey-100);
  --h-input-color-readonly: var(--colors-grey-700);
  --h-input-background-readonly: var(--colors-grey-100);
  --h-input-border-color-error: var(--colors-danger-700);
  --h-input-group-text-padding: calc(var(--spacing-02) - 1px) var(--spacing-03);
  --h-checkbox-gap: 1px;
  --h-checkbox-size: 14px;
  --h-checkbox-radius: 2px;
  --h-checkbox-border-width: 1.5px;
  --h-checkbox-border-color: var(--colors-grey-500);
  --h-checkbox-background: var(--colors-white);
  --h-checkbox-background-hover: var(--colors-secondary-700);
  --h-radio-gap: 1px;
  --h-radio-size: 14px;
  --h-radio-radius: 50%;
  --h-radio-border-width: 1.5px;
  --h-radio-border-color: var(--colors-grey-500);
  --h-radio-background: var(--colors-white);
  --h-radio-background-hover: var(--colors-secondary-700);
}

body .h-input {
  appearance: none;
  display: inline-block;
  padding: var(--h-input-padding) !important;
  height: var(--h-input-height) !important;
  max-width: 100%;
  border: 1px solid var(--h-input-border-color) !important;
  border-radius: var(--h-input-border-radius) !important;
  font-size: var(--h-input-font-size) !important;
  font-weight: normal;
  line-height: var(--h-input-line-height);
  text-decoration: none;
  background-color: var(--h-input-background);
  color: var(--h-input-color);
  transition: background-color 250ms ease, color 250ms ease-in;
}
body .h-input:hover {
  border-color: var(--h-input-border-color-hover) !important;
}
body .h-input:focus {
  outline: none;
  border-color: var(--h-input-border-color-focus) !important;
  box-shadow: var(--h-input-box-shadow-focus) !important;
}
body .h-input.active {
  background-color: var(--h-input-background-active);
}
body .h-input:read-only {
  color: var(--h-input-color-readonly);
  background-color: var(--h-input-background-readonly);
}
body .h-input.error {
  --h-input-color: var(--colors-danger-700);
  --h-input-box-shadow-focus: 0 0 0 .2rem var(--colors-danger-300);
  border-color: var(--h-input-border-color-error) !important;
}
body .h-input:disabled, body .h-input.disabled {
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
body .h-input[type=number] {
  --h-input-padding: calc(var(--spacing-02) - 1px) var(--spacing-02) calc(var(--spacing-02) - 1px) var(--spacing-03);
  -moz-appearance: textfield;
}
body .h-input[type=number]::-webkit-outer-spin-button, body .h-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
body .h-input::-ms-expand {
  display: none;
}
body .h-input--sm {
  --h-input-group-text-padding: calc(var(--spacing-02) - 1px) var(--spacing-02);
  --h-input-padding: calc(var(--spacing-02) - 1px) var(--spacing-05) calc(var(--spacing-02) - 1px) var(--spacing-02);
  --h-input-font-size: 1.3rem;
  --h-input-line-height: calc(16/13);
  --h-input-height: 3.2rem;
}
body .h-input--lg {
  --h-input-group-text-padding: calc(var(--spacing-04) - 1px) var(--spacing-04);
  --h-input-padding: calc(var(--spacing-04) - 1px) var(--spacing-06) calc(var(--spacing-04) - 1px) var(--spacing-04);
  --h-input-font-size: 1.6rem;
  --h-input-line-height: calc(24/16);
  --h-input-height: 5.6rem;
}
body .h-input--block {
  display: block;
  width: 100%;
}
body .h-input--plaintext:read-only {
  --h-input-background-readonly: transparent;
  --h-input-color-readonly: var(--colors-grey-900);
  --h-input-border-color: transparent;
  --h-input-padding: var(--spacing-02) 0;
  --h-input-height: auto;
  --h-input-border-color-hover: transparent;
  --h-input-border-color-focus: transparent;
  --h-input-box-shadow-focus: none;
  appearance: none;
}
body .h-input--plaintext:read-only:focus-visible {
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-300);
}
body .h-checkbox {
  margin: 0;
  position: relative;
  display: inline-flex;
  appearance: none;
  box-sizing: border-box;
  margin: var(--h-checkbox-gap); /* Creates the gap around the 14px circle inside the 16px area */
  width: var(--h-checkbox-size); /* Outer clickable box */
  height: var(--h-checkbox-size);
  border: none;
  box-shadow: inset 0 0 0 var(--h-checkbox-border-width) var(--h-checkbox-border-color);
  border-radius: var(--h-checkbox-radius);
  background-color: var(--h-checkbox-background);
  cursor: pointer;
}
body .h-checkbox:not(:checked):not(:disabled):hover {
  opacity: 0.8;
}
body .h-checkbox:checked, body .h-checkbox:indeterminate {
  --h-checkbox-background: var(--colors-secondary-600);
  background-color: var(--h-checkbox-background);
  box-shadow: none;
}
body .h-checkbox:checked:hover, body .h-checkbox:indeterminate:hover {
  background-color: var(--h-checkbox-background-hover);
}
body .h-checkbox:checked::after {
  content: "";
  position: absolute;
  top: calc(var(--h-checkbox-size) / 2);
  left: calc(var(--h-checkbox-size) / 2);
  width: calc(var(--h-checkbox-size) - 2px); /* icon size */
  height: calc(var(--h-checkbox-size) - 2px);
  /* Use mask so color comes from background-color */
  background-color: var(--colors-white); /* tick color */
  mask: url("/images/checkbox-check.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
}
body .h-checkbox:indeterminate::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--h-checkbox-size) / 2 + 1px);
  height: 2px;
  background-color: var(--colors-white);
  transform: translate(-50%, -50%);
  border-radius: 0.4rem;
}
body .h-checkbox:disabled {
  --h-checkbox-background: var(--colors-grey-300);
  --h-checkbox-background-hover: var(--colors-grey-300);
  opacity: 0.5;
  cursor: not-allowed;
}
body .h-checkbox:disabled:after {
  background-color: var(--colors-grey-600);
}
body .h-checkbox--sm {
  --h-checkbox-size: 1.2rem;
}
body .h-form-group__input {
  display: flex;
}
body .h-radio {
  margin: 0;
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  margin: var(--h-radio-gap); /* Creates the gap around the 14px circle inside the 16px area */
  appearance: none;
  width: var(--h-radio-size); /* Outer clickable box */
  height: var(--h-radio-size);
  border: none;
  box-shadow: inset 0 0 0 var(--h-radio-border-width) var(--h-radio-border-color);
  border-radius: var(--h-radio-radius);
  background-color: var(--h-radio-background);
  cursor: pointer;
}
body .h-radio:not(:checked):not(:disabled):hover {
  opacity: 0.8;
}
body .h-radio:checked {
  --h-radio-border-color: var(--colors-secondary-600);
  box-shadow: inset 0 0 0 var(--h-radio-border-width) var(--h-radio-border-color);
}
body .h-radio:checked::before {
  --h-radio-background: var(--colors-secondary-600);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--h-radio-size) / 2);
  height: calc(var(--h-radio-size) / 2);
  background-color: var(--h-radio-background);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
body .h-radio:disabled {
  --h-radio-border-color: var(--colors-grey-500);
  --h-radio-background: var(--colors-grey-300);
  opacity: 0.5;
  background-color: var(--h-radio-background);
  cursor: not-allowed;
}
body .h-radio:disabled::before {
  background-color: var(--colors-grey-500);
}
body .h-radio-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}
body .h-radio-group__item {
  position: relative;
  flex: 1;
  display: flex;
  gap: var(--spacing-02);
  align-items: center;
  padding: var(--spacing-03);
  border: 0.1rem solid transparent;
  border-radius: 0.4rem;
  background-color: var(--colors-grey-100);
  white-space: nowrap;
  transition: border-color 150ms ease-in, background-color 150ms ease-in, box-shadow 150ms ease-in;
}
body .h-radio-group__item:hover, body .h-radio-group__item:focus {
  border-color: var(--colors-grey-300);
}
body .h-radio-group__item:has(:checked) {
  background-color: var(--colors-grey-50);
  border-color: var(--colors-secondary-600);
  box-shadow: 0 0 0 0.2rem var(--colors-secondary-300);
}
body .h-radio-group__item .h-label {
  cursor: pointer;
}
body .h-radio-group__item .h-label::before {
  content: "";
  position: absolute;
  inset: 0;
}
body .h-radio-group--auto {
  width: max-content;
}
body .h-input-group {
  display: flex;
  align-items: stretch;
  font-size: var(--h-input-font-size);
  line-height: var(--h-input-line-height);
}
body .h-input-group > :not(:last-child) {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
body .h-input-group > :not(:first-child) {
  margin-left: -0.1rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
body .h-input-group .h-input,
body .h-input-group .h-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
body .h-input-group__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--h-input-group-text-padding);
  text-align: center;
  white-space: nowrap;
  background-color: var(--colors-grey-100);
  border: 0.1rem solid var(--colors-grey-300);
  border-radius: 0.4rem;
}

#card-field {
  padding: var(--h-input-padding) !important;
  height: var(--h-input-height) !important;
  border: 1px solid var(--h-input-border-color) !important;
  border-radius: var(--h-input-border-radius) !important;
  font-size: var(--h-input-font-size) !important;
  font-weight: normal;
  line-height: var(--h-input-line-height);
  text-decoration: none;
  background-color: var(--h-input-background);
  color: var(--h-input-color);
  transition: background-color 250ms ease, color 250ms ease-in, border-color 250ms ease-in;
  display: flex;
  align-items: center;
}
#card-field > * {
  flex: 1;
}
#card-field:hover {
  border-color: var(--h-input-border-color-hover) !important;
}
#card-field.focus {
  outline: none;
  border-color: var(--h-input-border-color-focus) !important;
  box-shadow: var(--h-input-box-shadow-focus) !important;
}

.h-prompt-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-02) var(--spacing-02) var(--spacing-02) var(--spacing-03);
  border: 1px solid var(--h-input-border-color) !important;
  border-radius: var(--h-input-border-radius) !important;
  font-size: var(--h-input-font-size) !important;
}
.h-prompt-field:focus-within {
  border-color: var(--h-input-border-color-focus) !important;
  box-shadow: var(--h-input-box-shadow-focus) !important;
}
.h-prompt-field .h-prompt-field__input {
  flex: 1;
  border: 0 !important;
  padding: 0 !important;
  height: 2.4rem;
  background-color: transparent;
  appearance: none;
  resize: none;
}
.h-prompt-field .h-prompt-field__input:focus, .h-prompt-field .h-prompt-field__input:hover, .h-prompt-field .h-prompt-field__input:focus-visible {
  border: 0 !important;
}

.h-prompt-field__icon {
  font-size: 1.4rem;
  color: var(--colors-grey-500);
}

:root {
  --h-textarea-padding: var(--spacing-03);
  --h-textarea-border-color: var(--h-input-border-color);
  --h-textarea-border-radius: var(--h-input-border-radius);
  --h-textarea-font-size: var(--h-input-font-size);
  --h-textarea-line-height: var(--h-input-line-height);
  --h-textarea-color: var(--h-input-color);
  --h-textarea-background: var(--h-input-background);
  --h-textarea-border-color-hover: var(--h-input-border-color-hover);
  --h-textarea-border-color-focus: var(--h-input-border-color-focus);
  --h-textarea-box-shadow-focus: var(--h-input-box-shadow-focus);
  --h-textarea-background-active: var(--h-input-background-active);
  --h-textarea-color-readonly: var(--h-input-color-readonly);
  --h-textarea-background-readonly: var(--h-input-background-readonly);
  --h-textarea-border-color-error: var(--h-input-border-color-error);
}

body .h-textarea {
  appearance: none;
  display: inline-block;
  max-width: 100%;
  padding: var(--h-textarea-padding) !important;
  border: 1px solid var(--h-textarea-border-color) !important;
  border-radius: var(--h-textarea-border-radius) !important;
  font-size: var(--h-textarea-font-size) !important;
  font-weight: normal;
  line-height: var(--h-textarea-line-height);
  text-decoration: none;
  background-color: var(--h-textarea-background);
  color: var(--h-textarea-color);
  transition: background-color 250ms ease, color 250ms ease-in, border-color 250ms ease-in;
}
body .h-textarea:hover {
  border-color: var(--h-textarea-border-color-hover) !important;
}
body .h-textarea:focus {
  outline: none;
  border-color: var(--h-textarea-border-color-focus) !important;
  box-shadow: var(--h-textarea-box-shadow-focus) !important;
}
body .h-textarea.active {
  background-color: var(--h-textarea-background-active);
}
body .h-textarea:read-only {
  color: var(--h-textarea-color-readonly);
  background-color: var(--h-textarea-background-readonly);
}
body .h-textarea.error {
  border-color: var(--h-textarea-border-color-error) !important;
}
body .h-textarea:disabled, body .h-textarea.disabled {
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
body .h-textarea--block {
  display: block;
  width: 100%;
}

.h-form-group {
  display: flex;
  gap: var(--spacing-02);
  line-height: 1.5;
  width: 100%;
  flex: 1;
}

.h-form-group__infos {
  flex: 1 1 0%;
}
.h-form-group__infos label {
  display: block;
  max-width: max-content;
}
.h-form-group__infos label:only-child {
  margin-bottom: 0;
}

.h-field {
  position: relative;
}
.h-field .h-input {
  padding-right: var(--spacing-08) !important;
}

.h-field__append {
  position: absolute;
  right: var(--spacing-02);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.h-label {
  --h-label-color: var(--colors-grey-800);
  --h-label-font-size: 1.3rem;
  --h-label-line-height: calc(20/13);
  --h-label-margin: 0 0 var(--spacing-01) 0;
  display: inline-block;
  color: var(--h-label-color);
  font-size: var(--h-label-font-size);
  font-weight: 500;
  line-height: var(--h-label-line-height);
  margin: var(--h-label-margin);
  border-bottom: 0;
}
.h-label a {
  color: currentColor;
  text-decoration-color: var(--colors-grey-400);
}
.h-label a:hover, .h-label a:focus {
  text-decoration-color: var(--colors-grey-600);
}
.h-label em {
  color: var(--colors-grey-600);
  font-weight: normal;
  font-style: normal;
}

.h-label--block {
  display: block;
  width: 100%;
}

.h-label--regular {
  font-weight: normal;
}

.h-label--sm {
  --h-label-font-size: 1.2rem;
  --h-label-line-height: calc(16/12);
}

.h-label--md {
  --h-label-font-size: 1.4rem;
  --h-label-line-height: calc(20/14);
}

.h-label--lg {
  --h-label-font-size: 1.5rem;
  --h-label-line-height: calc(20/15);
}

.h-label--secondary {
  --h-label-color: var(--colors-grey-700);
}

.h-hint {
  --h-hint-color: var(--colors-grey-600);
  --h-hint-font-size: 1.2rem;
  --h-hint-line-height: calc(16/12);
  display: block;
  color: var(--h-hint-color);
  font-size: var(--h-hint-font-size);
  line-height: var(--h-hint-line-height);
}
.h-hint a {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-color: var(--colors-grey-300);
  text-underline-offset: var(--spacing-01);
  border-bottom: 0;
}
.h-hint a:hover, .h-hint a:focus {
  color: var(--colors-grey-800);
  text-decoration-color: transparent;
}

.h-hint--error {
  --h-hint-color: var(--colors-danger-700);
}

.h-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.h-legend {
  --h-legend-color: var(--colors-grey-900);
  --h-legend-font-size: 1.4rem;
  --h-legend-line-height: calc(20/14);
  float: none;
  margin-bottom: var(--spacing-02);
  padding: 0;
  border-bottom: 0;
  color: var(--h-legend-color);
  font-size: var(--h-legend-font-size);
  font-weight: 500;
  line-height: var(--h-legend-line-height);
}
.h-legend em {
  color: var(--colors-grey-600);
  font-weight: normal;
  font-style: normal;
}

.h-legend--sm {
  --h-legend-font-size: 1.3rem;
}

.h-legend--md {
  --h-legend-font-size: 1.5rem;
}

.form-control {
  width: 100%;
}

.colors-picker {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-02);
}

.colors-picker__choice {
  width: 2rem;
  height: 2rem;
  appearance: none;
  border-radius: 50%;
}
.colors-picker__choice:checked {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  outline: 0.1rem solid var(--colors-grey-600);
  outline-offset: 0.2rem;
}
.colors-picker__choice:checked::before {
  content: "\f00c";
}

/*
* Question circle
*/
.question-circle {
  display: inline-block;
  color: var(--colors-grey-600);
  font-size: 1.3rem;
  line-height: 1;
  height: 1em;
  transition: color 150ms ease-in-out;
}
.question-circle:hover {
  color: var(--color-grey-700);
}
.question-circle > .fa-question-circle {
  display: inline;
}

.h-popup {
  position: fixed;
  z-index: 50;
  bottom: var(--spacing-05);
  left: var(--spacing-05);
  padding: var(--spacing-06);
  background-color: white;
  max-width: 42rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--colors-grey-300);
  box-shadow: 0 0 0.4rem var(--colors-secondary-100), 0 0.4rem 1.6rem rgba(29, 38, 46, 0.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.h-popup__header {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: var(--spacing-02);
}

.h-popup__body {
  margin-bottom: var(--spacing-04);
}

.h-popup__footer {
  display: flex;
  justify-content: space-between;
}

.h-switch {
  --h-switch-width: 3.6rem;
  --h-switch-height: 2rem;
  --h-switch-translation: 2rem;
  --h-switch-thumb-margin: .4rem;
  --h-switch-background-checked: var(--colors-secondary-600);
  appearance: none;
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  width: var(--h-switch-width);
  min-width: var(--h-switch-width);
  height: var(--h-switch-height);
  border-radius: calc(var(--h-switch-height) / 2);
  background-color: var(--colors-grey-400);
  cursor: pointer;
  transition: background-color 150ms ease-in;
}
.h-switch::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: calc(var(--h-switch-height) - 2 * var(--h-switch-thumb-margin));
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transform: translateX(var(--h-switch-thumb-margin));
  transition: transform 200ms ease-in-out;
}
.h-switch:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--colors-secondary-700);
}
.h-switch[type=checkbox]:focus {
  outline: none;
}
.h-switch:checked, .h-switch.is-checked {
  background-color: var(--h-switch-background-checked);
}
.h-switch:checked::before, .h-switch.is-checked::before {
  transform: translateX(var(--h-switch-translation));
}
.h-switch:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.h-switch--lg {
  --h-switch-width: 4.4rem;
  --h-switch-height: 2.4rem;
  --h-switch-translation: 2.4rem;
}

.h-switch--sm {
  --h-switch-width: 3rem;
  --h-switch-height: 1.6rem;
  --h-switch-translation: 1.6rem;
  --h-switch-thumb-margin: .2rem;
}

.h-switch--xs {
  --h-switch-width: 2.2rem;
  --h-switch-height: 1.2rem;
  --h-switch-translation: 1.2rem;
  --h-switch-thumb-margin: .2rem;
}

.dashboard-main__filters {
  overflow: visible;
}

.collapsable-filters__header {
  flex-shrink: 0;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-04) var(--spacing-02) var(--spacing-04) var(--spacing-04);
  border-bottom: 0.1rem solid var(--colors-grey-300);
  z-index: 6;
  position: sticky;
  top: 0;
}

.collapsable-filters__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding-block: var(--spacing-01);
}

.collapsable-filters__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.collapsable-filters__default {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: var(--spacing-02);
}

.collapsable-filter {
  border-bottom: 0.1rem solid var(--colors-grey-300);
}
.collapsable-filter.disabled {
  background-color: var(--colors-grey-100);
  color: var(--colors-grey-500);
  order: 2;
}
.collapsable-filter.disabled .collapsable-filter__title {
  color: var(--colors-grey-600);
}
.collapsable-filter:has(.collapsable-filter__header:hover) {
  background-color: var(--colors-grey-50);
}

.collapsable-filter__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-03) var(--spacing-04) var(--spacing-03);
}
.collapsable-filter__header:has(.collapsable-filter__toggle[aria-expanded=false])[data-count]::after {
  content: attr(data-count);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--colors-secondary-600);
  border: 0.1rem solid var(--colors-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  border-radius: 50%;
}

.collapsable-filter__hint {
  position: relative;
  font-size: 1.1rem;
  z-index: 5;
  color: var(--colors-grey-500);
}

.collapsable-filter__icon {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-500);
  text-align: center;
  width: 1.6rem;
}

.collapsable-filter__title {
  flex: 1;
  display: flex;
  gap: var(--spacing-02);
  align-items: center;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--colors-grey-900);
}

.collapsable-filter__clear {
  position: relative;
  z-index: 5;
  display: none;
}

.collapsable-filter__header:has(.collapsable-filter__toggle[aria-expanded=true])[data-count] .collapsable-filter__clear {
  display: flex;
}

.collapsable-filter__toggle {
  order: 10;
  color: var(--colors-grey-600);
}
.collapsable-filter__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
}

.collapsable-filter__content {
  padding: 0 var(--spacing-04) var(--spacing-04);
}

.company-filter-entry {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  padding: var(--spacing-02) var(--spacing-02) var(--spacing-02) var(--spacing-03);
  align-items: center;
  border-radius: 0.4rem;
  background-color: var(--colors-grey-100);
}

.company-filter-entry__logo {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.2rem;
}

.company-filter-entry__content {
  flex: 1;
  min-width: 0;
}

.company-filter-entry__heading {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: var(--spacing-01);
  align-items: baseline;
}
.company-filter-entry__heading .company-filter-entry__name {
  flex: initial;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.company-filter-entry__heading .company-filter-entry__url {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.company-filter-entry__name {
  flex: 1;
  height: auto;
  font-size: 1.3rem;
  line-height: 1.2307692308;
}

.company-filter-entry__url {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-600);
}

.company-filter-entry-metas {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
  min-width: 0;
}

.company-filter-entry-metas__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.5384615385;
  min-width: 0;
}

.company-filter-entry-metas__icon {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-500);
}

.company-filter-entry-metas__label {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.company-filter-entry--md {
  padding: var(--spacing-02);
  gap: var(--spacing-03);
}
.company-filter-entry--md .company-filter-entry__name {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
.company-filter-entry--md .company-filter-entry__logo {
  width: 4rem;
  height: 4rem;
}

.discover .autocomplete-count {
  display: none;
}

.lookup-searches {
  max-width: 48rem;
  margin: 0 auto;
}

.lookup-saved-search {
  position: relative;
  padding: var(--spacing-03) var(--spacing-04);
  margin-bottom: var(--spacing-02);
  border: 0.1rem solid var(--colors-grey-300);
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  border-radius: 0.4rem;
  transition: background-color 200ms ease-in, box-shadow 50ms ease-in;
}
.lookup-saved-search:hover, .lookup-saved-search:focus-within {
  background-color: var(--colors-grey-50);
}
.lookup-saved-search:has(button:active) {
  box-shadow: none;
}

.lookup-saved-search {
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.lookup-saved-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  border: 0.1rem solid var(--colors-warning-300);
  background-color: var(--colors-warning-100);
  color: var(--colors-warning-500);
}

.lookup-saved-search__name {
  text-align: left;
  flex: 1;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.lookup-saved-search__action {
  position: relative;
  z-index: 5;
}

.companies-table__company {
  width: 100%;
}

.companies-table + .ds-upgrade {
  margin-left: calc(var(--spacing-03) * -1);
  margin-right: calc(var(--spacing-03) * -1);
}

.ai-assistant__title {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--colors-grey-900);
  font-weight: 500;
}

.lookup-ai-prompt {
  max-width: 60rem;
  margin: 0 auto;
}

.lookup-ai-assistant {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-02);
  background-color: var(--colors-secondary-100);
  border-bottom: 0.1rem solid var(--colors-grey-300);
  padding: var(--spacing-04);
}

.lookup-ai-assistant__input {
  resize: none;
  height: auto;
  min-height: 4rem;
}

.lookup-ai-assistant__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h-table {
  --h-table-sticky-header-top: 0;
  --h-table-width: max-content;
  position: relative;
  width: 100%;
  margin: var(--spacing-06) 0 var(--spacing-04);
}
.h-table table {
  overflow: auto;
  width: var(--h-table-width);
  min-width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  font-size: 1.3rem;
  line-height: 1.8461538462;
  color: var(--colors-grey-900);
}
.h-table td,
.h-table th {
  background-color: var(--colors-white);
  padding: var(--spacing-03) var(--spacing-02);
  border-bottom: 0.5px solid var(--colors-grey-300);
  line-height: 1.5;
  transition: background-color 150ms ease-in;
}
.h-table td:first-child,
.h-table th:first-child {
  padding-left: var(--spacing-04);
}
.h-table td:last-child,
.h-table th:last-child {
  padding-right: var(--spacing-04);
}
.h-table thead th {
  padding: var(--spacing-02);
  line-height: 1.8461538462;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--colors-grey-700);
  background-color: var(--colors-grey-100);
  border-bottom: 1px solid var(--colors-grey-300);
  text-transform: none;
}
.h-table tr:has(.h-table__checkbox :checked) td, .h-table tr.selected td {
  background-color: var(--colors-secondary-100);
}
.h-table .h-table__subrow td {
  background-color: var(--colors-grey-100);
}
.h-table .h-table__heading {
  position: sticky;
  top: var(--h-table-sticky-header-top);
  z-index: 1;
}
.h-table:has(.h-table__footer) tr:last-child td {
  border-bottom: 0;
}
.h-table:not(.h-table--full) thead th {
  border-bottom: 0.1rem solid var(--colors-grey-300);
  border-top: 0.1rem solid var(--colors-grey-300);
}
.h-table:not(.h-table--full) thead th:first-child {
  border-left: 0.1rem solid var(--colors-grey-300);
  border-radius: 0.4rem 0 0 0.4rem;
}
.h-table:not(.h-table--full) thead th:last-child {
  border-right: 0.1rem solid var(--colors-grey-300);
  border-radius: 0 0.4rem 0.4rem 0;
}
.h-table .full-width-table {
  margin: 0;
}

.h-table__checkbox {
  width: 3.6rem;
}
.h-table__checkbox .h-checkbox {
  display: flex;
}

.h-table__check-all {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-table__check-all::before {
  content: "\f0dd";
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  line-height: 1rem;
  color: var(--colors-grey-600);
  pointer-events: none;
  opacity: 0;
  transition: opacity 100ms ease-in;
}
.h-table__check-all:hover::before {
  opacity: 1;
}

.h-table__toggle {
  padding: var(--spacing-02) !important;
  width: 4rem;
}

.h-table__actions {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-02);
  max-inline-size: max-content;
}

.h-table__sticky-cell {
  position: sticky;
  left: 0;
  transition: background-color 100ms ease-in, box-shadow 150ms ease-in !important;
}
.h-table__scrollable[data-horizontal-scroll-position=scrolling] .h-table__sticky-cell, .h-table__scrollable[data-horizontal-scroll-position=end] .h-table__sticky-cell {
  box-shadow: 1px 0 0 var(--colors-grey-200), 8px 0 8px -16px rgba(0, 0, 0, 0.06), 3px 0 6px -2px rgba(0, 0, 0, 0.08);
}

.h-table__row-link td {
  transition: background-color 100ms ease;
}
.h-table__row-link:focus-within, .h-table__row-link:hover {
  cursor: pointer;
}
.h-table__row-link:focus-within td, .h-table__row-link:hover td {
  background-color: var(--colors-grey-100);
  outline: none;
}
.h-table__row-link:hover .h-table__actions-cell {
  position: sticky;
  right: 0;
  z-index: 1;
  visibility: visible;
}

.h-table__caret-link {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--colors-grey-500);
}

.h-table__sorting {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-02);
  color: var(--colors-grey-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease-in;
}
.h-table__sorting .fas {
  font-size: 1rem;
  color: var(--colors-grey-500);
  transition: color 150ms ease-in;
}
.h-table__sorting:hover, .h-table__sorting:focus {
  color: var(--colors-grey-900);
  text-decoration: none;
}
.h-table__sorting:hover .fas, .h-table__sorting:focus .fas {
  color: var(--colors-grey-600);
}

.h-table__subrow td {
  background-color: var(--colors-grey-100);
}

.table__empty-state {
  text-align: center;
  font-weight: 500;
  font-weight: 1.5rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-600) !important;
  padding: var(--spacing-04) !important;
}

.h-table__footer {
  padding: var(--spacing-03) var(--spacing-04);
  border-top: 0.1rem solid var(--colors-grey-300);
  font-size: 1.3rem;
}
.h-table__footer:empty, .h-table__footer:blank, .h-table__footer:-moz-only-whitespace {
  display: none;
}
.h-table__footer .box-pagination {
  margin: 0;
}

.h-table-lead {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-02);
}
.h-table-lead .profile-pic {
  align-self: center;
}

.h-table-lead__primary {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.8461538462;
}

.h-table-lead__secondary {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: var(--colors-grey-600);
}

.h-table-company {
  display: flex;
  align-items: center;
  gap: var(--spacing-03);
  position: relative;
}

.h-table-company__logo {
  width: 4rem;
  height: 4rem;
  border-radius: 0.2rem;
  object-fit: contain;
  position: relative;
}

.h-table-company::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 0.2rem;
  border: 0.1rem solid rgba(var(--colors-grey-800--rgb), 0.1);
  pointer-events: none;
  z-index: 1;
}

.h-table-bulk-actions {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 4rem;
  gap: var(--spacing-02);
  margin: 0;
  padding: 0 var(--spacing-04);
  background-color: var(--colors-secondary-700);
  color: var(--colors-white);
  opacity: 0;
  z-index: 10;
  visibility: hidden;
  transition: opacity 250ms ease-in;
}
.h-table-bulk-actions.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}
.h-table-bulk-actions .h-button {
  --h-button-font-size: 1.3rem;
  --h-button-line-height: calc(16/13);
  --h-button-color: var(--colors-white);
  --h-button-border-color: transparent;
  --h-button-background: transparent;
  --h-button-icon-color: currentColor;
  --h-button-color-hover: var(--colors-white);
  --h-button-background-hover: rgba(255, 255, 255, .1);
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-color-active: var(--colors-white);
  --h-button-background-active: rgba(255, 255, 255, .1);
  --h-button-box-shadow-active: none;
  --h-cost-indicator-border-color: rgb(from var(--h-button-color) r g b / 0.3);
}
.h-table-bulk-actions .h-button--ghost {
  --h-button-font-size: 1.3rem;
  --h-button-line-height: calc(16/13);
  --h-button-color: var(--colors-white);
  --h-button-background: transparent;
  --h-button-color-hover: var(--colors-white);
  --h-button-background-hover: rgba(255, 255, 255, .1);
  --h-button-border-color-hover: transparent;
  --h-button-box-shadow-hover: none;
  --h-button-color-active: var(--colors-white);
  --h-button-background-active: rgba(255, 255, 255, .1);
  --h-button-box-shadow-active: none;
}

.h-table-bulks-actions__separator {
  height: var(--spacing-06);
  width: 0.1rem;
  margin: 0 var(--spacing-01);
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
}

.h-table-company__infos {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-005);
}

.h-table-company__heading {
  display: flex;
  gap: var(--spacing-01);
  width: max-content;
  align-items: baseline;
}

.h-table-company__name {
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--colors-grey-900);
}

.h-table-company__domain {
  font-size: 1.2rem;
  color: var(--colors-grey-700);
  margin-left: var(--spacing-005);
}

.h-table-company__metas {
  flex-wrap: wrap;
}

.h-table-company__metas,
.h-table-company__meta {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-02);
}

.h-table-company__meta {
  gap: var(--spacing-01);
  font-size: 1.3rem;
  line-height: 1.5384615385;
}

.h-table-company__meta-icon {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: var(--colors-grey-500);
}

.h-table-pagination {
  display: flex;
  align-items: center;
}

.h-table-pagination__end {
  margin-left: auto;
}

.h-table--full {
  width: calc(100% + var(--spacing-06) * 2);
  margin-left: calc(var(--spacing-06) * -1);
  margin-right: calc(var(--spacing-06) * -1);
}

.h-table__scrollable {
  overflow-x: auto;
}
.h-table__scrollable table {
  padding-bottom: var(--spacing-03);
}
.h-table__scrollable th,
.h-table__scrollable td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h-table--fixed {
  --h-table-width: 100%;
}

.h-table--bordered {
  border: 0.1rem solid var(--colors-grey-300);
  border-radius: 0.4rem;
}
.h-table--bordered tr:first-child td:first-child {
  border-radius: 0.4rem 0 0 0;
}
.h-table--bordered tr:first-child td:last-child {
  border-radius: 0 0.4rem 0 0;
}
.h-table--bordered tr:last-child td {
  border-bottom: 0;
}

.tam-hero {
  padding-bottom: calc(var(--spacing-base) * 44);
}

.tam-calculator-demo {
  background: #fff;
  margin: calc(var(--spacing-30) * -1) auto 0;
}

.tam-calculator {
  background: #fff;
  border: 1px solid var(--colors-grey-300);
  border-bottom: 0;
  padding: var(--spacing-02);
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.05), 0px 20px 25px -5px rgba(0, 0, 0, 0.05), inset 0px 0px 0px 4px #F7F9FA;
  border-radius: 0.4rem;
  position: relative;
  overflow: hidden;
}

.tam-calculator__layout {
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: var(--spacing-04);
  height: 75vh;
  max-height: 90rem;
  min-height: 60rem;
}
@media (max-width: 1024px) {
  .tam-calculator__layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
}

.tam-calculator__sidebar {
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  .tam-calculator__sidebar {
    border-right: none;
    border-bottom: 0.1rem solid var(--colors-grey-300);
    overflow-y: visible;
  }
}

.tam-calculator__main {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}
@media (max-width: 1024px) {
  .tam-calculator__main {
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .tam-calculator__sidebar,
  .tam-calculator__main {
    padding: var(--spacing-04);
  }
}
.tam-calculator-skeleton {
  animation: pulse 1.5s ease-in-out infinite;
}
.tam-calculator-skeleton .tam-calculator {
  min-height: 60rem;
}

.skeleton-box {
  background-color: var(--colors-grey-200);
  border-radius: var(--border-radius-lg);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}