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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #353d4a;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  letter-spacing: -.022em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25em;
}

h3 {
  letter-spacing: -.022em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25em;
}

h4 {
  letter-spacing: -.022em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 2em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  letter-spacing: -.022em;
  margin-bottom: 0;
  line-height: 1.6em;
}

label {
  margin-bottom: 0;
  font-weight: 700;
  display: block;
}

.c-styleguide {
  width: 100%;
  min-height: 100vh;
}

.sm-paragraph {
  font-size: 12px;
}

.c-container {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.c-styleguide_inner {
  padding: 50px 70px;
}

.sg-type_wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  margin-top: 25px;
  display: flex;
}

.sg-button_wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 25px;
  display: flex;
}

.c-button {
  max-width: 250px;
  min-width: 160px;
  color: #fff;
  text-align: center;
  letter-spacing: -.022em;
  background-color: #18a7de;
  border-radius: 5px;
  flex: none;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition: color .35s, background-color .35s;
}

.c-button:hover {
  background-color: #71d0f1;
}

.c-button.cc-black {
  background-color: #000;
}

.c-button.cc-black:hover {
  background-color: #333;
}

.c-button.cc-outline {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 1.75px solid #000;
}

.c-button.cc-outline:hover {
  color: #fff;
  background-color: #000;
}

.c-button.cc-outline.cc-red {
  color: #d41c52;
  border-color: #d41c52;
}

.c-button.cc-outline.cc-red:hover {
  color: #fff;
  background-color: #d41c52;
}

.c-button.cc-inactive {
  cursor: not-allowed;
  background-color: rgba(53, 61, 74, .17);
}

.c-button.cc-small {
  max-width: 200px;
  min-width: 0;
  padding: 12px 24px;
}

.c-button.cc-icon-name {
  min-width: 0;
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 1.3px solid #000;
  padding: 7px 12px 7px 36px;
  font-weight: 400;
}

.c-button.cc-icon-name.cc-purple {
  color: #fff;
  background-color: #655b9a;
  background-image: url('../images/left-arrow-white.svg');
  background-size: auto 10px;
  border-color: #655b9a;
  padding-top: 11px;
  padding-bottom: 11px;
}

.c-button.cc-edit {
  min-width: 0;
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Edit.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 1.3px solid #000;
  padding: 7px 12px 7px 32px;
  font-weight: 400;
}

.c-button.cc-edit.cc-inactive {
  opacity: .2;
}

.c-button.cc-delete {
  background-color: #d41c52;
}

.c-button.cc-delete:hover {
  background-color: #ed0d77;
}

.c-button.cc-orange {
  background-color: #f28130;
}

.c-button.cc-purple {
  background-color: #655b9a;
}

.c-button.cc-purple:hover {
  background-color: #7a78b8;
}

.c-button.cc-grey {
  background-color: #353d4a;
}

.sg-palette_wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 25px;
  display: grid;
}

.color-palette {
  width: 100%;
  height: 200px;
}

.color-palette.cc-purple-one {
  background-color: #655b9a;
}

.color-palette.cc-purple-two {
  background-color: #6464ad;
}

.color-palette.cc-purple-three {
  background-color: #7a78b8;
}

.color-palette.cc-purple-four {
  background-color: #9d96c9;
}

.color-palette.cc-orange-one {
  background-color: #f28130;
}

.color-palette.cc-orange-two {
  background-color: #f8a171;
}

.color-palette.cc-orange-three {
  background-color: #f8a97e;
}

.color-palette.cc-orange-four {
  background-color: #fbc4a6;
}

.color-palette.cc-blue-one {
  background-color: #18a7de;
}

.color-palette.cc-blue-two {
  background-color: #54caf2;
}

.color-palette.cc-blue-three {
  background-color: #71d0f1;
}

.color-palette.cc-blue-four {
  background-color: #98daf3;
}

.color-palette.cc-red-one {
  background-color: #d41c52;
}

.color-palette.cc-red-two {
  background-color: #ed0d77;
}

.color-palette.cc-red-three, .color-palette.cc-red-four {
  background-color: #f064a6;
}

.sg-form_wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  margin-top: 25px;
  display: flex;
}

.c-form_label {
  color: rgba(53, 61, 74, .54);
  letter-spacing: -.022em;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.25em;
}

.c-form_input {
  min-height: 55px;
  letter-spacing: -.022em;
  background-color: rgba(0, 0, 0, .05);
  border: 1px #000;
  border-bottom-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 0;
  padding: 20px 25px;
  line-height: 1.5em;
  transition: background-color .35s, border-color .35s;
}

.c-form_input:focus {
  border-bottom-color: #18a7de;
}

.c-form_input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-form_input::placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-form_input.cc-inactive {
  cursor: not-allowed;
}

.c-form_field {
  width: 100%;
}

.c-label_wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.c-prompt {
  color: rgba(53, 61, 74, .54);
  letter-spacing: -.022em;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25em;
}

.c-prompt.cc-hide {
  display: none;
}

.sg-field_wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  margin-bottom: 30px;
  display: flex;
}

.c-form_password {
  position: relative;
}

.input-toggle {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url('../images/Eye.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75%;
  position: absolute;
  top: 15px;
  right: 20px;
}

.input-toggle.cc-hide {
  background-image: url('../images/Eye-slash.svg');
  display: block;
}

.c-auth_wrapper {
  width: 100%;
  height: 100vh;
}

.c-auth_inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  position: relative;
}

.c-auth_form {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
  display: flex;
}

.c-auth_left {
  width: 60%;
  flex-direction: column;
  align-items: flex-start;
  padding: 70px 100px;
  display: flex;
}

.c-form {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 80px;
  display: flex;
  position: relative;
}

.c-form.cc-signin {
  padding-left: 0;
}

.c-auth_header {
  margin-bottom: 60px;
}

.cc-grey_text {
  color: rgba(53, 61, 74, .54);
}

.c-form_step {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
}

.c-form_step.cc-shrink {
  height: 4.5em;
  padding-bottom: 0;
  overflow: hidden;
}

.resend-link {
  max-width: 100px;
  color: #18a7de;
  text-align: center;
  margin-top: 15px;
  margin-left: auto;
  font-weight: 600;
  line-height: 2em;
  text-decoration: none;
  display: block;
}

.c-form_cta {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.c-form_cta.cc-align-top {
  align-items: flex-start;
}

.c-form_cta.cc-align-top.cc-shrink {
  height: 2.5em;
  flex: none;
  overflow: hidden;
}

.c-form_cta.cc-align-right {
  justify-content: flex-end;
}

.cc-hide {
  display: none;
}

.c-popup {
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .31);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.c-popup.cc-hide {
  display: none;
}

.c-popup.cc-notifications {
  align-items: flex-end;
}

.c-popup_inner {
  position: relative;
}

.c-popup_block {
  width: 655px;
  max-height: 95vh;
  min-height: 520px;
  background-color: #fff;
  background-image: linear-gradient(rgba(7, 125, 187, .15), rgba(255, 255, 255, 0));
  border-radius: 20px;
  flex-direction: column;
  padding: 55px;
  display: flex;
  overflow: auto;
}

.c-popup_close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -55px;
}

