:root {
  --neutral--200: #f3f4f6;
  --neutral--600: #6b7280;
  --neutral--800: #111827;
  --accent--primary-1: #3d73ff;
  --neutral--100: white;
  --neutral--400: #d1d5db;
  --general--shadow-01: #14142b17;
  --neutral--500: #9ca3af;
  --system--red-400: #dc2b2b;
  --neutral--300: #e5e7eb;
  --system--300: #ff5a65;
  --system--red-100: #ffeff0;
  --general--shadow-02: #14142b0f;
  --neutral--700: #374151;
  --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;
  --secondary--color-1: #c7d6ff;
  --secondary--color-3: #f5f8ff;
  --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: #0000001a;
  --general--shadow-04: #14142b24;
  --general--shadow-05: #14142b29;
  --general--shadow-06: #14142b3d;
  --button-shadow--color-01: #4a3aff42;
  --button-shadow--white-01: #14142b0a;
  --button-shadow--white-02: #14142b0f;
  --button-shadow--white-03: #14142b1a;
  --button-shadow--color-3: #4a3aff14;
  --button-shadow--color-2: #4a3aff14;
  --neutral--150: #f9fafb;
}

body {
  background-color: var(--neutral--200);
  color: var(--neutral--600);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.571em;
}

h1 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417em;
}

h3 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.273em;
}

h4 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375em;
}

h5 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.429em;
}

h6 {
  color: var(--neutral--800);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5em;
}

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;
}

.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;
}

.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.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;
}

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

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

.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);
}

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

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

.mg-bottom-24px {
  color: var(--neutral--800);
  margin-bottom: 24px;
  line-height: 48px;
}

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

.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.medium.mg-bottom-4px {
  line-height: 24px;
}

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

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

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

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

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

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

.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 {
  color: var(--neutral--600);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

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

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

.text-100.mg-bottom-16px.warning {
  color: var(--system--red-400);
}

.modal-container {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: block;
}

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

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

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

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

.btn-primary {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  border-radius: 24px;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: none;
  color: var(--neutral--100);
}

.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-secondary {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  color: var(--neutral--800);
  text-align: center;
  border-radius: 24px;
  padding: 12px 24px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

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

.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;
  height: 48px;
  margin-bottom: 0;
  padding: 18px 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 #1f2d541a, 0 0 1px #1f2d5433;
}

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

.checkbox.w--redirected-checked {
  background-color: #0000;
  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;
}

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

.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;
}

.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;
  position: relative;
}

.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%;
  height: 48px;
  padding: 13px 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: #0000;
}

.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.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-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(--neutral--500);
  margin-bottom: 8px;
  font-size: 120px;
  font-weight: 700;
  line-height: 1em;
}

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

.flex {
  display: flex;
}

.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;
}

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

._2-items-wrap-container {
  grid-column-gap: 24px;
  grid-row-gap: 8px;
  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.align-start {
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
}

._2-items-wrap-container.align-start.mg-bottom-16px {
  grid-column-gap: 28px;
}

._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.gap-column-24px {
  grid-column-gap: 24px;
}

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

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

.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;
}

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

.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-color: #7063ff;
  min-height: 6px;
}

.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: 99;
  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--600);
  margin-left: 4px;
  margin-right: 4px;
  padding: 12px;
  font-weight: 500;
  line-height: 20px;
}

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

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

.header-nav-link.w--current:hover {
  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 {
  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;
}

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

.sidebar-link {
  grid-column-gap: 6px;
  color: var(--neutral--600);
  border: 1px solid #0000;
  border-radius: 6px;
  align-items: center;
  padding: 8px;
  text-decoration: none;
  transition: box-shadow .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.sidebar-link:hover {
  border-color: var(--neutral--300);
  background-color: var(--neutral--100);
  color: var(--neutral--600);
}

.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);
}

.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 {
  width: 16px;
  height: 16px;
  font-family: Line Rounded Icons;
  position: absolute;
  inset: 16px 12px 16px auto;
}

.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;
  inset: 0;
}

.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 #1f2d5424, 1px 0 1px #1f2d542e;
}

.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 #4a3aff42;
}

