:root {
  --paper-elevation-0: var(--grey-100);
  --text-secondary: var(--grey-900);
  --text-primary: #1c1d1e;
  --primary-dark: #1b224a;
  --gradient-blue: #244d8c;
  --navy-blue: #1e3a68;
  --white: white;
  --grey-100: #f9fafb;
  --grey-700: #7687a2;
  --primary-main: #0e56a4;
  --primary-contrast: var(--paper-elevation-0);
  --light-blue: #d2dff1;
  --paper-elevation-1: color-mix(in hsl, var(--primary-main) 5%, white 0%);
  --grey-500: #b7c0ce;
  --primary-light: #f2f6fb;
  --grey-300: #edeef2;
  --iron10: #edeef21a;
  --success-main: #60b548;
  --warning-main: #ff9f10;
  --error-main: #fa5f61;
  --grey-900: #475670;
  --secondary-main: var(--grey-900);
  --secondary-dark: #273141;
  --secondary-contrast: var(--paper-elevation-0);
}

body {
  background-color: var(--paper-elevation-0);
  color: var(--text-secondary);
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

h1 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 600;
  line-height: 140%;
}

h2 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 600;
  line-height: 140%;
}

h3 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}

h4 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
}

h5 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

h6 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

.wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.wrapper.wrapper--navbar {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.wrapper.wrapper--fold {
  flex: auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.wrapper.wrapper--legal {
  max-width: 880px;
}

.fold {
  flex-direction: column;
  min-height: 100vh;
  padding-top: 85px;
  display: flex;
}

.fold_bg {
  background-image: radial-gradient(
    circle farthest-corner at 50% 50%,
    var(--gradient-blue),
    var(--navy-blue)
  );
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

.fold_cards {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  display: grid;
}

.fold-card {
  background-color: var(--white);
  color: var(--navy-blue);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  position: relative;
}

.fold_content {
  margin-right: auto;
}

.fold_title {
  margin-right: 10px;
  font-size: 38px;
  line-height: 140%;
}

.navbar {
  border-bottom: 1px solid var(--grey-100);
  background-color: var(--grey-100);
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
}

.navmenu {
  align-items: center;
  margin-left: auto;
  display: none;
}

.brand {
  order: -1;
  height: 56px;
}

.brand.w--current {
  padding-left: 0;
}

.brand_logo {
  z-index: 100;
  width: 100%;
  max-width: 160px;
  height: 100%;
  position: relative;
}

.navlink {
  color: var(--text-secondary);
  margin-right: 40px;
  padding: 0;
  transition: color 0.2s;
}

.navlink:hover,
.navlink.w--current {
  color: var(--primary-dark);
}

.navlink.mobile {
  display: none;
}

.fold-card_content {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  display: flex;
}

.big-text {
  font-size: 72px;
  line-height: 90px;
}

.medium-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.small-text {
  color: var(--grey-700);
  letter-spacing: 0.02em;
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}

.full-text {
  width: 100%;
}

.fold_card {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.button {
  background-color: var(--primary-main);
  color: var(--primary-contrast);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.button:hover {
  background-color: var(--navy-blue);
}

.button.button--big {
  padding: 12px 32px;
  font-size: 16px;
  line-height: 150%;
}

.button.button--big.button--ghost {
  color: var(--primary-main);
  background-color: #0000;
  padding-left: 32px;
  padding-right: 32px;
}

.button.button--big.button--ghost:hover {
  background-color: var(--light-blue);
}

.button.button--big.mobile {
  display: none;
}

.button.button--ghost {
  border: 1px solid var(--primary-main);
  color: var(--primary-main);
  background-color: #fff0;
  transition-duration: 0.3s;
}

.button.button--ghost:hover {
  background-color: var(--paper-elevation-1);
}

.fold-list {
  color: var(--navy-blue);
  max-width: 640px;
  margin-bottom: 24px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.featured-text {
  color: var(--primary-main);
  font-size: 18px;
  line-height: 27px;
}

.fold_actions {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  order: 1;
  align-items: flex-start;
  display: flex;
}

.fold_second-button {
  margin-left: 20px;
}

.button_icon {
  align-items: center;
  margin-top: 2px;
  margin-left: 12px;
  display: flex;
}

.button--big {
  padding-top: 16px;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
  font-size: 18px;
  line-height: 140%;
}

.section.section--vendor-negotiations {
  background-image: url('../images/section-gradient-bg.svg'),
    radial-gradient(circle farthest-corner at 50% 50%, var(--gradient-blue), var(--navy-blue));
  color: var(--white);
  background-position:
    100% 100%,
    0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
  font-size: 16px;
  line-height: 150%;
  position: relative;
}

.section_second-title {
  color: var(--white);
  margin-top: 24px;
  font-size: 24px;
}

.white {
  color: var(--white);
}

.section_content {
  max-width: 650px;
}

.footer {
  background-color: var(--primary-light);
  padding-top: 60px;
  padding-bottom: 80px;
}

.bold-text {
  font-size: 48px;
  line-height: 67px;
}

.section_description {
  max-width: 830px;
}

.footer_content {
  font-size: 14px;
  line-height: 21px;
}

.footer_content p {
  margin-top: 24px;
  margin-bottom: 24px;
}

.footer_content strong {
  letter-spacing: 0.02em;
}

.footer_content ol {
  margin-top: -12px;
  margin-bottom: -18px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 18px;
}

.footer_content li {
  margin-bottom: 6px;
}

.footer_content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer_content a:hover {
  color: var(--text-primary);
}

.footer_content h2,
.footer_content h1,
.footer_content h3,
.footer_content h4,
.footer_content h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.footer_content.footer_content--mobile {
  display: none;
}

.tabs {
  margin-top: 60px;
}

.tabs_link {
  color: var(--navy-blue);
  background-color: #0000;
  border: 2px solid #0000;
  border-radius: 40px;
  margin-right: 24px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: color 0.2s;
}

.tabs_link:hover {
  color: var(--primary-main);
}

.tabs_link.w--current {
  border-color: var(--primary-main);
  color: var(--primary-main);
  background-color: #0000;
}

.tabs_info {
  flex-direction: column;
  align-items: flex-start;
  max-width: 278px;
  margin-bottom: 80px;
  display: flex;
}

.tabs_image {
  width: 792px;
  max-width: 100%;
}

.tabs_img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.tabs_menu {
  margin-bottom: 80px;
}

.tabs_container {
  justify-content: space-between;
  align-items: flex-start;
  min-height: 610px;
  display: flex;
}

.tabs_title {
  font-size: 24px;
}

.tab_description {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 150%;
}

.calculator_title {
  color: var(--grey-500);
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 150%;
}

.rewards-calculator_label {
  max-width: 536px;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}

.rewards-calculator {
  background-color: var(--navy-blue);
  color: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.header {
  z-index: 10;
  background-color: var(--paper-elevation-0);
  --paper-elevation-0: var(--grey-100);
  --text-secondary: var(--grey-900);
  --text-primary: #1c1d1e;
  --primary-dark: #1b224a;
  --gradient-blue: #244d8c;
  --navy-blue: #1e3a68;
  --white: white;
  --grey-100: #f9fafb;
  --grey-700: #7687a2;
  --primary-main: #0e56a4;
  --primary-contrast: var(--paper-elevation-0);
  --light-blue: #d2dff1;
  --paper-elevation-1: color-mix(in hsl, var(--primary-main) 5%, white 0%);
  --grey-500: #b7c0ce;
  --primary-light: #f2f6fb;
  --grey-300: #edeef2;
  --iron10: #edeef21a;
  --success-main: #60b548;
  --warning-main: #ff9f10;
  --error-main: #fa5f61;
  --grey-900: #475670;
  --secondary-main: var(--grey-900);
  --secondary-dark: #273141;
  --secondary-contrast: var(--paper-elevation-0);
  position: fixed;
  inset: 0% 0% auto;
}

.header.header--terms {
  position: static;
}

.table_card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 116px 98px 62px 62px 62px;
  grid-template-columns: 200px 200px;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_card.table_card--desktop {
  grid-template-rows: 116px 98px 62px 62px 62px;
  grid-template-columns: 200px;
}

.table_text {
  box-shadow: 0 -1px 0 0 var(--grey-300);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 32px;
}

.table_text.table_text--bottom {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.table_text.table_text--featured {
  background-color: var(--primary-main);
  box-shadow: 0 -1px 0 0 var(--iron10);
  color: var(--white);
  padding-right: 8px;
}

.table {
  color: var(--grey-700);
  justify-content: center;
  margin-top: 60px;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  position: relative;
}

.table_card-title {
  color: var(--text-secondary);
  margin-bottom: 0;
  padding: 10px 20px 20px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.table_card-title.table_card-title--featured {
  background-color: var(--primary-main);
  color: var(--white);
}

.table_title {
  box-shadow: 0 -1px 0 0 var(--grey-300);
  color: var(--grey-700);
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 80px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.table_title.table_title--top {
  box-shadow: none;
}

.table_image {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 134px;
  padding: 20px 20px 10px;
}

.table_image.table_image--featured {
  background-color: var(--primary-main);
}

.table_img {
  border-radius: 20px;
}

.table_main-title {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.visually-hidden-code,
.mobile-tabs {
  display: none;
}

.footer_logos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 60px;
  display: grid;
}

.sup-link {
  color: var(--grey-700);
  font-size: 10px;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  bottom: 4px;
  left: 2px;
}

.sup-link:hover {
  color: var(--primary-main);
}

.terms-link {
  color: var(--navy-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.terms-link:hover {
  color: var(--primary-main);
}

.menu {
  align-items: center;
  display: flex;
}

.fold_subtitle {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 600;
}

.calculator_footer {
  background-color: var(--primary-main);
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
  padding: 20px 100px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
}

.calculator_content {
  padding: 80px 100px;
}

.rewards-calculator_result {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 44px;
  line-height: 62px;
  display: flex;
}

.rewards-calculator_total {
  flex: none;
  align-items: center;
  font-size: 22px;
  line-height: 33px;
  display: flex;
}

.rewards-calculator_text {
  color: var(--grey-500);
  margin-left: 20px;
}

.rewards-calculator_form {
  background-color: #0000;
}

.rewards-calculator_form-block {
  margin-bottom: 0;
}

.calculator_slider-range-min {
  background-color: var(--primary-dark);
  border-radius: 12px;
  width: 100%;
  height: 8px;
  margin-right: 68px;
  position: relative;
}

.ui-slider-handle {
  z-index: 2;
  box-shadow: 0 0 12px 0 var(--primary-dark);
  cursor: grab;
  background-color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  inset: -15px auto auto 0%;
  transform: translate(-50%);
}

.ui-slider-range {
  z-index: 1;
  background-color: var(--primary-main);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.calculator_row {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.calculator_default-value {
  background-color: var(--navy-blue);
  text-align: center;
  border-radius: 20px;
  width: 254px;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  display: none;
  position: absolute;
  right: 1px;
}

.rewards-calculator_points {
  margin-right: 4px;
}

.legal_title {
  color: var(--text-primary);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  font-size: 32px;
}

.legal-card {
  background-color: var(--white);
  color: var(--text-primary);
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 32px;
  box-shadow: 0 0 12px #7687a21a;
}

.legal-card_title {
  color: var(--text-primary);
  margin-bottom: 28px;
  font-size: 20px;
}

.legal-item {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 12px;
  font-size: 14px;
  line-height: 21px;
  display: flex;
}

.legal-item_title {
  border-right: 1px solid var(--grey-300);
  flex: none;
  align-items: center;
  width: 50%;
  margin-bottom: 0;
  margin-right: 24px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  display: flex;
}

.legal-card_subtitle {
  background-color: var(--primary-light);
  border-radius: 10px;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 8px 8px 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.legal-content {
  color: var(--text-secondary);
}

.legal-content p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--primary-dark);
}

.legal-content h3 {
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.legal-content ol {
  margin-top: 16px;
  margin-bottom: 16px;
}

.legal-content h4 {
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 18px;
}

.legal-content ul {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 30px;
}

.legal-content h5 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 16px;
}

.legal-content li {
  margin-bottom: 16px;
}

.legal-item_bold {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}

.fold-list_item {
  margin-bottom: 6px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.main {
  position: static;
}

.text-block {
  text-align: center;
  position: static;
}

.legal-item_title-2 {
  border-right: 1px solid #edeef2;
  flex: none;
  align-items: center;
  width: 50%;
  margin-bottom: 0;
  margin-right: 24px;
  padding-right: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  display: flex;
}

.legal-item-2 {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 12px;
  font-size: 14px;
  line-height: 21px;
  display: flex;
}

.legal-card_title-4 {
  color: #1c1d1e;
  margin-bottom: 28px;
  font-size: 20px;
}

.navlinks-2 {
  margin-right: 40px;
}

.navlink-2 {
  color: #475670;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
  transition: color 0.2s;
}

.navlink-2:hover,
.navlink-2.w--current {
  color: #1b224a;
}

.navlink-2.mobile {
  display: none;
}

.big-text-2 {
  font-size: 56px;
  line-height: 90px;
}

.medium-text-2 {
  align-self: flex-start;
  padding-top: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.brand-3 {
  order: -1;
  height: 48px;
}

.brand-3.w--current {
  padding-left: 0;
}

.button-5 {
  color: #fff;
  background-color: #004c84;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.button-5:hover {
  background-color: #1e3a68;
}

.button-5.button--big {
  padding: 12px 32px;
  font-size: 16px;
  line-height: 150%;
}

.button-5.button--big.button--ghost {
  color: #1e3a68;
  background-color: #0000;
  padding-left: 32px;
  padding-right: 32px;
}

.button-5.button--big.button--ghost:hover {
  background-color: #d2dff1;
}

.navmenu-3 {
  align-items: center;
  display: none;
}

.wrapper-4 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.wrapper-4.wrapper--navbar {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-link_button {
  background-color: var(--primary-main);
  color: var(--primary-contrast);
  border-radius: 8px;
  flex: 0 auto;
  justify-content: center;
  width: 160px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.nav-link_button:hover {
  background-color: var(--primary-dark);
}

.nav-link_button.button--big {
  border: 1px solid var(--primary-main);
}

.nav-link_button.button--big:hover {
  border-color: var(--primary-dark);
}

.nav-link_button.button--big.mobile {
  display: none;
}

.nav-link_button.button--big.mobile-nav {
  width: 100%;
}

.nav-link_button.button--ghost {
  border: 1px solid var(--primary-main);
  background-color: var(--primary-contrast);
  color: var(--primary-main);
}

.nav-link_button.button--ghost:hover {
  background-color: var(--paper-elevation-1);
}

.nav-link_button.button--ghost.mobile_nav {
  width: 100%;
}

.fold_actions-3 {
  order: 1;
  display: flex;
}

.footer_copyright {
  text-align: center;
  padding-top: 40px;
  font-size: 14px;
  line-height: 21px;
}

.footer_copyright ol {
  margin-top: -12px;
  margin-bottom: -18px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 18px;
}

.footer_copyright a {
  color: #475670;
  text-decoration: none;
  transition: color 0.2s;
}

.footer_copyright a:hover {
  color: #1c1d1e;
}

.footer_copyright strong {
  letter-spacing: 0.02em;
}

.footer_copyright h1,
.footer_copyright h2,
.footer_copyright h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.footer_copyright li {
  margin-bottom: 6px;
}

.footer_copyright p {
  margin-top: 24px;
  margin-bottom: 24px;
}

.footer_copyright h4,
.footer_copyright h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.wrapper-5 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.wrapper-5.wrapper--legal {
  max-width: 880px;
}

.legal_title-4 {
  color: #1c1d1e;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  font-size: 32px;
}

.legal-card-3 {
  color: #1c1d1e;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 60px;
  padding: 32px;
  box-shadow: 0 0 12px #7687a21a;
}

.legal-card_subtitle-4 {
  background-color: #f2f6fb;
  border-radius: 10px;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 8px 8px 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.dropdown-list {
  background-color: #0000;
  max-width: 1103px;
  margin-top: 60px;
  margin-right: -110%;
}

.dropdown-list.w--open {
  margin-right: -110%;
}

.title_nav {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.title_nav.dropdown-bottom-button-title {
  vertical-align: middle;
  margin-bottom: 0;
  display: inline-block;
}

.dropdown-icon {
  margin-right: 0;
  position: static;
}

.dropdown-nav {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.dropdown-nav-content-wrapper._2nd-section {
  width: 100%;
  height: 100%;
}

.dropdown-menu {
  justify-content: flex-end;
  display: flex;
}

.dropdown-nav-main-wrapper {
  z-index: 99;
  background-color: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 1103px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 14px #4a3aff03,
    0 8px 16px #170f4908;
}

.dropdown-menu-text {
  margin-right: 8px;
  font-weight: 700;
}

.right-content-item-title_nav {
  display: inline-block;
}

.image_dropdown.dropdown-button-icon {
  width: 35px;
  height: 35px;
}

.dropdown-bottom-button-arrow {
  opacity: 0;
  filter: brightness(0%) saturate(24%);
  margin-left: 8px;
}

.dropdown-nav-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  align-items: flex-start;
  padding: 70px 50px;
  display: flex;
  box-shadow: 0 4px 12px #7687a266;
}

.dropdown-nav-wrapper.right {
  width: 100%;
  min-width: 436px;
  padding: 40px;
}

.flex-hc {
  align-items: center;
  display: flex;
}

.flex-hc.dropdown-button {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-hc.dropdown-button.mobile {
  flex-flow: column;
}

.image-wrapper {
  margin-right: 18px;
  overflow: hidden;
}

.image-wrapper.dropdown-button-icon {
  background-color: var(--white);
  border-radius: 15px;
  align-self: flex-start;
  margin-right: 8px;
  padding: 14px;
}

.dropdown-nav-link {
  border: 1px solid var(--grey-500);
  color: var(--primary-main);
  border-radius: 10px;
  width: 100%;
  padding: 8px;
  text-decoration: none;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.dropdown-nav-link:hover {
  background-color: var(--paper-elevation-1);
}

.dropdown-nav-link.w--current {
  color: #4a3aff;
}

.dropdown-nav-link.mobile {
  display: none;
}

.nav-link_dropdown {
  border: 1px solid var(--primary-main);
  color: var(--primary-main);
  border-radius: 8px;
  align-items: center;
  padding: 12px 32px;
  transition:
    background-color 0.3s,
    color 0.3s;
  display: flex;
  position: static;
}

.nav-link_dropdown:hover {
  background-color: var(--paper-elevation-1);
  color: var(--primary-main);
}

.nav-link_dropdown.w--open {
  background-color: var(--paper-elevation-1);
}

.navlinks-new {
  margin-right: 40px;
}

.subtitle_nav {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.dropdown-maincta {
  background-color: var(--primary-main);
  color: var(--primary-contrast);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
}

.dropdown-maincta:hover {
  background-color: var(--navy-blue);
}

.dropdown-maincta.button--big {
  padding: 12px 32px;
  font-size: 16px;
  line-height: 150%;
}

.link {
  color: var(--primary-main);
  text-align: left;
}

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

.link.no_underline {
  text-decoration: none;
}

.link.no_underline.small {
  font-size: 14px;
}

.link.no_underline.small:hover {
  text-decoration: underline;
}

.flex-hl {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.setup_accesscta {
  order: 1;
  padding-left: 8px;
}

.setup_accesscta.hide_mobile {
  padding-left: 13px;
}

.stack-v8px {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.stack-v8px.flex-last {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  order: 1;
}

.animated-arrow {
  opacity: 0;
  margin-left: -16px;
  position: relative;
  top: 3px;
}

@media screen and (max-width: 991px) {
  .fold_cards {
    grid-template-columns: 1fr;
  }

  .navmenu {
    background-color: var(--grey-100);
    height: 100vh;
    margin-left: 0;
    padding: 132px 40px 60px;
    inset: 0%;
  }

  .menu-button {
    flex: none;
    margin-left: auto;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .brand.w--current {
    z-index: 1;
  }

  .navlink {
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 33px;
  }

  .button.button--big.button--ghost.desktop {
    display: none;
  }

  .section.section--vendor-negotiations {
    margin-top: 0;
  }

  .section.section--calculator {
    padding-top: 120px;
    display: none;
  }

  .section.section--compare-card {
    display: none;
  }

  .footer {
    padding-bottom: 60px;
  }

  .footer_content.footer_content--mobile {
    display: block;
  }

  .footer_content.footer_content--desktop {
    display: none;
  }

  .tabs_link {
    margin-bottom: 24px;
  }

  .tabs_info,
  .tabs_img {
    margin-bottom: 0;
  }

  .tabs_menu {
    margin-bottom: 56px;
  }

  .tabs_container {
    min-height: auto;
  }

  .table_card {
    grid-template-columns: 1fr 200px;
    width: 100%;
  }

  .table_card.table_card--desktop,
  .menu-button_close {
    display: none;
  }

  .menu {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
  }

  .calculator_footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .rewards-calculator_result {
    margin-left: 0;
  }

  .rewards-calculator_total {
    margin-top: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .rewards-calculator_text {
    flex: none;
  }

  .navlinks-2 {
    margin-right: 0;
  }

  .navlink-2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 33px;
  }

  .navlink-2.mobile {
    display: block;
  }

  .brand-3.w--current {
    z-index: 1;
  }

  .button-5.button--big.button--ghost {
    align-self: center;
  }

  .button-5.button--big.button--ghost.desktop {
    display: none;
  }

  .navmenu-3 {
    background-color: #f9fafb;
    height: 100vh;
    margin-left: 0;
    padding: 132px 40px 60px;
    inset: 0%;
  }

  .nav-link_button.button--big.mobile {
    display: flex;
  }

  .nav-link_button.button--big.fold_second-button {
    align-self: center;
  }

  .dropdown-list.w--open {
    min-width: 300px;
  }

  .dropdown-nav {
    margin-bottom: 0;
  }

  .dropdown-nav-content-wrapper {
    margin-bottom: 40px;
    margin-right: 32px;
  }

  .dropdown-nav-content-wrapper._2nd-section {
    margin-bottom: 0;
    margin-right: 0;
  }

  .image_dropdown.dropdown-button-icon {
    border-radius: 12px;
  }

  .dropdown-nav-wrapper {
    padding: 40px;
  }

  .flex-hc.dropdown-button {
    flex-flow: row;
    margin-bottom: -16px;
  }

  .image-wrapper.dropdown-button-icon {
    border-radius: 12px;
    width: 56px;
  }

  .navlinks-new {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
  }

  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper.wrapper--navbar {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
  }

  .wrapper.wrapper--fold {
    flex-direction: column;
  }

  .fold_content {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .fold_title {
    font-size: 36px;
    line-height: 140%;
  }

  .navmenu {
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .fold_card {
    margin-right: auto;
  }

  .fold_actions {
    justify-content: center;
    align-items: center;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.section--vendor-negotiations {
    padding-bottom: 120px;
  }

  .section.section--calculator {
    display: none;
  }

  .section_second-title {
    margin-top: 40px;
    font-size: 24px;
  }

  .footer {
    padding-bottom: 40px;
  }

  .section_description {
    font-size: 18px;
    line-height: 27px;
  }

  .tabs {
    display: none;
  }

  .tabs_info {
    max-width: none;
    margin-bottom: 40px;
  }

  .tabs_container {
    flex-direction: column;
    margin-top: 60px;
  }

  .rewards-calculator {
    padding: 20px 32px;
  }

  .table {
    margin-top: 40px;
  }

  .mobile-tabs {
    display: block;
  }

  .footer_logos {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .footer_logo {
    object-fit: contain;
    max-height: 30px;
  }

  .legal_title {
    margin-top: 60px;
    margin-bottom: 32px;
    font-size: 20px;
  }

  .legal-card {
    margin-bottom: 32px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
  }

  .legal-card_title {
    font-size: 18px;
  }

  .legal-item {
    border: 1px solid var(--grey-300);
    border-radius: 10px;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 12px;
  }

  .legal-item_title {
    border-bottom: 1px solid var(--grey-300);
    border-right-style: none;
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .legal-item_title-2 {
    border-bottom: 1px solid #edeef2;
    border-right-style: none;
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .legal-item-2 {
    border: 1px solid #edeef2;
    border-radius: 10px;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 12px;
  }

  .legal-card_title-4 {
    font-size: 18px;
  }

  .navmenu-3 {
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .wrapper-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-link_button.button--big.mobile {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 18px;
  }

  .nav-link_button.button--ghost.hide-mobile {
    display: none;
  }

  .fold_actions-3 {
    justify-content: center;
  }

  .wrapper-5 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal_title-4 {
    margin-top: 60px;
    margin-bottom: 32px;
    font-size: 20px;
  }

  .legal-card-3 {
    margin-bottom: 32px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
  }

  .dropdown-list {
    min-width: 300px;
  }

  .dropdown-list.w--open {
    min-width: 350px;
  }

  .dropdown-bottom-button-content {
    margin-bottom: 16px;
  }

  .dropdown-nav,
  .dropdown-nav-content-wrapper {
    margin-bottom: 0;
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown-nav-main-wrapper {
    flex-direction: column;
  }

  .dropdown-menu-text {
    margin-right: 2px;
  }

  .dropdown-nav-item {
    width: 100%;
    min-width: 250px;
    margin-bottom: 32px;
    margin-right: 1.5px;
  }

  .dropdown-nav-content {
    flex-wrap: wrap;
    display: flex;
  }

  .dropdown-nav-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dropdown-nav-wrapper.right {
    width: auto;
  }

  .flex-hc.dropdown-button {
    flex-flow: wrap;
    align-items: center;
  }

  .flex-hc.dropdown-button.mobile {
    justify-content: center;
    align-items: center;
  }

  .image-wrapper.dropdown-button-icon {
    border-radius: 8px;
    width: 48px;
    margin-bottom: 16px;
    margin-right: 12px;
  }

  .dropdown-nav-link.mobile {
    border-style: solid;
    border-width: 1px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
  }

  .navlinks-new {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }

  .divider-container {
    justify-content: center;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
  }

  .divider {
    border-top: 2px solid var(--grey-300);
    width: 33%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-maincta.button--big.mobile_nav {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .setup_accesscta.hide_mobile {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .button.button--big.button--ghost.fold_second-button {
    margin-top: 20px;
    margin-left: 0;
  }

  .button.button--ghost {
    border-color: var(--grey-500);
  }

  .fold_actions {
    flex-direction: column;
  }

  .table_card {
    grid-template-columns: 1fr 1fr;
  }

  .footer_logos {
    grid-template-columns: 1fr;
  }

  .nav-link_button.button--big.fold_second-button {
    margin-left: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-link_button.button--big.fold_second-button.desktop,
  .nav-link_button.button--big.hide-mobile {
    display: none;
  }

  .dropdown-list {
    margin-right: -125%;
  }

  .dropdown-list.w--open {
    min-width: 288px;
  }

  .dropdown-bottom-button-content {
    margin-bottom: 0;
  }

  .dropdown-nav-content-wrapper {
    margin-bottom: 40px;
    margin-right: 24px;
  }

  .dropdown-nav-item {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .dropdown-nav-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flex-hc.dropdown-button {
    flex-flow: column;
    margin-bottom: 0;
  }

  .image-wrapper.dropdown-button-icon {
    width: 60px;
  }

  .navlinks-new {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: stretch;
  }

  .divider-container {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .subtitle_nav {
    text-align: left;
  }
}

#w-node-_84e2cb2a-a3c4-ea00-8ac0-0152a1e14200-75ca8019 {
  justify-self: start;
}

#w-node-_84e2cb2a-a3c4-ea00-8ac0-0152a1e14202-75ca8019 {
  justify-self: center;
}

#w-node-_84e2cb2a-a3c4-ea00-8ac0-0152a1e14204-75ca8019 {
  justify-self: end;
}

#w-node-f22ccc9a-3648-7495-54ba-6535e552ec14-85cfedf6,
#w-node-_41640eb2-051e-5f97-dcd4-a46a0b4686c3-85cfedf6,
#w-node-_879a38e4-7d1d-cd81-a8f6-6cd0d8c7c1a2-85cfedf6,
#w-node-a8226400-fb7f-a067-047e-fcae4271e500-85cfedf6 {
  align-self: center;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b0751d-85cfedf6 {
  justify-self: start;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b07521-85cfedf6 {
  justify-self: center;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b07523-85cfedf6 {
  justify-self: end;
}

#w-node-f22ccc9a-3648-7495-54ba-6535e552ec14-35b7276e,
#w-node-_41640eb2-051e-5f97-dcd4-a46a0b4686c3-35b7276e,
#w-node-_879a38e4-7d1d-cd81-a8f6-6cd0d8c7c1a2-35b7276e,
#w-node-a8226400-fb7f-a067-047e-fcae4271e500-35b7276e {
  align-self: center;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b0751d-35b7276e {
  justify-self: start;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b07521-35b7276e {
  justify-self: center;
}

#w-node-_0afdd3af-050e-11b4-e623-7daa21b07523-35b7276e {
  justify-self: end;
}

@media screen and (max-width: 767px) {
  #w-node-_84e2cb2a-a3c4-ea00-8ac0-0152a1e14200-75ca8019,
  #w-node-_84e2cb2a-a3c4-ea00-8ac0-0152a1e14204-75ca8019,
  #w-node-_0afdd3af-050e-11b4-e623-7daa21b0751d-85cfedf6,
  #w-node-_0afdd3af-050e-11b4-e623-7daa21b07523-85cfedf6,
  #w-node-_0afdd3af-050e-11b4-e623-7daa21b0751d-35b7276e,
  #w-node-_0afdd3af-050e-11b4-e623-7daa21b07523-35b7276e {
    justify-self: center;
  }
}
