:root {
  --black: black;
  --neutral--800: #1f2d54;
  --accent--primary-1: #3d73ff;
  --neutral--100: white;
  --neutral--400: #e6e9f1;
  --general--shadow-01: rgba(20, 20, 43, .09);
  --neutral--500: #aab1c6;
  --neutral--200: #f7f8fc;
  --primary: #004de5;
  --white: white;
  --neutral--300: #eff1f6;
  --neutral--600: #828aa3;
  --button-shadow--white-01: rgba(20, 20, 43, .04);
  --button-shadow--white-03: rgba(20, 20, 43, .1);
  --system--300: #ff5a65;
  --system--red-100: #ffeff0;
  --system--red-400: #dc2b2b;
  --general--shadow-02: rgba(20, 20, 43, .06);
  --secondary--color-3: #f5f8ff;
  --neutral--700: #454e66;
  --menu_1: #696c80;
  --secondary--color-2: #f1f4ff;
  --system--green-100: #def2e6;
  --system--green-300: #14ca74;
  --system--blue-100: #eaf4ff;
  --system--blue-300: #1d88fe;
  --system--orange-100: #fff3e4;
  --system--orange-300: #ff9e2c;
  --system--blue-200: #8fc3ff;
  --system--green-200: #7fdca4;
  --system--orange-200: #ffd19b;
  --border_1: rgba(18, 19, 26, .25);
  --secondary: #ebecf2;
  --red: #e52e2e;
  --table_gray: #686868;
  --secondary--color-1: #c7d6ff;
  --secondary--color-4: #94acf2;
  --secondary--color-5: #fdb52a;
  --system--blue-400: #086cd9;
  --system--green-400: #11845b;
  --system--red-200: #ffbec2;
  --system--orange-400: #d5691b;
  --general--shadow-03: rgba(20, 20, 43, .1);
  --general--shadow-04: rgba(20, 20, 43, .14);
  --general--shadow-05: rgba(20, 20, 43, .16);
  --general--shadow-06: rgba(20, 20, 43, .24);
  --button-shadow--color-01: rgba(74, 58, 255, .26);
  --button-shadow--white-02: rgba(20, 20, 43, .06);
  --button-shadow--color-3: rgba(74, 58, 255, .08);
  --button-shadow--color-2: rgba(74, 58, 255, .08);
  --border_2: #e4e4e4;
  --table_min_width: 7.5rem;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}

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

p {
  margin-bottom: 16px;
}

a {
  color: var(--neutral--800);
  text-decoration: underline;
  transition: color .3s;
}

a:hover {
  color: var(--accent--primary-1);
}

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

li {
  margin-bottom: 8px;
  padding-left: 8px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--neutral--800);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.286em;
  display: block;
}

strong {
  color: var(--neutral--800);
  font-weight: 700;
}

blockquote {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  border: 0 solid #000;
  border-radius: 24px;
  margin-top: 14px;
  margin-bottom: 32px;
  padding: 86px 64px;
  font-size: 18px;
  line-height: 30px;
}

figure {
  margin-top: 24px;
  margin-bottom: 48px;
}

figcaption {
  text-align: center;
  margin-top: 16px;
}

.page-wrapper.full-page-wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2-columns.main-dashboard-grid {
  grid-column-gap: 40px;
  grid-template-columns: 1fr 5.5fr;
  align-items: start;
}

.grid-2-columns.gap-column-48px {
  grid-column-gap: 48px;
}

.card {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 7px 0 var(--general--shadow-01);
  border-radius: 12px;
}

.card.overflow-hidden.border-none {
  border-style: none;
}

.card.search-result-link {
  padding: 32px 24px;
  text-decoration: none;
}

.card.password-protected-card {
  text-align: center;
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 32px;
}

.card._404 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  padding: 104px 40px;
  display: flex;
  position: relative;
}

.card.component-card {
  border-style: dashed;
  border-color: var(--neutral--500);
  padding: 40px;
}

.card.component-card.bg-black-25 {
  background-color: rgba(0, 0, 0, .25);
}

.card.pd-32px---24px {
  padding: 32px 24px;
}

.card.inside-image {
  z-index: 1;
  padding: 22px 16px;
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
}

.card.pd-16px {
  padding: 16px;
}

.card.pd-24px {
  padding: 24px;
}

.card.amount-over-graph {
  z-index: 1;
  padding: 28px 20px 56px;
  position: relative;
}

.card.pd-22px---18px {
  padding: 22px 18px;
}

.card.pd-24px---18px---28px {
  padding: 24px 18px 28px;
}

.card.pd-24px---18px {
  padding: 24px 18px;
}

.card.pd-32px---18px {
  padding: 32px 18px;
}

.card.image-right-inside {
  z-index: 1;
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  border-style: none;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 90px 64px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.card.pd-32px---44px {
  padding: 32px 44px;
}

.card.header-dropdown-card {
  grid-column-gap: 48px;
  align-items: flex-start;
  padding: 32px 24px;
  display: flex;
}

.bg-neutral-200 {
  background-color: var(--neutral--200);
}

.color-accent-1 {
  color: var(--accent--primary-1);
}

.color-accent-1.hover-neutral-800:hover {
  color: var(--neutral--800);
}

.color-accent-1.hover-opacity-85 {
  transition-property: opacity;
}

.color-accent-1.hover-opacity-85:hover {
  opacity: .85;
}

.color-neutral-500 {
  color: var(--neutral--500);
}

.color-neutral-100 {
  color: var(--neutral--100);
}

.mg-bottom-8px {
  margin-bottom: 8px;
}

.mg-bottom-16px {
  margin-bottom: 16px;
}

.mg-bottom-24px {
  margin-bottom: 24px;
}

.mg-bottom-32px {
  margin-bottom: 32px;
}

.mg-bottom-40px {
  margin-bottom: 40px;
}

.mg-bottom-48px {
  margin-bottom: 48px;
}

.mg-top-48px {
  margin-top: 48px;
}

.text-200 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
}

.text-200.medium {
  font-weight: 500;
}

.text-200.bold {
  font-weight: 700;
}

.grid-1-column {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1-column.sidebar-links-grid {
  grid-row-gap: 4px;
}

.grid-1-column.gap-row-12px {
  grid-row-gap: 12px;
}

.gap-column-8px {
  grid-column-gap: 8px;
}

.gap-column-16px {
  grid-column-gap: 16px;
}

.gap-column-24px {
  grid-column-gap: 24px;
}

.gap-row-24px {
  grid-row-gap: 24px;
}

.gap-row-64px {
  grid-row-gap: 64px;
}

.text-400 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
}

.text-400.bold {
  font-weight: 700;
}

.text-300 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.222em;
}

.text-300.bold {
  font-weight: 700;
}

.text-100 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.286em;
}

.text-100.medium {
  font-weight: 500;
}

.text-100.bold {
  font-weight: 700;
}

.text-100.dropdown-column-title {
  color: var(--neutral--800);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 16px;
  font-weight: 700;
}

.grid-3-columns {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.inner-container._600px {
  max-width: 600px;
}

.inner-container.center {
  margin-left: auto;
  margin-right: auto;
}

.inner-container._326px {
  max-width: 326px;
}

.inner-container._244px {
  max-width: 244px;
}

.inner-container._244px._100-mbl, .inner-container._244px._100-tablet {
  width: 100%;
}

.inner-container._720px {
  max-width: 720px;
}

.inner-container._384px {
  max-width: 384px;
}

.inner-container._400px {
  max-width: 400px;
}

.inner-container._348px {
  max-width: 348px;
}

.inner-container._388px {
  max-width: 388px;
}

.inner-container._272px {
  max-width: 272px;
}

.inner-container._370px {
  max-width: 370px;
}

.inner-container._180px {
  max-width: 180px;
}

.inner-container._334px {
  max-width: 334px;
}

.inner-container._368px {
  max-width: 368px;
}

.inner-container._576px {
  max-width: 576px;
}

.inner-container._624px {
  max-width: 624px;
}

.inner-container._542px {
  max-width: 542px;
}

.mg-bottom-0 {
  margin-bottom: 0;
}

.btn-primary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--neutral--100);
  text-align: center;
  border-radius: 4px;
  justify-content: center;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.286em;
  text-decoration: none;
  transition: all .2s;
}

.btn-primary:hover {
  border-style: solid;
  border-color: var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.btn-primary.large {
  padding: 14px;
  font-size: 16px;
  line-height: 1.125em;
}

.btn-primary.disabled {
  border-color: var(--neutral--400);
  background-color: var(--neutral--300);
  box-shadow: none;
  color: var(--neutral--600);
  cursor: not-allowed;
  background-image: none;
}

.btn-primary.disabled:hover {
  transform: none;
}

.btn-primary.white {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  color: var(--neutral--800);
  background-image: none;
  box-shadow: inset 0 -3px 8px rgba(0, 0, 0, .1);
}

.btn-primary.white:hover {
  border-color: var(--neutral--100);
  box-shadow: none;
  color: var(--neutral--100);
  background-color: rgba(0, 0, 0, 0);
}

.btn-secondary {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 4px 0 var(--button-shadow--white-01);
  color: var(--neutral--800);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 76px;
  padding: 8px 16px;
  font-weight: 500;
  line-height: 1.286em;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s, background-color .3s, color .3s;
}

.btn-secondary:hover {
  box-shadow: 0 2px 6px 0 var(--button-shadow--white-03);
  color: var(--neutral--800);
  transform: scale3d(1.02, 1.02, 1.01);
}

.btn-secondary.disabled {
  border-color: var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: none;
  color: var(--neutral--600);
  cursor: not-allowed;
}

.btn-secondary.disabled:hover {
  transform: none;
}

.input {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  color: var(--neutral--800);
  border-radius: 6px;
  min-height: 40px;
  margin-bottom: 0;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.286em;
  transition: color .3s, border-color .3s;
}

.input:hover {
  border-color: var(--neutral--500);
}

.input:focus {
  border-color: var(--accent--primary-1);
}

.input::placeholder {
  color: var(--neutral--600);
}

.input.mg-bottom-16px {
  margin-bottom: 16px;
}

.input.icon-inside-left {
  padding-left: 32px;
}

.input.icon-inside-right {
  padding-right: 32px;
}

.checkbox {
  border: .8px solid var(--neutral--400);
  background-color: var(--neutral--100);
  border-radius: 2px;
  width: auto;
  min-width: 14px;
  height: auto;
  min-height: 14px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 6px;
  transition: border-color .3s, background-color .3s;
  box-shadow: inset 0 -2px 4px rgba(31, 45, 84, .1), 0 0 1px rgba(31, 45, 84, .2);
}

.checkbox:hover {
  border-color: var(--neutral--400);
}

.checkbox.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/check-form-brix-templates-webflow.svg'), linear-gradient(#3d7fff, #4b5dff);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 8px, auto;
  border-color: #3961d9;
  margin-top: 0;
  margin-left: 0;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
}

.checkbox.mg-right-0 {
  margin-right: 0;
}

.avatar-circle {
  border-radius: 50%;
  width: 100%;
  overflow: hidden;
  transform: translate(0);
}

.avatar-circle._24px {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
}

.avatar-circle._32px {
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
}

.avatar-circle._40px {
  object-fit: cover;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
}

.avatar-circle._48px {
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
}

.avatar-circle._01 {
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
}

.line-rounded-icon {
  font-family: Line Rounded Icons;
}

.line-rounded-icon.icon-size-14px {
  font-size: 14px;
  line-height: 1em;
}

.line-rounded-icon.dropdown-icon {
  color: var(--neutral--600);
  justify-content: center;
  align-items: center;
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  font-size: 14px;
  line-height: 1em;
  display: flex;
}

.line-rounded-icon.header-dropdown-icon {
  line-height: 1em;
}