.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 #0000;
  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 #3d73ff5c;
}

.notification-bar-icon.green {
  box-shadow: 0 1px 2px #2fdf4b42;
}

.notification-bar-icon.red {
  box-shadow: 0 1px 2px #ff3d545c;
}

.notification-bar-icon.orange {
  box-shadow: 0 1px 2px #ffa63d5c;
}

.close {
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: all .2s;
  display: flex;
}

.close:hover {
  transform: scale(1.2);
}

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

.close.hide {
  display: none;
}

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

.close-icon-line.first {
  background-color: var(--neutral--100);
  transform: rotate(45deg);
}

.close-icon-line.first.invert {
  background-color: var(--neutral--500);
}

.close-icon-line.second {
  background-color: var(--neutral--100);
  transform: rotate(-45deg);
}

.close-icon-line.second.invert {
  background-color: var(--neutral--500);
}

.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 #4a3aff42;
}

.card-icon-square._26px {
  border-width: .8px;
  border-radius: 6px;
  max-width: 26px;
  box-shadow: 0 0 2px #4a3aff42;
}

.card-icon-square._40px {
  border-radius: 8px;
  max-width: 40px;
  box-shadow: 0 1px 2px #4a3aff42;
}

.card-icon-square.neutral-icon {
  border-color: var(--neutral--600);
  box-shadow: 0 1px 4px #d5d3e442;
}

.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;
  place-items: center 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;
  place-items: center 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: #00000080;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
  position: fixed;
  inset: 0;
}

.modal-close-overlay {
  z-index: -1;
  position: absolute;
  inset: 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: #0000;
  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: #0000;
  border: 1px solid #0000;
  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: #0000;
  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: #0000;
}

.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 {
  background-color: var(--neutral--800);
  color: var(--neutral--400);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 280px;
  padding: 16px;
  display: flex;
  position: absolute;
  bottom: 24px;
  right: -24px;
}

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

.tooltip.left {
  left: -16px;
  transform: translate(-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-top {
  position: absolute;
  top: -6px;
}

.dropdown-list {
  z-index: 1;
  background-color: #0000;
  padding-top: 8px;
  display: none;
}

.dropdown-link-wrapper {
  z-index: 1;
  color: var(--neutral--600);
  border: 1px solid #0000;
  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);
}

.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);
}

.overflow-visible {
  overflow: visible;
}

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

.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;
  inset: 0;
}

.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;
}

.filter-block {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  border-radius: 12px;
  min-height: 120px;
  padding: 16px;
}