.c-popup_toast {
  width: 100%;
  height: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.c-checkmark {
  width: 220px;
  height: 190px;
  background-color: #fff;
  background-image: url('../images/checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 90px;
  border-radius: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, .05);
}

.c-toast_text {
  max-width: 400px;
  text-align: center;
  margin-bottom: 35px;
}

.c-popup_cta {
  width: 100%;
  height: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.c-popup_cta.cc-onboard {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.c-popup_cta.cc-commissions {
  color: #fff;
  background-color: #000;
  border-radius: 10px;
  flex-direction: row;
  flex: none;
  justify-content: space-between;
  padding: 24px 26px 24px 44px;
}

.c-cta_block {
  width: 100%;
  height: 300px;
  background-color: #f7fbfd;
  border: 1.5px solid #18a7de;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.c-cta_icon {
  width: 80px;
  height: 80px;
  background-image: url('../images/upload.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 40px;
}

.c-cta_icon.cc-delete {
  width: 125px;
  height: 125px;
  background-image: url('../images/trash.svg');
}

.c-cta_flex {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.c-cta_flex.cc-space_between {
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-cta_flex.cc-align-right {
  justify-content: flex-end;
}

.c-cta_flex.cc-align-left {
  justify-content: flex-start;
}

.c-img_details {
  height: 49px;
  background-color: #f3f8fc;
  background-image: url('../images/Tick.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 5px;
  flex: 1;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.c-img_details.cc-hide {
  display: none;
}

.c-auth_right {
  width: 40%;
  max-height: 100vh;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  background-color: rgba(7, 125, 187, .05);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.c-logo {
  width: 200px;
  height: 40px;
  background-image: url('../images/Logo.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.auth-img_block {
  width: 460px;
  height: 490px;
  max-width: 100%;
  background-image: url('../images/auth-img.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.auth-text_wrapper {
  max-width: 325px;
}

.c-step_wrapper {
  min-height: 35px;
  min-width: 35px;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.step-icon-block {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, .15);
  border: 2px solid rgba(0, 0, 0, .07);
  border-radius: 50%;
  flex: none;
  transition: height .5s, width .5s, background-color .5s;
  box-shadow: inset 0 0 0 4px #fff;
}

.step-icon-block.cc-completed {
  width: 32px;
  height: 32px;
  box-shadow: none;
  background-color: #18a7de;
  background-image: url('../images/Vector.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border-style: none;
}

.step-icon-block.cc-active {
  width: 32px;
  height: 32px;
  background-color: #000;
  background-image: url('../images/EditWhite.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border-style: none;
  box-shadow: inset 0 0 #fff;
}

.divider {
  width: 2px;
  height: 40px;
  background-color: rgba(0, 0, 0, .15);
}

.divider.cc-active {
  background-color: rgba(0, 0, 0, .15);
}

.divider.cc-completed {
  background-color: #18a7de;
}

.c-text_link {
  font-style: italic;
}

.toast-subtext {
  color: rgba(53, 61, 74, .5);
  margin-top: 10px;
  line-height: 1.5em;
}

.c-dashboard {
  width: 100%;
  min-height: 100vh;
}

.c-dashboard_wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(157, 150, 201, .1);
  position: relative;
}

.dashboard-bg {
  width: 100%;
  height: 675px;
  background-color: #044b70;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.c-dashboard_inner {
  z-index: 2;
  padding-top: 30px;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}

.c-nav {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.c-nav_logo {
  width: 140px;
  height: 25px;
  background-image: url('../images/logo-white.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 5px;
}

.c-navlink_wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: stretch;
  margin-left: 40px;
  display: flex;
}

.c-nav_link {
  min-height: 70px;
  color: rgba(255, 255, 255, .51);
  text-align: center;
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
}

.c-nav_link.w--current {
  color: #fff;
  border-bottom-color: #fff;
}

.c-nav_link.cc-notifications {
  display: none;
}

.c-nav_profile {
  align-items: center;
  margin-left: auto;
  padding-bottom: 25px;
  display: flex;
}

.c-nav_profile.cc-mobile {
  display: none;
}

.c-notifications {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-image: url('../images/Notification---2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  margin-right: 20px;
}

.c-profile_block {
  cursor: pointer;
  flex: none;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.profile-img_block {
  width: 45px;
  height: 45px;
  background-color: #9d96c9;
  border-radius: 50%;
  flex: none;
  margin-right: 15px;
  overflow: hidden;
}

.profile-name {
  max-width: 130px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
}

.profile-role {
  color: rgba(255, 255, 255, .4);
  line-height: 1.2em;
}

.c-dashboard_content {
  width: 100%;
  padding: 60px;
}

.c-dashboard_header {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.cc-lightgrey-text {
  color: rgba(255, 255, 255, .5);
}

.c-complete_prompt {
  width: 100%;
  min-height: 140px;
  color: #fff;
  background-color: #21507d;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-complete_prompt.cc-hide {
  display: none;
}

.c-prompt_icon {
  width: 85px;
  height: 70px;
  background-color: #9d96c9;
  background-image: url('../images/presention-chart.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 10px;
  flex: none;
  margin-right: 35px;
}

.c-prompt_icon.cc-blue {
  background-color: #077dbb;
  background-image: url('../images/commissions-icon.svg');
}

.c-prompt_icon.cc-orange {
  background-color: #f8a97e;
}

.prompt-text_wrapper {
  max-width: 590px;
  margin-right: 40px;
}

.c-prompt_close {
  width: 55px;
  height: 55px;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  flex: none;
  margin-left: 40px;
  transition: transform .45s;
}

.c-prompt_close:hover {
  transform: rotate(90deg);
}

.c-prompt_close.cc-small {
  width: 40px;
  height: 40px;
  background-size: 16px;
}

.dashboard-empty_block {
  width: 100%;
  min-height: 505px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.dashboard-empty_block.cc-hide {
  display: none;
}

.c-empty_icon {
  width: 220px;
  height: 190px;
  background-color: #fff;
  background-image: url('../images/chart-block.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 90px;
  border-radius: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, .05);
}

.c-empty_icon.cc-small {
  width: 185px;
  height: 161px;
  margin-bottom: 0;
}

.c-empty_icon.cc-products {
  background-image: url('../images/transactions-empty.svg');
}

.c-empty_icon.cc-agents {
  background-image: url('../images/users-empty.svg');
}

.c-empty_icon.cc-transactions {
  background-image: url('../images/transactions-empty.svg');
}

.c-empty_icon.cc-small {
  width: 180px;
  height: 160px;
  margin-bottom: 0;
}

.c-empty_icon.cc-small.cc-notification {
  background-image: url('../images/notification.svg');
}

.empty-block_inner {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
}

.empty-text_wrapper {
  max-width: 525px;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  margin-bottom: 30px;
  display: flex;
}

.c-dashboard_stats {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.c-stat_block {
  width: 100%;
  min-height: 240px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 25px 40px 40px;
  display: flex;
}

.c-stat_block.cc-sales {
  background-color: rgba(101, 91, 154, .2);
}

.c-stat_block.cc-pending-transaction {
  background-color: #285366;
  padding-right: 40px;
}

.c-stat_block.cc-products {
  background-color: rgba(84, 202, 242, .15);
}

.c-stat_block.cc-pending_transactions {
  background-color: rgba(84, 202, 242, .15);
  padding-right: 40px;
}

.profile-first_name {
  font-weight: 600;
}

.stat-figure {
  font-size: 30px;
  font-weight: 600;
}

.stat-header {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.stat-icon {
  width: 85px;
  height: 70px;
  background-color: #9d96c9;
  border-radius: 10px;
  flex: none;
}

.stat-icon.cc-sales {
  background-image: url('../images/presention-chart.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.stat-icon.cc-transactions {
  background-color: #f8a97e;
  background-image: url('../images/personalcard.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.stat-icon.cc-products {
  background-color: #98daf3;
  background-image: url('../images/box.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.stat-text {
  max-width: 108px;
  margin-right: 20px;
  font-size: 16px;
  line-height: 22px;
}

.stat-text.cc-wide {
  max-width: 150px;
}

.c-dashboard_metrics {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-metric_block {
  width: 100%;
  min-height: 325px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.cc-white-text {
  color: #fff;
}

.metric-block_inner {
  width: 100%;
  min-height: 325px;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  margin-top: 25px;
  padding: 20px 25px 25px;
  display: flex;
}

.metric-block_inner.cc-transactions {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.metric-header {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.metric-header.cc-white {
  color: #fff;
}

.cc-sbold-text {
  font-weight: 600;
}

.cc-sbold-text.botttom-margin {
  margin-bottom: 20px;
}

.c-metric_columns {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.metric-column {
  padding-left: 30px;
  padding-right: 0;
}

.metric-column.cc-header {
  color: rgba(0, 0, 0, .2);
  font-size: 14px;
  font-weight: 600;
}

.metric-column.cc-header.cc-align-right {
  color: #000;
  text-align: right;
}

.metric-column.cc-header.cc-transactions {
  color: #353d4a;
  padding-left: 0;
  font-size: 20px;
}

.metric-column.cc-cta {
  justify-content: flex-end;
  padding-right: 25px;
  display: flex;
}

.metric-column.cc-transactions {
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
}

.metric-column.cc-transactions.cc-align-right {
  text-align: right;
}

.metric-entry {
  width: 100%;
  min-height: 72px;
  text-transform: capitalize;
  cursor: pointer;
  background-color: rgba(157, 150, 201, .1);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.metric-entry.cc-products {
  background-color: #fef6f2;
}

.metric-entry.cc-transactions {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: #fff;
  justify-content: space-between;
  padding: 35px;
}

.metric-cta_icon {
  width: 18px;
  height: 18px;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.cc-purple-text {
  color: #655b9a;
}

.c-stats_filter {
  align-items: center;
  display: flex;
}

.c-filter_block {
  margin-bottom: 0;
}

.c-select {
  min-height: 42px;
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  background-image: url('../images/arrow-down.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 5px;
  align-items: center;
  margin-bottom: 0;
  padding: 12px 35px 12px 16px;
  line-height: 1em;
  display: flex;
}

.c-select.cc-white {
  color: #000;
  background-color: #fff;
  background-image: url('../images/arrow-down-black.svg');
}

.c-select.cc-blue {
  color: #000;
  background-color: #f3f8fc;
  background-image: url('../images/arrow-down-black.svg');
}

.c-select.cc-active {
  color: #000;
  background-color: #f3f8fc;
  background-image: url('../images/arrow-down-black.svg');
  padding-right: 25px;
}

.c-select.cc-inactive {
  color: #000;
  background-image: url('../images/arrow-down-black.svg');
  border-style: solid;
}

.c-select.cc-purple {
  background-color: #655b9a;
}

.c-select.cc-purple.cc-small {
  font-size: 12px;
}

.filter-result_block {
  min-height: 42px;
  color: #fff;
  background-color: rgba(255, 255, 255, .1);
  border: 1px #000;
  border-radius: 5px;
  align-items: center;
  margin-bottom: 0;
  margin-left: 12px;
  padding: 12px 16px;
  line-height: 1em;
  display: flex;
}

.date-divider {
  color: rgba(255, 255, 255, .3);
  margin-left: 12px;
  margin-right: 12px;
  font-weight: 600;
}

.c-dashboard_table {
  width: 100%;
  min-height: 500px;
  background-color: #fff;
}

.dashboard-table_inner {
  width: 100%;
}

.table-header {
  width: 100%;
  height: 55px;
  background-color: rgba(53, 61, 74, .05);
  flex-direction: column;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.table-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.5fr .5fr .75fr .75fr 1fr 1fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.table-columns.cc-products {
  grid-template-columns: .25fr 1.25fr 1.25fr 1.25fr 1.25fr 1.1fr 1fr .6fr .6fr;
}

.table-columns.cc-agents {
  grid-template-columns: .25fr 1.25fr 1.5fr 1.25fr 1.25fr 1fr .6fr;
}

.table-columns.cc-loans {
  grid-template-columns: .25fr 1.25fr 1.5fr 1.25fr 1.25fr 1fr 1fr;
}

.table-columns.cc-transactions {
  grid-template-columns: .25fr 1.25fr 1.5fr 1fr 1fr 1fr 1fr 1fr;
}

.table-columns.cc-stores {
  grid-template-columns: .25fr 1.25fr 1fr 1fr 1.25fr 1.25fr 1.25fr 1fr;
}

.table-columns.cc-users {
  grid-template-columns: .25fr 1.25fr 1.6fr 1fr 1.3fr 1fr 1fr .5fr;
}

.table-columns.cc-roles {
  grid-template-columns: .25fr 1.25fr 2fr 1.5fr .5fr;
}

.c-selector {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 5px;
}

.c-selector.cc-all {
  border-style: none;
}

.column-header {
  color: #000;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
}

.c-table {
  flex-direction: column;
  display: flex;
}

.table-entry {
  height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  text-decoration: none;
  display: flex;
}

.column-text {
  max-width: 100%;
  color: #000;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 400;
  overflow: hidden;
}

.column-status {
  text-align: center;
  background-color: rgba(0, 0, 0, .11);
  border-radius: 15px;
  padding: 5px 22px;
  font-weight: 600;
  display: inline-block;
}

.column-status.cc-completed {
  color: #7db238;
  background-color: rgba(125, 178, 56, .13);
}

.column-status.cc-pending {
  color: #18a7de;
  background-color: rgba(24, 167, 222, .11);
}

.column-status.cc-not-settled {
  color: #d41c52;
  background-color: rgba(212, 28, 82, .13);
}

.column-status.cc-active {
  color: #7db238;
  background-color: rgba(125, 178, 56, .13);
}

.column-status.cc-reversed {
  color: #000;
  background-color: rgba(0, 0, 0, .11);
}

.column-status.cc-settled {
  color: #7db238;
  background-color: rgba(125, 178, 56, .13);
}

.table-cta {
  flex-direction: column;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
}

.c-table_toolbar {
  width: 100%;
  background-color: #fff;
}

.toolbar-inner {
  min-height: 70px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 85px;
  display: flex;
}

.toolbar-form {
  margin-bottom: 0;
}

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

.c-search_field {
  width: 330px;
  min-height: 40px;
  background-color: rgba(53, 61, 74, .05);
  background-image: url('../images/Search.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 5px;
  margin-bottom: 0;
  padding: 12px 12px 12px 40px;
  font-weight: 400;
}

.c-search_field::-ms-input-placeholder {
  color: #000;
}

.c-search_field::placeholder {
  color: #000;
}

.toolbar-left {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  display: flex;
}

.toolbar-right {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.c-section {
  width: 100%;
  min-height: 100vh;
  background-color: #044b70;
}

.c-section_inner {
  z-index: 2;
  padding-top: 30px;
  padding-left: 85px;
  padding-right: 85px;
  position: relative;
}

.c-section_wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(157, 150, 201, .1);
  flex-direction: column;
  display: flex;
  position: relative;
}

.c-section_header {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 70px 60px 55px;
  display: flex;
}

.c-section_header.cc-hide {
  display: none;
}

.c-section_header.cc-align_bottom {
  align-items: flex-end;
}

.section-link_wrapper {
  background-color: rgba(255, 255, 255, .05);
  border-radius: 5px;
  display: flex;
  overflow: hidden;
}

.section-link_wrapper.cc-purple {
  background-color: rgba(101, 91, 154, .1);
}

.section-link {
  min-width: 185px;
  opacity: .5;
  text-align: center;
  border-radius: 5px;
  padding: 12px 22px;
  text-decoration: none;
}

.section-link.w--current {
  opacity: 1;
  color: #fff;
  background-color: #18a7de;
}

.c-subsection {
  width: 100%;
  background-color: #fff;
  flex: 1;
}

.c-subsection.cc-purple {
  background-color: #f5f5fa;
}

.c-subsection.cc-empty {
  padding-top: 120px;
  padding-bottom: 120px;
}

.c-subsection_wrapper {
  width: 100%;
}

.c-subsection_header {
  width: 100%;
  background-color: #f5f5fa;
}

.subsection-title {
  padding: 20px 85px;
}

.subsection-title.cc-wide {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.c-subsection_content {
  width: 100%;
}

.subsection-inner {
  width: 100%;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-direction: column;
  padding: 60px 130px 100px;
  display: flex;
}

.subsection-inner.cc-small {
  padding-bottom: 15px;
}

.c-detail_columns {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  align-items: center;
  padding: 35px 40px;
  display: flex;
}

.c-detail_columns.cc-header {
  background-color: rgba(0, 0, 0, .05);
  border-bottom-style: none;
  border-radius: 5px;
  margin-bottom: 0;
  padding: 20px 40px;
}

.c-detail_columns.no-border {
  border-bottom-style: none;
}

.detail-column {
  font-weight: 600;
}

.detail-column.cc-dummy {
  height: 0;
}

.popup-form_container {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  flex: 1;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 40px;
}

.popup-form_container.cc-step {
  margin-top: 20px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.popup-form_container.cc-margin {
  margin-bottom: 30px;
}

.popup-form {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.popup-form.cc-step_form {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
}

.c-upload_cta {
  align-items: center;
  margin-bottom: 50px;
  padding-left: 50px;
  display: flex;
}

.company-img_block {
  width: 100px;
  height: 100px;
  background-image: url('../images/camera.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  border: 2px solid #000;
  border-radius: 50%;
  margin-right: 40px;
  overflow: hidden;
}

.c-img {
  width: 100%;
  height: 100%;
}

.c-img.cc-cover {
  object-fit: cover;
}

.details-header {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.line {
  height: 1px;
  background-color: rgba(0, 0, 0, .3);
  flex: 1;
  margin-left: 20px;
}

.checkbox-form {
  margin-bottom: 0;
}

.c-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.c-checkbox.cc-dropdown {
  margin-bottom: 12px;
}

.checkbox-icon {
  width: 25px;
  height: 25px;
  border: 1px solid #655b9a;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 15px;
}

.checkbox-icon.w--redirected-checked {
  width: 25px;
  height: 25px;
  background-size: 56%;
  margin-top: 0;
  margin-left: 0;
}

.checkbox-icon.cc-dropdown {
  width: 12px;
  height: 12px;
  border-color: #e0e0e0;
  border-radius: 1px;
  margin-right: 8px;
}

.checkbox-icon.cc-dropdown.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/checked-black.svg');
  background-size: 8px;
  border-color: #353d4a;
}

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

.checkbox-icon.cc-cta {
  width: 33px;
  height: 30px;
  border-color: #000;
  border-radius: 50%;
  margin-right: 18px;
}

.checkbox-label {
  font-weight: 600;
}

.checkbox-label.cc-dropdown {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.c-select_input {
  min-height: 55px;
  letter-spacing: -.022em;
  background-color: rgba(0, 0, 0, .05);
  background-image: url('../images/arrow-down-black.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 1px #000;
  border-bottom-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 0;
  padding: 0 25px;
  line-height: 1.5em;
  transition: background-color .35s, border-color .35s;
}

.c-select_input:focus {
  border-bottom-color: #18a7de;
}

.c-select_input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-select_input::placeholder {
  color: rgba(0, 0, 0, .2);
}

.popup-step_form {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  transition: transform .6s;
  display: flex;
  transform: none;
}

.onboarding-progess {
  width: 100%;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
}

.onboarding-progress_bar {
  width: 25%;
  height: 100%;
  background-color: #077dbb;
  border-radius: 5px;
}

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

.onboard-img {
  width: 480px;
  height: 310px;
  background-image: url('../images/onboard-image.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-hamburger {
  width: 30px;
  height: 30px;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-direction: column;
  flex: none;
  display: none;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
}

.hamburger-line.cc-middle {
  margin-top: 4px;
  margin-bottom: 4px;
}

.column-scrollable {
  margin-bottom: 40px;
}

.empty-block {
  max-width: 210px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  display: flex;
}

.empty-block.cc-hide {
  display: none;
}

.empty-block.cc-wide {
  max-width: 564px;
}

.empty-block.cc-bank {
  max-width: 330px;
}

.c-products_links {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.c-product_prompt {
  align-items: center;
  margin-right: 20px;
  font-size: 22px;
  line-height: 30px;
  display: flex;
}

.c-products_stat {
  width: 100%;
  min-height: 140px;
  color: #fff;
  background-color: rgba(101, 91, 154, .3);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-products_stat.cc-hide {
  display: none;
}

.c-products_stat.cc-blue {
  background-color: #105e84;
}

.c-section_subheader {
  padding-left: 60px;
  padding-right: 60px;
}

.table-column_inner {
  align-items: center;
  display: flex;
}

.column-header_icon {
  width: 8px;
  height: 12.8px;
  background-image: url('../images/arrow-up-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
}

.product-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.25fr 1.25fr 1.25fr 1.1fr 1fr .6fr .6fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.actions-form {
  margin-bottom: 0;
}

.table-actions {
  justify-content: flex-end;
  align-items: center;
  padding-right: 5px;
  display: flex;
}

.table-action {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
}

.table-action.delete {
  background-image: url('../images/delete.svg');
  margin-right: 14px;
}

.table-action.edit {
  background-image: url('../images/edit-2.svg');
}

.c-dropdown {
  z-index: 1;
  color: #fff;
  border-radius: 3px;
  padding: 16px 68px 16px 26px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.c-dropdown.cc-purple {
  background-color: #655b9a;
}

.c-dropdown.cc-blue {
  color: #000;
  background-color: #f3f8fc;
}

.c-dropdown.cc-blue.cc-small {
  padding: 11px 35px 11px 17px;
}

.c-dropdown.cc-small {
  padding: 11px 38px 11px 18px;
  font-weight: 400;
}

.c-dropdown.cc-small.cc-blue {
  padding-right: 40px;
}

.c-dropdown_list {
  min-width: 220px;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 8px;
  padding: 21px 9px 18px;
  box-shadow: 7px 7px 15px 6px rgba(0, 0, 0, .05);
}

.c-dropdown_list.w--open {
  z-index: 99;
}

.product-code_switch {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  align-items: flex-end;
  margin-top: 15px;
  display: flex;
}

.product-code_switch.cc-active {
  font-weight: 600;
}

.c-switch {
  width: 48px;
  height: 20px;
  cursor: pointer;
  background-color: #d6d6d6;
  border-radius: 10px;
  flex: none;
  align-items: center;
  padding: 2px;
  transition: all .4s;
  display: flex;
}

.c-switch.cc-active {
  background-color: #655b9a;
  justify-content: flex-end;
}

.c-switch_inner {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}

.product-attributes_inner {
  color: rgba(53, 61, 74, .54);
  cursor: pointer;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.product-attributes_icon {
  width: 12px;
  height: 12px;
  background-image: url('../images/addition-grey.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  margin-right: 4px;
}

.c-cta_checkbox {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-checkbox {
  align-items: center;
  display: flex;
}

.cta-checkbox.cc-margin {
  margin-top: 40px;
}

.cta-checkbox_icon {
  width: 33px;
  height: 33px;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 18px;
}

.cta-checkbox_icon.w--redirected-checked {
  width: 25px;
  height: 25px;
  background-size: 56%;
  margin-top: 0;
  margin-left: 0;
}

.cta-checkbox_icon.cc-dropdown {
  width: 12px;
  height: 12px;
  border-color: #353d4a;
  border-radius: 1px;
  margin-right: 8px;
}

.cta-checkbox_icon.cc-dropdown.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/checked-black.svg');
  background-size: 8px;
}

.cta-checkbox_icon.cc-cta {
  width: 33px;
  height: 30px;
  border-color: #000;
  border-radius: 50%;
  margin-right: 18px;
}

.cta-checkbox_icon.cc-checked {
  background-color: #18a7de;
  background-image: url('../images/Vector.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  border-color: #18a7de;
}

.arrow-text_link {
  color: rgba(255, 255, 255, .4);
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.375em;
  text-decoration: none;
  display: flex;
}

.arrow-text_icon {
  width: 8px;
  height: 10px;
  background-image: url('../images/left-arrow-grey.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  margin-right: 14px;
}

.c-form_columns {
  margin-bottom: 40px;
}

.form-column_left {
  padding-left: 0;
  padding-right: 30px;
}

.form-column_right {
  padding-left: 30px;
  padding-right: 0;
}

.c-form_divider {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.c-form_divider.no-border {
  border-bottom-style: none;
}

.c-add_attribute {
  align-items: center;
  display: flex;
}

.attribute-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-color: rgba(7, 125, 187, .1);
  background-image: url('../images/add-icon-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px;
  border-radius: 50%;
  flex: none;
  margin-right: 10px;
}

.c-form_flex {
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.c-uploaded_img {
  width: 60%;
  flex: none;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.uploaded-img {
  width: 220px;
  height: 156px;
  border-radius: 5px;
  overflow: hidden;
}

.c-close {
  width: 54px;
  height: 54px;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 50%;
  flex: none;
  position: absolute;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -27px;
  box-shadow: 7px 7px 15px 6px rgba(0, 0, 0, .05);
}

.c-product_img {
  flex: none;
  justify-content: flex-end;
  align-items: flex-start;
  margin-left: 40px;
  display: flex;
  position: relative;
}

.no-margin {
  margin-left: 0;
  margin-right: 0;
}

.filter-result_container {
  margin-right: 36px;
}

.filter-result_container.cc-wide {
  margin-right: 100px;
}

.c-agent_stat {
  margin-bottom: 20px;
}

.agent-stat_column {
  padding-left: 0;
}

.agent-stat_column.left {
  padding-right: 14px;
}

.agent-stat_column.right {
  padding-left: 14px;
  padding-right: 0;
}

.agent-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.5fr 1.25fr 1.25fr 1fr .6fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.table-pagination {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  font-weight: 600;
  display: flex;
}

.pagination-no {
  margin-right: 15px;
}

.pagination-no.cc-active_no {
  background-color: #f5f5fa;
  border-radius: 5px;
  padding: 12px 20px;
}

.c-agents_stat {
  width: 100%;
  min-height: 215px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #fff;
  background-color: rgba(101, 91, 154, .3);
  border-radius: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-agents_stat.cc-hide {
  display: none;
}

.c-agents_stat.cc-blue {
  background-color: #105e84;
}

.c-agents_stat.cc-grey {
  background-color: #285366;
}

.c-transaction_stats {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 162px;
  display: grid;
}

.c-stat_divider {
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
}

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

.c-transactions_graph {
  min-height: 390px;
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
  position: relative;
}

.c-graph_details {
  color: #000;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 22px 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375em;
  position: absolute;
  box-shadow: 4px 4px 20px -1px rgba(0, 0, 0, .05);
}

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

.cc-regular-text {
  font-weight: 400;
}

.cc-graph-details_value {
  margin-left: 58px;
}

.graph-details_divider {
  height: 1px;
  background-color: rgba(0, 0, 0, .05);
  margin-top: 20px;
  margin-bottom: 20px;
}

.c-graph_container {
  padding-bottom: 50px;
  padding-left: 85px;
  padding-right: 85px;
  position: relative;
}

.graph-container_inner {
  margin-top: -120px;
  padding-left: 60px;
  padding-right: 60px;
}

.transaction-colums {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.5fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.c-transactions_cta {
  color: #fff;
  background-color: #655b9a;
  justify-content: space-between;
  align-items: center;
  padding: 28px 125px;
  display: flex;
}

.c-dropdown_container {
  z-index: 1;
  margin-left: 0;
  margin-right: 0;
}

.dropdown-inner {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 18px;
  padding-bottom: 15px;
  padding-left: 18px;
  padding-right: 19px;
}

.dropdown-inner.cc-last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.c-checkbox_container {
  margin-top: 16px;
}

.stores-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1fr 1fr 1.25fr 1.25fr 1.25fr 1fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.column-text-copy {
  max-width: 100%;
  color: #000;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 400;
  overflow: hidden;
}

.users-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.6fr 1fr 1.3fr 1fr 1fr .5fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.c-users_stat {
  width: 100%;
  min-height: 140px;
  color: #fff;
  background-color: rgba(101, 91, 154, .3);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-users_stat.cc-hide {
  display: none;
}

.c-users_stat.cc-blue {
  background-color: #105e84;
}

.c-stores_stat {
  width: 100%;
  min-height: 140px;
  color: #fff;
  background-color: rgba(101, 91, 154, .3);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-stores_stat.cc-hide {
  display: none;
}

.c-stores_stat.cc-blue {
  background-color: #105e84;
}

.c-users_links {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.c-section_empty {
  z-index: 0;
  background-color: #f5f5fa;
  margin-top: -84px;
  padding-top: 61px;
  padding-bottom: 61px;
  position: relative;
}

.view-store_columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr 1.5fr 1fr 1.25fr 1.25fr 1.25fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.roles-columns {
  width: 100%;
  height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.2fr 2fr 1.5fr .5fr;
  grid-auto-columns: 0fr;
  align-items: center;
}

.actions-checkbox_icon {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 15px;
}

.actions-checkbox_icon.w--redirected-checked {
  width: 25px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/actions-checked-icon.svg');
  background-position: 50%;
  background-size: auto;
  border-color: #353d4a;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
}

.actions-checkbox_icon.cc-dropdown {
  width: 12px;
  height: 12px;
  border-color: #e0e0e0;
  border-radius: 1px;
  margin-right: 8px;
}

.actions-checkbox_icon.cc-dropdown.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/checked-black.svg');
  background-size: 8px;
  border-color: #353d4a;
}

.actions-checkbox_icon.cc-dropdown.w--redirected-focus {
  box-shadow: none;
}

.actions-checkbox_icon.cc-cta {
  width: 33px;
  height: 30px;
  border-color: #000;
  border-radius: 50%;
  margin-right: 18px;
}

.actions-checkbox_label {
  font-weight: 400;
}

.actions-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.actions-columns_wrappper {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.c-italics {
  font-style: italic;
}

.c-activity {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  justify-content: space-between;
  align-items: center;
  padding: 30px 38px;
  display: flex;
}

.c-activity.cc-no_border {
  border-bottom-style: none;
}

.activity-inner {
  align-items: center;
  display: flex;
}

.activity-icon {
  width: 60px;
  height: 60px;
  background-color: #d1d1d1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  background-attachment: scroll;
  border-radius: 50%;
  flex: none;
  margin-right: 20px;
}

.activity-icon.cc-processed {
  background-color: rgba(125, 178, 56, .3);
  background-image: url('../images/receive-square-2.svg');
}

.activity-icon.cc-updated_account {
  background-color: rgba(101, 91, 154, .08);
  background-image: url('../images/bank.svg');
}

.activity-icon.cc-updated_store {
  background-color: rgba(101, 91, 154, .08);
  background-image: url('../images/building.svg');
}

.c-commision_value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375em;
}

.c-commision_value.cc-recieved {
  color: #198a10;
}

.c-commision_value.cc-sent {
  color: #d41c52;
}

.c-textlink_flex {
  grid-column-gap: 12.5px;
  display: flex;
}

.store-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.store-checkbox.cc-dropdown {
  margin-bottom: 12px;
}

.store-checkbox_icon {
  width: 25px;
  height: 25px;
  border: 1px solid #077dbb;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 15px;
}

.store-checkbox_icon.w--redirected-checked {
  width: 25px;
  height: 25px;
  background-color: #077dbb;
  background-image: url('../images/store-checked-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-color: #077dbb;
  border-radius: 5px;
  margin-top: 0;
  margin-left: 0;
}

.store-checkbox_icon.cc-dropdown {
  width: 12px;
  height: 12px;
  border-color: #e0e0e0;
  border-radius: 1px;
  margin-right: 8px;
}

.store-checkbox_icon.cc-dropdown.w--redirected-checked {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/checked-black.svg');
  background-size: 8px;
  border-color: #353d4a;
}

.store-checkbox_icon.cc-dropdown.w--redirected-focus {
  box-shadow: none;
}

.store-checkbox_icon.cc-cta {
  width: 33px;
  height: 30px;
  border-color: #000;
  border-radius: 50%;
  margin-right: 18px;
}

.store-checkbox_label {
  font-weight: 600;
}

.store-checkbox_label.cc-dropdown {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.notification-inner_icon {
  width: 10px;
  height: 12px;
  background-image: url('../images/arrow-right-grey.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  margin-left: 10px;
}

.c-notification_status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
  margin-top: 7px;
  margin-right: 16px;
}

.c-notification_status.cc-unread {
  background-color: #18a7de;
}

.notifications-inner {
  height: 100%;
  padding-top: 24px;
  padding-bottom: 32px;
  overflow: auto;
}

.c-notification_text {
  max-width: 290px;
  margin-bottom: 24px;
  line-height: 1.5em;
}

.notifications-header {
  border-bottom: 1px solid rgba(0, 25, 79, .2);
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25em;
  display: flex;
}

.c-notification_block {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 32px;
  font-size: 14px;
  line-height: 1.42857em;
  display: flex;
}

.c-notifications_wrapper {
  height: 100%;
  min-width: 440px;
  background-color: #f1f1f1;
  padding: 32px;
}

.notification-inner {
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.cc-blue_text {
  color: #18a7de;
}

.c-attribute_container {
  min-height: 87.5px;
  align-items: center;
  padding-top: 30px;
  display: flex;
}

.c-toast_container {
  position: relative;
}

.c-toast_inner {
  border-left: 8px solid #000;
  border-radius: 5px;
  align-items: center;
  padding: 22px 30px;
  display: flex;
  box-shadow: 7px 7px 60px 15px rgba(0, 0, 0, .05);
}

.c-toast_inner.cc-success {
  border-left-color: #5b9a65;
}

.c-toast_inner.cc-warning {
  border-left-color: #a0d400;
}

.c-toast_inner.cc-error {
  border-left-color: #d41c52;
}

.c-toast_inner.cc-info {
  border-left-color: #18a7de;
}

.c-toast_icon {
  width: 40px;
  height: 40px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  flex: none;
  margin-right: 15px;
}

.c-toast_icon.cc-success {
  background-image: url('../images/success.svg');
}

.c-toast_icon.cc-warning {
  background-image: url('../images/warning.svg');
}

.c-toast_icon.cc-error {
  background-image: url('../images/error.svg');
}

.c-toast_icon.cc-info {
  background-image: url('../images/info.svg');
}

.cc-bold_text {
  font-weight: 700;
}

.c-toast_close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/close.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: -55px;
}

.c-toast_flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column wrap;
  align-items: flex-start;
  padding-top: 25px;
  display: flex;
}

.input-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
}

.input-icon.cc-hide {
  background-image: url('../images/Eye-slash.svg');
  display: block;
}

.c-form_verification {
  position: relative;
}

.popup-page {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: rgba(0, 0, 0, .36);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  display: flex;
}

.subsection-title-2 {
  justify-content: space-between;
  align-items: center;
  padding: 20px 85px;
  display: flex;
}

.subsection-title-2.cc-wide {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-commision {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 85px;
  display: flex;
}

.table-pagination-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  font-weight: 600;
  display: flex;
}

.commision-inner {
  align-items: center;
  margin-right: 30px;
  display: flex;
}

.commision-icon {
  width: 60px;
  height: 60px;
  background-color: #d1d1d1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  background-attachment: scroll;
  border-radius: 50%;
  flex: none;
  margin-right: 20px;
}

.commision-icon.cc-recieved {
  background-color: rgba(125, 178, 56, .3);
  background-image: url('../images/receive-square-2.svg');
}

.commision-icon.cc-sent {
  background-color: rgba(212, 28, 82, .1);
  background-image: url('../images/send-sqaure-2.svg');
}

.section-link-2 {
  min-width: 185px;
  opacity: .5;
  text-align: center;
  border-radius: 5px;
  padding: 12px 22px;
  text-decoration: none;
}

.section-link-2.w--current {
  opacity: 1;
  color: #fff;
  background-color: #18a7de;
}

.pagination-no-2 {
  margin-right: 15px;
}

.pagination-no-2.cc-active_no {
  background-color: #f5f5fa;
  border-radius: 5px;
  padding: 12px 20px;
}

.c-commision_details {
  margin-bottom: 30px;
}

.popup-form_header {
  margin-bottom: 40px;
}

.c-popup_cta-2 {
  width: 100%;
  height: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.c-popup_cta-2.cc-commisions {
  color: #fff;
  background-color: #655b9a;
  border-radius: 10px;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 26px 24px 44px;
}

.c-popup_block-2 {
  width: 655px;
  max-height: 95vh;
  min-height: 520px;
  background-color: #fff;
  background-image: linear-gradient(rgba(101, 91, 154, .3), rgba(255, 255, 255, 0));
  border-radius: 20px;
  flex-direction: column;
  padding: 55px;
  display: flex;
  overflow: auto;
}

.c-form_input-2 {
  min-height: 55px;
  letter-spacing: -.022em;
  background-color: rgba(0, 0, 0, .05);
  border: 1px #000;
  border-bottom-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 0;
  padding: 20px 25px;
  line-height: 1.5em;
  transition: background-color .35s, border-color .35s;
}

.c-form_input-2:focus {
  border-bottom-color: #18a7de;
}

.c-form_input-2::-ms-input-placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-form_input-2::placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-select_input-2 {
  min-height: 55px;
  letter-spacing: -.022em;
  background-color: rgba(0, 0, 0, .05);
  background-image: url('../images/arrow-down-black.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 1px #000;
  border-bottom-style: solid;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 0;
  padding: 0 25px;
  line-height: 1.5em;
  transition: background-color .35s, border-color .35s;
}

.c-select_input-2:focus {
  border-bottom-color: #000;
}

.c-select_input-2::-ms-input-placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-select_input-2::placeholder {
  color: rgba(0, 0, 0, .2);
}

.c-form_field-2 {
  width: 100%;
  margin-bottom: 40px;
}

.c-form_field-2.cc-no_margin {
  margin-bottom: 0;
}

.c-checkmark-2 {
  width: 220px;
  height: 190px;
  background-color: #fff;
  background-image: url('../images/checkmark-purple.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 90px;
  border-radius: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, .05);
}

.c-toast_text-2 {
  max-width: 420px;
  text-align: center;
  margin-bottom: 35px;
}

.c-commissions_stat {
  width: 100%;
  min-height: 140px;
  color: #fff;
  background-color: #105e84;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 35px;
  display: flex;
}

.c-commissions_stat.cc-hide {
  display: none;
}

.c-commissions_stat.cc-blue {
  background-color: #105e84;
}

.c-logout {
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url('../images/logout.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 35px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 16px;
    line-height: 1.25em;
  }

  .c-prompt {
    font-size: 12px;
  }

  .c-auth_left {
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-form {
    padding-left: 50px;
  }

  .c-form_cta {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .c-popup_block {
    width: 500px;
    padding: 30px 20px 20px;
  }

  .c-popup_cta.cc-commissions {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .auth-text_wrapper {
    max-width: 250px;
  }

  .dashboard-bg {
    height: 1467px;
  }

  .c-dashboard_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-nav {
    height: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .c-nav_logo {
    flex: none;
  }

  .c-navlink_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .c-nav_link {
    padding-bottom: 20px;
  }

  .c-nav_profile {
    margin-left: auto;
  }

  .c-dashboard_content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-dashboard_stats {
    grid-template-columns: 1fr 1fr;
  }

  .c-dashboard_metrics {
    grid-template-columns: 1fr;
  }

  .c-stats_filter {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-end;
  }

  .table-header {
    min-width: 1280px;
  }

  .c-table {
    position: relative;
    overflow: auto;
  }

  .table-entry {
    min-width: 1281px;
  }

  .toolbar-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .toolbar-left {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .c-section_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-section_header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    padding: 30px 20px 40px;
  }

  .subsection-title {
    padding-left: 30px;
    padding-right: 30px;
  }

  .subsection-inner {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    padding: 50px 30px;
  }

  .c-detail_columns {
    min-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-detail_columns.cc-header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-form_title {
    padding-left: 30px;
  }

  .popup-form_container {
    margin-top: 20px;
    padding: 20px;
  }

  .c-upload_cta {
    margin-bottom: 0;
    padding-left: 0;
  }

  .company-img_block {
    width: 70px;
    height: 70px;
  }

  .column-scrollable {
    overflow: auto;
  }

  .c-product_prompt {
    margin-right: 0;
  }

  .c-section_subheader {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-column_left {
    padding-right: 20px;
  }

  .form-column_right {
    padding-left: 20px;
  }

  .c-close {
    width: 45px;
    height: 45px;
    right: -15px;
  }

  .c-product_img {
    margin-left: 15px;
  }

  .filter-result_container, .filter-result_container.cc-wide {
    margin-right: 0;
  }

  .c-agent_stat {
    flex-wrap: wrap;
    display: flex;
  }

  .c-agents_stat {
    min-height: 224px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .c-transaction_stats {
    grid-template-columns: 1fr 1fr;
  }

  .cc-graph-details_value {
    margin-left: 30px;
  }

  .c-graph_container, .graph-container_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-transactions_cta {
    padding-left: 30px;
    padding-right: 30px;
  }

  .actions-checkbox {
    align-items: center;
  }

  .actions-columns_wrappper {
    margin-bottom: 20px;
  }

  .c-activity {
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-notification_status {
    margin-top: 5px;
    margin-right: 12px;
  }

  .c-notification_block {
    padding: 25px 20px;
  }

  .c-notifications_wrapper {
    min-width: 350px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .subsection-title-2, .c-commision {
    padding-left: 30px;
    padding-right: 30px;
  }

  .c-commision_details {
    margin-bottom: 20px;
  }

  .popup-form_header {
    margin-bottom: 30px;
  }

  .c-popup_cta-2.cc-commisions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-popup_block-2 {
    width: 500px;
    padding: 30px 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: -.022em;
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 12px;
  }

  .c-label_wrapper {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-prompt {
    font-size: 12px;
    font-weight: 600;
  }

  .c-auth_inner {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .c-auth_left {
    width: 100%;
    padding-top: 40px;
    padding-right: 40px;
  }

  .c-form {
    padding-left: 0;
  }

  .c-form_step.cc-shrink {
    height: 4em;
  }

  .c-form_cta {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .c-form_cta.cc-align-top.cc-shrink {
    height: 2.4em;
  }

  .c-popup {
    padding-top: 55px;
  }

  .c-popup.cc-notifications {
    padding-top: 0;
  }

  .c-popup_block {
    width: 400px;
    max-height: 85vh;
    border-radius: 15px;
  }

  .c-popup_close {
    top: -55px;
    right: 0;
  }

  .c-popup_cta.cc-commissions {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .c-cta_flex {
    flex-wrap: wrap;
  }

  .c-auth_right {
    width: 100%;
    max-height: none;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 95px 40px 30px 30px;
    position: relative;
    top: auto;
  }

  .c-logo {
    width: 120px;
    height: 32px;
    position: absolute;
    top: 30px;
    left: 30px;
  }

  .auth-img_block {
    width: 310px;
    height: 349px;
    max-width: none;
    flex: none;
    display: none;
  }

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

  .c-step_wrapper {
    min-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    position: static;
  }

  .divider {
    width: auto;
    height: 2px;
    flex: 1;
  }

  .dashboard-bg {
    height: auto;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .c-nav {
    align-items: center;
    padding-bottom: 25px;
  }

  .c-navlink_wrapper {
    z-index: 99;
    width: auto;
    height: 100vh;
    background-color: #044b70;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding-top: 0;
    transition: transform .4s;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    transform: translate(-100%);
  }

  .c-navlink_wrapper.cc-open {
    transform: translate(0%);
  }

  .c-nav_link {
    width: 100%;
    min-width: 250px;
    text-align: left;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.5em;
  }

  .c-nav_link.cc-notifications {
    display: block;
  }

  .c-nav_profile {
    display: none;
  }

  .c-nav_profile.cc-mobile {
    width: 100%;
    margin-left: 0;
    padding: 40px 20px;
    display: flex;
  }

  .c-dashboard_content {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .c-dashboard_header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .c-complete_prompt {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .prompt-text_wrapper {
    width: 100%;
    margin-right: 0;
  }

  .c-prompt_close {
    width: 35px;
    height: 35px;
    background-size: 40%;
    margin-left: 0;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .c-prompt_close.cc-small {
    width: 35px;
    height: 35px;
    background-size: 12px;
  }

  .dashboard-empty_block {
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .empty-block_inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .empty-text_wrapper {
    margin-bottom: 20px;
  }

  .c-dashboard_stats {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .c-dashboard_stats.cc-hide {
    display: none;
  }

  .c-stat_block {
    min-height: 0;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 25px;
    padding-left: 25px;
  }

  .stat-figure {
    font-size: 25px;
  }

  .stat-icon {
    width: 75px;
    height: 55px;
  }

  .stat-text {
    max-width: 98px;
    font-size: 14px;
    line-height: 18px;
  }

  .metric-block_inner {
    min-height: 0;
    margin-top: 15px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .metric-header {
    color: #fff;
  }

  .metric-column {
    padding-left: 20px;
    font-size: 14px;
    line-height: 16px;
  }

  .metric-column.cc-transactions {
    font-size: 14px;
    line-height: 19px;
  }

  .metric-entry.cc-transactions {
    min-height: 0;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 25px;
  }

  .c-stats_filter {
    width: 100%;
    align-items: flex-start;
    margin-top: 30px;
  }

  .filter-result_block {
    margin-left: 0;
  }

  .c-dashboard_table {
    position: relative;
  }

  .toolbar-inner, .toolbar-form_inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolbar-left {
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 20px;
  }

  .c-section_header {
    padding-left: 0;
    padding-right: 0;
  }

  .section-link {
    min-width: 0;
    align-items: center;
    display: flex;
  }

  .c-detail_columns {
    min-width: 1000px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .popup-form_container {
    border-radius: 15px;
  }

  .onboard-img {
    width: 100%;
  }

  .c-hamburger {
    height: auto;
    display: block;
  }

  .hamburger-line {
    height: 3px;
  }

  .hamburger-line.cc-middle {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .c-products_links {
    flex-wrap: wrap;
  }

  .c-products_stat {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .c-section_subheader {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-checkbox_icon {
    width: 30px;
    height: 26px;
    margin-right: 10px;
  }

  .cta-checkbox_icon.cc-checked {
    background-size: 12px;
  }

  .arrow-text_link {
    font-size: 14px;
  }

  .c-form_columns {
    margin-bottom: 0;
  }

  .form-column_left {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .form-column_right {
    margin-bottom: 40px;
    padding-left: 0;
  }

  .c-form_flex {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .c-uploaded_img {
    width: auto;
    justify-content: flex-start;
  }

  .uploaded-img {
    width: 100%;
    height: 60vw;
  }

  .c-product_img {
    width: auto;
    justify-content: flex-start;
    margin-left: 0;
  }

  .agent-stat_column.left {
    padding-right: 0;
  }

  .agent-stat_column.right {
    padding-left: 0;
  }

  .c-agents_stat {
    min-height: auto;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .c-transaction_stats {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .c-transaction_stats.cc-hide {
    display: none;
  }

  .c-graph_details {
    padding: 10px 15px 15px;
    font-size: 12px;
  }

  .graph-container_inner {
    padding-left: 0;
    padding-right: 0;
  }

  .c-transactions_cta {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .c-users_stat, .c-stores_stat {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .c-users_links {
    flex-wrap: wrap;
  }

  .c-activity {
    padding: 20px;
  }

  .notification-inner_icon {
    width: 8px;
    height: 10px;
    margin-left: 8px;
  }

  .c-notification_status {
    width: 10px;
    height: 10px;
  }

  .notifications-inner {
    padding-bottom: 24px;
  }

  .c-notification_block {
    font-size: 12px;
  }

  .c-notifications_wrapper {
    width: 100%;
    min-width: auto;
    padding-bottom: 24px;
  }

  .c-attribute_container {
    min-height: auto;
    padding-top: 0;
  }

  .subsection-title-2.cc-wide {
    flex-direction: row;
  }

  .section-link-2 {
    min-width: 0;
    align-items: center;
    display: flex;
  }

  .c-popup_cta-2.cc-commisions {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .c-popup_block-2 {
    width: 400px;
    max-height: 85vh;
    border-radius: 15px;
  }

  .c-commissions_stat {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
}

@media screen and (max-width: 479px) {
  .c-button {
    min-width: 0;
    padding: 12px 24px;
  }

  .c-form_input {
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-form_field {
    position: relative;
  }

  .c-label_wrapper {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .c-prompt {
    font-size: 12px;
  }

  .c-auth_left {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-form_cta {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .c-popup {
    justify-content: flex-end;
  }

  .c-popup_inner {
    width: 100%;
  }

  .c-popup_block {
    width: 100%;
    min-height: 400px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .c-popup_close {
    right: 15px;
  }

  .c-checkmark {
    width: 150px;
    height: 120px;
    background-size: 40%;
    border-radius: 15px;
    margin-bottom: 0;
  }

  .c-cta_block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-auth_right {
    padding-left: 20px;
  }

  .c-logo {
    left: 20px;
  }

  .c-metric_block {
    overflow: auto;
  }

  .c-metric_columns {
    width: 100%;
    overflow: auto;
  }

  .metric-entry {
    overflow: auto;
  }

  .table-cta {
    padding-bottom: 100px;
  }

  .toolbar-form, .c-search_field {
    width: 100%;
  }

  .section-link_wrapper {
    width: 100%;
    flex-flow: column wrap;
  }

  .section-link {
    justify-content: center;
  }

  .subsection-title.cc-wide {
    grid-row-gap: 20px;
    flex-direction: column;
    padding: 30px 20px;
  }

  .subsection-inner {
    padding: 30px 20px;
  }

  .popup-form_title {
    padding-left: 0;
  }

  .c-upload_cta {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .c-select_input {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-step_form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .c-product_prompt {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .c-cta_checkbox {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .table-pagination {
    padding-bottom: 100px;
  }

  .c-activity {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .activity-inner {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .activity-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .c-notification_text {
    max-width: none;
  }

  .c-toast_inner {
    padding: 20px;
  }

  .c-toast_icon {
    width: 32px;
    height: 32px;
  }

  .c-toast_close {
    top: -50px;
    right: 15px;
  }

  .c-toast_flex {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .subsection-title-2.cc-wide {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .c-commision {
    padding: 20px;
  }

  .table-pagination-2 {
    padding-bottom: 100px;
  }

  .commision-inner {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .commision-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .section-link-2 {
    justify-content: center;
  }

  .c-popup_block-2 {
    width: 100%;
    min-height: 400px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .c-form_input-2, .c-select_input-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-form_field-2 {
    position: relative;
  }

  .c-checkmark-2 {
    width: 150px;
    height: 120px;
    background-size: 40%;
    border-radius: 15px;
    margin-bottom: 0;
  }
}

#w-node-_76724595-e98f-3006-32f0-f23cc3caf6ac-f3be0b16, #w-node-_6590e317-b46e-e725-b4d1-d7567f138540-f3be0b16, #w-node-_8fc6a759-9a06-8e61-4b37-7b185cf028ab-f3be0b16, #w-node-f409d5ea-89c6-fce6-5815-b351ea444958-f3be0b16, #w-node-f7e62f27-4152-5f53-78c2-87c3b0c6e27f-f3be0b16, #w-node-f7e62f27-4152-5f53-78c2-87c3b0c6e280-f3be0b16, #w-node-f7e62f27-4152-5f53-78c2-87c3b0c6e281-f3be0b16, #w-node-f7e62f27-4152-5f53-78c2-87c3b0c6e282-f3be0b16, #w-node-c55067d0-1eee-67ec-a297-756de30e1d6a-f3be0b16, #w-node-c55067d0-1eee-67ec-a297-756de30e1d6b-f3be0b16, #w-node-c55067d0-1eee-67ec-a297-756de30e1d6c-f3be0b16, #w-node-c55067d0-1eee-67ec-a297-756de30e1d6d-f3be0b16, #w-node-bab0e991-caf5-f82d-872d-f1df36935c26-f3be0b16, #w-node-bab0e991-caf5-f82d-872d-f1df36935c27-f3be0b16, #w-node-bab0e991-caf5-f82d-872d-f1df36935c28-f3be0b16, #w-node-bab0e991-caf5-f82d-872d-f1df36935c29-f3be0b16, #w-node-a6eb46ff-5faa-5f92-af4c-8f5d0dcbe1ed-8dfe9bda, #w-node-_41c77594-8e0a-5a9e-9609-6f134d6b5bc2-8dfe9bda, #w-node-_65462196-6f93-1329-411c-a0b08d6a839e-8dfe9bda, #w-node-_5de6ca51-30bf-c6cf-671a-c49d83419132-8dfe9bda, #w-node-_0236c360-3f5f-020b-cb5f-4dadf8a6267f-8dfe9bda, #w-node-a899b7a5-233f-2dc1-a792-0a1e677d86cb-8dfe9bda, #w-node-_8f104193-6edd-391e-a422-770e57b9ccec-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3dd7e5df-b30f-3765-e79b-405811efa0dc-8dfe9bda, #w-node-_20d15e37-fc09-c67e-b024-942613df4732-8dfe9bda, #w-node-c2ae7e91-2419-b117-ea91-be0a1b1d6cf1-8dfe9bda, #w-node-b39e08ae-e3da-6acc-37cb-9242f9848c07-8dfe9bda, #w-node-ff187527-cd24-5ea1-2214-649b5fb6be90-8dfe9bda, #w-node-d77e41e8-6fe4-0fe7-3d7e-2ab154b12c33-8dfe9bda, #w-node-de6138ca-02b1-0f8e-5111-8d960f0a2fea-8dfe9bda, #w-node-_436c8720-c0b0-a609-abea-ceb851ea4b8a-8dfe9bda, #w-node-fde27f04-4627-7310-f3f6-c7c92af2d629-8dfe9bda, #w-node-fde27f04-4627-7310-f3f6-c7c92af2d62a-8dfe9bda, #w-node-b86e6a18-a635-ff00-8e53-9aa22a1ba1c0-8dfe9bda, #w-node-_12a36548-0c1e-dc8b-a48b-5d892de71d74-8dfe9bda, #w-node-bbea5eb8-44b6-400a-e3cd-3b5a00f8958d-8dfe9bda, #w-node-_7bc43b9c-ed52-8c09-5f1a-78d65ceb0976-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6606600-ece9-ee08-1417-d7bd6a8e48ab-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_42f16df2-6bc4-749f-9566-41c8881c7c00-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc575-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc576-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc578-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc57a-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc57c-8dfe9bda, #w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc57e-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc580-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8e3988c6-26b8-72f6-19dc-e8393fadc582-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa8694-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa8695-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa8697-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa8699-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa869b-8dfe9bda, #w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa869d-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa869f-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a33d61f9-43f9-7fc1-ec4a-189bd3fa86a1-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a36b-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a36c-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a36e-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a370-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a372-8dfe9bda, #w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a374-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a376-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de7fd0fe-bd8b-7510-84c1-6ea7dde4a378-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa42995b-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa42995c-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa42995e-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa429960-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa429962-8dfe9bda, #w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa429964-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa429966-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0f75ffcf-ba19-cc8d-ab02-a0defa429968-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baa3-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baa4-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baa6-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baa8-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baaa-8dfe9bda, #w-node-c696f152-55a8-3200-4664-eaf40899baac-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c696f152-55a8-3200-4664-eaf40899baae-8dfe9bda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c696f152-55a8-3200-4664-eaf40899bab0-8dfe9bda, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f7-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f8-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010e8-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-a8f946ad, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-a8f946ad, #w-node-_80cd3ea4-73ed-9195-9ffa-5c26a4b51f83-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f8-a8f946ad, #w-node-bf94eaf7-5c92-a401-4820-8baeb06d2443-a8f946ad, #w-node-_8fa86899-2167-352d-fdc2-b875a6e7d1f3-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa0-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa1-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa3-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa5-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa7-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aa9-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aab-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30aad-a8f946ad, #w-node-_6ab9d574-2a1f-b276-20d5-eb74e4a30ab6-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0ad-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0ae-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0b0-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0b2-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0b4-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0b6-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0b8-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0ba-a8f946ad, #w-node-_6c84bb9d-135a-de45-60f7-7f071b69a0c3-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaad7-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaad8-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaada-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaadc-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaade-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaae0-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaae2-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaae4-a8f946ad, #w-node-_7ff43d2b-2bc8-ffbb-be9a-da7306caaaed-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_23decaac-1373-29dd-8f1f-e59540574974-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e59540574975-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e59540574977-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e59540574979-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e5954057497b-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e5954057497d-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_23decaac-1373-29dd-8f1f-e5954057497f-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e59540574981-a8f946ad, #w-node-_23decaac-1373-29dd-8f1f-e5954057498a-a8f946ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-46dc2f97, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-46dc2f97, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-46dc2f97, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-46dc2f97, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-46dc2f97, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-46dc2f97, #w-node-_80cd3ea4-73ed-9195-9ffa-5c26a4b51f83-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_8fa86899-2167-352d-fdc2-b875a6e7d1f3-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_60313d05-8438-747d-b935-588aae3ef8c6-46dc2f97, #w-node-_60313d05-8438-747d-b935-588aae3ef8c7-46dc2f97, #w-node-_60313d05-8438-747d-b935-588aae3ef8c9-46dc2f97, #w-node-_60313d05-8438-747d-b935-588aae3ef8cb-46dc2f97, #w-node-_60313d05-8438-747d-b935-588aae3ef8cd-46dc2f97, #w-node-_60313d05-8438-747d-b935-588aae3ef8cf-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_60313d05-8438-747d-b935-588aae3ef8d1-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d8529-46dc2f97, #w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d852a-46dc2f97, #w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d852c-46dc2f97, #w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d852e-46dc2f97, #w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d8530-46dc2f97, #w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d8532-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-bc5a9cc7-aa18-4eaf-cd94-4aa1859d8534-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9fcfedcc-198e-895a-3d80-c1c1e8413338-46dc2f97, #w-node-_9fcfedcc-198e-895a-3d80-c1c1e8413339-46dc2f97, #w-node-_9fcfedcc-198e-895a-3d80-c1c1e841333b-46dc2f97, #w-node-_9fcfedcc-198e-895a-3d80-c1c1e841333d-46dc2f97, #w-node-_9fcfedcc-198e-895a-3d80-c1c1e841333f-46dc2f97, #w-node-_9fcfedcc-198e-895a-3d80-c1c1e8413341-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9fcfedcc-198e-895a-3d80-c1c1e8413343-46dc2f97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_68937c37-077d-13a9-ccbf-401086e1ff3e-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68937c37-077d-13a9-ccbf-401086e1ff3f-5470bc20, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-5470bc20, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-5470bc20, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-5470bc20, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-5470bc20, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-5470bc20, #w-node-_4a173ce0-b929-150f-08ba-dc6a1757a40d-5470bc20, #w-node-c4e1d962-600d-6586-f30e-987741aa0674-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db14-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db15-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db17-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db19-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db1b-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db1d-5470bc20, #w-node-_43d08501-43eb-a4bd-8953-a3401874db1f-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc3e-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc3f-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc41-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc43-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc45-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc47-5470bc20, #w-node-_396918f1-aa91-69b0-80e9-c72a743ecc49-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c0-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c1-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c3-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c5-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c7-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3c9-5470bc20, #w-node-_8f03ecd4-0feb-9763-6bcf-1910f28ef3cb-5470bc20 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c0cdd935-c021-19c0-15a3-103963f3d4cc-98df3651, #w-node-c0cdd935-c021-19c0-15a3-103963f3d4d3-98df3651, #w-node-c0cdd935-c021-19c0-15a3-103963f3d4da-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a3e1056c-8f64-839e-964d-f78ddcf941ec-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a3e1056c-8f64-839e-964d-f78ddcf941ed-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_08f22a8b-9acc-90b0-a23e-a9d996c7a1d6-98df3651 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_08f22a8b-9acc-90b0-a23e-a9d996c7a1d7-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-98df3651, #w-node-_5ce8e3c7-745b-8c8c-85d3-c965430c1044-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-98df3651, #w-node-_562c7f50-ac48-efc3-e0e4-52973d45434a-98df3651, #w-node-_7ce9ea9e-f983-0aa9-6489-cc610f8feeb8-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192b9-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192ba-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192bc-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192be-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192c0-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192c2-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192c4-98df3651, #w-node-a2392787-0cc8-5b3c-8244-3128e85192c6-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba40-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba41-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba43-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba45-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba47-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba49-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba4b-98df3651, #w-node-_9ee52ef4-fb3b-a128-167b-81838fe6ba4d-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3f3-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3f4-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3f6-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3f8-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3fa-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3fc-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb3fe-98df3651, #w-node-ed215864-3dca-5bce-d8d6-8908068fb400-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e786-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e787-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e789-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e78b-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e78d-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e78f-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e791-98df3651, #w-node-f7a68a08-be7d-677c-e8fa-506dc279e793-98df3651, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f7-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f8-12a833b0, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-12a833b0, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-12a833b0, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-12a833b0, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-12a833b0, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-12a833b0, #w-node-_80cd3ea4-73ed-9195-9ffa-5c26a4b51f83-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f8-12a833b0, #w-node-_9917406c-8948-c577-b963-910458fbf1e2-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e7011a8-7b15-d6ea-297f-79f92bade346-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade347-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade349-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade34b-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade34d-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade34f-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_2e7011a8-7b15-d6ea-297f-79f92bade351-12a833b0, #w-node-_2e7011a8-7b15-d6ea-297f-79f92bade353-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e71eae53-dc79-c247-a59c-6b3fae2099cb-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099cc-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099ce-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099d0-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099d2-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099d4-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-e71eae53-dc79-c247-a59c-6b3fae2099d6-12a833b0, #w-node-e71eae53-dc79-c247-a59c-6b3fae2099d8-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4093f321-7d80-fca1-a479-dbf7fd19449c-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd19449d-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd19449f-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd1944a1-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd1944a3-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd1944a5-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_4093f321-7d80-fca1-a479-dbf7fd1944a7-12a833b0, #w-node-_4093f321-7d80-fca1-a479-dbf7fd1944a9-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f68c5db6-48c4-1d24-38c4-a79fa10611ca-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611cb-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611cd-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611cf-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611d1-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611d3-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f68c5db6-48c4-1d24-38c4-a79fa10611d5-12a833b0, #w-node-f68c5db6-48c4-1d24-38c4-a79fa10611d7-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cab2b93e-88c9-7013-0de9-afcccd14a2ca-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2cb-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2cd-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2cf-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2d1-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2d3-12a833b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-cab2b93e-88c9-7013-0de9-afcccd14a2d5-12a833b0, #w-node-cab2b93e-88c9-7013-0de9-afcccd14a2d7-12a833b0, #w-node-_1ff1c148-c2d6-d18f-d8e4-a95b2353d7a2-40ce47f4, #w-node-_1ff1c148-c2d6-d18f-d8e4-a95b2353d7d1-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_11ca5f0f-c871-69ec-c185-937edfe99413-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010dc-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f7-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd9dd77d-7fae-2317-efb3-fe77d49ec9f8-40ce47f4, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-40ce47f4, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-40ce47f4, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-40ce47f4, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-40ce47f4, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-40ce47f4, #w-node-_6e3d5769-1a51-b85e-da80-50ed21e3aad2-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f8-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3adaac62-1407-547e-014f-1dcd4a9643ff-40ce47f4, #w-node-_3adaac62-1407-547e-014f-1dcd4a964400-40ce47f4, #w-node-_3adaac62-1407-547e-014f-1dcd4a964402-40ce47f4, #w-node-_3adaac62-1407-547e-014f-1dcd4a964404-40ce47f4, #w-node-_3adaac62-1407-547e-014f-1dcd4a964406-40ce47f4, #w-node-_3adaac62-1407-547e-014f-1dcd4a964408-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3adaac62-1407-547e-014f-1dcd4a96440a-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3586a299-4fe1-c3d3-51a8-4880386b89ae-40ce47f4, #w-node-_3586a299-4fe1-c3d3-51a8-4880386b89af-40ce47f4, #w-node-_3586a299-4fe1-c3d3-51a8-4880386b89b1-40ce47f4, #w-node-_3586a299-4fe1-c3d3-51a8-4880386b89b3-40ce47f4, #w-node-_3586a299-4fe1-c3d3-51a8-4880386b89b5-40ce47f4, #w-node-_3586a299-4fe1-c3d3-51a8-4880386b89b7-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_3586a299-4fe1-c3d3-51a8-4880386b89b9-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd978-40ce47f4, #w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd979-40ce47f4, #w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd97b-40ce47f4, #w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd97d-40ce47f4, #w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd97f-40ce47f4, #w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd981-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_7a8ba4fb-d55c-9a7a-90f9-5e29448bd983-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9ae-40ce47f4, #w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9af-40ce47f4, #w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9b1-40ce47f4, #w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9b3-40ce47f4, #w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9b5-40ce47f4, #w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9b7-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_34f3c3c3-ae28-58f4-1a0c-7deeae14f9b9-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62bffd65-d02d-e1ac-743a-8fbf2141866f-40ce47f4, #w-node-_62bffd65-d02d-e1ac-743a-8fbf21418670-40ce47f4, #w-node-_62bffd65-d02d-e1ac-743a-8fbf21418672-40ce47f4, #w-node-_62bffd65-d02d-e1ac-743a-8fbf21418674-40ce47f4, #w-node-_62bffd65-d02d-e1ac-743a-8fbf21418676-40ce47f4, #w-node-_62bffd65-d02d-e1ac-743a-8fbf21418678-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_62bffd65-d02d-e1ac-743a-8fbf2141867a-40ce47f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-260a20ab, #w-node-_24553f45-1255-7b72-69e7-5960f3cd2ba7-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_0ee831e1-2510-7347-64a7-e1c44a1a8c96-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ee831e1-2510-7347-64a7-e1c44a1a8c97-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba1-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70b04111-a901-2d45-e80a-c7f9e3a22ba2-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dc-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6e50083-0057-d738-156b-3ffa54aa83dd-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3cff-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1fc5db7-671c-c05a-6fbc-853eeefd3d00-260a20ab, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-260a20ab, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-260a20ab, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-260a20ab, #w-node-_6f923d77-967b-8f1f-9a1e-0863b58477b3-260a20ab, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f2-260a20ab, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f4-260a20ab, #w-node-_80cd3ea4-73ed-9195-9ffa-5c26a4b51f83-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_8fa86899-2167-352d-fdc2-b875a6e7d1f3-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_954a89d8-c616-8447-6dba-c65d03a127ec-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127ed-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127ef-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127f1-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127f3-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127f5-260a20ab, #w-node-_954a89d8-c616-8447-6dba-c65d03a127f7-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_954a89d8-c616-8447-6dba-c65d03a127f9-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85092ac2-53e8-9d5e-57bd-f36edd079795-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd079796-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd079798-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd07979a-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd07979c-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd07979e-260a20ab, #w-node-_85092ac2-53e8-9d5e-57bd-f36edd0797a0-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_85092ac2-53e8-9d5e-57bd-f36edd0797a2-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7dfb-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7dfc-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7dfe-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7e00-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7e02-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7e04-260a20ab, #w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7e06-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_820b3cb0-d7ec-e48d-4f8f-13bbfb5e7e08-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a811317-2877-7c3c-87f3-0b1717feeda4-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feeda5-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feeda7-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feeda9-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feedab-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feedad-260a20ab, #w-node-_6a811317-2877-7c3c-87f3-0b1717feedaf-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6a811317-2877-7c3c-87f3-0b1717feedb1-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_788d96dc-b5db-2ef5-3d81-38c494cc9875-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc9876-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc9878-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc987a-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc987c-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc987e-260a20ab, #w-node-_788d96dc-b5db-2ef5-3d81-38c494cc9880-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_788d96dc-b5db-2ef5-3d81-38c494cc9882-260a20ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f77482f0-1f83-fcb4-0c5b-e77af47010db-e49d818a, #w-node-_24553f45-1255-7b72-69e7-5960f3cd2ba7-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599fe-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_41ea7574-9bf6-e532-d590-847200f599ff-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_0ee831e1-2510-7347-64a7-e1c44a1a8c96-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ee831e1-2510-7347-64a7-e1c44a1a8c97-e49d818a, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ed-e49d818a, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010ee-e49d818a, #w-node-f77482f0-1f83-fcb4-0c5b-e77af47010f0-e49d818a, #w-node-_6f923d77-967b-8f1f-9a1e-0863b58477b3-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_8fa86899-2167-352d-fdc2-b875a6e7d1f3-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f736ec1-0851-68f2-a7fa-8b4403436721-e49d818a, #w-node-_2f736ec1-0851-68f2-a7fa-8b4403436722-e49d818a, #w-node-_2f736ec1-0851-68f2-a7fa-8b4403436724-e49d818a, #w-node-_2f736ec1-0851-68f2-a7fa-8b4403436726-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_2f736ec1-0851-68f2-a7fa-8b4403436728-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d7c41087-5511-02e4-4719-e02c30bb7664-e49d818a, #w-node-d7c41087-5511-02e4-4719-e02c30bb7665-e49d818a, #w-node-d7c41087-5511-02e4-4719-e02c30bb7667-e49d818a, #w-node-d7c41087-5511-02e4-4719-e02c30bb7669-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d7c41087-5511-02e4-4719-e02c30bb766b-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f0fbcda7-89d2-e6e6-bf8d-f0f755ed4846-e49d818a, #w-node-f0fbcda7-89d2-e6e6-bf8d-f0f755ed4847-e49d818a, #w-node-f0fbcda7-89d2-e6e6-bf8d-f0f755ed4849-e49d818a, #w-node-f0fbcda7-89d2-e6e6-bf8d-f0f755ed484b-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f0fbcda7-89d2-e6e6-bf8d-f0f755ed484d-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a06bbf6-37ec-6627-54e1-ff9d0d6c5cb5-e49d818a, #w-node-_9a06bbf6-37ec-6627-54e1-ff9d0d6c5cb6-e49d818a, #w-node-_9a06bbf6-37ec-6627-54e1-ff9d0d6c5cb8-e49d818a, #w-node-_9a06bbf6-37ec-6627-54e1-ff9d0d6c5cba-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a06bbf6-37ec-6627-54e1-ff9d0d6c5cbc-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af481725-a76b-8524-8d26-63c894f8b6f8-e49d818a, #w-node-af481725-a76b-8524-8d26-63c894f8b6f9-e49d818a, #w-node-af481725-a76b-8524-8d26-63c894f8b6fb-e49d818a, #w-node-af481725-a76b-8524-8d26-63c894f8b6fd-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-af481725-a76b-8524-8d26-63c894f8b6ff-e49d818a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