.buttons-row {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.buttons-row.center {
  justify-content: center;
}

.buttons-row.justify-end {
  justify-content: flex-end;
}

.width-100 {
  width: 100%;
}

.container-default {
  max-width: 1268px;
  padding-left: 24px;
  padding-right: 24px;
}

.dropdown-toggle {
  border: 1px solid var(--neutral--400);
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px;
  transition: border-color .3s, color .3s;
  display: flex;
}

.dropdown-toggle:hover {
  color: var(--accent--primary-1);
}

.dropdown-toggle.w--open {
  border-color: var(--accent--primary-1);
}

.hamburger-menu-wrapper {
  padding: 0;
}

.hamburger-menu-wrapper.w--open {
  background-color: rgba(0, 0, 0, 0);
}

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

.hidden-on-desktop {
  display: none;
}

.flex-vertical {
  flex-direction: column;
  display: flex;
}

.flex-vertical.align-center {
  align-items: center;
}

.flex-horizontal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-horizontal.gap-column-12px {
  grid-column-gap: 12px;
}

.flex-horizontal.children-wrap {
  flex-wrap: wrap;
}

.flex-horizontal.children-wrap.gap-16px---8px {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
}

.flex-horizontal.align-start {
  align-items: flex-start;
}

.flex-horizontal.justify-start {
  justify-content: flex-start;
}

.flex-horizontal.justify-end {
  justify-content: flex-end;
}

.error-message {
  border: 1px solid var(--system--300);
  background-color: var(--system--red-100);
  color: var(--system--red-400);
  text-align: center;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px 24px;
}

.error-message.small {
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  margin-top: 8px;
  padding: 10px 14px;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

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

.empty-state {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  text-align: center;
  border-radius: 11px;
  padding: 26px 24px;
}

.mg-bottom-4px {
  margin-bottom: 4px;
}

._404-not-found {
  opacity: .6;
  color: var(--accent--primary-1);
  margin-bottom: 8px;
  font-size: 120px;
  font-weight: 700;
  line-height: 1em;
}

.mg-bottom-12px {
  margin-bottom: 12px;
}

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

.flex.align-center.gap-column-6px {
  grid-column-gap: 6px;
}

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

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

.text-50 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.333em;
}

.text-50.medium {
  font-weight: 500;
}

.text-50.medium.sidebar-title {
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 18px;
  margin-left: 10px;
}

.text-50.bold {
  font-weight: 700;
}

.position-relative---z-index-1 {
  z-index: 1;
  position: relative;
}

.dashboard-content {
  flex: 1;
}

.dashboard-content.utility-page-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.gap-column-6px {
  grid-column-gap: 6px;
}

._2-items-wrap-container {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

._2-items-wrap-container.gap-column-16px {
  grid-column-gap: 16px;
}

._2-items-wrap-container.gap-column-8px {
  grid-column-gap: 8px;
}

._2-items-wrap-container.align-start {
  align-items: flex-start;
}

._2-items-wrap-container.amount-and-data {
  grid-column-gap: 6px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: flex-end;
}

._2-items-wrap-container.amount-and-data.justify-space-between {
  justify-content: space-between;
}

._2-items-wrap-container.justify-center {
  justify-content: center;
}

._2-items-wrap-container.justify-center.gap-column-48px {
  grid-column-gap: 48px;
}

._2-items-wrap-container.justify-center.gap-row-40px {
  grid-row-gap: 40px;
  align-items: flex-start;
}

._2-items-wrap-container.gap-column-24px {
  grid-column-gap: 24px;
}

._2-items-wrap-container.children-wrap-reverse {
  flex-wrap: wrap-reverse;
}

._2-items-wrap-container.align-end {
  align-items: flex-end;
}

.gap-column-4px {
  grid-column-gap: 4px;
}

.mg-bottom-10px {
  margin-bottom: 10px;
}

.divider {
  background-color: var(--neutral--400);
  min-height: 1.5px;
  margin-top: 56px;
  margin-bottom: 56px;
}

.divider.card-small-divider {
  background-color: var(--neutral--300);
  min-height: 1px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.divider.card-small-divider.mg-top-16px {
  margin-top: 16px;
}

.divider._20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.divider._20px.min-h-1px {
  min-height: 1px;
}

.divider.home-sections-divider {
  min-height: 1px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.divider._40px {
  margin-top: 40px;
  margin-bottom: 40px;
}

.divider._16px---32px {
  margin-top: 16px;
  margin-bottom: 32px;
}

.divider.mg-bottom-32px {
  margin-bottom: 32px;
}

.gap-column-20px {
  grid-column-gap: 20px;
}

.dashboard-main-content {
  width: 100%;
  max-width: 940px;
}

.dashboard-main-content.utility-page-main-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.dashboard-main-content.changelog-page-main-content {
  grid-column-gap: 40px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  display: flex;
}

.border-radius-6px {
  border-radius: 6px;
}

.loading-bar-wrapper {
  z-index: 2147483647;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.loading-bar {
  background-image: linear-gradient(to bottom, var(--accent--primary-1), var(--secondary--color-3));
  min-height: 4px;
}

.max-w-20px {
  max-width: 20px;
}

.color-neutral-800 {
  color: var(--neutral--800);
}

.text-500 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.167em;
}

.text-500.bold {
  font-weight: 700;
}

.text-600 {
  font-size: 30px;
  line-height: 1.133em;
}

.text-600.bold {
  font-weight: 700;
}

.header-wrapper {
  z-index: 999;
  background-color: var(--neutral--100);
  box-shadow: 1px 0 3px 0 var(--general--shadow-01);
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo-link-wrapper {
  transform-style: preserve-3d;
  padding-left: 0;
  transition-property: transform;
}

.logo-link-wrapper:hover {
  transform: scale3d(1.04, 1.04, 1.01);
}

.header-nav-link {
  color: var(--neutral--700);
  padding: 0;
  font-weight: 500;
}

.header-nav-link:hover {
  color: var(--accent--primary-1);
}

.header-nav-link.w--current {
  color: var(--neutral--700);
}

.header-nav-link.w--current:hover {
  color: var(--accent--primary-1);
}

.header-nav-link.dropdown-header-link {
  grid-column-gap: 6px;
  align-items: center;
  display: flex;
}

.header-nav-link.dropdown-header-link.w--open {
  color: var(--accent--primary-1);
}

.header-nav-menu-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-nav-menu-list {
  grid-column-gap: 16px;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.header-nav-list-item {
  margin-bottom: 0;
  padding-left: 0;
  line-height: 1.286em;
}

.header-content-wrapper {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.main-section {
  padding-top: 48px;
  padding-bottom: 100px;
}

.main-section.pd-bottom-64px {
  padding-bottom: 64px;
}

.sidebar-container {
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}

.sidebar-link {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--menu_1);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  align-items: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.sidebar-link:hover {
  background-color: var(--neutral--100);
  color: var(--black);
  border-style: none;
  border-radius: 2px;
}

.sidebar-link.w--current {
  border-color: var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--700);
}

.component-card-badge-top {
  background-color: var(--neutral--100);
  color: var(--neutral--700);
  border-radius: 32px;
  padding: 6px 12px;
  font-weight: 500;
  line-height: 1.286em;
}

.component-card-badge-top-wrapper {
  box-shadow: 0 2px 7px 0 var(--general--shadow-02);
  background-image: linear-gradient(#3d7fff, #5465ff);
  border-radius: 32px;
  margin-top: 24px;
  margin-bottom: 10px;
  padding: 1px;
  display: inline-block;
  overflow: hidden;
}

.buttons-container {
  grid-column-gap: 24px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.buttons-container.gap-row-12px {
  grid-row-gap: 12px;
}

.divider-vertical {
  background-color: var(--neutral--400);
  align-self: stretch;
  min-width: 1px;
  max-width: 1px;
  margin-left: 48px;
  margin-right: 48px;
}

.icon-inside-input-right {
  z-index: 1;
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  font-family: Line Rounded Icons;
  font-size: 12px;
  line-height: 1em;
  position: absolute;
  right: 14px;
}

.icon-inside-input-left {
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  font-family: Line Rounded Icons;
  position: absolute;
  left: 14px;
}

.success-message {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  border-radius: 16px;
  padding: 20px 24px;
}

.text-area {
  border: 1px solid var(--neutral--400);
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  color: var(--neutral--800);
  border-radius: 6px;
  min-height: 88px;
  margin-bottom: 0;
  padding: 14px;
  font-weight: 500;
  transition: border-color .3s, color .3s;
}

.text-area:hover {
  border-color: var(--neutral--500);
}

.text-area:focus {
  border-color: var(--accent--primary-1);
}

.text-area::placeholder {
  color: var(--neutral--600);
}

.text-area.icon-inside {
  text-indent: 16px;
}

.text-area-icon-inside {
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  font-family: Line Rounded Icons;
  font-size: 14px;
  line-height: 1em;
  position: absolute;
  top: 18px;
  left: 14px;
}

.color-neutral-600 {
  color: var(--neutral--600);
}

.toggle-button-wrapper {
  z-index: 1;
  border: .8px solid var(--neutral--400);
  background-color: var(--neutral--300);
  cursor: pointer;
  border-radius: 40px;
  align-items: center;
  min-width: 34px;
  max-width: 34px;
  min-height: 20px;
  max-height: 20px;
  padding: 2px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.toggle-button-bg {
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border: 1px solid #3961d9;
  border-radius: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.toggle-button-bg.active {
  opacity: 1;
}

.toggle-button-circle-inside {
  z-index: 2;
  background-color: var(--neutral--100);
  border-radius: 100%;
  min-width: 14px;
  max-width: 14px;
  min-height: 14px;
  max-height: 14px;
  transition: transform .3s;
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(31, 45, 84, .14), 1px 0 1px rgba(31, 45, 84, .18);
}

.toggle-button-circle-inside.active {
  transform: translate(14px);
}

.avatars-container {
  grid-column-gap: 48px;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.gap-row-8px {
  grid-row-gap: 8px;
}

.color-neutral-700 {
  color: var(--neutral--700);
}

.avatar-name-circle {
  color: var(--neutral--100);
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border: 1px solid #3961d9;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(74, 58, 255, .26);
}

.avatar-name-circle._24px {
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  font-size: 12px;
  line-height: 1.333em;
}

.avatar-name-circle._32px {
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  font-size: 12px;
  line-height: 1.333em;
}

.avatar-name-circle._40px {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 400px;
  line-height: 1.286em;
}

.avatar-name-circle._48px {
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  line-height: 1.286em;
}

.primary-badge {
  color: var(--neutral--100);
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 32px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.333em;
  display: inline-block;
}

.primary-badge.light {
  background-color: var(--secondary--color-2);
  color: var(--accent--primary-1);
  background-image: none;
}

.primary-badge.white {
  border-color: var(--accent--primary-1);
  color: var(--accent--primary-1);
  background-image: none;
}

.neutral-badge {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  border-radius: 32px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.333em;
  display: inline-block;
}

.neutral-badge.neutral-500 {
  background-color: var(--neutral--500);
}

.neutral-badge.neutral-300 {
  background-color: var(--neutral--300);
  color: var(--neutral--700);
}

.neutral-badge.neutral-200 {
  background-color: var(--neutral--200);
  color: var(--neutral--600);
}

.color-badge {
  border-radius: 32px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.333em;
  display: inline-block;
}

.color-badge.green {
  background-color: var(--system--green-100);
  color: var(--system--green-300);
}

.color-badge.blue {
  background-color: var(--system--blue-100);
  color: var(--system--blue-300);
}

.color-badge.red {
  background-color: var(--system--red-100);
  color: var(--system--300);
}

.color-badge.orange {
  background-color: var(--system--orange-100);
  color: var(--system--orange-300);
}

.notification-bar {
  border: 1.2px solid var(--neutral--300);
  background-color: var(--neutral--200);
  transform-origin: 50% 0;
  border-radius: 8px;
}

.notification-bar.blue {
  border-color: var(--system--blue-200);
  background-color: var(--system--blue-100);
}

.notification-bar.green {
  border-color: var(--system--green-200);
  background-color: var(--system--green-100);
}

.notification-bar.red {
  border-color: var(--system--300);
  background-color: var(--system--red-100);
}

.notification-bar.orange {
  border-color: var(--system--orange-200);
  background-color: var(--system--orange-100);
}

.notification-bar-icon {
  border-radius: 100%;
  min-width: 18px;
  max-width: 18px;
}

.notification-bar-icon.blue {
  box-shadow: 0 1px 2px rgba(61, 115, 255, .36);
}

.notification-bar-icon.green {
  box-shadow: 0 1px 2px rgba(47, 223, 75, .26);
}

.notification-bar-icon.red {
  box-shadow: 0 1px 2px rgba(255, 61, 84, .36);
}

.notification-bar-icon.orange {
  box-shadow: 0 1px 2px rgba(255, 166, 61, .36);
}

.close-icon-wrapper {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  display: flex;
}

.close-icon-wrapper.floating-icon-top-right {
  position: absolute;
  top: 16px;
  right: 16px;
}

.close-icon-line {
  background-color: var(--neutral--700);
  border-radius: 10px;
  min-width: 2px;
  max-width: 2px;
  min-height: 15px;
  max-height: 15px;
  position: absolute;
}

.close-icon-line.first {
  transform: rotate(45deg);
}

.close-icon-line.second {
  transform: rotate(-45deg);
}

.notification-bar-main-container {
  grid-column-gap: 48px;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  display: flex;
}

.pd-32px---24px {
  padding: 32px 24px;
}

.pd-16px---24px {
  padding: 16px 24px;
}

.card-icon-square {
  border: 1.5px solid var(--accent--primary-1);
  border-radius: 12px;
  max-width: 48px;
  box-shadow: 0 1px 4px rgba(74, 58, 255, .26);
}

.card-icon-square._26px {
  border-width: .8px;
  border-radius: 6px;
  max-width: 26px;
  box-shadow: 0 0 2px rgba(74, 58, 255, .26);
}

.card-icon-square._40px {
  border-radius: 8px;
  max-width: 40px;
  box-shadow: 0 1px 2px rgba(74, 58, 255, .26);
}

.card-icon-square.neutral-icon {
  border-color: var(--neutral--600);
  box-shadow: 0 1px 4px rgba(213, 211, 228, .26);
}

.pd-26px---24px---40px {
  padding: 26px 24px 40px;
}

.border-radius-12px {
  border-radius: 12px;
}

.card-amount-container {
  grid-column-gap: 2px;
  align-items: center;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.333em;
  display: flex;
}

.card-amount-container.green {
  color: var(--system--green-300);
  cursor: auto;
}

.card-amount-container.red {
  color: var(--system--300);
}

.gap-column-12px {
  grid-column-gap: 12px;
}

.amount-over-graph-container {
  grid-row-gap: 4px;
  text-align: center;
  flex-direction: column;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  position: absolute;
  bottom: 52px;
  left: 40px;
  right: 40px;
}

.checkbox-and-label-container {
  z-index: 1;
  color: var(--neutral--600);
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.dashflow-custom-icon {
  font-family: Dashflow custom icon font;
}

.dashflow-custom-icon.icon-size-8px {
  font-size: 9px;
  line-height: 1em;
}

.dashflow-custom-icon.link-single {
  color: var(--neutral--500);
  font-size: 16px;
  line-height: 1em;
  text-decoration: none;
}

.dashflow-custom-icon.link-single:hover {
  color: var(--accent--primary-1);
}

.dashflow-custom-icon.icon-size-14px {
  font-size: 14px;
  line-height: 1em;
}

.mg-top-2px {
  margin-top: 2px;
}

.mg-bottom-20px {
  margin-bottom: 20px;
}

.overflow-auto {
  overflow: auto;
}

.data-table-row {
  grid-column-gap: 10px;
  border-top: 1px solid var(--neutral--300);
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 2fr 1.4fr 1fr .8fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  min-width: 916px;
  padding: 20px 24px;
  display: grid;
}

.data-table-row.table-header {
  z-index: 1;
  background-color: var(--neutral--200);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-top-style: none;
  margin-bottom: -1px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.user-table-row {
  grid-column-gap: 10px;
  border-top: 1px solid var(--neutral--300);
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 2fr .75fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  min-width: 640px;
  padding: 16px 24px;
  display: grid;
}

.user-table-row.table-header {
  z-index: 1;
  background-color: var(--neutral--200);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-top-style: none;
  margin-bottom: -1px;
  position: relative;
}

.modal-wrapper {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-close-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.tabs-menu {
  grid-column-gap: 2px;
  background-color: var(--neutral--200);
  border-radius: 72px;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px;
  display: flex;
}

.tabs-menu.links-single {
  grid-column-gap: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}

.tab-menu-badge-link {
  color: var(--neutral--600);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 32px;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.286em;
  transition: box-shadow .3s, background-color .3s, border-color .3s, color .3s;
}

.tab-menu-badge-link:hover {
  border-color: var(--neutral--200);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--600);
}

.tab-menu-badge-link.w--current {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 0 3px 0 var(--general--shadow-01);
  color: var(--neutral--700);
}

.tab-menu-underline-link {
  border-bottom: 1px solid var(--neutral--400);
  color: var(--neutral--600);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding: 0 16px 24px;
  font-weight: 500;
  line-height: 1.286em;
  transition: border-color .3s, color .3s;
}

.tab-menu-underline-link:hover {
  border-bottom-color: var(--neutral--600);
  color: var(--neutral--700);
}

.tab-menu-underline-link.w--current {
  border-bottom-color: var(--accent--primary-1);
  color: var(--accent--primary-1);
  background-color: rgba(0, 0, 0, 0);
}

.breadcrumb-badge {
  grid-column-gap: 6px;
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  color: var(--neutral--700);
  border-radius: 4px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

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

.tooltip {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 7px 0 var(--general--shadow-02);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  max-width: 500px;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1em;
  display: flex;
  position: absolute;
}

.tooltip.right {
  right: -16px;
  transform: translate(100%);
}

.tooltip.left {
  left: -16px;
  transform: translate(-100%);
}

.tooltip.top {
  text-align: center;
  align-self: center;
  top: -16px;
  transform: translate(0, -100%);
}

.tooltip.bottom {
  text-align: center;
  bottom: -16px;
  transform: translate(0, 100%);
}

.tooltip-triangle-left {
  position: absolute;
  left: -6px;
}

.tooltip-triangle-right {
  position: absolute;
  right: -6px;
}

.tooltip-triangle-bottom {
  position: absolute;
  bottom: -6px;
}

.tooltip-triangle-top {
  position: absolute;
  top: -6px;
}

.dropdown-list {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 16px;
}

.dropdown-link-wrapper {
  z-index: 1;
  color: var(--neutral--600);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  align-items: center;
  margin: 4px 8px;
  padding: 10px;
  font-weight: 500;
  line-height: 1.286em;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
  position: relative;
}

.dropdown-link-wrapper:hover {
  border-color: var(--neutral--400);
  background-color: var(--neutral--300);
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  color: var(--neutral--800);
}

.mg-bottom-6px {
  margin-bottom: 6px;
}

.header-right-side-container {
  margin-left: auto;
}

.hamburger-menu-bar {
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border-radius: 64px;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.footer-top-section {
  grid-column-gap: 40px;
  border-bottom: 1px solid var(--neutral--300);
  justify-content: space-between;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  display: flex;
}

.bg-neutral-100 {
  background-color: var(--neutral--100);
}

.footer-links-container {
  grid-column-gap: 24px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-bottom-section {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.text-bold {
  font-weight: 700;
}

.social-links-container {
  grid-column-gap: 16px;
  display: flex;
}

.social-circle-link {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  box-shadow: 0 0 4px 0 var(--general--shadow-01);
  color: var(--accent--primary-1);
  transform-style: preserve-3d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  font-family: Social Icons Font;
  font-size: 14px;
  line-height: 1em;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, transform .3s, color .3s;
  display: flex;
}

.social-circle-link:hover {
  border-color: var(--accent--primary-1);
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  transform: scale3d(1.06, 1.06, 1.01);
}

.card-image-right {
  z-index: -1;
  width: 66%;
  max-width: 616px;
  display: block;
  position: absolute;
  right: 0;
}

.mg-top-80px {
  margin-top: 80px;
}

.link-image-wrapper {
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.pd-24px {
  padding: 24px;
}

.link-image {
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  transform: scale3d(1.01, 1.01, 1.01);
}

.cta-card {
  grid-column-gap: 40px;
  background-image: url('../images/cta-card-bg-dashflow-webflow-template.svg'), linear-gradient(#3d7fff, #4b5dff);
  background-position: 50%, 0 0;
  background-size: auto, auto;
  border: 1px solid #3961d9;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 80px 64px;
  display: flex;
}

.cta-card.buy-card {
  color: var(--neutral--100);
  padding: 0;
  text-decoration: none;
  transition: transform .3s, color .3s;
}

.cta-card.buy-card:hover {
  transform: scale(.98);
}

.cta-card.buy-card.dark {
  border-color: var(--neutral--400);
  color: var(--neutral--700);
  background-image: url('../images/cta-card-bg-dashflow-webflow-template.svg'), linear-gradient(#fff, #f3f3f8);
  background-position: 50%, 0 0;
  background-size: auto, auto;
  box-shadow: 0 2px 8px rgba(31, 45, 84, .15);
}

.border-radius-8px {
  border-radius: 8px;
}

.mg-bottom-80px {
  margin-bottom: 80px;
}

.overflow-visible {
  overflow: visible;
}

.pd-top-24px {
  padding-top: 24px;
}

.position-relative---z-index-2 {
  z-index: 2;
  position: relative;
}

.dropdown-link-single {
  color: var(--neutral--700);
  width: 100%;
  padding: 0;
}

.dropdown-link-single:hover {
  color: var(--accent--primary-1);
}

.pd-sides-40px {
  padding-left: 40px;
  padding-right: 40px;
}

.header-sidebar-wrapper {
  display: none;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}

.pd-top-64px---bottom-100px {
  padding-top: 64px;
  padding-bottom: 100px;
}

.link-icon {
  max-width: 10px;
}

.max-w-12px {
  max-width: 12px;
}

.mg-right-4px {
  margin-right: 4px;
}

.breadcrumb-divider {
  max-width: 14px;
  margin-left: 12px;
  margin-right: 12px;
}

.breadcrumb-link-wrapper {
  z-index: 1;
  padding-bottom: 1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.286em;
  text-decoration: none;
  position: relative;
}

.breadcrumb-underline {
  background-color: var(--neutral--800);
  min-height: 1px;
  max-height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.breadcrumb-wrapper {
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.max-w-14px {
  max-width: 14px;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.checkbox-wrapper {
  z-index: 1;
  cursor: pointer;
  border-radius: 2px;
  min-width: 14px;
  max-width: 14px;
  min-height: 14px;
  max-height: 14px;
  margin-right: 6px;
  position: relative;
}

.checkbox-bg {
  opacity: 0;
  background-image: linear-gradient(#3d7fff, #4b5dff);
  border: .8px solid #3961d9;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.checkbox-bg.active {
  opacity: 1;
}

.position-relative---z-index--1 {
  z-index: -1;
  position: relative;
}

.help-message {
  border: 1px solid var(--neutral--500);
  background-color: var(--neutral--200);
  border-radius: 6px;
  margin-top: 8px;
  padding: 10px 14px;
}

.card-home-pages-wrapper {
  padding: 25px 29px 38px;
}

.grid-2-columns-2 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.cta-square-logo {
  border-radius: 8px;
  width: 60px;
  margin-bottom: 16px;
  box-shadow: 0 8px 28px rgba(20, 20, 43, .1);
}

.body {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5em;
}

.page_wrapper {
  background-image: linear-gradient(rgba(0, 64, 255, .07), #fff);
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 1.5rem;
  display: flex;
  overflow: auto;
}

.page_component_wrapper {
  border: 1px solid var(--border_1);
  border-radius: 10px;
  width: 100%;
  max-width: 100rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 0 54px rgba(0, 0, 0, .2);
}

.grid_component_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 20fr 80fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.side_components_wrapper {
  border-right: 1px solid var(--border_1);
  flex-direction: column;
  min-width: 16rem;
  display: flex;
  overflow: auto;
}

.main_components_wrapper {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
}

.sidebar_header {
  z-index: 999;
  border-bottom: 1px solid var(--border_1);
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 1.125rem 1.2rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.text_20 {
  font-size: 1.25rem;
}

.weight_500 {
  font-weight: 500;
}

.heading {
  margin-bottom: 0;
}

.sidebar_menu_section {
  border-bottom: 1px solid var(--border_1);
  padding: 1rem .75rem;
}

.sidebar_menu_section.is_user {
  border-top: 1px solid var(--border_1);
  border-bottom-style: none;
  margin-top: auto;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.sidebar_menu_section.is_last {
  border-bottom-style: none;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.text_16 {
  font-size: 1rem;
}

.text_16.weight_600.color_black {
  color: var(--black);
}

.weight_600 {
  font-weight: 600;
}

.weight_700 {
  font-weight: 700;
}

.text_18 {
  font-size: 1.125rem;
}

.text_18.weight_500.color_white {
  color: var(--white);
}

.text_22 {
  font-size: 1.375rem;
}

.text_24 {
  font-size: 1.5rem;
}

.menu_icon {
  object-fit: contain;
  align-self: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
}

.sidebar_link {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--menu_1);
  border-radius: 2px;
  align-items: center;
  padding: .5rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.sidebar_link:hover {
  background-color: var(--white);
  filter: contrast(200%);
  color: var(--black);
}

.sidebar_link.is_active {
  background-color: var(--white);
  color: var(--black);
}

.sidebar-search-wrapper {
  z-index: 1;
  margin-bottom: 8px;
  margin-left: 28px;
  margin-right: 28px;
  position: relative;
}

.btn-inside-input-left {
  z-index: 2;
  color: #aeb9e1;
  background-color: rgba(0, 0, 0, 0);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  justify-content: flex-end;
  align-items: center;
  min-width: 30px;
  padding: 0;
  transition: color .3s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.btn-inside-input-left:hover {
  color: #fff;
}

.sidebar-logo-link {
  transform-style: preserve-3d;
  transition-property: transform;
}

.sidebar-logo-link:hover {
  transform: scale3d(1.06, 1.06, 1.01);
}

.sidebar-logo-link.show-on-tablet {
  display: none;
}

.dashdark-custom-icon {
  font-weight: 400;
}

.dashdark-custom-icon.sidebar-link-icon {
  margin-right: 6px;
  font-size: 14px;
  line-height: 1em;
}

.sidebar-collapse-icon-container {
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .3s;
}

.sidebar-collapse-icon-container:hover {
  transform: scale3d(1.1, 1.1, 1.01);
}

.dropdown-toggle-2 {
  align-items: center;
  padding: 0;
  transition: color .3s;
  display: flex;
}

.dropdown-toggle-2:hover {
  color: #6c72ff;
}

.dropdown-toggle-2.sidebar-dropdown {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--menu_1);
  border-radius: 2px;
  justify-content: flex-start;
  width: 100%;
  padding: .5rem 1rem .5rem .5rem;
  transition-property: all;
}

.dropdown-toggle-2.sidebar-dropdown:hover {
  background-color: var(--white);
  filter: contrast(200%);
  color: var(--black);
}

.dropdown-toggle-2.sidebar-dropdown.w--open {
  background-color: var(--white);
  color: var(--black);
}

.dropdown-wrapper {
  z-index: 500;
}

.dropdown-wrapper.sidebar-dropdown {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sidebar-divider {
  opacity: .2;
  background-color: #fff;
  align-self: center;
  width: 100%;
  min-height: 1px;
  max-height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hamburger-menu-wrapper-2 {
  padding: 0;
}

.hamburger-menu-wrapper-2.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.sidebar-dropdown-list-wrapper {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 8px;
  margin-bottom: 4px;
  transition: all .2s;
  position: relative;
}

.sidebar-dropdown-list-wrapper.w--open {
  margin-top: 0;
  margin-bottom: 0;
}

.sidebar-dropdown-list-wrapper.sidebar-account-settings-list {
  overflow: hidden;
}

.sidebar-account-settings-divider {
  background-color: #37446b;
  align-self: center;
  width: 100%;
  min-width: 200px;
  min-height: .6px;
  max-height: .6px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.position-relative---z-index-3 {
  z-index: 1;
  position: relative;
}

.sidebar-menu-collapsed-overlay {
  z-index: 2147483647;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sidebar-collapsed-divider {
  background-color: #37446b;
  min-height: .6px;
  max-height: .6px;
  display: none;
}

.sidebar-menu-container {
  z-index: 1;
  grid-row-gap: 4px;
  flex-direction: column;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
}

.input-2 {
  color: #fff;
  background-color: #101935;
  border: .6px solid #343b4f;
  border-radius: 4px;
  min-height: 42px;
  margin-bottom: 0;
  padding: 14px;
  font-size: 12px;
  line-height: 1.167em;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 4px rgba(1, 5, 17, .2);
}

.input-2:hover {
  border-color: #7e89ac;
  box-shadow: 0 2px 12px rgba(20, 20, 43, .1);
}

.input-2:focus {
  border-color: #6c72ff;
}

.input-2::placeholder {
  color: #aeb9e1;
}

.input-2.icon-inside-left {
  padding-left: 40px;
}

.font-icon-left-link {
  grid-column-gap: 8px;
  color: #aeb9e1;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.font-icon-left-link:hover {
  color: #6c72ff;
}

.font-icon-left-link.color-red-300 {
  color: #ff5a65;
}

.font-icon-left-link.color-red-300:hover {
  color: #dc2b2b;
}

.text-601 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.167em;
}

.text-601.medium, .text-601.sidebar-dropdown-text {
  font-weight: 500;
}

.sidebar-collapsed-icon-btn-wrapper {
  display: none;
}

.sidebar-dropdown-link {
  color: var(--menu_1);
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding: .75rem 1rem .75rem 2.3rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: border-color .3s, background-color .3s, color .3s;
  overflow: hidden;
}

.sidebar-dropdown-link:hover {
  background-color: var(--white);
  color: var(--black);
}

.sidebar-dropdown-link.w--current {
  color: #fff;
  background-color: #212c4d;
  border-left-color: #6c72ff;
}

.sidebar-dropdown-link.icon-left {
  grid-column-gap: 8px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.sidebar-wrapper {
  z-index: 500;
  background-color: #080f25;
  border-right: .6px solid #37446b;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.sidebar-collapsed-icon-btn {
  cursor: pointer;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  min-width: 26px;
  max-width: 26px;
  min-height: 26px;
  max-height: 26px;
  transition: transform .3s;
  display: flex;
}

.sidebar-collapsed-icon-btn:hover {
  transform: scale3d(1.06, 1.06, 1.01);
}

.sidebar-dropdown-inner-wrapper {
  transition: all .2s;
}

.btn-primary-2 {
  color: #fff;
  text-align: center;
  background-color: #6c72ff;
  border-radius: 4px;
  justify-content: center;
  padding: 8px;
  font-weight: 500;
  line-height: 1.167em;
  text-decoration: none;
  transition: background-color .3s, color .3s;
}

.btn-primary-2:hover {
  color: #fff;
  background-color: #212c4d;
}

.btn-primary-2.large {
  padding: 14px;
  font-size: 16px;
  line-height: 1.125em;
}

.text-602 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.143em;
}

.text-602.sidebar-dropdown-text {
  font-weight: 500;
}

.sidebar-btn-wrapper {
  margin-top: 48px;
  padding-left: 28px;
  padding-right: 28px;
}

.sidebar-logo-section-container {
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 20px 28px;
  display: flex;
}

.menu_arrow {
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  display: flex;
}

.subtitle_wrapper {
  padding: 0 .8rem .75rem;
}

.text_13 {
  font-size: .8125rem;
}

.text_13.weight_500.color_gray_1.text_upper {
  text-transform: uppercase;
}

.color_gray_1 {
  color: #9a9eb2;
}

.text_12 {
  font-size: .75rem;
}

.main_header_wrapper {
  border-bottom: 1px solid var(--border_1);
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4rem;
  padding: .75rem;
  display: flex;
}

.breadcrumb_wrapper {
  grid-column-gap: .8125rem;
  grid-row-gap: .8125rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.breadcrumb_icon {
  width: auto;
  height: 1.375rem;
}

.breadcrumb_arrow {
  justify-content: center;
  align-items: center;
  height: 1.375rem;
  display: flex;
}

.text_14 {
  font-size: .875rem;
}

.text_14.weight_500.color_white {
  color: var(--white);
}

.text_14.weight_500.color_gray_3 {
  color: #696c80;
}

.text_14.weight_600.color_black {
  color: var(--black);
}

.action_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.action_wrapper.is_flex {
  justify-content: space-between;
}

.action_wrapper.is_flex_end {
  justify-content: flex-end;
  margin-top: auto;
}

.action_wrapper.is_file_uploader {
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn_base {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  white-space: nowrap;
  border-radius: 4px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 4.5rem;
  min-height: 2.5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.btn_base:hover {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--white);
  color: var(--black);
}

.btn_base.is_secondary {
  border-color: var(--secondary);
  color: var(--black);
  background-color: #ebecf2;
}

.btn_base.is_secondary:hover {
  border-style: solid;
  border-color: var(--black);
  background-color: var(--white);
}

.btn_base.is_danger {
  border-color: var(--red);
  background-color: var(--red);
}

.btn_base.is_danger:hover {
  border-color: var(--red);
  background-color: var(--white);
  color: var(--red);
}

.btn_base.is_delete {
  border-color: var(--red);
  background-color: var(--red);
}

.btn_base.is_delete:hover {
  border-color: var(--red);
  background-color: var(--white);
  color: var(--red);
}

.btn_base.is_full_width {
  width: 100%;
  min-height: 2.5rem;
}

.btn_base.is_full_width.is_disabled {
  background-color: var(--menu_1);
  opacity: .3;
}

.btn_base.is_full_width.is_disabled:hover {
  opacity: .3;
  color: var(--white);
}

.btn_base.is_full_width.is_flex {
  justify-content: space-between;
}

.btn_base.is_disabled {
  border-color: var(--menu_1);
  opacity: .3;
  background-color: #696c80;
}

.btn_base.is_disabled:hover {
  border-color: var(--menu_1);
  color: var(--white);
}

.btn_icon {
  width: 1rem;
  height: 1rem;
}

._2_col_grid_wrapper {
  width: 100%;
  height: 100%;
}

._2_col_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 28fr 72fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

._2_col_grid.is_super_admin {
  grid-template-columns: minmax(min-content, 20rem) 68fr;
}

._2_col_grid.is_call_center {
  grid-template-columns: 1fr 1fr;
}

.secondary_menu_wrapper {
  border-right: 1px solid var(--border_1);
  flex-direction: column;
  min-width: 18rem;
  height: auto;
  padding: 0;
  display: flex;
  position: relative;
}

.secondary_menu_wrapper.is_spue_admin {
  padding: 0;
}

.search_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  display: flex;
}

.table_wrapper {
  background-color: var(--white);
  overflow: auto;
}

.table_wrapper.is_ful_height {
  flex-direction: column;
  display: flex;
  position: relative;
}

.table_header_wrapper {
  min-width: 55rem;
}

.table_col_6 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 20fr 40fr 10fr 10fr 15fr 5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_6.is_contact {
  grid-template-columns: 15fr 20fr 30fr 15fr 15fr 5fr;
}

.table_col_6.is_admins {
  grid-template-columns: 10fr 35fr 20fr 20fr 10fr 5fr;
}

.table_col_6.is_article {
  grid-template-columns: 10fr 20fr 35fr 10fr 20fr 5fr;
  display: grid;
}

.table_th {
  text-transform: uppercase;
  white-space: normal;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 6rem;
  max-width: 100%;
  padding: .5rem;
  font-size: .75rem;
  display: flex;
}

.table_td {
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 6rem;
  max-width: 100%;
  padding: .75rem .5rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.table_td.is_gray {
  color: var(--table_gray);
  font-size: .75rem;
  font-weight: 400;
}

.table_td.is_last {
  justify-content: center;
  align-items: flex-start;
}

.view_icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.view_link {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

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

.table_pagination_wrapper {
  z-index: 9999;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding: 1rem 2rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
}

.pagination_nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--neutral--600);
  align-items: center;
  padding: .5rem;
  transition: all .3s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.pagination_nav:hover {
  color: var(--black);
}

.pagination_nav.is_disabled {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--border_1);
  justify-content: flex-start;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.pagination_link {
  text-decoration: none;
}

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

.pagination_link.is_disabled {
  color: var(--border_1);
}

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

.page_number {
  color: var(--neutral--600);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100vh;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 600;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.page_number:hover {
  color: var(--black);
}

.page_number.is_active {
  background-color: #d8dae5;
}

.page_num_wrapper {
  text-decoration: none;
}

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

.page_num_wrapper.is_active {
  background-color: #d8dae5;
  border-radius: 100vw;
}

.table_col_5 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 20fr 50fr 10fr 15fr 5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_5.is_agents {
  grid-template-columns: 10fr 40fr 20fr 15fr 5fr;
}

.table_col_5.is_admins {
  grid-template-columns: 20fr 30fr 35fr 10fr 5fr;
}

.table_col_5.is_pending {
  grid-template-columns: 20fr 35fr 20fr 20fr 5fr;
}

.full_grid_wrapper {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
}

.full_grid_wrapper.is_dashboard {
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5rem;
}

.table_search_wrapper {
  background-color: var(--white);
  align-items: center;
  padding: .75rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.table_col_7 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 30fr 20fr 10fr 10fr 10fr 15fr 5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_7.is_contact {
  grid-template-columns: 15fr 20fr 30fr 15fr 15fr 5fr;
}

.table_col_7.is_permission {
  grid-template-columns: 10fr 40fr 10fr 10fr 10fr 10fr 10fr;
}

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

.form_container {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 5rem;
}

.form_container.is-center {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.form_container.is-search {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  height: 100%;
  display: flex;
}

.form_container.is_two_column {
  grid-column-gap: 6rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 40fr 60fr;
  grid-auto-columns: 1fr;
  max-width: 70rem;
  display: grid;
}

.form_container.is_my-account {
  padding: 3rem 2rem;
}

.form_container.is-full {
  max-width: none;
}

.form {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.form.is_search {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.form_title_wrapper {
  margin-bottom: 2rem;
}

.form_title_wrapper.is_sm {
  margin-bottom: 1rem;
}

.form_group {
  margin-bottom: 1.5rem;
}

.form_group.is_last {
  margin-bottom: 0;
}

.form_group.is_table_wrapper {
  margin-top: 1rem;
  margin-bottom: 0;
}

.form_group.is_sm {
  margin-bottom: 1rem;
}

.form_lable_wrapper {
  margin-bottom: .25rem;
  display: flex;
}

.form_lable_wrapper.is_subtitle {
  margin-bottom: .5rem;
}

.form_section {
  margin-bottom: 4rem;
}

.form_section.is_file_uploader {
  background-color: #f8f8fa;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 4rem;
}

.form_section.is_delete {
  background-color: #f8f8fa;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 0;
  padding: 1.5rem;
  display: flex;
}

.form_section.is_delete.is_in_form {
  margin-top: 0;
}

.form_section.is_last {
  margin-bottom: 0;
}

.form_section.is_last.is_md {
  max-width: 75%;
}

.form_section.is_hidden {
  display: none;
}

.alert_popup_wrapper {
  background-color: #565656;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  max-width: 22rem;
  margin: auto;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.alert_contents {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.alert_actions {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #6b6b6b;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.alert_title_wrapper {
  text-align: center;
  margin-bottom: .5rem;
}

.alert_text_wrapper {
  text-align: center;
}

.alert_btn {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  transition: all .2s;
  display: flex;
}

.alert_btn_link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.alert_btn_link:hover {
  color: var(--black);
  background-color: #fff;
}

.alert_btn_link.is_main {
  color: #babdcc;
  border-left: 1px solid #6b6b6b;
}

.alert_btn_link.is_main:hover {
  color: var(--black);
}

.alert_msg_wrapper {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 30rem;
  display: block;
  position: absolute;
  top: 2.2rem;
  bottom: auto;
  left: 50%;
  right: auto;
  overflow: hidden;
  transform: translate(-50%);
}

.alert_msc_body {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #daf2e4;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem .75rem;
  display: flex;
}

.alert_text {
  color: rgba(14, 140, 67, .7);
}

.alert_close {
  margin-left: auto;
}

.alert_icon {
  width: auto;
  height: 1.75rem;
}

.alert_icon_left {
  height: 1.75rem;
}

.link-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.form_subtitle_wrapper {
  margin-bottom: 1rem;
}

.form_row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_row.is_sm {
  width: 50%;
}

.main_container {
  padding: 3rem 1.5rem;
  overflow: auto;
}

.main_title_wrapper {
  margin-bottom: 3rem;
}

.customer_details_grid_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  margin-bottom: 3rem;
  padding-left: .75rem;
  padding-right: .75rem;
  display: flex;
}

.customer_details_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 35rem;
  display: grid;
}

.customer_details_row.is_two_col {
  grid-template-columns: 1fr 1fr;
}

.customer_details_row.is_one_col {
  grid-template-columns: 1fr;
}

.customer_details_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
}

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

.detail_title {
  text-transform: uppercase;
  font-size: .75rem;
}

.detail_value {
  font-size: 1rem;
  font-weight: 500;
}

.table_bordered {
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--border_1);
  height: auto;
  display: flex;
  overflow: auto;
}

.table_col_9 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 10fr 10fr 5fr 20fr 5fr 5fr 20fr 15fr 10fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_9.is_contact {
  grid-template-columns: 15fr 20fr 30fr 15fr 15fr 5fr;
}

.table_col_9.is_contact_details {
  grid-template-columns: 10fr 10fr 15fr 20fr 5fr 5fr 20fr 15fr;
}

.detail_icon {
  width: 1.3rem;
  min-width: 1.3rem;
  height: 1.3rem;
  min-height: 1.3rem;
}

.secondary_menu_tree_wrapper {
  padding: 1rem;
}

.secondary_action_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-top: 1px solid var(--border_1);
  background-color: var(--white);
  align-items: center;
  width: auto;
  margin-top: auto;
  padding: 1rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.search_content {
  width: 100%;
  padding: 1rem;
}

.required {
  color: var(--red);
  padding-left: .2rem;
}

.status {
  border-radius: 42px;
  justify-content: center;
  align-items: center;
  min-width: 4.5rem;
  padding: .125rem .25rem;
  font-size: .8125rem;
  font-weight: 500;
  display: flex;
}

.status.is_enable {
  color: #0e8c43;
  background-color: #daf2e4;
  border-radius: 4px;
  padding-left: .5rem;
  padding-right: .5rem;
}

.status.is_disable {
  color: #3a3d4d;
  background-color: #d8dae5;
  border-radius: 4px;
  padding-left: .5rem;
  padding-right: .5rem;
}

.status.is_pending {
  color: #e52e2e;
  background-color: #ffe5e5;
  border-radius: 4px;
  padding-left: .5rem;
  padding-right: .5rem;
}

.table_col_custom_7 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 30fr 20fr 10fr 10fr 10fr 15fr 5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_custom_7.is_contact {
  grid-template-columns: 15fr 20fr 30fr 15fr 15fr 5fr;
}

.table_col_custom_7.is_permission {
  border-bottom-color: var(--border_1);
  grid-template-columns: 10fr 40fr 10fr 10fr 10fr 10fr 10fr;
}

.table_col_custom_7.is_permission.is_main_section {
  background-color: rgba(0, 0, 0, .03);
}

.table__custom_th {
  text-transform: uppercase;
  white-space: normal;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 4rem;
  max-width: 100%;
  padding: .5rem;
  font-size: .75rem;
  display: flex;
}

.table__custom_th.is_center {
  justify-content: center;
  align-items: center;
}

.table_custom_td {
  justify-content: flex-start;
  align-items: center;
  min-width: 4rem;
  max-width: 100%;
  padding: .75rem .5rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.table_custom_td.is_gray {
  color: var(--table_gray);
  font-size: .75rem;
  font-weight: 400;
}

.table_custom_td.is_last {
  justify-content: center;
}

.table_custom_td.is_title {
  font-size: 1.125rem;
}

.table_custom_td.is_center {
  justify-content: center;
}

._2_col_grid_left_contents {
  border-right: 1px solid rgba(255, 255, 255, .5);
}

._2_col_grid_right_contents {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: space-between;
  display: flex;
}

.top_container_wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  justify-content: center;
  align-items: center;
  height: 100%;
  max-height: 20rem;
  display: flex;
}

.search_user_contents_wrapper, .bottom_container_wrapper {
  height: 100%;
}

.search_customer_contents_wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem;
  display: flex;
}

.radio_content_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  margin-top: .5rem;
  display: flex;
}

.contact_details_wrapper {
  background-color: #f8f8fa;
  border-radius: 10px;
  padding: 2.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 3rem;
}

.customer_details_col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.modal_side_drawer_contents {
  z-index: 999;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.modal_overlay {
  background-color: rgba(0, 0, 0, .7);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.modal_side_drawer_wrapper {
  z-index: 1000;
  background-color: var(--white);
  flex-direction: column;
  width: 45rem;
  height: 100vh;
  padding: 2rem 3rem 3rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: auto;
}

.modal_close_wrapper {
  background-color: var(--white);
  border-radius: 50%;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: -1rem;
  padding: .5rem;
  display: inline-block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.modal_close {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
}

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

.modal_title_wrapper {
  margin-bottom: 1.5rem;
}

.modal_desc_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  display: flex;
}

.media_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f8f8fa;
  border-radius: 10px;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 2.5rem;
  display: flex;
}

.media_list_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  border-radius: 4px;
  align-items: center;
  margin-bottom: .75rem;
  padding: .75rem;
  display: flex;
}

.media_list_item.is_flex {
  justify-content: space-between;
  margin-bottom: .625rem;
}

.media_icon {
  color: var(--white);
  background-color: #0e8c43;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  font-size: .625rem;
  display: flex;
}

.media_icon.is_mp3 {
  background-color: #0e8c43;
}

.media_icon.is_pdf {
  background-color: #cc2929;
}

.media_icon.is_doc {
  background-color: #3775e7;
}

.media_icon.is_image {
  background-color: #fdab05;
  font-weight: 500;
}

.media_file_name {
  font-size: .75rem;
}

.details_container {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 5rem;
}

.details_container.is-center {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.details_container.is-search {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  height: 100%;
  display: flex;
}

.details_container.is_two_column {
  grid-column-gap: 6rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 40fr 60fr;
  grid-auto-columns: 1fr;
  max-width: 70rem;
  display: grid;
}

.details_section.is_file_uploader {
  background-color: #f8f8fa;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 5rem;
}

.details_section.is_delete {
  background-color: #f8f8fa;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 0;
  padding: 1.5rem;
  display: flex;
}

.details_section.is_delete.is_in_form {
  margin-top: 0;
}

.details_section.is_last {
  margin-bottom: 0;
}

.details_section.is_last.is_md {
  max-width: 75%;
}

.details_wrapper {
  margin-bottom: 4rem;
  padding: 0 .75rem;
}

.details_wrapper.is_last {
  margin-bottom: 0;
}

.deails_title_wrapper {
  margin-bottom: 2rem;
}

.deails_title_wrapper.is_sm {
  margin-bottom: 1rem;
}

.enquiries_details_wrapper {
  width: 100%;
}

.enquiries_details_wrapper.is_search {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.form_value_wrapper {
  margin-bottom: .25rem;
  display: flex;
}

.form_value_wrapper.is_subtitle {
  margin-bottom: .5rem;
}

.auth_component_wrapper {
  border: 1px none var(--border_1);
  background-color: var(--white);
  border-radius: 10px;
  width: 28rem;
  max-width: 100rem;
  height: auto;
  min-height: 16rem;
  margin: auto;
  padding: 2rem;
  overflow: hidden;
  box-shadow: 0 0 54px rgba(0, 0, 0, .2);
}

.form_link {
  text-decoration: none;
}

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

.is_profile_pic {
  width: 4rem;
  height: 4rem;
}

.userwrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.details_grid_wrapper {
  margin-bottom: 1.5rem;
}

.details_grid_3 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.details_grid_card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
}

.details_grid_card.is_charts {
  padding: 1rem;
}

.details_card_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(4rem, 4rem) 70%;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.card_icon {
  width: 4rem;
  height: 4rem;
}

.card_details_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.card_details_titile {
  color: #696c80;
  font-size: 1rem;
  font-weight: 500;
}

.card_details_value {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.card_details_value.text_14 {
  font-size: 1rem;
  line-height: 1.5;
}

.card_details_value_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: flex-end;
  display: flex;
}

.details_grid_2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.chart_head_wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.color_gray_3 {
  color: #12131a;
}

.sidebar_close {
  width: 1rem;
  height: 1rem;
}

.file_uploader_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px dashed #9a9eb2;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .625rem;
  padding: .75rem;
  display: flex;
}

.file_uploader_icon {
  width: 3.5rem;
  height: 3.5rem;
}

.uploader_left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.file_size_wrapper {
  white-space: nowrap;
}

.uploaded_file_left, .uploaded_file_right, .uploaded_file_left-copy {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.uploaded_file_middle {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-right: auto;
  display: flex;
}

.preogress_wrapper {
  width: 100%;
  margin-top: .2rem;
}

.progress_bar {
  background-color: #004de5;
  border-radius: 20px;
  width: 80%;
  height: 6px;
  transition: all .2s;
}

.empty_msg {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .5rem;
  display: flex;
}

.table_col_4 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid var(--border_1);
  grid-template-rows: auto;
  grid-template-columns: 20fr 40fr 10fr 10fr 15fr 5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.table_col_4.is_contact {
  grid-template-columns: 15fr 20fr 30fr 15fr 15fr 5fr;
}

.table_col_4.is_admins {
  grid-template-columns: 10fr 35fr 20fr 20fr 10fr 5fr;
}

.table_col_4.is_article {
  grid-template-columns: 10fr 20fr 35fr 10fr 20fr 5fr;
  display: grid;
}

.app-version {
  text-align: center;
  margin-bottom: -1.5rem;
  padding: .5rem;
  font-size: .875rem;
  font-weight: 500;
}

.table_cell {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 500;
}

.table_row {
  border-top: 1px solid var(--border_1);
  border-bottom: 1px solid var(--border_1);
}

.table_row.title-row {
  background-color: rgba(0, 0, 0, .03);
}

.table_header {
  text-align: left;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 400;
}

.table_component {
  min-width: 60rem;
  overflow: visible;
}

.row-title {
  font-size: 1.125rem;
}

.is-flex {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #ba8a49;
  border-radius: 6.25rem;
  padding: .5rem 1.25rem;
  font-weight: 600;
}

.button.is-form-submit {
  border: 1px #000;
  border-radius: .25rem;
  width: 100%;
  padding: .75rem;
  transition: all .2s ease-out;
}

.button.is-form-submit:hover {
  background-color: #000;
}

.button.is-form-submit.is-auto {
  width: auto;
}

.button.is-form-inner-button {
  background-color: #000;
  border: 1px #000;
  border-radius: .25rem;
  justify-content: center;
  width: 100%;
  padding: .75rem;
  text-decoration: none;
  display: flex;
}

.button.is-form-inner-button:hover {
  color: var(--white);
}

.button.is-form-inner-button.is-cursor-pointer {
  cursor: pointer;
}

.button.is-cancel {
  color: #000;
  background-color: #ebecf2;
  border: 1px #000;
  border-radius: .25rem;
  padding: .5rem .75rem;
  font-weight: 500;
  transition: all .2s ease-out;
}

.button.is-cancel:hover {
  color: #fff;
  background-color: #ba8a49;
}

.button.is-cancel.is-gold {
  color: #fff;
  white-space: nowrap;
  background-color: #ba8a49;
}

.button.is-cancel.is-gold:hover {
  background-color: #000;
}

.button.is-form-inner-button {
  background-color: #000;
  border: 1px #000;
  border-radius: .25rem;
  justify-content: center;
  width: 100%;
  padding: .75rem;
  display: flex;
}

.icon-1x1-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.tabs-stage {
  margin-top: 1.5rem;
}

.tabs-nav-item {
  color: #696c80;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.tabs-nav-item-inner-wrapper {
  color: #696c80;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem .75rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.tabs-nav-item-inner-wrapper:hover {
  color: #696c80;
}

.tabs-nav-item-inner-wrapper.tab-active {
  color: #fff;
  background-color: #000;
}

.tabs-nav {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #ebecf2;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: .5rem;
  display: grid;
}

.tabs-nav-item-inner {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.form-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-wrapper.is-sign-up {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  width: 100%;
}

.form_select-option {
  font-weight: 600;
}

.form_input {
  background-color: #ebecf2;
  border: 1px #000;
  border-radius: .25rem;
  width: 100%;
  min-height: 3rem;
  padding: .75rem 1.5rem .75rem .75rem;
}

.form_input:active, .form_input:focus {
  border-style: solid;
}

.form_input::placeholder {
  color: #828699;
  font-weight: 500;
}

.form_input.is-select-input-clock {
  background-image: url('../images/clock.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  width: 100%;
  min-height: auto;
  padding-left: 2.25rem;
  font-weight: 600;
}

.form_input.is-select-input-calendar {
  background-image: url('../images/Frame32.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  width: 100%;
  min-height: auto;
  padding-left: 2.25rem;
  font-weight: 600;
}

.form_input.is-with-bg_img {
  background-image: url('../images/Frame1_1.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  width: 100%;
  padding-left: 2.25rem;
  font-weight: 500;
}

.form_input.is-with-bg_img.is-alt {
  background-image: url('../images/Frame.svg');
}

.form_input.is-verification-code {
  text-align: center;
  width: 3.5rem;
  padding-right: .75rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 150%;
}

.text-size-regular.text-weight-medium {
  font-weight: 500;
}

.text-size-regular.text-weight-medium.text-color-grey--500 {
  color: #696c80;
}

.text-size-regular.text-weight-semibold {
  font-weight: 600;
}

.form-inner-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-inner-wrapper.align-center {
  align-items: center;
}

.flex-horizontal-0-5 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.form_label {
  margin-bottom: 0;
}

.form_label.is-checkbox {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  font-weight: 600;
  display: flex;
}

.discount_applied_tag {
  color: #000;
  white-space: nowrap;
  background-color: #ebecf2;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .5rem .75rem;
  font-weight: 600;
  display: flex;
}

.grid-2-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-2-column.is-payment {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-columns: 1fr 1fr;
  height: 45rem;
  padding-right: .5rem;
  overflow: auto;
}

.grid-2-column.is-total {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.grid-2-column.is-modal-scroll {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: .75fr 1.25fr;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.grid-2-column.is-modal {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: .75fr 1.25fr;
  height: 100%;
}

.grid-2-column.is-drivers-list-top {
  justify-content: space-between;
}

.add_discount_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid #babdcc;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .625rem;
  display: flex;
}

.form_input_label {
  font-size: .875rem;
  font-weight: 500;
}

.form-radio-button-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.centered-text-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  white-space: nowrap;
  align-items: center;
  display: flex;
}

.flex-vertical-0-75 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  display: flex;
}

.text-size-small {
  font-size: .875rem;
  line-height: 171.429%;
}

.text-size-small.text-weight-medium.text-color-grey--400 {
  color: #828699;
}

.urgency_status_main_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #ebecf2;
  border-radius: .5rem;
  justify-content: space-between;
  padding: .75rem .625rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.order_total_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid #000;
  border-radius: .625rem;
  flex-direction: column;
  width: 100%;
  padding-top: 2.5rem;
  display: flex;
  overflow: hidden;
}

.spacer-0-75 {
  height: .75rem;
}

.order_details_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.label-inner-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: none;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.label-inner-wrapper.is-0-75 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.flex-verticle {
  flex-direction: column;
  display: flex;
}

.flex-verticle.is-2-5 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}

.order_total_top_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
}

.selected-location-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.grid-content-right {
  flex-direction: column;
}

.grid-content-right.is-total {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.grid-content-right.is-popup {
  height: 100%;
}

.selected-label-wrapper {
  color: #fff;
  background-color: #000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .75rem;
  display: flex;
  overflow: hidden;
}

.selected-label-wrapper.is-auto {
  flex: none;
  width: auto;
}

.text-size-xlarge {
  font-size: 1.5rem;
  line-height: 116.66%;
}

.grid-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.grid-content-left.is-payment-modal {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.grid-content-left.is-total {
  flex-direction: row;
  align-items: center;
}

.grid-content-left.is-popup {
  height: 100%;
}

.grid-content-left.is-drivers-list-top-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-direction: row;
  justify-content: flex-start;
}

.order_total_bottom_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--black);
  flex-direction: column;
  padding: 1.5rem 2.5rem 2.5rem;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.icon-1x1-xsmall {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.map-wrapper {
  border-radius: .625rem;
  height: 100%;
  overflow: hidden;
}

.spacer-custom2 {
  height: 2.5rem;
}

.image-wrapper.is-map-location {
  background-color: rgba(255, 96, 96, .2);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 3.125rem;
  display: flex;
}

.image-wrapper.is-driver-img {
  border-radius: 62.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
}

.map-location-inner-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 24.25rem;
  display: flex;
}

.icon-1x1-large {
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.map-location-outer_border-wrapper {
  border: 1px solid rgba(255, 96, 96, .2);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  display: flex;
}

.form-bottom-warning-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.map-default-wrapper {
  background-color: #f5f3e6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.form-options-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.form-inner-main-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.spacer-custom1 {
  height: 1.5rem;
}

.form-option-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #ebecf2;
  border-radius: .25rem;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-weight: 600;
  transition: all .2s ease-out;
  display: flex;
}

.form-option-wrapper:hover {
  background-color: #d8dae5;
}

.form-option-wrapper.is-selected {
  border: 2px solid #000;
}

.text-size-large {
  font-size: 1.25rem;
}

.form-toggle-option-item-wrapper {
  color: #696c80;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 600;
  overflow: hidden;
}

.form-toggle-option-item-wrapper.is-selected {
  color: #fff;
  background-color: #000;
}

.form-toggle-option-wrapper {
  background-color: #ebecf2;
  border-radius: .5rem;
  padding: .5rem;
  display: flex;
}

.form-option-selected-content-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  padding: .5rem 1.5rem 1.5rem;
  display: flex;
}

.selected-labels-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  width: 100%;
  display: flex;
}

.form-input-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  background-color: #ebecf2;
  border-radius: .25rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: .75rem;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}

.display-inlineflex.is-0-75 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.display-inlineflex.is-1-5 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}

.display-inlineflex.is-0-25 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
}

.form-inner-vehicle_weight-wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.selected-single-option-wrapper {
  border-bottom: 2px solid #d8dae5;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: 600;
  display: flex;
}

.form-option-left-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.drivers_list_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid #000;
  border-radius: .625rem;
  flex-direction: column;
  padding-top: 1.5rem;
  display: flex;
  overflow: hidden;
}

.drivers_list_bottom_wrapper {
  border-top: 1px solid var(--black);
  justify-content: space-between;
  padding: .75rem 1.5rem;
  display: flex;
}

.drivers_list {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  display: flex;
}

.text-size-medium {
  font-size: 1.125rem;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.more_info_btn {
  color: #696c80;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-out;
  display: flex;
}

.more_info_btn:hover {
  color: #000;
}

.stars_wrapper {
  display: flex;
}

.drivers_list_top_wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.authentication_block_wrapper {
  background-color: #fff;
  border-radius: .625rem;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  padding: 5rem;
  display: flex;
}

.modal-success_message-wrapper {
  color: #007613;
  background-color: #cdffcc;
  border-radius: .25rem;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.modal-error_message-wrapper {
  color: #b50000;
  background-color: #fcc;
  border-radius: .25rem;
  justify-content: flex-start;
  align-items: center;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.verification_loader {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-message-inner-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.verification_lwaiting_wrapper {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.verification_code_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: space-between;
  display: flex;
}

.help_text_wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cursor-pointer {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  h2 {
    margin-bottom: 12px;
  }

  .grid-2-columns.main-dashboard-grid {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .card._404 {
    max-width: 520px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card.image-right-inside {
    padding: 56px 40px;
  }

  .grid-1-column.sidebar-links-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-1-column.sidebar-links-grid.mg-bottom-48px {
    margin-bottom: 32px;
  }

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

  .grid-3-columns._1-col-tablet {
    grid-template-columns: 1fr;
  }

  .inner-container._100-tablet {
    max-width: 100%;
  }

  .hamburger-menu-wrapper {
    grid-column-gap: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-wrapper.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .hidden-on-desktop.show-on-tablet {
    display: block;
  }

  .error-message.password {
    margin-left: 32px;
    margin-right: 32px;
  }

  ._404-not-found {
    font-size: 100px;
  }

  .text-50.medium.sidebar-title {
    margin-bottom: 12px;
  }

  .dashboard-main-content.utility-page-main-content {
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    display: flex;
  }

  .dashboard-main-content.changelog-page-main-content {
    grid-row-gap: 80px;
    min-height: auto;
  }

  .text-600 {
    font-size: 26px;
  }

  .header-nav-menu-wrapper {
    z-index: 999999;
    border-top: 1px solid var(--neutral--300);
    border-bottom: 1px solid var(--neutral--300);
    background-color: var(--neutral--100);
    text-align: left;
    padding: 40px 24px;
  }

  .header-nav-menu-list {
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
    display: none;
  }

  .sidebar-container {
    z-index: 0;
    position: static;
  }

  .buttons-container {
    grid-column-gap: 20px;
  }

  .divider-vertical {
    margin-left: 40px;
    margin-right: 40px;
  }

  .avatars-container {
    grid-column-gap: 40px;
  }

  .header-right-side-container {
    grid-column-gap: 16px;
    align-items: center;
    display: flex;
  }

  .hamburger-menu-bar {
    width: 44px;
  }

  .footer-top-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-bottom-section {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .card-image-right {
    width: 56%;
  }

  .cta-card {
    border-radius: 20px;
    padding: 64px 40px;
  }

  .hidden-on-tablet {
    display: none;
  }

  .header-sidebar-wrapper {
    margin-bottom: 24px;
    display: block;
  }

  .grid-2-columns-2._1-col-tablet {
    grid-template-columns: 1fr;
  }

  .side_components_wrapper {
    min-width: 13.5rem;
  }

  .sidebar_menu_section {
    padding: 1rem .5rem;
  }

  .menu_icon {
    width: 1.2rem;
    min-width: 1.2rem;
    height: 1.2rem;
    min-height: 1.2rem;
  }

  .sidebar_link {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
  }

  .sidebar-search-wrapper {
    display: none;
  }

  .sidebar-logo-link.show-on-tablet {
    display: block;
  }

  .dropdown-toggle-2.sidebar-dropdown {
    padding-right: .5rem;
  }

  .hamburger-menu-wrapper-2 {
    grid-column-gap: 24px;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    display: flex;
  }

  .hamburger-menu-wrapper-2.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .sidebar-dropdown-list-wrapper.sidebar-account-settings-list {
    max-width: 100%;
  }

  .position-relative---z-index-3 {
    display: block;
  }

  .position-relative---z-index-3.logo-and-icon-mobile-container {
    grid-column-gap: 24px;
    justify-content: space-between;
    align-items: center;
    padding-left: 24px;
    display: flex;
  }

  .sidebar-mobile-menu-icon {
    max-width: 12px;
  }

  .sidebar-menu-container {
    background-color: #080f25;
    min-width: 260px;
    height: 110vh;
    min-height: 100vh;
    margin-top: 80px;
    padding-top: 24px;
    padding-bottom: 150px;
    overflow: auto;
  }

  .sidebar-mobile-menu-icon-wrapper {
    grid-column-gap: 10px;
    justify-content: center;
    align-items: center;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    margin-top: 8px;
    margin-left: 8px;
    display: flex;
  }

  .sidebar-dropdown-link {
    padding-left: 2rem;
  }

  .sidebar-wrapper {
    border-bottom: .6px solid #37446b;
    border-right-style: none;
    max-width: none;
    height: auto;
    min-height: 80px;
    max-height: 80px;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .sidebar-btn-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sidebar-logo-section-container {
    display: none;
  }

  .btn_base {
    min-width: 5rem;
  }

  ._2_col_grid {
    grid-template-columns: 15fr 85fr;
  }

  ._2_col_grid.is_call_center {
    display: flex;
  }

  .secondary_menu_wrapper {
    min-width: 15rem;
  }

  .table_search_wrapper {
    z-index: 90;
    background-color: var(--white);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }

  .form_container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .form_container.is-search {
    padding: 2rem;
  }

  .form_container.is_two_column {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: grid;
  }

  .form_section {
    margin-bottom: 2.5rem;
  }

  .form_section.is_file_uploader {
    padding: 2rem;
  }

  .form_section.is_delete {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: center;
  }

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

  .search_customer_contents_wrapper {
    padding: 2rem;
  }

  .contact_details_wrapper {
    position: relative;
    top: auto;
  }

  .media_list_item.is_flex {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .details_container {
    padding: 2rem 3rem;
  }

  .details_grid_3 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .details_card_grid {
    flex-direction: column;
    grid-auto-flow: row;
    align-items: flex-start;
    display: flex;
  }

  .details_grid_2 {
    flex-direction: column;
    display: flex;
  }

  .file_uploader_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-style: none;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .uploaded_file_right {
    margin-left: auto;
  }

  .grid-2-column.is-payment, .grid-2-column.is-modal-scroll, .grid-2-column.is-modal {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 32rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  blockquote {
    border-radius: 18px;
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .grid-2-columns._2-col-mbl {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2-columns.pd-sides-40px.pd-sides-0-mbl {
    grid-row-gap: 12px;
  }

  .card {
    box-shadow: 0 2px 12px rgba(20, 20, 43, .04);
  }

  .card._404 {
    max-width: 480px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .card.component-card {
    padding: 32px;
  }

  .card.pd-32px---18px {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card.image-right-inside {
    grid-row-gap: 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    padding: 40px 32px 0;
  }

  .mg-bottom-32px {
    margin-bottom: 28px;
  }

  .mg-bottom-40px {
    margin-bottom: 34px;
  }

  .mg-bottom-48px {
    margin-bottom: 40px;
  }

  .mg-top-48px {
    margin-top: 40px;
  }

  .grid-1-column.sidebar-links-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-3-columns.home-cards-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .inner-container._100-mbl {
    max-width: 100%;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .error-message.password {
    margin-left: 24px;
    margin-right: 24px;
  }

  ._404-not-found {
    font-size: 80px;
  }

  .mg-bottom-12px.mg-bottom-32px-mbl {
    margin-bottom: 32px;
  }

  .hidden-on-mbl {
    display: none;
  }

  ._2-items-wrap-container.justify-center.gap-column-48px {
    grid-column-gap: 40px;
  }

  ._2-items-wrap-container.gap-row-40px {
    grid-row-gap: 40px;
  }

  .dashboard-main-content.utility-page-main-content {
    padding-top: 64px;
  }

  .text-500 {
    font-size: 22px;
  }

  .text-600 {
    font-size: 24px;
  }

  .header-nav-menu-wrapper {
    padding: 32px 20px;
  }

  .divider-vertical {
    margin-left: 32px;
    margin-right: 32px;
  }

  .card-icon-square {
    border-radius: 8px;
    max-width: 40px;
  }

  .data-table-row {
    min-width: 800px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .user-table-row {
    grid-template-columns: 2.5fr 1.5fr 1fr .8fr;
  }

  .tab-menu-underline-link {
    padding-bottom: 20px;
  }

  .header-right-side-container {
    grid-column-gap: 12px;
  }

  .hamburger-menu-bar {
    width: 32px;
  }

  .footer-top-section {
    grid-column-gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-links-container {
    grid-column-gap: 12px;
  }

  .footer-bottom-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .social-links-container {
    grid-column-gap: 12px;
  }

  .social-circle-link {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    font-size: 12px;
  }

  .card-image-right {
    width: 120%;
    max-width: none;
    margin-left: -40px;
    position: static;
  }

  .mg-top-80px {
    margin-top: 72px;
  }

  .cta-card {
    grid-row-gap: 24px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }

  .mg-bottom-80px {
    margin-bottom: 72px;
  }

  .pd-sides-40px {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pd-sides-40px.pd-sides-0-mbl {
    padding-left: 0;
    padding-right: 0;
  }

  .card-home-pages-wrapper {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .position-relative---z-index-3.logo-and-icon-mobile-container {
    padding-left: 20px;
  }

  .grid-2-column, .grid-2-column.is-payment, .grid-2-column.is-modal-scroll, .grid-2-column.is-modal {
    grid-template-columns: 1fr;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .map-wrapper {
    min-height: 24rem;
  }

  .image-wrapper.is-map-location {
    padding: 2rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .authentication_block_wrapper {
    padding: 4rem 2rem;
  }
}

@media screen and (max-width: 479px) {
  .card.password-protected-card {
    padding: 32px 24px;
  }

  .card._404 {
    padding: 48px 24px;
  }

  .card.component-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .card.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .card.image-right-inside {
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .mg-bottom-16px {
    margin-bottom: 12px;
  }

  .mg-bottom-24px {
    margin-bottom: 20px;
  }

  .mg-top-48px {
    margin-top: 32px;
  }

  .grid-1-column.sidebar-links-grid {
    grid-column-gap: 12px;
  }

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

  .grid-3-columns.home-cards-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flex-horizontal.vertical-mbp {
    flex-direction: column;
  }

  .flex-horizontal.align-start.gap-column-16px {
    grid-column-gap: 12px;
  }

  ._404-not-found {
    font-size: 64px;
  }

  .flex.align-center.gap-column-16px {
    grid-column-gap: 12px;
  }

  .dashboard-main-content.utility-page-main-content {
    padding-top: 48px;
  }

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

  .divider-vertical.horizontal-mbp {
    width: 100%;
    min-width: auto;
    max-width: none;
    min-height: 1px;
    max-height: 1px;
    margin: 32px auto;
  }

  .avatars-container {
    grid-column-gap: 24px;
    grid-row-gap: 32px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .data-table-row {
    grid-column-gap: 6px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tabs-menu {
    grid-row-gap: 2px;
    border-radius: 8px;
    flex-direction: column;
    width: 100%;
  }

  .tabs-menu.links-single {
    grid-row-gap: 20px;
  }

  .tab-menu-badge-link {
    width: 100%;
  }

  .tab-menu-underline-link {
    padding-bottom: 8px;
  }

  .breadcrumb-badge {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }

  .max-w-12px-mbp {
    max-width: 14px;
  }

  .hamburger-menu-bar {
    width: 24px;
  }

  .footer-top-section {
    grid-row-gap: 16px;
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .cta-card {
    border-radius: 12px;
    padding: 32px 24px;
  }

  .pd-sides-40px {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pd-top-64px---bottom-100px {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .card-home-pages-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hamburger-menu-wrapper-2 {
    min-width: 72px;
    max-width: 72px;
    min-height: 72px;
    max-height: 72px;
  }

  .position-relative---z-index-3.logo-and-icon-mobile-container {
    padding-left: 16px;
  }

  .sidebar-mobile-menu-icon-wrapper {
    min-width: 56px;
    max-width: 56px;
    min-height: 56px;
    max-height: 56px;
  }

  .sidebar-wrapper {
    min-height: 72px;
    max-height: 72px;
  }

  .tabs-nav {
    grid-template-columns: 1fr;
  }

  .form_input.is-verification-code {
    width: 2.25rem;
    min-height: 2rem;
    padding: .25rem;
    font-size: .75rem;
  }

  .grid-2-column.is-drivers-list-top {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .add_discount_wrapper, .urgency_status_main_wrapper {
    flex-direction: column;
  }

  .order_details_wrapper {
    align-items: center;
  }

  .order_total_top_wrapper {
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-content-right.is-total {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .grid-content-right.is-drivers-list-top-right {
    display: flex;
  }

  .grid-content-left.is-total {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    white-space: nowrap;
    flex-direction: column;
  }

  .grid-content-left.is-drivers-list-top-left {
    flex-direction: column;
  }

  .order_total_bottom_wrapper {
    flex-direction: column;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .image-wrapper.is-driver-img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .form-option-selected-content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .selected-labels-wrapper, .drivers_list_bottom_wrapper {
    flex-direction: column;
  }

  .authentication_block_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .modal-success_message-wrapper {
    padding: .375rem .5rem;
  }

  .verification_code_wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }
}

#w-node-a3c20387-e33b-c140-039e-87e0c24d205b-8cfd10cb, #w-node-a3c20387-e33b-c140-039e-87e0c24d2096-8cfd10cb, #w-node-cebd31f0-00a4-9ab8-b8cb-4335e688ac28-8cfd10cb, #w-node-_9781aa3f-aa5f-316e-de37-f15ed88dcf9e-8cfd10cb, #w-node-_01fd3363-4b8b-498b-37a2-551864979bce-8cfd10cb, #w-node-_2e55cb20-ebf5-0f72-fa34-74db2677a5f6-8cfd10cb, #w-node-_2e55cb20-ebf5-0f72-fa34-74db2677a5f8-8cfd10cb, #w-node-_2e55cb20-ebf5-0f72-fa34-74db2677a5fa-8cfd10cb, #w-node-_9ea5edb6-8b3a-5084-44ba-ae1acbe1da26-8cfd10cb, #w-node-_9ea5edb6-8b3a-5084-44ba-ae1acbe1da28-8cfd10cb, #w-node-_9ea5edb6-8b3a-5084-44ba-ae1acbe1da2a-8cfd10cb, #w-node-_159e7c07-2918-bdb5-81a4-1d58ba716752-8cfd10cb, #w-node-_645c67a7-0788-338d-1229-f8d5a61e7156-8cfd10cb, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1130, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1130, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1131, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc07-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc0d-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc0f-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc11-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc13-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc15-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc17-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1a-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1c-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1e-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc20-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc22-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc24-8cfd1131, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc25-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff2e-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff30-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff32-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff34-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff36-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff39-8cfd1131, #w-node-_5a458728-48a4-1916-65cb-7651b0a9ff3a-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ec8-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1eca-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ecc-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ece-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ed0-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ed3-8cfd1131, #w-node-c3db6fde-9f32-3e4c-1d12-2015acdd1ed4-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c46-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c48-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c4a-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c4c-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c4e-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c51-8cfd1131, #w-node-_8d48a73b-16b1-4dc2-a176-051da2118c52-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec4f-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec51-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec55-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec57-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec59-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec5c-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec5e-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec62-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec64-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec67-8cfd1131, #w-node-_0675ba15-7ed0-48e3-fb78-0160330dec68-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482ed0-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482ed2-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482ed4-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482ed6-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482ed9-8cfd1131, #w-node-d736b8f7-54db-fb01-9e0e-8904f5482eda-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44b4-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44b6-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44b8-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44ba-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44bd-8cfd1131, #w-node-c1e24b2a-dfa2-3a4b-d966-8db4b6dc44be-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5ad-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5af-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5b1-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5b3-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5b6-8cfd1131, #w-node-_4951f840-5f3b-b8a0-f857-73dd9d9ae5b7-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db239b-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db239d-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db239f-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db23a1-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db23a4-8cfd1131, #w-node-ec2b8a25-2b87-fd5c-9506-8c7773db23a5-8cfd1131, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1133, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1133, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1134, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1134, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1134, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd1134, #w-node-_331eae55-e662-111b-e897-2db3d39262f9-8cfd1134, #w-node-_281fe30b-546b-d0c3-55f7-a668f12eca4d-8cfd1134, #w-node-bcdc41ef-97a7-9077-ac70-bae03244bf7c-8cfd1134, #w-node-_0d3d2710-ada6-3e33-228a-41355a4436d5-8cfd1134, #w-node-_34cde28c-df6a-5430-c3cf-2a18c57f8d65-8cfd1134, #w-node-_8b0aa1fb-bf08-88cb-318d-49e93cf67fb9-8cfd1134, #w-node-a144c539-32de-6180-deac-b730f7796832-8cfd1134, #w-node-_242f4c09-efd7-9b61-d183-9ff3bba07054-8cfd1134, #w-node-_85e3bdce-d6d3-6c41-6084-5ef5fe4ad0b2-8cfd1134, #w-node-_521b6f2c-7212-4842-15d2-777ffa7800ca-8cfd1134, #w-node-be6138aa-6221-e53a-46fd-87af39479875-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc412-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc414-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc416-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc418-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc41c-8cfd1134, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc41d-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f153589-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358b-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358d-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358f-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f153593-8cfd1134, #w-node-effe3704-86d0-7ca5-ef14-6f287f153594-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f1-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f3-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f5-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f7-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59fb-8cfd1134, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59fc-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca0-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca2-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca4-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca6-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553caa-8cfd1134, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553cab-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c93767-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c93769-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c9376b-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c9376d-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c93771-8cfd1134, #w-node-_9b550500-267d-5c92-8057-b35261c93772-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600dc-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600de-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e0-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e2-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e6-8cfd1134, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e7-8cfd1134, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1135, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1135, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1135, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd1135, #w-node-_331eae55-e662-111b-e897-2db3d39262f9-8cfd1135, #w-node-_281fe30b-546b-d0c3-55f7-a668f12eca4d-8cfd1135, #w-node-bcdc41ef-97a7-9077-ac70-bae03244bf7c-8cfd1135, #w-node-_0d3d2710-ada6-3e33-228a-41355a4436d5-8cfd1135, #w-node-_34cde28c-df6a-5430-c3cf-2a18c57f8d65-8cfd1135, #w-node-_8b0aa1fb-bf08-88cb-318d-49e93cf67fb9-8cfd1135, #w-node-a144c539-32de-6180-deac-b730f7796832-8cfd1135, #w-node-_242f4c09-efd7-9b61-d183-9ff3bba07054-8cfd1135, #w-node-_85e3bdce-d6d3-6c41-6084-5ef5fe4ad0b2-8cfd1135, #w-node-_521b6f2c-7212-4842-15d2-777ffa7800ca-8cfd1135, #w-node-be6138aa-6221-e53a-46fd-87af39479875-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc412-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc414-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc416-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc418-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc41c-8cfd1135, #w-node-d3c52e4d-8dac-0b3c-5e09-00b2bbbdc41d-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f153589-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358b-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358d-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f15358f-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f153593-8cfd1135, #w-node-effe3704-86d0-7ca5-ef14-6f287f153594-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f1-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f3-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f5-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59f7-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59fb-8cfd1135, #w-node-_0ea7f198-5948-0ad2-f72f-cd327f8d59fc-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca0-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca2-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca4-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553ca6-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553caa-8cfd1135, #w-node-_77c644f7-e598-cccb-acb0-22f5b4553cab-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c93767-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c93769-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c9376b-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c9376d-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c93771-8cfd1135, #w-node-_9b550500-267d-5c92-8057-b35261c93772-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600dc-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600de-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e0-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e2-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e6-8cfd1135, #w-node-_0c67cbdf-6307-b701-9813-cec9737600e7-8cfd1135, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1136, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1136 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ee9496d-5e85-c1f5-b563-6dc9bce10c60-8cfd1136 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1137, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc07-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc0d-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc0f-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc11-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc15-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc17-8cfd1137, #w-node-_88d61eca-8e2b-f696-adcf-bd1c72fc9c16-8cfd1137, #w-node-_88d61eca-8e2b-f696-adcf-bd1c72fc9c18-8cfd1137, #w-node-_88d61eca-8e2b-f696-adcf-bd1c72fc9c1a-8cfd1137, #w-node-_88d61eca-8e2b-f696-adcf-bd1c72fc9c1c-8cfd1137, #w-node-_88d61eca-8e2b-f696-adcf-bd1c72fc9c1e-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1a-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1c-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc1e-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc22-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc24-8cfd1137, #w-node-_36c87bdb-82bc-2721-2e66-6e958fbcfc25-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed998d-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed998f-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed9991-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed9993-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed9996-8cfd1137, #w-node-_9b2c1e20-e349-33e3-46e8-340b29ed9997-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12a5-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12a7-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12a9-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12ab-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12ae-8cfd1137, #w-node-_08c3817e-f2da-26a4-14a1-785dee6e12af-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef84265b-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef84265d-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef84265f-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef842661-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef842664-8cfd1137, #w-node-a6c1a009-4de0-0055-0de6-41f8ef842665-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa08-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa0a-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa0c-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa0e-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa11-8cfd1137, #w-node-d120e4fa-329b-2fcd-9f7c-5726f590fa12-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f419-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f41b-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f41d-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f41f-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f422-8cfd1137, #w-node-dfbc87e0-bd6a-586f-f2c5-773f98f3f423-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb5480-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb5482-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb5484-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb5486-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb5489-8cfd1137, #w-node-c6636f7d-8d24-88c9-89e6-55721efb548a-8cfd1137, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1138, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1138, #w-node-_1049847f-fc0b-1642-4159-fb4db13cc0d4-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1049847f-fc0b-1642-4159-fb4db13cc0e4-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-bdac3ad1-684e-0e52-5419-1132decdeb6f-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d1e4175a-4260-4180-1c64-ec14f31281d7-8cfd1138, #w-node-e4feef46-8355-a93e-2b1f-b5c86973aec2-8cfd1138, #w-node-_6e733840-199c-8fd9-881a-5558f0a91fc7-8cfd1138, #w-node-_93574cac-a513-6508-e620-98b6c6a7af6b-8cfd1138, #w-node-_38a56abe-dfe4-2008-a358-a89b44f1ddc3-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9af8-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9afa-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9afc-8cfd1138, #w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9afd-8cfd1138, #w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9afe-8cfd1138, #w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9aff-8cfd1138, #w-node-_0827a1d5-dc92-cb0b-a3bc-d19683fe9b00-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41407b7e-b666-a811-1969-498ce4fafe5b-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_41407b7e-b666-a811-1969-498ce4fafe5d-8cfd1138 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_41407b7e-b666-a811-1969-498ce4fafe5f-8cfd1138, #w-node-_41407b7e-b666-a811-1969-498ce4fafe60-8cfd1138, #w-node-_41407b7e-b666-a811-1969-498ce4fafe61-8cfd1138, #w-node-_41407b7e-b666-a811-1969-498ce4fafe62-8cfd1138, #w-node-_41407b7e-b666-a811-1969-498ce4fafe63-8cfd1138, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1139, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1139, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113a, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113a, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd113a, #w-node-_331eae55-e662-111b-e897-2db3d39262f9-8cfd113a, #w-node-bcdc41ef-97a7-9077-ac70-bae03244bf7c-8cfd113a, #w-node-ffaa433f-fc7f-7a58-c837-875ad267eb8e-8cfd113a, #w-node-_281fe30b-546b-d0c3-55f7-a668f12eca4d-8cfd113a, #w-node-_0d3d2710-ada6-3e33-228a-41355a4436d5-8cfd113a, #w-node-bb0dd453-a850-d259-0303-e8eaa331d129-8cfd113a, #w-node-_34cde28c-df6a-5430-c3cf-2a18c57f8d65-8cfd113a, #w-node-_8b0aa1fb-bf08-88cb-318d-49e93cf67fb9-8cfd113a, #w-node-a144c539-32de-6180-deac-b730f7796832-8cfd113a, #w-node-_242f4c09-efd7-9b61-d183-9ff3bba07054-8cfd113a, #w-node-_018db9c2-b811-b34a-f1ad-bc68be25d6b2-8cfd113a, #w-node-_85e3bdce-d6d3-6c41-6084-5ef5fe4ad0b2-8cfd113a, #w-node-d3a48574-6ce4-e7c6-c899-6eeb70a7204a-8cfd113a, #w-node-_521b6f2c-7212-4842-15d2-777ffa7800ca-8cfd113a, #w-node-be6138aa-6221-e53a-46fd-87af39479875-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376cc-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376ce-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d0-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d2-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d4-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d6-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d8-8cfd113a, #w-node-_168cb0d9-2f14-173a-9d48-4303d44376d9-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629d2-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629d4-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629d6-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629d8-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629da-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629dc-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629de-8cfd113a, #w-node-_51ed74cb-cd85-379f-5cf8-ad47caa629df-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f65-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f67-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f69-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f6b-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f6d-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f6f-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f71-8cfd113a, #w-node-bcff6cf2-d3e1-27b9-d205-6b6c7f274f72-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63e6-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63e8-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63ea-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63ec-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63ee-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63f0-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63f2-8cfd113a, #w-node-ff7a858b-a0e7-820f-2dcf-3161fdbc63f3-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9eca-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ecc-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ece-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ed0-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ed2-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ed4-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ed6-8cfd113a, #w-node-_99173e24-8c36-fffc-fd10-3700786d9ed7-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eea9-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeab-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eead-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeaf-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeb1-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeb3-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeb5-8cfd113a, #w-node-_49800c55-a21c-d3d7-c484-007d4491eeb6-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e03-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e05-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e07-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e09-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e0b-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e0d-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e0f-8cfd113a, #w-node-fbcdad70-0485-2bee-214e-3c03ea499e10-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b12-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b14-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b16-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b18-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b1a-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b1c-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b1e-8cfd113a, #w-node-_4ad916e2-a0ff-0557-f1d9-0d64c1dc2b1f-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758bae6-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758bae8-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baea-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baec-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baee-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baf0-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baf2-8cfd113a, #w-node-_57433e8d-cd12-56f9-9221-153ed758baf3-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f295-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f297-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f299-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f29b-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f29d-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f29f-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f2a1-8cfd113a, #w-node-_54ced6eb-6840-3be9-65df-2cd765b4f2a2-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879c7-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879c9-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879cb-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879cd-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879cf-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879d1-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879d3-8cfd113a, #w-node-f8f46e2a-be72-fcfc-16e5-ef26d3c879d4-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f052b-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f052d-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f052f-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f0531-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f0533-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f0535-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f0537-8cfd113a, #w-node-e1e4f529-0244-a556-3d40-687f671f0538-8cfd113a, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113b, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac96f-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac971-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac973-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac975-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac977-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac979-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac97b-8cfd113b, #w-node-_09ed7342-c817-e82d-1630-9e6348d69e69-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac97e-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac980-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac982-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac984-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac986-8cfd113b, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac988-8cfd113b, #w-node-_786e47e2-6540-b44c-a88c-d783c7b50a62-8cfd113b, #w-node-f30f3682-dc03-437a-024c-03c092cf2e05-8cfd113b, #w-node-d49f9e67-d058-6a9e-b551-3b06505bf055-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ec9-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ecb-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ecd-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ecf-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ed1-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ed3-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ed5-8cfd113b, #w-node-ff24f17a-32e4-6d41-e77b-6ec4eeee4ed7-8cfd113b, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113c, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113c, #w-node-_8660ed65-fd57-16ed-eac9-10ac36a703ce-8cfd113c, #w-node-_182b722f-3b8f-9d41-3fbf-664ff94753b6-8cfd113c, #w-node-_4f0a6f8a-4e85-9828-eae5-ba4dfabecf59-8cfd113c, #w-node-_18a42fcd-880d-0372-fbbd-5da279c747b0-8cfd113c, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113d, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113d, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd113d, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd113d, #w-node-_331eae55-e662-111b-e897-2db3d39262f9-8cfd113d, #w-node-_281fe30b-546b-d0c3-55f7-a668f12eca4d-8cfd113d, #w-node-bcdc41ef-97a7-9077-ac70-bae03244bf7c-8cfd113d, #w-node-_0d3d2710-ada6-3e33-228a-41355a4436d5-8cfd113d, #w-node-_34cde28c-df6a-5430-c3cf-2a18c57f8d65-8cfd113d, #w-node-_8b0aa1fb-bf08-88cb-318d-49e93cf67fb9-8cfd113d, #w-node-a144c539-32de-6180-deac-b730f7796832-8cfd113d, #w-node-_242f4c09-efd7-9b61-d183-9ff3bba07054-8cfd113d, #w-node-_85e3bdce-d6d3-6c41-6084-5ef5fe4ad0b2-8cfd113d, #w-node-_521b6f2c-7212-4842-15d2-777ffa7800ca-8cfd113d, #w-node-be6138aa-6221-e53a-46fd-87af39479875-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b4c-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b4e-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b50-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b52-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b56-8cfd113d, #w-node-e4909f24-4d65-7ca1-2f67-a2be2b646b57-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305ba5-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305ba7-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305ba9-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305bab-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305baf-8cfd113d, #w-node-_7ec7cb8b-6f01-cad8-0e43-56bffc305bb0-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2bb-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2bd-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2bf-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2c1-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2c5-8cfd113d, #w-node-dd0fd2f7-3810-1cf7-5f22-49d03200a2c6-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f782b-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f782d-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f782f-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f7831-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f7835-8cfd113d, #w-node-_4b24e31e-a282-c59d-b509-1eeb554f7836-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61d6-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61d8-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61da-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61dc-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61e0-8cfd113d, #w-node-_496f5ce5-f9d2-6ec0-3252-4ca57b0a61e1-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e5fa-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e5fc-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e5fe-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e600-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e604-8cfd113d, #w-node-ff056d44-068b-c02c-2de0-157320d1e605-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220c2-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220c4-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220c6-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220c8-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220cc-8cfd113d, #w-node-ace6c377-0422-8497-fe19-e11f54a220cd-8cfd113d, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113e, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113e, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd113e, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd113f, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd113f, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd113f, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd113f, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1140, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1140, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1140, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd1140, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1141, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1141, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1141, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd1141, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1157, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1157, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1159, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1159, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd115a, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd115a, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd115b, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd115b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ee9496d-5e85-c1f5-b563-6dc9bce10c60-8cfd115b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd115c, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd115c, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd115d, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac96f-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac971-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac973-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac975-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac977-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac979-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac97b-8cfd115d, #w-node-_09ed7342-c817-e82d-1630-9e6348d69e69-8cfd115d, #w-node-_553e975e-c4a5-6f0e-dcb6-0aabe468bd39-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac97e-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac980-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac982-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac984-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac986-8cfd115d, #w-node-b6aa9dc5-6d7a-a775-660f-86023a3ac988-8cfd115d, #w-node-_786e47e2-6540-b44c-a88c-d783c7b50a62-8cfd115d, #w-node-f30f3682-dc03-437a-024c-03c092cf2e05-8cfd115d, #w-node-aed45265-12b6-019f-8741-2180ed97d437-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae37-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae39-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae3b-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae3d-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae3f-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae41-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae43-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae45-8cfd115d, #w-node-_966aa3af-8866-f6cc-5b0a-23a75618ae47-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a86-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a88-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a8a-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a8c-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a8e-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a90-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a92-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a94-8cfd115d, #w-node-b9f98886-ab1c-461d-31f2-59e7ed482a96-8cfd115d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_61914fa1f3028ad34c1c480b000000000014-8cfd116f {
  align-self: stretch;
}

#w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1172, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1172, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1172, #w-node-d8f05af7-2bcf-6ec2-ddfe-03b46d474d81-8cfd1172, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1173, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1173, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1173, #w-node-b8bc2dd9-b488-cce1-0a04-200a55d49336-8cfd1173, #w-node-_331eae55-e662-111b-e897-2db3d39262f9-8cfd1173, #w-node-_281fe30b-546b-d0c3-55f7-a668f12eca4d-8cfd1173, #w-node-_43356941-32f5-2d8b-89cd-e727755749c2-8cfd1173, #w-node-bcdc41ef-97a7-9077-ac70-bae03244bf7c-8cfd1173, #w-node-_0d3d2710-ada6-3e33-228a-41355a4436d5-8cfd1173, #w-node-_34cde28c-df6a-5430-c3cf-2a18c57f8d65-8cfd1173, #w-node-_8b0aa1fb-bf08-88cb-318d-49e93cf67fb9-8cfd1173, #w-node-a144c539-32de-6180-deac-b730f7796832-8cfd1173, #w-node-_5c795794-9307-aa9b-f95e-bae77c0daad7-8cfd1173, #w-node-_242f4c09-efd7-9b61-d183-9ff3bba07054-8cfd1173, #w-node-_85e3bdce-d6d3-6c41-6084-5ef5fe4ad0b2-8cfd1173, #w-node-_521b6f2c-7212-4842-15d2-777ffa7800ca-8cfd1173, #w-node-be6138aa-6221-e53a-46fd-87af39479875-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7ef-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7f1-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7f3-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7f5-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7f7-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7fb-8cfd1173, #w-node-af8e47bf-b417-64bc-5cc7-55ffa2e0a7fc-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928a9e-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aa0-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aa2-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aa4-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aa6-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aaa-8cfd1173, #w-node-_1639c744-e505-d548-9873-d3964c928aab-8cfd1173, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1174, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1174, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1174, #w-node-d8f05af7-2bcf-6ec2-ddfe-03b46d474d81-8cfd1174, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-8cfd1175, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-8cfd1175, #w-node-_88c9996b-98eb-e4da-3f94-61b1b664ca51-8cfd1175, #w-node-d8f05af7-2bcf-6ec2-ddfe-03b46d474d81-8cfd1175, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-7c3505c8, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-7c3505c8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54c5bcdf-adfa-ee8f-a469-1d88422237af-7c3505c8, #w-node-_54c5bcdf-adfa-ee8f-a469-1d88422237b0-7c3505c8, #w-node-_54c5bcdf-adfa-ee8f-a469-1d88422237b1-7c3505c8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-9bfdddd0, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-9bfdddd0, #w-node-_7390eab2-db27-007d-3dcc-7eca5bd3b2fe-9bfdddd0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-befacf99-6b71-5950-d6d3-82f271354c33-9bfdddd0, #w-node-befacf99-6b71-5950-d6d3-82f271354c3b-9bfdddd0, #w-node-befacf99-6b71-5950-d6d3-82f271354c3c-9bfdddd0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7390eab2-db27-007d-3dcc-7eca5bd3b314-9bfdddd0, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-c306fd33, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a52-c306fd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a73-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a77-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a78-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a7c-c306fd33 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a7d-c306fd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a81-c306fd33 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a82-c306fd33 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a86-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a87-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a8c-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a91-c306fd33 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a99-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4aa0-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4aa5-c306fd33, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-03c650cb, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005316f0-03c650cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b580053170e-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531712-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531716-03c650cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531780-03c650cb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531784-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531788-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b580053178c-03c650cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b580053179d-03c650cb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a1-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a5-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a9-03c650cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317ad-03c650cb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317ae-03c650cb, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-b773d667, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-b773d667, #w-node-_7390eab2-db27-007d-3dcc-7eca5bd3b2fe-b773d667, #w-node-_5bd73f4b-26e4-0a92-df19-5214c17aa63d-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5bd73f4b-26e4-0a92-df19-5214c17aa64e-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_30e13c40-6294-aaa3-b212-0541dd347556-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30e13c40-6294-aaa3-b212-0541dd347567-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_76e8fb65-e0c1-817f-600f-c28c7cd3a382-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76e8fb65-e0c1-817f-600f-c28c7cd3a393-b773d667 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_7390eab2-db27-007d-3dcc-7eca5bd3b314-b773d667, #w-node-a3178ecb-0eb9-963f-dd11-a7380927c72b-1f206e99, #w-node-_99f62143-9eff-5a19-ee87-65e0fb52edc0-1f206e99 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46a078d5-cf8f-b601-fe9d-51b059e76dec-1f206e99, #w-node-_46a078d5-cf8f-b601-fe9d-51b059e76ded-1f206e99, #w-node-_46a078d5-cf8f-b601-fe9d-51b059e76df3-1f206e99 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_54c5bcdf-adfa-ee8f-a469-1d88422237a5-7c3505c8, #w-node-_54c5bcdf-adfa-ee8f-a469-1d88422237aa-7c3505c8, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a7d-c306fd33, #w-node-_12d00d0a-62b0-065d-37f8-4fddbb0f4a82-c306fd33 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531784-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b5800531788-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b580053178c-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a1-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a5-03c650cb, #w-node-d8460e8c-e3e7-bffd-2c0c-6b58005317a9-03c650cb {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_5bd73f4b-26e4-0a92-df19-5214c17aa64e-b773d667, #w-node-_30e13c40-6294-aaa3-b212-0541dd347567-b773d667, #w-node-_76e8fb65-e0c1-817f-600f-c28c7cd3a393-b773d667 {
    justify-self: start;
  }

  #w-node-_46a078d5-cf8f-b601-fe9d-51b059e76dec-1f206e99 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