.body {
  background-color: var(--neutral--100);
  background-image: url('../images/bg_screenshot.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100vh;
  font-family: Poppins, sans-serif;
}

.icon-and-text-label {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.btn-gradient {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 12px 32px #ff467a66;
}

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

.floating-card {
  z-index: 9998;
  background-color: #020202;
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 680px;
  height: 400px;
  padding: 40px;
  display: none;
  position: fixed;
  inset: auto 0 0 auto;
  overflow: hidden;
}

.floating-card.hide {
  opacity: 0;
  transition-duration: .3s;
  bottom: -100px;
}

.dim-overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  object-fit: fill;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.iframe-container {
  z-index: 10001;
  background-color: #fff;
  border: 1px solid #020202;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 520px;
  padding: 40px;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.iframe-card {
  z-index: 10002;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--neutral--100);
  box-shadow: 0 2px 7px 0 var(--general--shadow-01);
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 560px;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 12px 12px 12px auto;
}

.iframe-wrapper {
  border-radius: 24px;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.close-icon {
  z-index: 10001;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: 24px 24px auto auto;
}

.filter-block-dinamic {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  border-radius: 12px;
  min-height: 120px;
  padding: 16px;
}

.btn-retrain {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(to right, #70a9ff, #a64dff);
  border-radius: 24px;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 16px 24px -4px #8b7aff66;
}

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

.image {
  width: 20px;
}

.utility-card {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  text-align: center;
  border-radius: 12px;
  flex-direction: column;
  align-items: stretch;
  width: 400px;
  padding: 40px;
  display: flex;
}

.splash {
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
}

.password-field {
  border: 1px solid var(--neutral--400);
  background-color: var(--neutral--100);
  color: var(--neutral--600);
  text-align: center;
  cursor: text;
  border-radius: 6px;
  width: 100%;
  height: 48px;
  margin-bottom: 24px;
  padding: 13px 14px;
}

.html-embed {
  display: flex;
  position: absolute;
  inset: 0%;
}

.training-complete {
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: auto;
  display: flex;
}

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

.content {
  z-index: 1;
  flex-flow: column;
  align-items: stretch;
  width: 360px;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.lead {
  color: var(--neutral--100);
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.label {
  color: var(--neutral--100);
  font-size: 16px;
  line-height: 1.25;
}

.label.hide {
  display: none;
}

.slider-title {
  color: var(--neutral--400);
  margin-bottom: 40px;
  line-height: 1.25;
}

.gender-buttons {
  justify-content: space-between;
  margin-bottom: 48px;
  display: flex;
}

.gender-button {
  border: 1px solid var(--neutral--400);
  color: var(--neutral--400);
  text-align: center;
  background-color: #0000;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  min-width: 112px;
  padding: 10px 24px;
  line-height: 20px;
  display: flex;
}

.gender-button:hover {
  border-color: var(--neutral--100);
  color: var(--neutral--100);
  background-color: #ffffff0d;
}

.side-image {
  object-fit: contain;
  height: 400px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.floating-button {
  z-index: 9999;
  text-align: center;
  cursor: pointer;
  background-color: #020202;
  border-radius: 28px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 14px 32px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: fixed;
  inset: auto 24px 16px auto;
  overflow: hidden;
  box-shadow: 0 24px 64px #0006;
}

.floating-button:hover {
  background-color: #222;
}

.floating-button.collapsed {
  height: 56px;
  padding: 0;
  bottom: 12px;
}

.title {
  color: var(--neutral--100);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #ff63b1, #ff7f54);
  -webkit-background-clip: text;
  background-clip: text;
  width: 120px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.heading-2 {
  font-weight: 800;
}

.floating-filter {
  z-index: 10000;
  text-align: center;
  cursor: pointer;
  background-color: #020202;
  border-radius: 28px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 14px;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  display: none;
  position: fixed;
  inset: auto 24px 16px auto;
  overflow: hidden;
  box-shadow: 0 24px 64px #0006;
}

.floating-filter:hover {
  background-color: #222;
}

.floating-filter.loading {
  width: 48px;
  padding: 12px;
}

.floating-filter.active {
  background-color: #13de00;
  background-image: linear-gradient(90deg, #28f200, #0c0);
  box-shadow: 0 24px 64px #2bff00cc;
}

.description {
  color: #6b7280;
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.5;
}

.lead-2 {
  color: #0d0d0d;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.success-animation {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.filterspinner {
  width: 24px;
  height: 24px;
  display: none;
}

.filter-label {
  color: var(--neutral--100);
  margin-left: 18px;
  margin-right: 18px;
  font-size: 16px;
  line-height: 1.25;
}

.password-block {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.iframe-training {
  z-index: 10002;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  border: 1px solid #020202;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 560px;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 12px 12px 12px auto;
  box-shadow: 0 20px 40px #0000001a;
}

.close-training {
  z-index: 10001;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: 24px 24px auto auto;
}

.body-aw {
  background-color: #0000;
  font-family: Poppins, sans-serif;
}

.slider-margin {
  margin-bottom: 64px;
  padding-left: 12px;
}

.background-image {
  background-image: url('../images/Screenshot-2024-03-25-180626.png');
  background-position: 100% 1px;
  background-repeat: no-repeat;
  background-size: auto;
}

.full-screen-body {
  background-image: url('../images/aw_bg_alt.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100%;
}

.iframe2 {
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.training-block {
  z-index: 1001;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 640px;
  margin: auto;
  padding: 40px;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
}

.div-block-2 {
  position: fixed;
  inset: 0% 0% auto auto;
}

.close-iframe {
  opacity: .5;
  width: 32px;
  height: 32px;
  position: absolute;
  inset: 16px 16px auto auto;
}

.close-iframe:hover {
  opacity: 1;
}

.explore-button {
  color: #020202;
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 48px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  position: absolute;
  bottom: 32px;
  box-shadow: 0 2px 4px #0000001a;
}

.start-ui {
  z-index: 1001;
  background-color: #000;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 640px;
  margin: auto;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.iframe1 {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.start-container {
  z-index: 4;
  opacity: 0;
  background-color: #000;
  background-image: url('../images/001.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 640px;
  padding: 32px;
  display: flex;
  position: fixed;
  inset: 50% auto auto 0%;
  overflow: hidden;
  transform: translate(-50%, -30%);
}

.start-container.hide {
  opacity: 0;
  transition-duration: .3s;
  bottom: -100px;
}

.start-lead {
  color: var(--neutral--100);
  text-align: center;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.start-body {
  background-color: #000;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  display: flex;
}

.start-desciption {
  z-index: 1;
  color: var(--neutral--100);
  text-align: center;
  margin-bottom: 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.start-button-gradient {
  z-index: 99;
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 32px;
  justify-content: center;
  width: 226px;
  padding: 12px 16px;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 12px 32px #ff467a66;
  border: none;
  animation: pulse 2s infinite ease-in-out;
  -webkit-animation: pulse 2s infinite ease-in-out;

}

.start-button-gradient:hover {
  opacity: .85;
  color: var(--neutral--100);
}

.start-container-2 {
  z-index: 9998;
  background-color: #000;
  background-image: linear-gradient(#0000 60%, #000), url('../images/001_1.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 480px;
  height: 640px;
  padding: 32px;
  display: flex;
  position: relative;
  inset: auto;
  overflow: hidden;
}

.start-container-2.hide {
  opacity: 0;
  transition-duration: .3s;
  bottom: -100px;
}

.start-button {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 12px 32px #ff467a66;
}

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

.iframe1-copy {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  position: fixed;
  inset: 0%;
}

.iframe2-copy {
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  position: fixed;
  inset: 0%;
}

.start-container-copy {
  z-index: 9998;
  background-color: #000;
  background-image: url('../images/001.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 480px;
  height: 640px;
  padding: 32px;
  display: flex;
  position: relative;
  inset: auto;
  overflow: hidden;
}

.start-container-copy.hide {
  opacity: 0;
  transition-duration: .3s;
  bottom: -100px;
}

.start-button-gradient-copy {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 12px 32px #ff467a66;
}

.start-button-gradient-copy-copy {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 12px 32px #ff467a66;
}

.start-button-gradient-copy-copy:hover {
  color: var(--neutral--100);
}

.start-desciption-2 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.start-button-gradient-2 {
  color: #fff;
  text-align: center;
  background-color: #111827;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  box-shadow: 0 12px 32px #ff467a66;
}

.start-button-gradient-2:hover {
  color: #fff;
}

.videobg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.start-container-v1 {
  z-index: 9998;
  clear: none;
  background-color: #000;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 640px;
  padding: 32px;
  display: flex;
  position: relative;
  inset: auto;
  overflow: auto;
}

.start-container-v1.hide {
  opacity: 0;
  transition-duration: .3s;
  bottom: -100px;
}

.start-button-gradient-copy {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  display: none;
  position: relative;
  box-shadow: 0 12px 32px #ff467a66;
}

.redirect-link {
  cursor: pointer;
  width: 180px;
  height: 80px;
  position: fixed;
  top: 5%;
  left: 37%;
}

.redirect-banner {
  cursor: pointer;
  width: 1200px;
  height: 160px;
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%);
}

.full-screen-body-2 {
  background-image: url('../images/aw_dc.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100%;
}

.redirect-banner-2 {
  cursor: pointer;
  width: 1200px;
  height: 160px;
  position: fixed;
  top: 22%;
  left: 58%;
  transform: translate(-50%);
}

.redirect-link-2 {
  cursor: pointer;
  width: 100px;
  height: 80px;
  position: fixed;
  top: 5%;
  left: 0%;
}

.redirect-link-3 {
  cursor: pointer;
  width: 170px;
  height: 80px;
  position: fixed;
  top: 5%;
  left: 7%;
}

.full-screen-body-3 {
  background-image: url('../images/aw_blank_bg.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
}

.redirect-link-4 {
  z-index: 10;
  cursor: pointer;
  width: 200px;
  height: 80px;
  position: fixed;
  top: 0%;
  left: 0%;
}

.iframe1-copy {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.embed-results {
  z-index: 2;
  background-color: var(--neutral--100);
  display: block;
  position: absolute;
  inset: 150px -20px 0% 0%;
}

.results-wrapper {
  z-index: 99;
  flex-flow: column;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 24px 64px;
  display: none;
  position: relative;
}

.results-background {
  z-index: 98;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.results-list-title {
  z-index: 3;
  color: #232323;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.navbar-brand {
  width: 200px;
  margin-left: 12px;
}

.nav-cta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.fixed-header {
  z-index: 100;
  background-color: #0000;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: fixed;
  inset: 0% auto auto;
}

.list-item {
  margin-bottom: 0;
  padding-left: 0;
}

.btn-secondary-2 {
  color: #111827;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 24px;
  padding: 12px 24px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.btn-secondary-2:hover {
  color: #111827;
}

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

.btn-primary-2 {
  color: #fff;
  text-align: center;
  background-color: #111827;
  border-radius: 24px;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.btn-primary-2:hover {
  box-shadow: none;
  color: #fff;
}

.navbar-container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 64px;
  display: flex;
}

.navbar-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.page-nav-link {
  color: #6b7280;
  border-bottom: 3px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 72px;
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 3px;
  padding-bottom: 0;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.page-nav-link:hover {
  color: #000;
  border-bottom-color: #000;
}

.page-nav-link.w--current {
  color: #000;
  border-bottom-color: #000;
  font-weight: 500;
}

.nav-tabs {
  z-index: 99;
  align-items: center;
  height: 72px;
  margin: 0 20px;
  padding: 0;
  display: flex;
}

.exit-link {
  opacity: .8;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-left: 16px;
  padding-right: 0;
  text-decoration: none;
  display: flex;
}

.exit-link:hover {
  opacity: 1;
  color: #fff;
}

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

.exit-link.dark.left {
  position: fixed;
  inset: 0% auto auto 0%;
}

.back-arrow {
  width: 24px;
  height: 24px;
}

.cta-message {
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 420px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.profile-card {
  aspect-ratio: 2 / 3;
  color: var(--neutral--100);
  text-shadow: 1px 1px #000c;
  background-image: linear-gradient(#0000, #0000 85%, #00000080), url('../images/image_placeholder.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 16px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  transition: all .2s;
  display: flex;
}

.profile-card:hover {
  transform: scale(1.01);
}

.profile-link {
  cursor: pointer;
  text-decoration: none;
}

.aw-logo {
  width: 212px;
  margin-top: auto;
  margin-bottom: auto;
}

.aw-logo.center {
  margin-left: auto;
  margin-right: auto;
}

.error-alert {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.dim-overlay-copy {
  z-index: 1000;
  object-fit: fill;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.error-modal-wrapper {
  z-index: 1001;
  opacity: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  padding: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 7px #14142b17;
}

.error-modal-heading {
  color: #0d0d0d;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.error-modal-subtitle {
  color: #0d0d0d;
  margin-bottom: 24px;
  font-size: 18px;
}

.error-modal-hint {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 20px;
}

.button-primary-medium {
  color: #fff;
  text-align: center;
  background-color: #0d0d0d;
  border: 2px solid #0d0d0d;
  border-radius: 32px;
  height: 56px;
  padding: 14px 36px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  transition: all .3s;
  display: block;
}

.button-primary-medium:hover {
  color: #fff;
  background-color: #333;
}

.loader-dim {
  z-index: 1001;
  object-fit: fill;
  background-color: #0d0d0d;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.loader-overlay {
  z-index: 1001;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation {
  z-index: 1002;
  position: relative;
}

.lottie-animation.size {
  width: 100px;
  height: 100px;
}

.text-1 {
  z-index: 3;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.centered-content {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.text-2 {
  z-index: 3;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.maintenence-body {
  background-image: url('../images/aw_maintenance.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
}

.image-2 {
  box-sizing: border-box;
  vertical-align: baseline;
  object-fit: scale-down;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  overflow: hidden;
}

.image-3 {
  aspect-ratio: auto;
  object-fit: fill;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  position: absolute;
  overflow: auto;
}

.high-demand-body {
  background-image: url('../images/highdemand.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
}

.cta-message-2 {
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 420px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.training-bg {
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.h1 {
  color: #fff;
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.h1.dark {
  color: var(--neutral--800);
  margin-top: 32px;
}

.content-block {
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 432px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

/* NEW LOADER START */

#content-block-loading {
  position: relative;
}

#content-block-loading span {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: reveal 4s linear forwards;
  z-index: 2;
  border-radius: 6px;
}

#content-block-loading img {
  border-radius: 6px;
}

@keyframes reveal {
  0% {clip-path: inset(0 0 0 0);}
  15% {clip-path: inset(50% 0 0 0);}
  100% {clip-path: inset(100% 0 0 0);}
}

#caption {
  display: block;
  font-family: "Roboto", sans-serif;
  white-space: pre-wrap;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1px;
  color: #b0b0b0;
  font-size: 18px;
  position: absolute;
  width: 100%;
  text-align: center;
  padding-top: 29px;
  animation: hide-caption 4s linear forwards;
}

@keyframes hide-caption {
  98% {display: block;}
  100% {display: none;}
}

/* NEW LOADER END */

.subtitle {
  color: #f0d0f5;
  margin-bottom: 32px;
  font-size: 20px;
}

.subtitle.dark {
  color: var(--neutral--700);
  margin-bottom: 32px;
}

.start-button-gradient-copy {
  z-index: 99;
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  background-image: linear-gradient(90deg, #ff3b9d, #ff5b3b);
  border-radius: 24px;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 12px 24px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 12px 32px #ff467a66;
}

.start-button-gradient-copy:hover {
  color: var(--neutral--100);
}

.go-back {
  opacity: .8;
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.go-back:hover {
  opacity: 1;
  color: #fff;
}

.lottie-loader {
  width: 280px;
  height: 24px;
}

.image-wrapper {
  position: relative;
}

.round-image {
  border-radius: 10%;
  box-shadow: 0 0 80px #ff00ff26;
}

.round-image.no-shadow {
  box-shadow: none;
}

.velvet-bg {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 50% 0, #1a0026, #000);
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.captionl {
  color: #f0d0f5;
  margin-top: 40px;
  margin-bottom: 8px;
  font-size: 20px;
}

.text-block-2 {
  color: var(--system--red-400);
  justify-content: center;
  align-items: center;
  width: auto;
  padding-top: 250px;
  font-size: 300px;
  display: flex;
}

.white-bg {
  color: var(--neutral--800);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.aw-button {
  color: var(--neutral--100);
  background-color: #8d09cc;
  border-radius: 12px;
  width: 226px;
  padding: 12px;
  font-size: 20px;
  text-decoration: none;
  border: none;
  animation: pulse 2s infinite ease-in-out;
  -webkit-animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1);}
  50% { transform: scale(1.1);}
  100% { transform: scale(1);}
}

@-webkit-keyframes pulse {
  0% { transform: scale(1);}
  50% { transform: scale(1.1);}
  100% { transform: scale(1);}
}

.aw-button:hover {
  background-color: #8408be;
}

.text-span {
  color: var(--neutral--100);
  background-color: #fd2732;
  border-radius: 4px;
  margin-top: 0;
  padding: 5px 6px 2px 7px;
  display: inline-block;
}

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

  .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;
  }

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

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

  .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;
  }

  .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;
  }

  .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;
  }

  .header-sidebar-wrapper {
    margin-bottom: 24px;
    display: block;
  }

  .embed-results {
    width: 1000px;
    height: 13730px;
    margin-top: -1590px;
    margin-left: -130px;
    transform: scale(.77);
  }

  .results-list-title {
    font-size: 28px;
  }

  .nav-cta {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .fixed-header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #0d0d0d;
    background-color: #f5f5f5;
  }

  .nav-menu-wrapper {
    background-color: #fff;
    flex-direction: column;
  }

  .page-nav-link.w--current {
    border-bottom-style: none;
    padding-top: 0;
  }

  .nav-tabs {
    background-color: #fff;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    display: flex;
  }

  .results-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .profile-card {
    border-radius: 12px;
    font-size: 16px;
  }

  .button-primary-medium {
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 20px;
  }

  .maintenence-body {
    background-position: 75% 0;
  }

  .high-demand-body {
    background-position: 50% 0;
  }
}

@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;
  }

  .card {
    box-shadow: 0 2px 12px #14142b0a;
  }

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

  .mg {
    margin-bottom: 40px;
  }

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

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

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

  .text-500 {
    font-size: 22px;
  }

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

  .header-nav-menu-wrapper {
    padding: 32px 20px;
  }

  .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;
  }

  .floating-card, .iframe-card, .training-complete, .floating-button, .floating-filter, .iframe-training, .training-block, .start-ui, .start-container, .start-container-2, .start-container-copy, .start-container-v1 {
    box-shadow: 0 2px 12px #14142b0a;
  }

  .embed-results {
    width: 670px;
    height: 20190px;
    margin-top: -1540px;
    margin-left: -66px;
    transform: scale(.85);
  }

  .navbar-brand {
    padding-left: 0;
  }

  .fixed-header {
    flex-direction: column;
  }

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

  .error-modal-wrapper {
    width: 480px;
    box-shadow: 0 2px 12px #14142b0a;
  }
}

@media screen and (max-width: 479px) {
  .card.inside-image {
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .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;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .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;
  }

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

  .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;
  }

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

  .utility-card {
    width: 312px;
    padding: 24px;
  }

  .description {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .lead-2 {
    margin-bottom: 8px;
    font-size: 24px;
  }

  .full-screen-body {
    background-image: url('../images/Untitled-1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100%;
    font-family: Poppins, sans-serif;
  }

  .iframe2 {
    display: flex;
  }

  .training-block, .start-ui {
    width: 320px;
    height: 428px;
  }

  .start-container {
    padding: 24px 12px;
  }

  .start-desciption {
    font-size: 14px;
  }

  .start-button-gradient {
    width: 180px;
    font-size: 16px;
  }

  .start-button {
    position: fixed;
    inset: auto auto 50px 50%;
    transform: translate(-50%);
  }

  .iframe1-copy, .iframe2-copy {
    display: none;
  }

  .start-container-copy {
    border-radius: 16px;
    width: 320px;
    height: 428px;
    padding: 24px;
    display: flex;
  }

  .start-button-gradient-copy-copy {
    box-shadow: none;
    background-color: #020202;
    background-image: none;
    position: fixed;
    inset: auto auto 40px 50%;
    transform: translate(-50%);
  }

  .start-desciption-2 {
    font-size: 14px;
  }

  .start-container-v1 {
    padding: 24px 12px;
  }

  .full-screen-body-2 {
    background-image: url('../images/Untitled-1.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 100%;
    font-family: Poppins, sans-serif;
  }

  .embed-results {
    width: 330px;
    height: 40340px;
    margin-top: -20px;
    margin-left: -18px;
    transform: scale(1);
  }

  .results-wrapper {
    padding: 16px 16px 48px;
  }

  .results-list-title {
    margin-top: 24px;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
  }

  .fixed-header {
    flex-direction: column;
  }

  .cta-message {
    margin-bottom: 20px;
  }

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

  .aw-logo {
    width: 150px;
    height: 40px;
  }

  .error-modal-wrapper {
    width: 300px;
  }

  .error-modal-heading {
    font-size: 22px;
    line-height: 28px;
  }

  .error-modal-subtitle {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 22px;
  }

  .maintenence-body {
    background-position: 70% 0;
  }

  .high-demand-body {
    background-position: 40% 0;
  }

  .cta-message-2 {
    margin-bottom: 20px;
  }

  .h1 {
    margin-top: 32px;
    font-size: 28px;
  }

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

  .subtitle, .captionl {
    margin-bottom: 32px;
    font-size: 16px;
  }
}

#w-node-_61914fa1f3028ad34c1c480b000000000014-0b4b7ec3 {
  align-self: stretch;
}

.hidden {
  display: none;
}
