:root {
  --black: #111210;
  --dodger-blue: #3a86ff;
  --light-grey: #d9d9d9;
  --table-header: whitesmoke;
  --white: white;
  --borders: #efefef;
  --lime-green: #04a777;
  --hover-blue: #3479e5;
  --dark-slate-grey: #295236;
  --firebrick: #bd3a3a;
  --hover-red: #a33131;
  --white-2: #fafafa;
  --grey: #767676;
  --tomato: #f35252;
  --royal-blue: #2e6bcc;
  --royal-blue-2: #4574bf;
  --grey-2: #9c9c9c;
  --goldenrod: #f8c005;
  --ghost-white: #f7faff;
  --sandy-brown: #f69144;
  --dim-grey: #545454;
  --midnight-blue: #11284c;
  --gainsboro: #d9d9d9;
  --dark-slate-blue: #235099;
  --dark-slate-blue-2: #1d4380;
  --white-3: rgba(255, 255, 255, .15);
}

.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: var(--black);
  font-family: SF Pro, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

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

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

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--black);
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955);
}

a:active {
  transform: scale(.96);
}

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

li {
  color: var(--black);
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
}

blockquote {
  border-left: 5px solid var(--dodger-blue);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

figcaption {
  color: var(--light-grey);
  text-align: left;
  margin-top: 5px;
  font-size: 14px;
}

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

.section.grey {
  background-color: var(--table-header);
}

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  transition: width .1s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

.container.nav-container {
  z-index: 1;
  height: 100%;
  position: relative;
}

.container.auth-container {
  max-width: 460px;
}

.container.mob-percent {
  height: 100%;
}

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

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

.grid._2-col.percentage-gap {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
}

.grid._7-row {
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 45px;
  padding-bottom: 24px;
  display: grid;
}

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

.grid._3-col.align {
  align-items: start;
}

.grid._3-col._40-gap {
  grid-column-gap: 40px;
}

.grid._3-col._40-gap.align._0000._554 {
  margin-top: 50px;
}

.grid._3-col.navigate {
  height: 100%;
  grid-column-gap: 24px;
  grid-template-columns: minmax(200px, 200px) 1fr minmax(454px, 454px);
  align-items: center;
}

.grid._3-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--black);
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid._3-row._16px-top-padding {
  padding-top: 16px;
}

.grid._2-row {
  color: var(--black);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.grid._2-row._16px-top-padding {
  padding-top: 16px;
  padding-bottom: 8px;
  position: relative;
}

.grid._2-row {
  color: #111210;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.grid._2-row._16px-top-padding {
  padding-top: 16px;
  padding-bottom: 8px;
  position: relative;
}

.button-wrapper.add-to-cart-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 16px;
  display: grid;
}

.button-wrapper.add-to-cart-button._00 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.button-wrapper._10px {
  margin-bottom: 10px;
}

.button-wrapper._120 {
  width: 140px;
}

.button-wrapper.pos-absolute {
  border-top: 1px solid var(--borders);
  background-color: var(--white);
  padding: 24px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-wrapper.pos-absolute.in-dropdown-cart {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.button-wrapper.cometa-cta {
  margin-top: 25px;
}

.button-wrapper.add-address {
  width: auto;
  border-top: 1px none var(--light-grey);
  padding-top: 24px;
  display: block;
}

.button-text {
  height: 17px;
  display: inline-block;
  overflow: hidden;
}

.button {
  height: 40px;
  background-color: var(--lime-green);
  text-align: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), border-color .2s, color .2s, background-color .2s cubic-bezier(1, 0, 0, 1);
  display: block;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: #295236;
}

.button.blue-button {
  background-color: var(--dodger-blue);
  color: var(--white);
  border-radius: 6px;
  flex: 1;
  padding-left: 0;
  padding-right: 0%;
  position: relative;
}

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

.button.blue-button.inside-product-page {
  padding-left: 35px;
  padding-right: 35px;
}

.button.blue-button._50 {
  height: 48px;
  background-color: var(--lime-green);
  padding-top: 16px;
  padding-bottom: 15px;
}

.button.blue-button._50:hover {
  background-color: var(--dark-slate-grey);
}

.button.red-button {
  background-color: var(--firebrick);
  color: var(--white);
}

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

.button.red-button.with-chevron {
  text-align: left;
  border-radius: 6px;
}

.button.red-outline {
  border: 1px solid var(--firebrick);
  color: var(--firebrick);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.button.red-outline:hover {
  background-color: var(--firebrick);
  color: var(--white);
}

.button.red-outline.remover, .button.red-outline.remover-copy {
  width: 120px;
}

.button.cancel {
  height: 45px;
  background-color: var(--white-2);
  color: var(--grey);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding-top: 14px;
  padding-bottom: 0;
}

.button.cancel:hover {
  background-color: var(--tomato);
  color: var(--white);
}

.button.submit-button {
  width: 100%;
  background-color: var(--dodger-blue);
  color: var(--white);
  padding-left: 0;
  padding-right: 0;
}

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

.button.submit-button.hide {
  display: none;
}

.button.submit-button._50 {
  height: 45px;
}

.button.blue-outline {
  border: 1px solid var(--dodger-blue);
  color: var(--dodger-blue);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.button.blue-outline:hover {
  background-color: var(--dodger-blue);
  color: var(--white);
}

.button.blue-outline.with-icon {
  padding-left: 5px;
}

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

.button.dark-blue.with-icon {
  background-color: var(--royal-blue);
  color: var(--white);
  text-align: left;
  padding-left: 20px;
}

.button.dark-blue.with-icon:hover {
  background-color: var(--white);
  color: var(--royal-blue);
}

.button.cancel {
  height: 45px;
  color: #767676;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0);
  padding-top: 14px;
  padding-bottom: 0;
}

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

.button.blue-button {
  color: #fff;
  background-color: #3a86ff;
  flex: 1;
  padding-left: 0;
  padding-right: 0%;
  position: relative;
}

.button.blue-button:hover {
  background-color: #3479e5;
}

.button.blue-button.inside-product-page {
  padding-left: 35px;
  padding-right: 35px;
}

.button.blue-button._50 {
  height: 48px;
  padding-top: 16px;
  padding-bottom: 15px;
}

.button.submit-button {
  width: 100%;
  color: #fff;
  background-color: #3a86ff;
  padding-left: 0;
  padding-right: 0;
}

.button.submit-button:hover {
  background-color: #3479e5;
}

.button.submit-button._50 {
  height: 45px;
}

.button.pendente {
  height: 45px;
  background-color: var(--royal-blue-2);
  color: #fff;
  border-radius: 8px;
  padding-top: 14px;
}

.button.upload {
  background-color: var(--dark-slate-grey);
  margin-right: 10px;
}

.button-icon {
  height: 16px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 20px;
  line-height: 16px;
  display: inline-block;
}

.section-header-wrapper {
  margin-bottom: 24px;
}

.section-subheader {
  color: var(--grey);
  font-size: 18px;
  line-height: 1;
}

.section-header {
  margin-bottom: 7px;
  font-size: 40px;
}

.section-header.no-padding {
  margin-bottom: 0;
}

.section-header.no-padding.profile-name {
  margin-bottom: 10px;
  font-size: 33px;
  line-height: 1.1;
}

.section-header.padding {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.small {
  margin-bottom: 0;
  font-size: 25px;
}

.section-button-wrapper {
  width: 150px;
  max-width: 150px;
  padding-bottom: 2px;
}

.text-field {
  z-index: 2;
  height: 48px;
  border: 2px solid var(--light-grey);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  margin-bottom: 26px;
  margin-right: 16px;
  font-size: 16px;
  position: relative;
}

.text-field:focus {
  border-color: var(--grey);
  color: var(--black);
}

.text-field::-ms-input-placeholder {
  color: var(--grey-2);
}

.text-field::placeholder {
  color: var(--grey-2);
}

.text-field.text-area {
  height: 100px;
}

.text-field.with-icon {
  color: var(--black);
  border-color: #ccc;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
}

.text-field.with-icon:focus {
  font-size: 16px;
}

.text-field.with-icon::-ms-input-placeholder {
  color: var(--grey-2);
}

.text-field.with-icon::placeholder {
  color: var(--grey-2);
}

.text-field.with-icon._10-margin {
  margin-bottom: 8px;
}

.text-field._8 {
  padding-bottom: 137px;
}

.text-field.curto {
  margin-bottom: 0;
}

.field-label {
  color: var(--grey);
  margin-bottom: 8px;
  padding-left: 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.field-label.bold {
  color: var(--black);
  font-weight: 600;
}

.choice-wrapper {
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.choice-item {
  height: 94px;
  text-align: center;
}

.choice-item.no-line {
  padding-bottom: 3px;
}

.choice-content {
  height: 100%;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 50px 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.choice-content.wider {
  grid-column-gap: 8px;
}

.choice-icon {
  width: auto;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-right: 16px;
  font-family: Material, sans-serif;
  font-size: 50px;
  line-height: 35px;
}

.choice-icon.storefront {
  font-size: 46px;
}

.choice-icon.loose {
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.choice-header {
  font-size: 16px;
  font-weight: 500;
}

.choice-subheader {
  font-size: 12px;
}

.table-column {
  width: 20%;
  height: 100%;
  align-items: center;
  padding-left: 24px;
  display: flex;
}

.table-row {
  height: 90px;
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 8px;
  display: flex;
  overflow: hidden;
}

.table-row.table-header {
  z-index: 1;
  height: 70px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(204, 204, 204, .5);
  border-top-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  border-left-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  font-size: 13px;
  font-weight: 600;
  display: none;
  position: relative;
}

.table-text {
  height: 20px;
  font-size: 15px;
  line-height: 21px;
  overflow: hidden;
}

.table-text._13 {
  letter-spacing: .25px;
  font-size: 12px;
}

.table-block {
  flex: 1;
}

.table-block._90 {
  height: 100%;
  flex: 1;
  padding-top: 4px;
  display: flex;
}

.table-block.blobs {
  height: 100%;
  border: 1px none var(--borders);
  color: var(--black);
  flex: 1;
  display: flex;
}

.table-estado {
  max-width: 95px;
  background-color: rgba(0, 0, 0, 0);
  flex: 1;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  line-height: 100%;
  overflow: hidden;
}

.table-estado.pendente {
  max-width: 120px;
  color: #e8a21e;
  background-color: #f6e7d1;
}

.table-wrapper {
  border: 1px none var(--borders);
  border-radius: 16px;
  padding-bottom: 0;
  overflow: hidden;
}

.product-image-tabs {
  height: 100%;
  min-height: 600px;
}

.product-images-gallery {
  height: 19%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-left: -8px;
  margin-right: -8px;
  display: flex;
}

.product-image-content {
  height: 81%;
  max-height: 500px;
  padding-bottom: 16px;
}

.product-image-tab-link {
  width: 25%;
  max-width: 25%;
  min-width: 25%;
  background-color: rgba(0, 0, 0, 0);
  padding: 0 8px;
}

.product-image-tab-link.w--current {
  opacity: .5;
  background-color: rgba(0, 0, 0, 0);
}

.tab-pane {
  height: 100%;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrapper.rounded-corners {
  border-radius: 16px;
}

.image-wrapper.rounded-corners.borders {
  border: 1px solid var(--borders);
  border: 1px solid #efefef;
}

.image-wrapper.product-card-image-wrapper {
  height: 207px;
  border-radius: 12px;
}

.image-wrapper.product-card-image-wrapper.shorter {
  height: 150px;
}

.image-wrapper.category-card-image-wrapper {
  height: 277px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.image-wrapper.profile-thumbnail {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  flex: none;
  margin-right: 4vw;
}

.image-wrapper.profile-image {
  width: 120px;
  height: 120px;
  cursor: pointer;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.image-wrapper.nav-profile-thumbnail {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  margin-right: 8px;
}

.image-wrapper.cart-image-wrapper {
  height: 130px;
  border: 1px solid var(--borders);
  border-radius: 12px;
}

.image-wrapper.profile-thumbnail {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-right: 4vw;
}

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

.cover-image.float {
  object-position: 50% 0%;
}

.cover-image.round {
  border-radius: 50%;
}

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

.contain-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.contain-image.align-left {
  object-position: 0% 50%;
}

.product-price {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.product-price.kz {
  margin-left: 2px;
  font-size: 14px;
  position: relative;
  top: -12px;
}

.product-price.kz.small {
  font-size: 10px;
  top: -5px;
}

.product-price.kz.medium {
  font-size: 11px;
  top: -7px;
}

.product-price.kz.green {
  color: var(--lime-green);
  color: #04a777;
}

.product-price.small {
  font-size: 16px;
}

.product-price.small.thinner {
  font-weight: 600;
}

.product-price.medium {
  font-size: 20px;
}

.product-price.yellow {
  color: var(--goldenrod);
}

.product-price.red {
  color: var(--firebrick);
}

.product-price.blue {
  color: var(--lime-green);
}

.product-price.blux {
  color: var(--royal-blue-2);
}

.product-price.yellow {
  color: #f8c005;
}

.product-price.blue {
  color: #04a777;
}

.product-price.blux {
  color: #4574bf;
}

.product-in-stock {
  color: var(--grey);
  align-items: center;
  margin-bottom: 3px;
  font-size: 15px;
  display: flex;
}

.stock-quantity {
  width: 45px;
  height: 40px;
  border: 1px solid var(--borders);
  text-align: center;
  border-radius: 12px;
  margin-right: 10px;
  line-height: 39px;
}

.product-description {
  margin-bottom: 0;
  line-height: 1.6;
}

.product-items-wrapper {
  display: flex;
}

.plus-minus-wrapper {
  width: 120px;
  height: 40px;
  background-color: var(--white-2);
  color: var(--grey);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  justify-content: space-between;
  margin-right: 16px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  overflow: hidden;
}

.plus-minus-wrapper.no-margin {
  margin-right: 0;
}

.plus-minus-wrapper.no-margin.lngrs {
  width: auto;
}

.plus-minus-wrapper._100 {
  width: 100%;
}

.plus-minus-button {
  width: 33.33%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 0;
  font-size: 20px;
  line-height: 40px;
  transition: all .2s;
  display: inline-block;
}

.plus-minus-button:hover {
  color: var(--black);
  background-color: rgba(17, 18, 16, .05);
}

.plus-minus-button.minus {
  float: left;
  padding-left: 3%;
}

.plus-minus-button.plus {
  float: right;
  padding-right: 2%;
}

.quantity {
  width: 33.33%;
  height: 100%;
  text-align: center;
  cursor: default;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10%;
  padding-right: 10%;
  line-height: 39px;
  display: inline-block;
}

.quantity.no-padding {
  padding-left: 0%;
  padding-right: 0%;
}

.product-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.product-title.small {
  max-height: 42px;
  font-size: 15px;
  font-weight: 400;
  overflow: hidden;
}

.product-title.small.bottom-margin {
  max-height: 62px;
  margin-bottom: 16px;
}

.product-title.midium {
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
}

.product-category {
  color: var(--firebrick);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -16px;
  font-size: 14px;
}

.product-category.small {
  margin-bottom: -6px;
  font-size: 9px;
}

.extra-info-text {
  color: var(--grey);
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.4;
}

.extra-info-text.small {
  color: var(--grey);
  font-size: 14px;
}

.extra-info-text.categeria-mble {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 14px;
}

.product-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.product-card._3-col-grid {
  grid-column-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 16px;
  display: grid;
}

.product-card._3-col-grid.borders {
  border: 1px solid var(--light-grey);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 16px;
}

.product-card._2-col-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-card._2-col-grid.borders {
  grid-column-gap: 40px;
  border: 1px solid var(--light-grey);
  grid-template-columns: 200px 1fr;
  margin-bottom: 16px;
  padding: 16px;
}

.product-card._2-col-grid.borders.in-srch {
  grid-template-columns: 151px 1fr;
  margin-bottom: 0;
}

.product-link {
  padding: 16px 16px 40px;
  display: block;
}

.product-link.grid {
  color: var(--black);
}

.product-link.grid._5-row {
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-bottom: 16px;
  display: grid;
}

.product-link.grid {
  color: #111210;
}

.product-link.grid._5-row {
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-bottom: 16px;
  display: grid;
}

.category-card {
  background-color: var(--white);
  color: var(--black);
  border-radius: 24px;
  padding: 16px;
  overflow: hidden;
}

.flex {
  display: flex;
}

.category-title {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}

.extra-info {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4;
}

.extra-info.sided {
  font-size: 13px;
  line-height: 1;
}

.category-card-text-wrapper {
  flex: 1;
}

.category-card-icon-wrapper {
  color: var(--grey);
  justify-content: flex-end;
  align-items: center;
  padding-left: 24px;
  display: flex;
  position: relative;
}

.category-card-icon-wrapper.float-on-top {
  display: none;
}

.price-table-wrapper {
  border: 1px solid var(--light-grey);
  color: var(--black);
  border-radius: 16px;
  padding: 35px 24px 24px;
}

.header-wrapper.h4 {
  margin-bottom: 35px;
}

.header-wrapper._16 {
  margin-bottom: 24px;
}

.header-wrapper.purchase {
  margin-bottom: 16px;
}

.header-wrapper.loja {
  margin-bottom: 25px;
}

.header {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.header.thinner {
  font-weight: 400;
}

.header.thinner.cntrd.pgmnto {
  margin-bottom: 6px;
}

.header.form-section {
  text-align: center;
  margin-bottom: 24px;
}

.header._212.cntrd._2 {
  font-size: 20px;
  font-weight: 400;
}

.header.h2 {
  line-height: 1;
}

.price-list-item {
  height: 20px;
  color: var(--grey);
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
}

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

.price-title.total {
  margin-right: 6px;
  font-size: 16px;
}

.price-numbers {
  float: right;
  display: inline-block;
}

.price-total {
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px none var(--light-grey);
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
}

.price-total.no-btm-padding {
  margin-bottom: 0;
}

.footer {
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 0;
}

.navigator {
  z-index: 1000;
  height: 80px;
  background-color: rgba(0, 0, 0, 0);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.choice-tab-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.choice-tab-content {
  min-height: 100px;
  padding-top: 16px;
}

.choice-tab-link {
  height: 96px;
  color: var(--grey);
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid rgba(204, 204, 204, .5);
  border-radius: 16px;
  padding: 0;
}

.choice-tab-link:hover {
  border-color: #ccc;
}

.choice-tab-link.w--current {
  border-color: var(--dodger-blue);
  background-color: var(--white);
  color: var(--black);
}

.selected-tab-pane {
  min-height: 200px;
  border: 1px none var(--dodger-blue);
  border-radius: 16px;
}

.dropdown-icon {
  margin-right: 20px;
  font-size: 12px;
}

.dropdown-icon._8px-padding {
  margin-right: 11px;
  font-size: 11px;
}

.dropdown-icon.in-nav-profile {
  margin-right: 8px;
  font-size: 11px;
  line-height: 1;
  top: 2px;
}

.chevron-icon {
  margin-right: 12px;
  font-size: 12px;
  transform: rotate(-90deg);
}

.chevron-icon._25 {
  margin-right: 18px;
}

.chevron-icon._0 {
  margin-right: 0;
  font-size: 16px;
}

.chevron-icon._00 {
  display: none;
}

.button-wrapper-2 {
  height: 40px;
}

.button-wrapper-2._20-left {
  margin-left: -17px;
}

.button-wrapper-2._20-left.resources-menu-link {
  margin-bottom: 10px;
}

.button-2 {
  height: 40px;
  color: #0582ff;
  text-align: center;
  padding: 12px 17px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-2:hover {
  opacity: .95;
  transform: translate(3.5px);
}

.button-2.resources-menu-link {
  color: #667081;
}

.button-2.resources-menu-link:hover {
  transform: none;
}

.button-2.resources-menu-link.w--current {
  color: var(--firebrick);
}

.resources-nav-menu {
  width: 210px;
  height: 300px;
  float: right;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.button-text-2 {
  height: 16px;
  float: left;
  display: inline-block;
}

.section-subheading {
  color: #8f9ba6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: .9em;
  font-weight: 500;
  line-height: 100%;
  display: inline-block;
}

.section-subheading.smaller-txt {
  font-size: .8em;
  font-weight: 400;
}

.section-subheading.smaller-txt.form {
  color: var(--grey);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
  margin-left: 1px;
  font-size: 16px;
}

.contact-block._500px {
  padding-top: 0;
}

.contact-item {
  max-width: 360px;
  margin-bottom: 56px;
}

.contact-txt {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 130%;
}

.table-scroll {
  border: 1px none var(--borders);
  overflow: visible;
}

.status-circles-wrapper {
  width: 30px;
  height: 30px;
  cursor: default;
  overflow: hidden;
}

.project-state {
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  background-color: #a6a6a6;
  border-radius: 12px;
  font-size: 20px;
  overflow: hidden;
}

.project-state.done {
  background-color: var(--lime-green);
}

.project-state.done.hidden {
  display: none;
}

.project-state.in-progress {
  background-color: #ccc;
  border-radius: 20px;
}

.project-state.done {
  background-color: #04a777;
  border-radius: 20px;
}

.project-state.done.hidden {
  display: none;
}

.project-state.cancel-now {
  background-color: var(--tomato);
  border-radius: 200px;
}

.status-content-wrapper {
  z-index: 5;
  flex-direction: column;
  flex: none;
  align-items: center;
  display: flex;
  position: relative;
}

.center-text {
  color: var(--grey-2);
  margin-top: 32px;
}

.center-text.confirmed {
  color: var(--black);
}

.linesman {
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  align-items: center;
  padding: 34px;
  display: flex;
}

.status-line {
  height: 3px;
  flex: 1;
  position: relative;
  top: -26px;
}

.confirmed-line {
  z-index: 2;
  height: 2px;
  border: 2px solid var(--lime-green);
  background-color: var(--lime-green);
  border-radius: 10px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.confirmed-line.hidden {
  z-index: 2;
  display: none;
}

.in-progress-line {
  border: 1px dashed #ccc;
  border-radius: 10px;
}

.line-seperator {
  height: 1px;
  background-color: var(--light-grey);
  margin-top: 24px;
  margin-bottom: 24px;
}

.estado.em-processo {
  color: var(--goldenrod);
}

.estado.entregue {
  color: var(--lime-green);
}

.estado.cancelado {
  color: var(--tomato);
}

.nav-shadow {
  z-index: 0;
  background-color: var(--white);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 1px 12px rgba(0, 0, 0, .2);
}

.brand {
  height: 55px;
  align-items: center;
  display: flex;
}

.brand.at-auth {
  width: 140px;
  height: auto;
  justify-content: center;
  margin-bottom: 1vh;
  display: flex;
}

.nav-buttons-container {
  height: 100%;
  display: flex;
}

.nav-menu-wrapper {
  z-index: 10000;
  height: 100%;
  align-items: center;
  display: flex;
  position: relative;
}

.nav-menu {
  z-index: 1200;
  width: 40vw;
  height: 100vh;
  max-height: 100vh;
  max-width: 650px;
  min-height: 500px;
  min-width: 480px;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: auto;
}

.overlay {
  z-index: 1100;
  background-color: rgba(0, 0, 0, .35);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.close-nav {
  width: 40px;
  height: 40px;
  color: var(--black);
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  line-height: 40px;
  transition: all .2s;
  position: absolute;
  top: 6vh;
  bottom: auto;
  left: auto;
  right: 5vw;
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}

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

.close-nav.close-edit-profile {
  z-index: 10;
  width: 45px;
  height: 45px;
  background-color: var(--white);
  top: 18px;
  right: 18px;
  overflow: hidden;
}

.close-nav.close-search {
  z-index: 2;
  color: var(--black);
  margin-top: 21px;
  margin-bottom: 21px;
  margin-right: 16px;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.close-nav.cat {
  z-index: 1;
  background-color: var(--white);
  margin-left: auto;
  margin-right: auto;
  top: -14px;
  bottom: auto;
  left: 0%;
  right: -300px;
}

.menu {
  margin-left: 5vw;
  margin-right: 40px;
}

.nav-link {
  height: 50px;
  color: var(--black);
  border-radius: 8px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 16px;
  font-size: 18px;
  line-height: 1;
  transition: background-color .2s, transform 50ms cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
}

.nav-link:hover {
  background-color: var(--table-header);
}

.nav-link.w--current {
  color: var(--lime-green);
}

.ham-menu {
  width: 45px;
  height: 45px;
  color: var(--black);
  cursor: pointer;
  border-radius: 12px;
  transition: background-color .2s;
  overflow: hidden;
}

.ham-menu:hover {
  background-color: var(--table-header);
}

.dropdown-cart-wrapper {
  z-index: 10000;
  height: 100%;
  align-items: center;
  padding-left: 16px;
  display: flex;
  position: relative;
}

.dropdown-cart {
  z-index: 5000000;
  width: 350px;
  height: 80vh;
  max-height: 700px;
  min-height: 500px;
  background-color: var(--white);
  border-radius: 24px;
  padding-top: 80px;
  padding-bottom: 88px;
  display: none;
  position: absolute;
  top: 90px;
  bottom: 0%;
  left: auto;
  right: 16px;
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .2);
}

.close-cart {
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--black);
  cursor: pointer;
  border-radius: 12px;
  font-size: 25px;
  transition: all .2s;
  position: absolute;
  top: 18px;
  bottom: auto;
  left: auto;
  right: 18px;
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}

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

.cart-title-wrapper {
  z-index: 1;
  height: 40px;
  align-items: center;
  padding-left: 3px;
  display: flex;
  position: absolute;
  top: 24px;
  bottom: auto;
  left: 24px;
  right: auto;
}

.white-bg {
  height: 80px;
  border-bottom: 1px solid var(--borders);
  background-color: var(--white);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.cart-icon {
  width: 45px;
  height: 45px;
  color: var(--black);
  cursor: pointer;
  border-radius: 12px;
  transition: background-color .2s;
  position: relative;
  overflow: hidden;
}

.cart-icon:hover {
  background-color: var(--table-header);
}

.pop-up-wrapper {
  z-index: 12000;
  align-items: center;
  padding-left: 16px;
  display: flex;
  position: relative;
}

.decoy {
  height: 1px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.gray-body {
  background-color: var(--table-header);
}

.nav-auth-buttons-wrapper {
  width: 270px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-left: 32px;
  display: grid;
}

.nav-auth-buttons-wrapper._0-padding {
  padding-left: 0;
}

.material-icons {
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 0;
  font-family: Kixicredito main, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.material-icons.close {
  padding-top: 8px;
  padding-bottom: 0;
  font-size: 24px;
}

.material-icons.close.white {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  z-index: 1;
  text-align: center;
  background-color: #fff;
  padding-top: 11px;
  padding-bottom: 9px;
  position: relative;
}

.material-icons.on-40 {
  padding-top: 8px;
  padding-bottom: 9px;
}

.material-icons.on-40._35 {
  padding-top: 8px;
}

.material-icons.bigger {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
}

.material-icons.checker {
  padding-top: 5px;
  padding-bottom: 4px;
  font-size: 20px;
}

.material-icons.on-35 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.material-icons.resrc {
  position: relative;
  top: -10px;
}

.material-icons._2 {
  padding-top: 3px;
  line-height: 1.2;
}

.search-button-wrapper {
  align-items: center;
  padding-left: 16px;
  display: flex;
}

.search-icon {
  width: 45px;
  height: 45px;
  color: var(--black);
  cursor: pointer;
  border-radius: 12px;
  transition: background-color .2s;
  overflow: hidden;
}

.search-icon:hover {
  background-color: var(--table-header);
}

.navigator-link {
  height: 40px;
  color: var(--black);
  margin-right: 9%;
  font-size: 15px;
  font-weight: 500;
  line-height: 42px;
  display: inline-block;
}

.navigator-link.w--current {
  color: var(--firebrick);
  font-weight: 700;
}

.navigator-menu {
  height: 40px;
  overflow: hidden;
}

.auth-section {
  overflow: hidden;
}

.cometa-sidebar {
  width: 30%;
  height: 100vh;
  max-height: 100vh;
  max-width: 30%;
  min-height: 100vh;
  min-width: 30%;
  background-color: var(--dodger-blue);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.auth-content-wrapper {
  margin-left: 30%;
}

.auth-content-wrapper.log-in {
  margin-left: 0%;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.form-field-wrapper {
  position: relative;
}

.form-field-wrapper.terms-cond {
  margin-bottom: 32px;
}

.form-field-wrapper._3 {
  margin-bottom: 25px;
}

.form-field-wrapper._3._090 {
  margin-bottom: 0;
}

.form-field-icon {
  width: 48px;
  height: 48px;
  color: var(--grey-2);
  padding-left: 2px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.profile-image-wrapper {
  margin-bottom: 5vh;
}

.add-image-icon {
  width: 45px;
  height: 45px;
  background-color: var(--firebrick);
  color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.nav-profile-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-left: 23px;
  display: flex;
}

.nav-profile-wrapper.hidden {
  display: none;
}

.nav-profile-wrapper.no-padding {
  padding-left: 0;
}

.nav-profile {
  position: relative;
}

.nav-profile.w--current {
  padding-right: 17px;
}

.address-wrapper {
  border: 1px solid var(--dodger-blue);
  border-radius: 16px;
  padding: 24px;
}

.address-wrapper._40 {
  border-style: none;
  padding: 40px 40px 24px;
  display: none;
}

.instructions-wrapper {
  padding-top: 20px;
}

.login-nav {
  border-bottom: 1px none var(--borders);
  flex-direction: column;
  align-items: center;
  margin-bottom: 10vh;
  display: flex;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.cart-alert {
  width: 12px;
  height: 12px;
}

.checkbox-wrapper {
  margin-bottom: 0;
  padding-left: 31px;
}

.checkbox-wrapper.cntrd {
  justify-content: center;
  margin-top: 44px;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 20px;
  height: 20px;
  border-width: 2px;
  border-color: #ccc;
  border-radius: 4px;
  margin-top: 0;
  margin-left: -31px;
}

.checkbox.w--redirected-checked {
  background-size: 14px;
}

.checkbox.free {
  float: none;
  margin-left: 0;
  margin-right: 10px;
  display: inline-block;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 15px;
}

.checkbox-label.free-2 {
  display: inline-block;
}

.counter-auth {
  text-align: center;
  margin-top: 50px;
  font-weight: 500;
}

.counter-auth.float {
  margin-top: 0;
  margin-left: 0%;
  position: absolute;
  top: auto;
  bottom: 3vh;
  left: 0%;
  right: 0%;
}

.counter-auth.password-rcvr {
  color: rgba(118, 118, 118, .5);
  text-align: left;
  margin-top: 16px;
  margin-bottom: 40px;
  padding-left: 8px;
  font-size: 15px;
  font-weight: 400;
}

.counter-auth-link {
  color: var(--hover-blue);
  margin-left: 2px;
  transition: all .2s;
}

.counter-auth-link:hover {
  text-decoration: underline;
}

.counter-auth-link.dark {
  color: var(--grey);
}

.edit-profile {
  z-index: 5000000;
  height: 100vh;
  max-height: 100vh;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.edit-profile-form {
  height: 100%;
  grid-row-gap: 60px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding: 40px;
  overflow: auto;
}

.edit-profile-section {
  margin-bottom: 60px;
}

.wrapper {
  z-index: 5;
  width: 500px;
  height: 90vh;
  max-height: 950px;
  min-height: 500px;
  background-color: var(--white);
  border-radius: 26px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0, 0, 0, .2);
}

.cart-product-wrapper {
  height: 130px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 16px;
  display: grid;
  overflow: hidden;
}

.cart-products-content-wrapper {
  height: 100%;
  padding: 24px 24px 4px;
  overflow: auto;
}

.search-content {
  z-index: 5000000;
  width: 610px;
  height: auto;
  background-color: var(--white);
  border-radius: 24px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  top: 20px;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .2);
}

.search-wrapper {
  height: 100%;
  margin-bottom: 0;
  margin-right: 70px;
}

.search {
  z-index: 1;
  width: 100%;
  height: 80px;
  max-width: 100%;
  min-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  padding-left: 60px;
  padding-right: 0;
  font-size: 20px;
  position: relative;
}

.search::-ms-input-placeholder {
  color: var(--grey-2);
  font-weight: 400;
}

.search::placeholder {
  color: var(--grey-2);
  font-weight: 400;
}

.search-button {
  width: 45px;
  height: 45px;
  color: var(--grey-2);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 18px;
  margin-bottom: 19px;
  padding: 1px 0 0;
  font-family: Material, sans-serif;
  font-size: 23px;
  line-height: 1;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 16px;
  right: auto;
}

.cart-item-counter {
  height: 14px;
  min-width: 14px;
  background-color: var(--tomato);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  border-radius: 200px;
  padding-top: 2px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 1px;
  bottom: auto;
  left: auto;
  right: 4px;
}

.uploaded-photo-div {
  width: 150px;
  max-width: 150px;
  min-width: 150px;
  border-right: 1px solid var(--light-grey);
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
}

.div-block {
  flex: 1;
}

.uploaded-image-resolution {
  color: var(--grey);
  font-size: 14px;
}

.sub-delete-button {
  height: 40px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), border-color .2s, color .2s, background-color .2s;
}

.sub-delete-button:active {
  transform: scale(.98);
}

.sub-delete-button.gray {
  background-color: var(--white-2);
  color: var(--grey);
  border: 1px solid rgba(204, 204, 204, .5);
  border-radius: 8px;
  margin-left: 0;
  margin-right: 8px;
  padding-top: 9px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.sub-delete-button.gray:hover {
  background-color: var(--dodger-blue);
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
}

.sub-delete-button.gray.eliminar {
  width: 105px;
}

.sub-delete-button.gray.eliminar:hover {
  background-color: var(--tomato);
}

.sub-delete-button.gray.eliminar.longersss {
  width: 158px;
}

.sub-delete-button.gray.logout-button {
  width: 100px;
}

.sub-delete-button.gray.logout-button:hover {
  background-color: var(--tomato);
}

.sub-delete-button.gray.logout-button._20 {
  width: 120px;
}

.sub-delete-button.gray {
  color: #767676;
  background-color: #fafafa;
  border: 1px solid rgba(204, 204, 204, .5);
  border-radius: 8px;
  margin-left: 0;
  margin-right: 8px;
  padding-top: 9px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.sub-delete-button.gray:hover {
  color: #fff;
  background-color: #3a86ff;
  border-color: rgba(0, 0, 0, 0);
}

.sub-delete-button.gray.eliminar {
  width: 105px;
}

.sub-delete-button.gray.eliminar:hover {
  background-color: #f35252;
}

.sub-delete-button.gray.eliminar.longersss, .sub-delete-button.gray.logout-button {
  width: auto;
}

.sub-delete-button.gray.logout-button:hover {
  background-color: #f35252;
}

.uploaded-photo-wrapper {
  display: none;
}

.photo-upload-input-wrapper {
  min-height: 170px;
  border-bottom: 1px solid #e0e2e7;
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 30px;
}

.photo-upload-input-wrapper.no-line {
  border-bottom-style: none;
}

.photo-contain {
  max-width: 90px;
}

.photo-upload-input-field {
  height: 170px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f8f8;
  border: 2px dashed #d0d3dd;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .1s;
  display: flex;
}

.photo-upload-input-field:hover {
  background-color: #fff;
}

.photo-upload-input-field:focus {
  background-color: #fff;
  border-color: #ff5c4b;
}

.photo-upload-input-field::-ms-input-placeholder {
  color: #9c9c9c;
}

.photo-upload-input-field::placeholder {
  color: #9c9c9c;
}

.photo-upload-input-field.no-bg-fill {
  border-width: 2px;
  border-color: var(--dodger-blue);
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
}

.photo-upload-input-field.no-bg-fill:hover {
  background-color: var(--ghost-white);
}

.uploaded-photo-content {
  height: 130px;
  border: 1px solid var(--light-grey);
  background-color: rgba(245, 245, 245, .35);
  border-radius: 16px;
  margin-bottom: 10px;
  display: flex;
}

.form-button-icon {
  float: left;
  margin-right: 8px;
  font-family: Kixicredito main, sans-serif;
  font-size: 18px;
  position: relative;
  top: 0;
}

.uploaded-image-name {
  height: 16px;
  margin-bottom: 3px;
  line-height: 100%;
  overflow: hidden;
}

.photo-upload-text {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 100%;
}

.photo-upload-text.small-gray {
  color: var(--grey);
  margin-bottom: 0;
  margin-left: 25px;
  margin-right: 25px;
  font-size: 16px;
  font-weight: 400;
}

.photo-upload-text.small-gray.tap {
  display: none;
}

.uploaded-photo-info {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.comprovativo-icon {
  width: 45px;
  cursor: pointer;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.cometa-info-contain {
  z-index: 2;
  max-width: 250px;
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  color: var(--white);
  flex: 1;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.cometa-paragraph {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
}

.cometa-logo {
  height: 33px;
  text-align: left;
  margin-bottom: 20px;
}

.cometa-header {
  font-size: 43px;
  line-height: 1.1;
}

.cometa-flow {
  z-index: 2;
  opacity: .1;
  position: absolute;
  top: auto;
  bottom: -3%;
  left: -2%;
  right: auto;
}

.toal-price {
  float: right;
  display: inline-block;
}

.auth-menu-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 5vw;
  display: grid;
  position: relative;
  top: 9vh;
}

.nav-link-text {
  height: 100%;
  align-items: center;
  font-weight: 600;
  display: flex;
}

.nav-link-text._6785 {
  position: relative;
  top: -2px;
}

.nav-link-icon {
  width: 45px;
  height: 100%;
  margin-right: 8px;
  position: relative;
}

.nav-link-icon._22 {
  margin-right: 2px;
}

.tabed-section {
  z-index: 10;
  height: 70px;
  border-bottom: 1px solid var(--light-grey);
  background-color: var(--white);
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.tab-menu {
  flex-direction: column;
  display: flex;
}

.tab-link {
  height: 100%;
  color: var(--grey);
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin-top: 1px;
  margin-bottom: 0;
  font-size: 16px;
  transition: all .2s;
  display: flex;
}

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

.tab-link.w--current {
  color: var(--firebrick);
  font-weight: 500;
}

.tab-link.hover-effect {
  border-top-style: none;
  border-bottom-style: none;
  border-radius: 8px;
  padding: 3px 16px;
}

.tab-link.hover-effect:hover {
  background-color: var(--table-header);
}

.tab-link-icon {
  width: 23px;
  height: 100%;
  align-items: center;
  margin-right: 7px;
  padding-top: 8px;
  display: flex;
  position: relative;
}

.user-info {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.user-info.t1 {
  margin-top: 10px;
}

.edit-profile-button-wrapper {
  height: 70px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 40px;
}

.profile-edit {
  height: 100%;
  color: var(--grey);
  cursor: pointer;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin-top: 1px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 16px;
  transition: all .2s;
  display: flex;
}

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

.profile-edit.w--current {
  border-bottom-color: var(--firebrick);
  color: var(--black);
  font-size: 16px;
}

.logout {
  height: 100%;
  color: var(--grey);
  cursor: pointer;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin: 1px 0 0 40px;
  font-size: 16px;
  transition: all .2s;
  display: flex;
}

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

.logout.w--current {
  border-bottom-color: var(--firebrick);
  color: var(--black);
  font-size: 16px;
}

.tab-triggered-element {
  height: 100%;
}

.tab-overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, .35);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tab-trigger, .close-tab {
  display: none;
}

.checkout-button {
  height: 45px;
  text-align: center;
  border-radius: 12px;
  padding: 15px 20px 8px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: color .2s, border-color .2s, background-color .2s cubic-bezier(1, 0, 0, 1);
  display: block;
  position: relative;
  overflow: hidden;
}

.checkout-button.blue-button {
  background-color: var(--dodger-blue);
  color: var(--white);
  flex: 1;
  padding-left: 0;
  padding-right: 0%;
  position: relative;
}

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

.checkout-button.blue-button {
  color: #fff;
  background-color: #3a86ff;
  border-radius: 6px;
  flex: 1;
  padding-left: 0;
  padding-right: 0%;
  position: relative;
}

.checkout-button.blue-button:hover {
  background-color: #3479e5;
}

.checkout-button.blue-button._3 {
  background-color: var(--lime-green);
}

.checkout-button.blue-button._3._9 {
  background-color: var(--sandy-brown);
}

.checkout-button.blue-button._9, .checkout-button.blue-button._5 {
  margin-bottom: 10px;
}

.checkout-trigger, .embed {
  display: none;
}

.user-with-address {
  min-height: 351px;
  border: 1px none var(--dodger-blue);
  padding: 20px 0 0;
}

.address-tab-content {
  height: 0;
}

.address-tab-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.adress-tabs {
  margin-bottom: 8px;
}

.adress-tab-link {
  color: var(--grey);
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid rgba(204, 204, 204, .5);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 24px;
  font-weight: 400;
  transition: all .2s;
  display: block;
}

.adress-tab-link:hover {
  border-color: #ccc;
}

.adress-tab-link.w--current {
  border-color: var(--dodger-blue);
  background-color: var(--white);
  color: var(--black);
}

.address-link-text {
  height: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.add-icon {
  width: auto;
  height: 46px;
  margin-right: 8px;
}

.cart-price {
  color: var(--grey);
}

.cart-price.margin {
  margin-top: 8px;
}

.cart-prod-name-link {
  color: var(--black);
}

.delete-icon {
  width: 45px;
  height: 40px;
  background-color: var(--table-header);
  color: var(--grey-2);
  cursor: pointer;
  border-radius: 12px;
  margin-right: 0;
  transition: all .2s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 8px;
}

.delete-icon:hover {
  background-color: var(--tomato);
  color: var(--white);
}

.quantity-delete {
  position: relative;
}

.quantity-delete._100 {
  justify-content: space-between;
  display: flex;
}

.form-button-text {
  display: inline-block;
}

.address-cta-wrapper {
  margin-top: 28px;
  display: flex;
}

.cart-icon-link {
  width: 45px;
  height: 45px;
  color: var(--black);
  cursor: pointer;
  border-radius: 12px;
  transition: background-color .2s;
  display: none;
  position: relative;
  overflow: hidden;
}

.cart-icon-link:hover {
  background-color: var(--table-header);
}

.edit-address {
  z-index: 5000000;
  height: 100vh;
  max-height: 100vh;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.close-edit-stuff {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.edit-popup-wrapper {
  z-index: 11000;
  align-items: center;
  padding-left: 16px;
  display: flex;
  position: relative;
}

.new-address {
  z-index: 5000000;
  height: 100vh;
  max-height: 100vh;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.new-address-button {
  height: 100%;
  background-color: var(--dodger-blue);
  color: var(--grey);
  cursor: pointer;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin-top: 1px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 15px;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.new-address-button:hover {
  color: var(--black);
}

.new-address-button.w--current {
  border-bottom-color: var(--firebrick);
  color: var(--black);
  font-size: 16px;
}

.new-address-button.add-button {
  width: 184.641px;
  height: 45px;
  background-color: var(--dodger-blue);
  color: var(--white);
  text-align: center;
  border-radius: 12px;
  justify-content: center;
  margin-top: 0;
  padding-left: 25px;
  padding-right: 27px;
  font-size: 16px;
  overflow: hidden;
}

.new-address-button.add-button:hover {
  background-color: var(--hover-blue);
}

.new-address-button.add-button:active {
  transform: scale(.98);
}

.edit-button {
  height: 40px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), border-color .2s, color .2s, background-color .2s;
}

.edit-button:active {
  transform: scale(.98);
}

.edit-button.gray {
  background-color: var(--white-2);
  color: var(--grey);
  border: 1px solid rgba(204, 204, 204, .5);
  border-radius: 8px;
  margin-left: 0;
  margin-right: 8px;
  padding-top: 9px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.edit-button.gray:hover {
  background-color: var(--dodger-blue);
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
}

.edit-button.gray.edit-addrss {
  width: 92px;
  display: flex;
}

.edit-button.gray.edit-profile-button {
  width: 124px;
  background-color: var(--dodger-blue);
  color: var(--white);
  border-color: rgba(0, 0, 0, 0);
}

.edit-button.gray.edit-profile-button:hover {
  background-color: var(--royal-blue);
}

.edit-button.gray._9 {
  width: 100%;
}

.edit-button.gray {
  color: #767676;
  background-color: #fafafa;
  border: 1px solid rgba(204, 204, 204, .5);
  border-radius: 8px;
  margin-left: 0;
  margin-right: 8px;
  padding-top: 9px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.edit-button.gray:hover {
  color: #fff;
  background-color: #3a86ff;
  border-color: rgba(0, 0, 0, 0);
}

.edit-button.gray._9 {
  width: 100%;
}

.edit-button.gray.edit-profile-button {
  width: auto;
  color: #fff;
  background-color: #3a86ff;
  border-color: rgba(0, 0, 0, 0);
}

.edit-button.gray.edit-profile-button:hover {
  background-color: #2e6bcc;
}

.edit-button.gray.edit-profile-button.carteira {
  border-color: var(--black);
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  font-size: 16px;
  font-weight: 700;
}

.edit-button.gray.edit-profile-button.cinza {
  background-color: var(--grey-2);
}

.edit-button.gray.edit-profile-button.carteira {
  color: #111210;
  background-color: rgba(0, 0, 0, 0);
  border-color: #111210;
  font-size: 16px;
  font-weight: 700;
}

.edit-button.gray.edit-profile-button.cinza {
  background-color: #9c9c9c;
}

.edit-button.gray.edit-profile-button.cinza:hover {
  background-color: var(--lime-green);
}

.edit-button.gray.edit-profile-button.cinza {
  background-color: #9c9c9c;
}

.edit-button.gray.edit-profile-button.cinza._90 {
  margin-top: 25px;
}

.edit-button.gray.edit-addrss {
  width: 92px;
  display: flex;
}

.edit-button.gray.ver-detalhes {
  color: #fff;
  background-color: #3a86ff;
  border-color: #3a86ff;
  margin-right: 0;
}

.resumo-table-wrapper {
  border: 1px solid var(--light-grey);
  color: var(--black);
  border-radius: 16px;
  padding: 35px 24px 24px;
}

.lottie-animation {
  z-index: 5;
  width: 16px;
  height: 16px;
  background-color: var(--lime-green);
  border-radius: 50%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 3px;
}

.lottie-spinner {
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: none;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 5px;
}

.pagamento-date-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 28px;
  background-color: var(--table-header);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 32px 24px;
  display: grid;
}

.pagamento-data {
  color: var(--grey);
  font-size: 18px;
  line-height: 1;
}

.comprovativo-data {
  padding-top: 36px;
}

.close-modal {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.social-media-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 40px 40px 40px 40px;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.social-links {
  width: 23px;
  height: 23px;
  margin-right: 16px;
}

.copyright-dev {
  text-align: center;
  background-color: rgba(0, 0, 0, .55);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
}

.copyright {
  color: var(--light-grey);
  align-items: center;
  font-size: 15px;
  display: flex;
}

.developer {
  height: 25px;
  color: var(--light-grey);
}

.powered-by {
  margin-right: 10px;
  font-size: 13px;
  line-height: 1;
  display: inline-block;
}

.cat-dropdown-toggle {
  color: var(--white);
  align-items: center;
  padding: 2px 7px 6px;
  display: flex;
  top: 0;
}

.prfl-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 24px;
  display: flex;
}

.profile-info-wrapper._4 {
  width: 60%;
  flex: 1;
  padding-top: 30px;
}

.compras-table-wrapper {
  border: 1px solid var(--light-grey);
  background-color: var(--borders);
  border-radius: 12px;
  overflow: hidden;
}

.table-grid {
  height: 80px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 100px 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 1px;
  display: grid;
}

.table-grid.table-header {
  height: 70px;
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  grid-template-columns: 1fr 1fr 100px 1fr 1fr 1fr;
  margin-top: 0;
  margin-bottom: -1px;
  font-size: 17px;
  font-weight: 500;
}

.table-grid.table-header.clientes {
  grid-template-columns: 100px 2fr 1fr 1fr;
}

.table-grid.table-header.empresas {
  grid-template-columns: .5fr 1.5fr 100px 1fr 1fr;
}

.table-grid.table-header.bancos {
  grid-template-columns: .25fr 1fr 175px .75fr;
}

.table-grid.cliente {
  grid-template-columns: 100px 2fr 1fr 1fr;
}

.table-grid.empresas {
  grid-template-columns: .5fr 1.5fr 100px 1fr 1fr;
}

.table-grid.empresas:hover {
  background-color: rgba(255, 255, 255, .53);
}

.table-grid.bancos {
  grid-template-columns: .25fr 1fr 175px .75fr;
}

.table-content-block {
  padding-left: 24px;
  padding-right: 6px;
}

.table-content-block.cta {
  padding-left: 0;
  padding-right: 0;
}

.table-content-block._9 {
  padding-left: 0;
}

.table-content-text {
  height: 20px;
  cursor: default;
  overflow: hidden;
}

.table-content-text.description {
  display: none;
}

.section-decoy {
  height: 41px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.profile-dropdown-toggle {
  height: 45px;
  border-radius: 12px;
  align-items: center;
  padding: 0 22px 0 8px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), background-color .2s, color .2s;
  display: flex;
  overflow: hidden;
}

.profile-dropdown-toggle:hover {
  background-color: var(--table-header);
  color: var(--dim-grey);
}

.profile-dropdown-toggle:active {
  transform: scale(.95);
}

.profile-dropdown-toggle.w--open {
  background-color: var(--table-header);
  color: var(--black);
}

.dropdown-text {
  line-height: 1;
  position: relative;
  top: 1px;
}

.dropdown-wrap {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  padding-top: 32px;
  padding-bottom: 8px;
}

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

.result-wrapper {
  width: 100%;
  max-height: 70vh;
  max-width: 100%;
  min-width: 100%;
  border-top: 1px solid var(--light-grey);
  padding: 24px 40px 40px;
  display: none;
  overflow: auto;
}

.no-results {
  color: var(--grey-2);
  text-align: center;
  font-size: 18px;
  display: block;
}

.yes-results {
  display: none;
}

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

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

.profile-dropdown-list.w--open {
  width: 170px;
  border: 1px solid var(--light-grey);
  background-color: var(--white);
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  top: 45px;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .14);
}

.profile-dropdown-link {
  height: 57px;
  border-bottom: 1px solid var(--light-grey);
  color: var(--black);
  align-items: center;
  padding: 5px 8px 0;
  font-size: 18px;
  line-height: 1;
  transition: background-color .2s, transform 50ms cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
}

.profile-dropdown-link:hover {
  background-color: var(--table-header);
}

.profile-dropdown-link.w--current {
  display: none;
}

.profile-dropdown-link.logout-from-profile {
  border-bottom-style: none;
  padding-top: 5px;
}

.added-to-cart {
  background-color: var(--lime-green);
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lottie-holder {
  width: 35px;
  height: 40px;
  min-width: 35px;
  padding-top: 2px;
}

.dropdown-content {
  width: 320px;
  max-height: 380px;
  background-color: var(--white);
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .2);
}

.cat-list {
  z-index: 1200;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  top: 230px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.drop-link-wrapper {
  height: 40px;
  color: var(--black);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  transition: background-color .2s, transform 50ms cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.drop-link-wrapper:hover {
  background-color: var(--table-header);
}

.drop-link-wrapper.w--current {
  color: var(--firebrick);
}

.drop-link-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.drop-link-container {
  height: 100%;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  overflow: auto;
}

.dec-oy {
  z-index: -1;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.faq-title-wrapper {
  color: var(--black);
  align-items: center;
  padding: 33px 75px 32px 24px;
  display: flex;
  position: relative;
}

.faq-title-wrapper:active {
  transform: none;
}

.section-2 {
  width: 100%;
  height: 100%;
}

.master-nav {
  width: 270px;
  height: 100vh;
  max-width: 270px;
  min-width: 270px;
  background-color: #fff;
}

.content-wrapper {
  height: 100vh;
  padding-bottom: 100px;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 270px;
  right: 0%;
  overflow: auto;
}

.master-nav_brand {
  height: 20%;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2vw;
}

.link-block {
  width: 120px;
  height: 80px;
  background-image: url('../images/Logo_Kixicredito-2.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: -25px;
}

.buttons_master_nav {
  width: 70%;
  height: 70%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-right: 0;
}

.buttons_master_nav._1 {
  padding-top: 0;
}

.logout_master_nav {
  height: 10%;
}

.menu-dashboard {
  margin-left: 0;
  margin-right: 0;
}

.backoffice-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.encomendas-no-dashboard {
  margin-top: 50px;
}

.div-block-2 {
  justify-content: space-between;
  margin-bottom: 25px;
  display: flex;
}

.div-block-2._9 {
  margin-bottom: 35px;
}

.div-block-2._2 {
  justify-content: flex-start;
  margin-bottom: 35px;
}

.div-block-2._2._90 {
  justify-content: space-between;
}

.div-block-4 {
  display: flex;
}

.div-block-5 {
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 10px 20px;
}

.img {
  width: 45px;
  height: 45px;
  background-image: url('../images/placeholder-face-big.png');
  background-position: 50%;
  background-size: cover;
  border: 1px solid #d5d5d5;
  border-radius: 200px;
}

.img.empresa {
  background-image: url('../images/placeholder4.png');
}

.div-block-6 {
  color: var(--midnight-blue);
  margin-left: -12.5px;
  margin-right: 25px;
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.address-form-80 {
  width: 600px;
  background-color: #fff;
  border-radius: 12px;
  padding: 50px;
}

.imagem-upload-wrapper {
  padding-top: 0;
}

.div-block-7 {
  width: 200px;
}

.div-block-8 {
  margin-bottom: 50px;
}

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

.grid-2._2 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.div-block-9 {
  height: 200px;
  border: 1px solid var(--light-grey);
  background-color: #fff;
  border-radius: 8px;
  padding: 35px 50px 50px;
  position: relative;
}

.table-content-text-copy {
  height: 20px;
  cursor: default;
  margin-bottom: 25px;
  font-weight: 500;
  overflow: hidden;
}

.table-content-text-copy._1 {
  margin-bottom: 15px;
}

.link {
  height: 50px;
  border-style: solid none none;
  border-width: 1px;
  border-color: var(--light-grey) black black;
  color: var(--dodger-blue);
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-10 {
  padding-top: 50px;
}

.div-block-10._7 {
  padding-top: 0;
}

.confirmed-line-2 {
  z-index: 2;
  height: 2px;
  background-color: #04a777;
  border: 2px solid #04a777;
  border-radius: 10px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.confirmed-line-2.hidden {
  z-index: 2;
  display: none;
}

.center-text-2 {
  color: #9c9c9c;
  margin-top: 32px;
}

.center-text-2.confirmed {
  color: #111210;
}

.linesman-2 {
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  align-items: center;
  padding: 34px;
  display: flex;
}

.linesman-2.cancelada {
  display: none;
}

.in-progress-line-2 {
  border: 1px dashed #ccc;
  border-radius: 10px;
}

.plus-minus-wrapper-2 {
  width: 120px;
  height: 40px;
  color: #767676;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  justify-content: space-between;
  margin-right: 16px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  overflow: hidden;
}

.plus-minus-wrapper-2.no-margin {
  margin-right: 0;
}

.resumo-table-wrapper-2 {
  color: #111210;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 35px 24px 24px;
}

.cart-price-2 {
  color: #767676;
}

.line-seperator-2 {
  height: 1px;
  background-color: #d9d9d9;
  margin-top: 24px;
  margin-bottom: 24px;
}

.product-card-2 {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.product-card-2._2-col-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-card-2._2-col-grid.borders {
  grid-column-gap: 40px;
  border: 1px solid #d9d9d9;
  grid-template-columns: 200px 1fr;
  margin-bottom: 16px;
  padding: 16px;
}

.product-card-2._2-col-grid.borders._5 {
  background-color: rgba(0, 0, 0, 0);
  border-style: none none solid;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 10px;
}

.product-card-2._2-col-grid.borders._5.ult {
  border-style: none;
}

.price-list-item-2 {
  height: 20px;
  color: #767676;
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
}

.cart-prod-name-link-2 {
  color: #111210;
}

.price-total-2 {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px #d9d9d9;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
}

.price-total-2.no-btm-padding {
  margin-bottom: 0;
}

.div-block-11 {
  margin-top: 25px;
}

.div-block-12 {
  margin-top: 10px;
}

.itens {
  font-weight: 600;
}

.loja-content-wrapper {
  margin-bottom: 50px;
}

.loja_produtos_wrapper {
  border: 1px solid var(--light-grey);
  background-color: #fff;
  border-radius: 16px;
}

.delete-icon-2 {
  width: 45px;
  height: 40px;
  color: #9c9c9c;
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 12px;
  margin-right: 0;
  transition: all .2s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 8px;
}

.delete-icon-2:hover {
  color: #fff;
  background-color: #f35252;
}

.delete-icon-2._2 {
  right: 65px;
}

.delete-icon-2._2.gr:hover {
  background-color: var(--goldenrod);
}

.div-block-13 {
  margin-top: 10px;
}

.overlay_master {
  background-color: rgba(0, 0, 0, .69);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.substituir-content-wrapper {
  width: 1100px;
  background-color: var(--table-header);
  padding: 50px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: scroll;
  transform: translate(100%);
}

.div-block-14 {
  width: 300px;
  float: left;
  margin-right: 25px;
}

.extra-info-text-2 {
  color: #767676;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.4;
}

.extra-info-text-2.small {
  color: #767676;
  font-size: 14px;
}

.product-category-2 {
  color: #bd3a3a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -16px;
  font-size: 14px;
}

.product-category-2.small {
  margin-bottom: -6px;
  font-size: 9px;
}

.profile-header-link-2 {
  color: #767676;
  border-left-style: none;
  border-radius: 12px;
  margin-right: 24px;
  padding: 12px 8px;
  transition: color .2s, transform 50ms cubic-bezier(.455, .03, .515, .955);
  overflow: hidden;
}

.profile-header-link-2:hover, .profile-header-link-2.w--current {
  color: #111210;
}

.profile-content-wrapper-2 {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  align-items: flex-start;
  padding: 32px 32px 32px 4vw;
  display: flex;
}

.div-block-15 {
  padding-top: 50px;
}

.new-address-button-2 {
  height: 100%;
  color: #767676;
  cursor: pointer;
  background-color: #3a86ff;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin-top: 1px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 15px;
  transition: transform 50ms cubic-bezier(.455, .03, .515, .955), border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.new-address-button-2:hover {
  color: #111210;
}

.new-address-button-2.w--current {
  color: #111210;
  border-bottom-color: #bd3a3a;
  font-size: 16px;
}

.new-address-button-2.add-button {
  width: 184.641px;
  height: 45px;
  color: #fff;
  text-align: center;
  background-color: #3a86ff;
  border-radius: 12px;
  justify-content: center;
  margin-top: 0;
  padding-left: 25px;
  padding-right: 27px;
  font-size: 16px;
  overflow: hidden;
}

.new-address-button-2.add-button:hover {
  background-color: #3479e5;
}

.new-address-button-2.add-button:active {
  transform: scale(.98);
}

.kpi {
  border: 1px solid var(--light-grey);
  background-color: #fff;
  border-radius: 16px;
  padding: 50px;
  display: flex;
}

.kpi._2 {
  margin-top: 50px;
}

.side-a_graph {
  width: 70%;
  float: left;
  padding-right: 50px;
}

.side-b_kpi {
  width: 30%;
  float: left;
}

.graph {
  height: 100%;
  background-image: url('../images/Screen-Shot-2022-01-23-at-10.34.24-PM.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.kpi-ind {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 0;
  position: relative;
}

.encomenda-filtros {
  margin-bottom: 50px;
}

.form-block {
  border: 1px dashed var(--gainsboro);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-bottom: 0;
  padding: 20px;
}

.form-4 {
  display: flex;
}

.grid-3 {
  width: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

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

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

.select-field {
  height: 50px;
  border-radius: 5px;
  margin-bottom: 0;
}

.div-block-17 {
  color: #11284c;
  margin-left: -12.5px;
  margin-right: 25px;
  padding-left: 12.5px;
  padding-right: 12.5px;
}

._25 {
  margin-bottom: 10px;
}

.pop-up-upload-pre-os {
  background-color: rgba(0, 0, 0, .67);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.close-nav-2 {
  width: 40px;
  height: 40px;
  color: #111210;
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  line-height: 40px;
  transition: all .2s;
  position: absolute;
  top: 6vh;
  bottom: auto;
  left: auto;
  right: 5vw;
  box-shadow: 0 0 12px rgba(0, 0, 0, .1);
}

.close-nav-2:hover {
  color: #111210;
}

.pop-up-edit-prices {
  background-color: rgba(0, 0, 0, .67);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-30 {
  display: flex;
}

.text-span {
  color: var(--lime-green);
}

.div-block-33 {
  background-color: var(--ghost-white);
  border-radius: 8px;
  padding: 50px;
}

.div-block-34 {
  width: 250px;
  height: 150px;
  background-image: url('../images/kixi-logo.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.table-content-text-copy-2 {
  height: 20px;
  cursor: default;
  margin-bottom: 25px;
  font-weight: 500;
  overflow: hidden;
}

.div-block-35 {
  height: 200px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 35px 50px 50px;
  position: relative;
}

.div-block-35._2 {
  height: 160px;
}

.div-block-36 {
  margin-top: 25px;
}

.div-block-37 {
  border: 1px dashed var(--gainsboro);
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 20px;
  display: flex;
}

.search-3 {
  width: 40%;
  height: 50px;
  margin-bottom: 0;
  margin-right: 30px;
  display: flex;
}

.search-input {
  height: 50px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 0;
  font-size: 17px;
}

.form-block-3 {
  width: 60%;
  margin-bottom: 0;
}

.search-button-2 {
  height: 50px;
  background-color: var(--grey);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category-card-icon-wrapper-2 {
  color: #767676;
  justify-content: flex-end;
  align-items: center;
  padding-left: 24px;
  display: flex;
  position: relative;
}

.category-card-icon-wrapper-2.float-on-top {
  display: none;
}

.compras-table-wrapper-2 {
  background-color: #efefef;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
}

.table-content-text-2 {
  height: 20px;
  cursor: default;
  overflow: hidden;
}

.table-content-text-2.description {
  display: none;
}

.table-content-text-2.estado {
  font-weight: 700;
}

.table-content-text-2.estado.green {
  color: #04a777;
}

.table-content-text-2.estado.red {
  color: #f35252;
}

.table-content-text-2.estado.yellow {
  color: #edb805;
}

.table-content-text-2.estado.activo {
  color: var(--hover-blue);
}

.table-content-text-2.estado.pedido {
  color: #b4b4b4;
}

.table-grid-2 {
  height: 80px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #111210;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.75fr 100px 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 1px;
  display: grid;
}

.table-grid-2.table-header {
  height: 70px;
  color: #111210;
  background-color: rgba(0, 0, 0, 0);
  grid-template-columns: .5fr 2fr 100px 1fr 1fr 1fr;
  margin-top: 0;
  margin-bottom: -1px;
  font-size: 17px;
  font-weight: 500;
}

.div-block-38 {
  margin-bottom: 25px;
}

.div-block-38._2, .div-block-38.cr {
  margin-top: 25px;
}

.text-block {
  font-size: 14px;
  font-weight: 700;
}

.text-block-2 {
  color: rgba(17, 18, 16, .67);
  font-size: 18px;
}

.text-block-2._8 {
  color: var(--black);
  padding-left: 10px;
}

.text-block-2._8.bold {
  font-size: 30px;
  line-height: 100%;
}

.text-block-2.green {
  color: var(--lime-green);
}

.text-block-2.red {
  color: var(--tomato);
}

.div-block-39 {
  border-bottom: 1px solid var(--gainsboro);
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.div-block-39.p {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-40 {
  border: 1px solid var(--gainsboro);
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 25px;
  padding: 35px;
  display: flex;
}

.div-block-41 {
  width: 80%;
  flex: none;
}

.div-block-42 {
  width: 20%;
  flex: none;
}

.text-block-3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.text-block-4 {
  color: rgba(17, 18, 16, .52);
  font-size: 26px;
}

.text-block-5 {
  font-weight: 700;
}

.text-block-5.pendente {
  color: var(--goldenrod);
}

.text-block-5.pago {
  color: var(--lime-green);
  margin-bottom: 15px;
}

.text-block-6 {
  font-weight: 700;
}

.heading {
  margin-bottom: 25px;
}

.div-block-43 {
  background-color: var(--dark-slate-grey);
  padding: 95px;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block-7 {
  color: #fff;
  font-size: 28px;
}

.text-block-20 {
  margin-bottom: 5px;
  font-weight: 600;
}

.reuni-content {
  border-bottom: 1px solid #b8bac1;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.heading-9 {
  margin-bottom: 10px;
}

.logo-relatorio {
  width: 200px;
  height: 70px;
  float: left;
  background-image: url('../images/Logo_Kixicredito-2.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
}

.logo-relatorio._890 {
  background-image: url('../images/FG_Logo_principal.png');
}

.text-block-168 {
  color: #919ba7;
  font-size: 19px;
}

.relatorio-main-div {
  background-color: #fff;
  padding: 50px 70px;
}

.text-block-169 {
  width: 15%;
  float: left;
}

.text-block-169._30 {
  width: 20%;
}

.text-block-169._30.bold {
  font-weight: 700;
}

.text-block-169._3 {
  width: 35%;
  padding-left: 10px;
  font-size: 15px;
}

.text-block-169._3.bold {
  font-weight: 700;
}

.div-block-129 {
  margin-bottom: 40px;
}

.text {
  color: #333;
  margin-bottom: 1rem;
}

.text._20 {
  text-align: justify;
  margin-bottom: 2.6rem;
}

.heading-8 {
  color: #919ba7;
  margin-top: 0;
  margin-bottom: 25px;
}

.main-lead-content {
  color: #fff;
  background-color: #919ba7;
  border-bottom: 1px solid #919ba7;
  margin-bottom: 15px;
  padding-bottom: 0;
  font-weight: 500;
  line-height: 40px;
}

.div-block-130 {
  text-align: right;
  margin-bottom: 25px;
}

.button-3 {
  border-radius: 8px;
  margin-left: 15px;
  margin-right: 0;
}

.div-block-131 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.div-block-131._8 {
  margin-top: 0;
}

.checkbox-field {
  flex: 1;
}

.checkbox-2 {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-right: 15px;
}

.checkbox-label-2 {
  width: 70%;
}

.text-block-170 {
  margin-bottom: 25px;
}

.div-block-132 {
  border: 1px dashed var(--lime-green);
  background-color: rgba(4, 167, 119, .06);
  border-radius: 5px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 20px;
  display: flex;
}

.link-2 {
  color: var(--lime-green);
  padding-left: 20px;
}

.text-block-171 {
  color: #a0a0a0;
  margin-top: 10px;
}

.div-block-133 {
  margin-top: 35px;
}

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

.div-block-134 {
  border: 1px solid var(--light-grey);
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
}

.div-block-135 {
  margin-bottom: 10px;
  display: flex;
}

.div-block-136 {
  width: 40px;
  height: 50px;
  background-image: url('../images/PDF_file_icon.svg.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
}

.div-block-137 {
  flex: 1;
  align-items: center;
  padding-top: 2px;
  padding-left: 10px;
  display: flex;
}

.link-3 {
  color: var(--dark-slate-blue);
  text-align: center;
  font-size: 13px;
  display: block;
}

.contain {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.navbar {
  height: 100px;
  background-color: #fff;
}

.brand-2 {
  width: 220px;
  height: 100px;
  background-image: url('../images/kixi-logo.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav-link-2 {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  line-height: 100px;
}

.navilink-2 {
  height: 100px;
  line-height: 100px;
  display: inline-block;
}

.link-block-5 {
  height: 100px;
  color: #000;
  margin-left: 40px;
  font-size: 19px;
  font-weight: 500;
  line-height: 100px;
  display: flex;
}

.text-block-172 {
  margin-right: 5px;
  font-family: Kixicredito main, sans-serif;
}

.nav-menu-2 {
  display: flex;
}

.section-4 {
  padding-top: 70px;
  padding-bottom: 70px;
}

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

.div-block-138 {
  height: 300px;
  background-image: linear-gradient(to right, var(--dark-slate-grey), rgba(246, 145, 68, .84)), url('../images/angola1.jpeg');
  color: #fff;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 8px;
  padding: 52px 46px 46px;
}

.div-block-139 {
  background-color: var(--dark-slate-grey);
  color: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px;
  display: flex;
}

.div-block-140 {
  margin-bottom: 50px;
}

.heading-10 {
  margin-bottom: 25px;
  font-weight: 500;
}

.div-block-141 {
  background-color: rgba(41, 82, 54, .07);
  border: 1px dashed rgba(41, 82, 54, .59);
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 25px;
}

.text-block-173 {
  color: rgba(17, 18, 16, .71);
  text-align: center;
}

.text-block-174 {
  margin-bottom: 25px;
  font-family: Kixicredito main, sans-serif;
  font-size: 50px;
  line-height: 50px;
}

.text-block-175 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 500;
}

.text-block-176 {
  text-align: center;
  font-size: 14px;
}

.text-block-177 {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
}

.heading-11 {
  color: #fff;
  margin-bottom: 50px;
}

.div-block-142 {
  color: var(--black);
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 25px;
  display: flex;
}

.text-block-178 {
  color: var(--dark-slate-grey);
  font-family: Kixicredito main, sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.div-block-144 {
  flex: 1;
  padding-left: 25px;
}

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

.text-block-179 {
  color: #f69144;
  text-align: center;
  background-color: rgba(250, 144, 82, .1);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-179.criado {
  color: var(--grey);
  background-color: rgba(156, 156, 156, .12);
  border-radius: 8px;
  font-weight: 500;
}

.text-block-179.em-analise {
  color: var(--hover-blue);
  background-color: rgba(52, 121, 229, .09);
}

.text-block-179.rejeitado {
  color: var(--tomato);
  background-color: rgba(243, 82, 82, .15);
}

.text-block-179.aceite {
  color: var(--lime-green);
  background-color: rgba(4, 167, 119, .14);
}

.text-block-180 {
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
}

.text-block-181 {
  font-size: 18px;
  line-height: 40px;
}

.div-block-145 {
  background-color: rgba(4, 167, 119, .07);
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 20px;
}

.text-block-183 {
  color: var(--tomato);
  margin-top: 5px;
  padding-left: 10px;
  font-size: 15px;
}

.paragraph {
  border: 1px dashed var(--tomato);
  background-color: rgba(243, 82, 82, .06);
  border-radius: 12px;
  padding: 25px;
}

.text-block-184 {
  color: #a3a3a3;
  font-size: 15px;
  font-weight: 600;
}

.grid-7 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.link-4 {
  border: 1px dashed var(--lime-green);
  color: var(--lime-green);
  text-align: center;
  background-color: rgba(4, 167, 119, .07);
  border-radius: 8px;
  padding: 15px;
  display: block;
}

.text-block-185 {
  margin-bottom: 25px;
  font-weight: 600;
}

.parecer-nao-favoravel {
  background-color: rgba(41, 82, 54, .72);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block-186 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
}

.button-4 {
  width: 40%;
  border: 1px solid var(--light-grey);
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  margin-top: 38px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.button-4:hover {
  background-color: var(--table-header);
  color: var(--black);
}

.recusar {
  background-color: rgba(41, 82, 54, .72);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-block-187 {
  text-align: center;
  margin-bottom: 50px;
}

.link-5 {
  color: rgba(218, 218, 218, .34);
  text-align: center;
  margin-top: 10px;
  display: block;
}

.link-6 {
  min-width: 200px;
  border: 1px none var(--lime-green);
  background-color: var(--sandy-brown);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-left: 10px;
  padding: 5px 20px;
  display: inline-block;
}

.div-block-146 {
  background-color: #fff;
  border-radius: 12px;
  margin-top: 25px;
  padding: 45px;
}

.grid-8 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 50px;
}

.grid-8._8 {
  margin-bottom: 0;
}

.text-block-188 {
  color: rgba(17, 18, 16, .4);
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 21px;
}

.mais-conteudo-div {
  justify-content: center;
  align-items: center;
  padding-top: 35px;
  display: flex;
}

.link-7 {
  color: #000;
  background-color: rgba(118, 118, 118, .24);
  border-radius: 8px;
  padding: 15px 46px;
}

.link-7:hover {
  background-color: var(--lime-green);
  color: #fff;
}

.data-do-cr-dito {
  background-color: rgba(41, 82, 54, .72);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-147 {
  margin-bottom: 50px;
}

.div-block-148 {
  border: 1px dashed rgba(0, 0, 0, .21);
  border-radius: 5px;
  padding: 15px;
}

.paragraph-2 {
  margin-bottom: 0;
}

.div-block-149 {
  margin-bottom: 35px;
}

.grid-9 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr;
}

.text-block-189 {
  font-weight: 600;
}

.div-block-150 {
  width: 450px;
  border-bottom: 1px solid #000;
  padding-bottom: 60px;
}

.text-block-190 {
  font-weight: 600;
}

.plano-financeiro {
  background-color: #fff;
  padding: 0;
}

.div-block-151 {
  width: 30px;
  height: 35px;
  background-image: url('../images/PDF_file_icon.svg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.div-block-152 {
  margin-bottom: 25px;
}

.div-block-153 {
  width: 50%;
  float: left;
  margin-bottom: 15px;
}

html.w-mod-js [data-ix="price-overlay"] {
  display: none;
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 15px;
  }

  h6 {
    font-size: 11px;
  }

  p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.4;
  }

  li {
    font-size: 17px;
    line-height: 1.2;
  }

  blockquote {
    font-size: 16px;
    font-weight: 500;
  }

  .container {
    max-width: 850px;
  }

  .container.nav-container, .container.mob-percent {
    max-width: none;
  }

  .grid._4-col {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid._2-col.percentage-gap {
    grid-column-gap: 0px;
  }

  .grid._7-row {
    padding-top: 24px;
  }

  .grid._3-col._40-gap.align {
    grid-column-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr minmax(240px, 260px);
  }

  .grid._3-col.navigate {
    grid-template-columns: minmax(200px, 200px) 1fr;
  }

  .button-wrapper.add-to-cart-button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .button-text {
    height: 16px;
  }

  .button {
    font-size: 15px;
  }

  .button.blue-button.inside-product-page {
    padding-top: 13px;
    padding-bottom: 0;
  }

  .button.blue-button.comprar {
    height: 35px;
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .button.red-button.with-chevron {
    padding-top: 13px;
  }

  .button.red-outline, .button.blue-outline {
    padding-top: 12px;
  }

  .button.blue-button.inside-product-page {
    padding-top: 13px;
    padding-bottom: 0;
  }

  .section-header {
    font-size: 34px;
  }

  .section-header.no-padding.profile-name {
    margin-top: 0;
  }

  .choice-item.no-line {
    height: auto;
    justify-content: center;
    padding-top: 26px;
    padding-bottom: 26px;
    display: flex;
  }

  .choice-content {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    grid-template-columns: 30px 1fr;
    justify-items: center;
  }

  .choice-icon {
    margin-bottom: 6px;
    margin-right: 0;
  }

  .choice-icon.loose {
    width: 40px;
    height: 40px;
  }

  .choice-icon.loose.phone {
    width: 26px;
  }

  .choice-header.pgmnt {
    width: 150px;
    text-align: center;
  }

  .choice-subheader {
    line-height: 1;
  }

  .product-image-tabs {
    min-height: auto;
    display: none;
  }

  .product-images-gallery {
    height: 14%;
  }

  .product-image-content {
    height: 86%;
    max-height: none;
  }

  .image-wrapper.product-card-image-wrapper {
    height: 160px;
  }

  .image-wrapper.category-card-image-wrapper {
    height: 20vw;
  }

  .image-wrapper.profile-thumbnail {
    width: 200px;
    height: 200px;
    width: 200px;
    height: 200px;
  }

  .product-price {
    font-size: 24px;
  }

  .product-price.kz {
    font-size: 12px;
    top: -9px;
  }

  .stock-quantity {
    height: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1;
  }

  .product-description {
    color: var(--black);
  }

  .plus-minus-wrapper, .plus-minus-wrapper._100.hidden-on-home {
    height: 35px;
  }

  .quantity {
    padding-left: 1%;
    padding-right: 1%;
    line-height: 35px;
  }

  .quantity.no-padding {
    line-height: 33px;
  }

  .product-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .product-category {
    font-size: 12px;
  }

  .product-card._2-col-grid.borders {
    grid-column-gap: 24px;
    grid-template-columns: .5fr 1fr;
  }

  .product-link.grid._5-row {
    padding-bottom: 6px;
  }

  .category-card-icon-wrapper.float-on-top {
    color: var(--grey-2);
    padding-left: 0;
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 24px;
  }

  .grid-half-content {
    margin-top: 40px;
  }

  .grid-half-content._00 {
    margin-top: 0;
  }

  .footer {
    padding-top: 80px;
  }

  .navigator {
    height: 70px;
  }

  .choice-tab-menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .choice-tab-link {
    height: auto;
  }

  .status-line {
    top: -25px;
  }

  .nav-menu {
    padding-bottom: 5vh;
  }

  .close-nav {
    width: 45px;
    height: 45px;
  }

  .dropdown-cart {
    right: -130px;
  }

  .close-cart {
    width: 45px;
    height: 45px;
  }

  .material-icons.close {
    padding-top: 11px;
  }

  .material-icons.on-40 {
    padding-top: 5px;
    padding-bottom: 0;
  }

  .material-icons.on-40._35 {
    padding-top: 6px;
  }

  .material-icons.on-35 {
    padding-top: 6px;
    padding-bottom: 0;
  }

  .material-icons.resrc {
    top: -7px;
  }

  .navigator-menu, .cometa-sidebar {
    display: none;
  }

  .auth-content-wrapper.log-in {
    margin-left: 0%;
  }

  .form-field-wrapper._3._090 {
    margin-bottom: 0;
  }

  .nav-profile {
    padding-left: 0;
    padding-right: 17px;
  }

  .instructions-wrapper {
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
  }

  .counter-auth.float {
    margin-left: 0%;
  }

  .search-content {
    right: 0;
  }

  .search::-ms-input-placeholder {
    font-weight: 400;
  }

  .search::placeholder {
    font-weight: 400;
  }

  .photo-upload-input-wrapper.no-line {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .tabed-section {
    height: 55px;
    top: 70px;
  }

  .tab-link {
    margin-right: 30px;
  }

  .tab-link.hover-effect {
    margin-right: 0;
  }

  .tab-link-icon {
    padding-top: 2px;
  }

  .edit-profile-button-wrapper {
    height: 60px;
  }

  .profile-edit {
    border: 1px solid var(--firebrick);
    color: var(--firebrick);
    border-radius: 12px;
    padding: 0 15px 0 12px;
    font-weight: 600;
  }

  .profile-edit.hided {
    display: none;
  }

  .checkout-button {
    font-size: 15px;
  }

  .address-tab-menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .delete-icon {
    width: 40px;
    height: 35px;
  }

  .new-address-button {
    border: 1px solid var(--firebrick);
    color: var(--firebrick);
    border-radius: 12px;
    padding: 0 15px 0 12px;
    font-weight: 600;
  }

  .new-address-button.add-button {
    width: 200px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
  }

  .edit-button.gray.ver-detalhes {
    height: 45px;
    text-align: center;
    border-radius: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
    display: block;
  }

  .prfl-grid {
    justify-content: center;
  }

  .compras-table-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .table-grid {
    height: auto;
    grid-row-gap: 8px;
    border: 1px solid var(--light-grey);
    border-radius: 16px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 0;
    padding: 30px 24px 24px;
    position: relative;
  }

  .table-grid.table-header {
    display: none;
  }

  .table-content-block {
    justify-content: flex-start;
    padding-left: 0;
    display: flex;
  }

  .table-content-block.cta {
    margin-top: 24px;
    display: none;
  }

  .table-content-text {
    color: var(--grey);
  }

  .table-content-text.description {
    color: var(--black);
    margin-right: 6px;
    display: block;
  }

  .section-decoy {
    height: 41px;
  }

  .lottie-holder {
    width: 30px;
    height: 35px;
    min-width: 30px;
  }

  .cat-list {
    top: 180px;
  }

  .faq-title-wrapper {
    padding-right: 65px;
  }

  .table-content-text-copy {
    color: var(--grey);
  }

  .plus-minus-wrapper-2 {
    height: 35px;
  }

  .product-card-2._2-col-grid.borders {
    grid-column-gap: 24px;
    grid-template-columns: .5fr 1fr;
  }

  .delete-icon-2 {
    width: 40px;
    height: 35px;
  }

  .product-category-2 {
    font-size: 12px;
  }

  .profile-header-link-2 {
    margin-left: 12px;
    margin-right: 12px;
  }

  .new-address-button-2 {
    color: #bd3a3a;
    border: 1px solid #bd3a3a;
    border-radius: 12px;
    padding: 0 15px 0 12px;
    font-weight: 600;
  }

  .new-address-button-2.add-button {
    width: 200px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
  }

  .close-nav-2 {
    width: 45px;
    height: 45px;
  }

  .table-content-text-copy-2 {
    color: #767676;
  }

  .category-card-icon-wrapper-2.float-on-top {
    color: #9c9c9c;
    padding-left: 0;
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 24px;
  }

  .compras-table-wrapper-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: rgba(0, 0, 0, 0);
    border-style: none;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .table-content-text-2 {
    color: #767676;
  }

  .table-content-text-2.description {
    color: #111210;
    margin-right: 6px;
    display: block;
  }

  .table-grid-2 {
    height: auto;
    grid-row-gap: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 0;
    padding: 30px 24px 24px;
    position: relative;
  }

  .table-grid-2.table-header {
    display: none;
  }

  .contain {
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-block-5 {
    height: 100px;
    color: #fff;
    margin-left: 0;
    padding-left: 40px;
    line-height: 100px;
  }

  .text-block-172 {
    margin-right: 15px;
    font-size: 26px;
  }

  .nav-menu-2 {
    width: 70%;
    height: 100vh;
    background-color: var(--dark-slate-grey);
    padding-top: 54px;
  }

  .section-4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .div-block-138 {
    height: 250px;
  }

  .heading-10 {
    font-size: 24px;
  }

  .text-block-174 {
    margin-bottom: 20px;
  }

  .text-block-175 {
    font-size: 18px;
  }

  .text-block-176 {
    font-size: 13px;
  }

  .text-block-177 {
    margin-bottom: 35px;
  }

  .heading-11 {
    margin-bottom: 40px;
  }

  .text-block-179 {
    font-size: 17px;
  }

  .text-block-180 {
    font-size: 17px;
    font-weight: 400;
  }

  .text-block-181 {
    font-size: 17px;
  }

  .menu-button {
    height: 100px;
    padding: 30px 0 0;
    font-size: 38px;
  }

  .div-block-145 {
    margin-bottom: 25px;
    padding: 20px 15px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

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

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

  .container {
    max-width: 600px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid._4-col {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .grid._2-col {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid._3-col {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .grid._3-col._40-gap.align {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid._3-col._40-gap.align._0000._554 {
    margin-top: 8px;
  }

  .button-wrapper._10px {
    margin-bottom: 0;
  }

  .button-wrapper.pos-absolute {
    padding: 16px;
  }

  .button-wrapper.add-address {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .button-text {
    height: 18px;
  }

  .button.red-button.with-chevron.bottom {
    height: 40px;
    border: 1px solid var(--firebrick);
    color: var(--firebrick);
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    padding: 12px 0 0;
    font-weight: 600;
  }

  .button.red-outline.remover-copy {
    width: auto;
    height: 35px;
    border-color: var(--light-grey);
    background-color: var(--white-2);
    color: var(--grey);
    cursor: pointer;
    padding-top: 9px;
    padding-bottom: 0;
  }

  .button.red-outline.remover-copy:hover {
    background-color: var(--tomato);
    color: var(--white);
    border-color: rgba(0, 0, 0, 0);
  }

  .section-header-wrapper.mbl-chkout.centereds {
    text-align: center;
  }

  .section-subheader {
    font-size: 16px;
  }

  .section-header {
    height: 100%;
    align-items: center;
    font-size: 28px;
    display: flex;
  }

  .section-header.no-padding.profile-name {
    height: auto;
    margin-bottom: 10px;
    font-size: 23px;
  }

  .section-header.padding {
    height: auto;
    justify-content: center;
    font-weight: 600;
  }

  .section-header.chkout-header {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
  }

  .text-field {
    border-color: #ccc;
    font-weight: 500;
  }

  .text-field::-ms-input-placeholder {
    font-weight: 400;
  }

  .text-field::placeholder {
    font-weight: 400;
  }

  .field-label {
    color: var(--black);
    font-size: 16px;
  }

  .choice-item.no-line {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .choice-content {
    grid-column-gap: 12px;
    grid-row-gap: 0px;
    flex-direction: row;
  }

  .choice-content.wider {
    grid-column-gap: 0px;
    grid-template-columns: minmax(40px, 40px) 1fr 1fr 1fr;
  }

  .choice-icon {
    margin-bottom: 0;
    font-size: 40px;
  }

  .choice-icon.storefront {
    font-size: 36px;
  }

  .choice-icon.loose {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    margin-right: 10px;
  }

  .choice-icon.loose.phone {
    max-width: 26px;
    min-width: 26px;
  }

  .choice-header.pgmnt {
    width: auto;
    text-align: left;
  }

  .image-wrapper.product-card-image-wrapper {
    height: 170px;
  }

  .image-wrapper.category-card-image-wrapper {
    height: 140px;
  }

  .image-wrapper.profile-thumbnail {
    width: 160px;
    height: 160px;
  }

  .image-wrapper.nav-profile-thumbnail {
    width: 45px;
    height: 45px;
  }

  .image-wrapper.profile-thumbnail {
    width: 160px;
    height: 160px;
  }

  .product-price {
    font-size: 20px;
  }

  .product-price.kz {
    font-size: 12px;
    top: -6px;
  }

  .product-price.kz.small {
    font-size: 11px;
    top: -4px;
  }

  .product-price.kz.small._2 {
    top: -6px;
  }

  .product-price.small.thinner {
    font-size: 20px;
    font-weight: 700;
  }

  .stock-quantity {
    border-color: var(--light-grey);
  }

  .product-description {
    font-size: 17px;
  }

  .plus-minus-wrapper {
    border: 1px solid var(--light-grey);
    background-color: var(--white-2);
  }

  .product-title {
    line-height: 1.3;
  }

  .product-title.midium {
    height: 46px;
  }

  .product-category.small.off {
    display: none;
  }

  .product-card._2-col-grid.borders {
    border-color: var(--light-grey);
    margin-bottom: 8px;
  }

  .product-card._33 {
    border: 1px solid var(--light-grey);
    flex: none;
  }

  .category-card {
    border: 1px solid var(--light-grey);
    border-radius: 16px;
  }

  .category-title {
    height: 20px;
    font-size: 16px;
    overflow: hidden;
  }

  .category-card-icon-wrapper.float-on-top {
    right: 16px;
  }

  .price-table-wrapper {
    border-style: solid none none;
    border-top-color: var(--light-grey);
    background-color: var(--white);
    box-shadow: none;
    border-radius: 0;
    padding: 16px;
  }

  .header-wrapper.h4 {
    padding-top: 35px;
  }

  .header-wrapper.purchase {
    text-align: center;
  }

  .header-wrapper.purchase.hidden-on-mobiles {
    display: none;
  }

  .header, .header.thinner {
    font-weight: 600;
  }

  .header.thinner.cntrd {
    text-align: center;
  }

  .header.thinner.cntrd.pgmnto {
    text-align: left;
    font-size: 17px;
    font-weight: 400;
  }

  .header.form-section {
    font-size: 21px;
  }

  .header._212.cntrd._2 {
    font-weight: 600;
  }

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

  .price-content {
    border: 1px solid var(--light-grey);
    border-radius: 16px;
    padding: 24px 16px 14px;
  }

  .price-content._6756 {
    border-style: none;
    border-radius: 0;
    padding: 0;
  }

  .price-list-item {
    color: var(--black);
  }

  .price-title.total {
    color: var(--grey);
    color: #767676;
    margin-bottom: 5px;
    margin-right: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }

  .price-total.mobile {
    border-top-style: none;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .grid-half-content._565 {
    margin-top: 28px;
  }

  .navigator {
    height: 60px;
  }

  .choice-tab-link {
    flex: 1;
  }

  .chevron-icon._25 {
    margin-right: 34px;
  }

  .chevron-icon._0 {
    font-size: 14px;
  }

  .chevron-icon._00 {
    height: 45px;
    margin-left: 6px;
    margin-right: 0;
    font-size: 13px;
    position: relative;
    top: -4px;
  }

  .status-line {
    top: -26px;
  }

  .line-seperator {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .brand {
    width: 150px;
    height: 40px;
  }

  .close-nav {
    top: 5vh;
    right: 9vw;
  }

  .close-nav.close-edit-profile {
    top: 16px;
    right: 16px;
  }

  .close-nav.cat {
    right: -332px;
  }

  .menu {
    margin-top: 0;
    margin-left: 10vw;
  }

  .nav-link {
    height: 45px;
    line-height: 1.5;
  }

  .dropdown-cart {
    height: 94vh;
    min-height: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 67px;
    position: fixed;
    top: 2vh;
    bottom: 2vh;
    left: 0%;
    right: 0%;
  }

  .close-cart {
    top: 10px;
    right: 11px;
  }

  .cart-title-wrapper {
    height: 60px;
    top: 0;
    left: 16px;
  }

  .white-bg {
    height: 60px;
  }

  .cart-icon {
    display: none;
  }

  .pop-up-wrapper {
    height: 0%;
  }

  .nav-auth-buttons-wrapper {
    display: none;
  }

  .nav-auth-buttons-wrapper._0-padding {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .material-icons {
    padding-top: 11px;
  }

  .material-icons.on-40._35, .material-icons.on-35 {
    padding-top: 5px;
  }

  .material-icons.resrc {
    top: -6px;
  }

  .nav-profile-wrapper {
    display: none;
  }

  .nav-profile {
    padding-right: 0;
  }

  .edit-profile {
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .cart-product-wrapper {
    align-items: center;
  }

  .cart-products-content-wrapper {
    padding: 16px 16px 0;
  }

  .search-content {
    width: 100vw;
    height: 100vh;
    box-shadow: none;
    border-radius: 0;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .search-wrapper {
    height: auto;
    margin-left: 40px;
    margin-right: 40px;
    padding-top: 16px;
    position: relative;
  }

  .search {
    height: 50px;
    border-style: none;
    border-color: var(--light-grey);
    border-radius: 12px;
    margin-bottom: 16px;
    padding-left: 45px;
  }

  .search-button {
    left: 0;
  }

  .sub-delete-button.gray.eliminar {
    font-weight: 400;
  }

  .sub-delete-button.gray.eliminar.longersss {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .sub-delete-button.gray.eliminar {
    font-weight: 400;
  }

  .sub-delete-button.gray.eliminar.longersss {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .photo-upload-input-field.no-bg-fill {
    height: auto;
    min-height: 170px;
    border-width: 3px;
    padding: 24px;
  }

  .photo-upload-text {
    font-size: 17px;
  }

  .photo-upload-text.small-gray.click {
    display: none;
  }

  .photo-upload-text.small-gray.tap {
    display: block;
  }

  .stock-quantity-text {
    font-size: 14px;
  }

  .toal-price {
    letter-spacing: .2px;
  }

  .auth-menu-wrapper {
    margin-left: 10vw;
  }

  .tabed-section {
    top: 60px;
  }

  .tabed-section.show-on-landscape {
    display: none;
  }

  .tab-menu {
    justify-content: space-between;
  }

  .tab-link {
    margin-right: 0;
  }

  .tab-link.hover-effect {
    padding: 4px 8px 2px;
  }

  .tab-link-icon {
    margin-top: -2px;
    padding-top: 0;
  }

  .user-info {
    font-size: 18px;
  }

  .edit-profile-button-wrapper {
    display: none;
  }

  .profile-edit {
    border: 1px solid var(--firebrick);
  }

  .checkout-button {
    height: 45px;
    padding-top: 14px;
    padding-bottom: 0;
    font-size: 16px;
  }

  .checkout-button.blue-button {
    font-weight: 500;
  }

  .checkout-cta {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }

  .cancel-button-wrapper {
    margin-top: 16px;
  }

  .cancel-button-wrapper.hidden-on-mobile {
    display: none;
  }

  .checkout-trigger {
    z-index: 1;
    height: 90px;
    opacity: .6;
    justify-content: center;
    margin-bottom: -40px;
    padding-top: 20px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .trigger-icon {
    width: 28px;
    height: 5px;
    background-color: var(--light-grey);
    border-radius: 200px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .user-with-address {
    padding-top: 20px;
  }

  .adress-tab-link {
    margin-bottom: 8px;
  }

  .address-link-text {
    height: auto;
  }

  .cart-price {
    color: var(--black);
  }

  .delete-icon {
    border: 1px solid var(--light-grey);
    background-color: var(--white-2);
  }

  .delete-icon:hover {
    border-color: rgba(0, 0, 0, 0);
  }

  .address-cta-wrapper.dfaas.cancel-on-mobile {
    display: none;
  }

  .cart-icon-link {
    display: block;
  }

  .edit-address {
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .details-wrapper {
    z-index: 3;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-end;
    display: block;
  }

  .close-details {
    height: 100%;
    color: var(--grey);
    justify-content: center;
    align-items: center;
    font-size: 15px;
    display: none;
  }

  .edit-popup-wrapper {
    height: 0%;
  }

  .new-address {
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .new-address-button {
    border: 1px solid var(--firebrick);
  }

  .new-address-button.add-button {
    width: auto;
    color: var(--dodger-blue);
    background-color: rgba(0, 0, 0, 0);
    margin-left: auto;
    margin-right: auto;
  }

  .edit-button.gray.edit-addrss {
    font-weight: 400;
  }

  .resumo-table-wrapper {
    border: 1px solid var(--light-grey);
    background-color: var(--white);
    box-shadow: none;
    padding: 24px 16px 16px;
  }

  .pagamento-date-wrapper.btm-mrgn {
    margin-bottom: 16px;
  }

  .social-media-wrapper {
    grid-template-columns: 40px 40px;
    margin-bottom: 0;
  }

  .social-links {
    margin-left: 8px;
    margin-right: 8px;
  }

  .copyright-dev {
    justify-items: center;
    margin-top: 50px;
  }

  .developer {
    height: auto;
  }

  .cat-dropdown-toggle {
    padding-left: 8px;
    padding-right: 16px;
  }

  .prfl-grid {
    justify-content: center;
    margin-bottom: 6px;
  }

  .table-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .table-content-block.cta {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-grid {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .result-wrapper {
    max-height: none;
  }

  .desktop-results {
    display: none;
  }

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

  .profile-dropdown-link {
    height: 45px;
    line-height: 1.5;
  }

  .dropdown-content {
    width: 350px;
    max-height: 80vh;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .estado-da-compra {
    margin-bottom: 30px;
  }

  .cat-list {
    width: 350px;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .dec-oy {
    height: 111px;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .faq-title-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .menu-dashboard {
    margin-top: 0;
    margin-left: 10vw;
  }

  .address-form-80 {
    width: 100%;
  }

  .plus-minus-wrapper-2 {
    background-color: #fafafa;
    border: 1px solid #d9d9d9;
  }

  .resumo-table-wrapper-2 {
    box-shadow: none;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    padding: 24px 16px 16px;
  }

  .cart-price-2 {
    color: #111210;
  }

  .line-seperator-2 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .product-card-2._2-col-grid.borders {
    border-color: #d9d9d9;
    margin-bottom: 8px;
  }

  .product-card-2._33 {
    border: 1px solid #d9d9d9;
    flex: none;
  }

  .price-content-2 {
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    padding: 24px 16px 14px;
  }

  .price-content-2._6756 {
    border-style: none;
    border-radius: 0;
    padding: 0;
  }

  .price-list-item-2 {
    color: #111210;
  }

  .delete-icon-2 {
    background-color: #fafafa;
    border: 1px solid #d9d9d9;
  }

  .delete-icon-2:hover {
    border-color: rgba(0, 0, 0, 0);
  }

  .profile-header-link-2 {
    margin-left: 4px;
    margin-right: 4px;
  }

  .new-address-button-2 {
    border: 1px solid #bd3a3a;
  }

  .new-address-button-2.add-button {
    width: auto;
    color: #3a86ff;
    background-color: rgba(0, 0, 0, 0);
    margin-left: auto;
    margin-right: auto;
  }

  .close-nav-2 {
    top: 5vh;
    right: 9vw;
  }

  .category-card-icon-wrapper-2.float-on-top {
    right: 16px;
  }

  .table-grid-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-142 {
    padding: 15px;
  }

  .text-block-178 {
    font-size: 33px;
  }

  .div-block-144 {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container.nav-container {
    padding-right: 2vw;
  }

  .container.mob-percent {
    padding-left: 0;
    padding-right: 0;
  }

  .grid._3-col._40-gap.align {
    grid-template-rows: auto;
    margin-left: -16px;
    margin-right: -16px;
    padding-bottom: 16px;
  }

  .grid._3-col._40-gap.align._0000 {
    margin-left: 0;
    margin-right: 0;
  }

  .grid._3-col.navigate {
    grid-template-columns: 1fr 1.5fr;
    justify-content: space-between;
    display: flex;
  }

  .button-wrapper.add-to-cart-button {
    display: block;
  }

  .button-wrapper._10px {
    min-width: 107px;
  }

  .button-wrapper.pos-absolute {
    z-index: 2;
    position: fixed;
  }

  .button-wrapper.pos-absolute.in-dropdown-cart {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .button-wrapper.add-address {
    margin-left: 0;
    margin-right: 0;
    padding-top: 16px;
    padding-bottom: 24px;
    padding-left: 0;
  }

  .button-text.pay-2 {
    height: auto;
    overflow: visible;
  }

  .button.blue-button.inside-product-page {
    z-index: 1;
  }

  .button.red-outline.remover-copy {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .button.cancel {
    border-color: var(--light-grey);
    border-color: #d9d9d9;
  }

  .button.blue-button.inside-product-page {
    z-index: 1;
  }

  .button._2 {
    margin-bottom: 15px;
  }

  .button._100 {
    width: 100%;
  }

  .section-header-wrapper {
    margin-bottom: 24px;
  }

  .section-header-wrapper.mbl-chkout {
    margin-bottom: 16px;
  }

  .section-header {
    text-align: center;
    justify-content: center;
    font-size: 23px;
  }

  .section-header.no-padding.profile-name {
    font-size: 26px;
    display: block;
  }

  .section-header.chkout-header {
    text-align: left;
    justify-content: flex-start;
  }

  .section-header.small {
    text-align: left;
    justify-content: flex-start;
    font-size: 22px;
    font-weight: 600;
  }

  .text-field {
    font-size: 18px;
  }

  .field-label {
    color: rgba(17, 18, 16, .66);
  }

  .choice-item.no-line {
    height: auto;
    padding-top: 4.5vw;
    padding-bottom: 5vw;
  }

  .choice-content {
    width: auto;
    text-align: center;
    flex-direction: column;
    grid-template-columns: 50px 1fr;
    justify-content: center;
    display: flex;
  }

  .choice-icon {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .choice-icon.loose {
    width: 40px;
    height: 40px;
    max-width: 40px;
    min-width: 40px;
    margin-bottom: 10px;
    margin-right: 0%;
  }

  .choice-icon.loose.phone {
    width: 32px;
    max-width: 35px;
    min-width: 30px;
    padding-left: 3px;
    padding-right: 3px;
  }

  .choice-header {
    width: 84px;
  }

  .choice-header.pgmnt {
    max-width: 150px;
    text-align: center;
  }

  .choice-subheader {
    line-height: 1.2;
    display: none;
  }

  .image-wrapper.product-card-image-wrapper {
    height: 32vw;
  }

  .image-wrapper.category-card-image-wrapper {
    height: 12vh;
  }

  .image-wrapper.profile-thumbnail {
    width: 200px;
    height: 200px;
    width: 200px;
    height: 200px;
    margin: 8px auto 40px;
  }

  .product-price.kz.small._2 {
    top: -6px;
  }

  .product-price.small {
    font-weight: 700;
  }

  .product-in-stock {
    margin-bottom: 8px;
  }

  .product-items-wrapper {
    z-index: 10;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    margin-left: -16px;
    margin-right: -16px;
    padding: 24px 16px;
    position: -webkit-sticky;
    position: sticky;
    top: auto;
    bottom: 0;
    left: 0%;
    right: 0%;
  }

  .plus-minus-wrapper.no-margin {
    width: 100px;
  }

  .plus-minus-wrapper._100.hidden-on-home {
    display: none;
  }

  .product-title.small {
    max-height: 38px;
  }

  .product-title.midium {
    height: 45px;
    font-size: 17px;
  }

  .extra-info-text.small {
    display: none;
  }

  .product-link.grid._5-row {
    grid-template-rows: auto auto auto auto;
  }

  .category-card {
    border-color: var(--light-grey);
  }

  .category-title {
    font-size: 15px;
  }

  .category-card-icon-wrapper.float-on-top {
    right: 6vw;
  }

  .header-wrapper._16.xyz {
    margin-bottom: 16px;
  }

  .header-wrapper.purchase {
    text-align: center;
    margin-bottom: 24px;
  }

  .header {
    text-align: left;
  }

  .header.thinner {
    line-height: 1.15;
  }

  .price-total {
    height: 20px;
    border-top-style: none;
    margin-top: 10px;
    margin-bottom: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .price-total.no-btm-padding._23 {
    height: auto;
    border-top-style: solid;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .price-total.mobile {
    height: auto;
  }

  .grid-half-content._565 {
    margin-top: 30px;
  }

  .footer {
    padding-top: 60px;
  }

  .choice-tab-menu {
    width: 100%;
    grid-column-gap: 8px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .selected-tab-pane {
    min-height: auto;
  }

  .dropdown-icon._8px-padding.tabss {
    margin-right: 24px;
    font-size: 13px;
  }

  .chevron-icon._0 {
    bottom: -6px;
  }

  .status-circles-wrapper {
    margin-right: 16px;
  }

  .status-content-wrapper {
    height: 30px;
    flex-direction: row;
  }

  .center-text {
    margin-top: 2px;
  }

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

  .status-line {
    width: 3px;
    height: 50px;
    flex: 0 auto;
    margin-bottom: -3px;
    margin-left: 13px;
    margin-right: 0;
    top: -2px;
  }

  .confirmed-line {
    height: 100%;
  }

  .in-progress-line {
    height: 100%;
    border-style: none dashed none none;
    border-right-width: 2px;
    border-right-color: var(--light-grey);
  }

  .brand {
    width: 140px;
    height: 45px;
    min-width: 60px;
  }

  .brand.at-auth {
    margin-bottom: 2.5vh;
  }

  .nav-menu-wrapper {
    padding-left: 1vw;
  }

  .nav-menu {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
    justify-content: center;
    padding-bottom: 0;
  }

  .close-nav {
    z-index: 10;
    top: 16px;
    right: 16px;
  }

  .close-nav.close-edit-profile {
    z-index: 1000;
  }

  .close-nav.close-search {
    margin-top: 16px;
    margin-bottom: 0;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .close-nav.cat {
    opacity: 0;
    display: none;
    top: 16px;
    right: 16px;
  }

  .menu {
    width: 100%;
    max-width: 340px;
    margin-top: 3vh;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
  }

  .nav-link {
    line-height: 1.6;
  }

  .dropdown-cart-wrapper {
    padding-left: 1vw;
  }

  .dropdown-cart {
    width: auto;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0 0 24px 24px;
    padding-bottom: 88px;
    top: 0;
  }

  .cart-title-wrapper {
    top: 8px;
  }

  .pop-up-wrapper {
    padding-left: 0;
  }

  .nav-auth-buttons-wrapper._0-padding {
    width: 100%;
  }

  .material-icons.round, .material-icons.paper {
    padding-top: 10px;
  }

  .material-icons.power {
    padding-top: 12px;
  }

  .material-icons.house, .material-icons.resrc {
    padding-top: 10px;
  }

  .search-button-wrapper {
    padding-left: 0;
  }

  .auth-content-wrapper.log-in {
    padding-top: 10vh;
  }

  .address-wrapper._40 {
    padding: 16px;
  }

  .login-nav {
    margin-bottom: 8vh;
  }

  .edit-profile-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-product-wrapper {
    grid-template-columns: 1fr 1.25fr;
  }

  .cart-products-content-wrapper {
    padding-bottom: 16px;
  }

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

  .search {
    height: 46px;
    border-color: rgba(0, 0, 0, 0);
    margin-bottom: 16px;
    padding-right: 42px;
  }

  .search-button {
    font-size: 23px;
  }

  .sub-delete-button.gray.eliminar.longersss {
    margin-left: auto;
    margin-right: auto;
  }

  .sub-delete-button.gray.logout-button {
    flex: none;
    margin-left: 4px;
    margin-right: 4px;
    display: none;
  }

  .sub-delete-button.gray.eliminar.longersss {
    margin-left: auto;
    margin-right: auto;
  }

  .sub-delete-button.gray.logout-button {
    flex: none;
    margin-left: 4px;
    margin-right: 4px;
    display: none;
  }

  .photo-upload-input-field.no-bg-fill {
    padding-left: 16px;
    padding-right: 16px;
  }

  .photo-upload-text.small-gray {
    line-height: 1.1;
  }

  .tabs {
    width: 100%;
  }

  .auth-menu-wrapper {
    width: 100%;
    max-width: 340px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    top: 7vh;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .tabed-section, .tabed-section.show-on-landscape {
    display: block;
  }

  .tab-menu {
    height: auto;
    min-height: auto;
    flex-direction: column;
    padding: 60px 24px 5px;
  }

  .tab-link {
    height: 55px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
  }

  .tab-link.w--current {
    color: var(--black);
    border-bottom-color: rgba(0, 0, 0, 0);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 24px;
    right: 24px;
  }

  .tab-link-icon {
    flex: none;
    margin-top: 5px;
    margin-right: 16px;
  }

  .tab-link-icon._2 {
    margin-top: 0;
    padding-top: 1px;
  }

  .tab-link-icon._1 {
    margin-top: 0;
    padding-top: 0;
  }

  .edit-profile-button-wrapper {
    height: auto;
    border-top: 1px solid var(--light-grey);
    padding: 2px 24px;
    display: block;
    position: relative;
    right: 0;
  }

  .profile-edit {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    display: none;
  }

  .logout {
    height: 55px;
    margin-top: 0;
    margin-left: 0;
    font-size: 17px;
    font-weight: 600;
  }

  .tab-triggered-element {
    z-index: 2;
    height: auto;
    border-bottom: 1px solid var(--light-grey);
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .tab-trigger {
    z-index: 10;
    height: 55px;
    border-bottom: 1px solid var(--light-grey);
    color: var(--grey);
    cursor: pointer;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .close-tab {
    z-index: 12;
    height: 55px;
    border-bottom: 1px solid var(--borders);
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .checkout-button.blue-button.pay {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
  }

  .checkout-cta {
    grid-template-columns: minmax(110px, 125px) 1fr;
  }

  .checkout-cta.pay-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: minmax(110px, 125px) 1fr;
  }

  .cancel-button-wrapper {
    margin-top: 8px;
  }

  .cancel-button-wrapper.hidden-on-mobile {
    display: none;
  }

  .trigger-icon {
    width: 32px;
  }

  .user-with-address {
    border-style: none;
    padding: 16px 0 0;
  }

  .address-cta-wrapper.dfaas {
    text-align: center;
    margin-top: 16px;
  }

  .edit-popup-wrapper {
    padding-left: 0;
  }

  .new-address-button {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    display: none;
  }

  .new-address-button.add-button {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .edit-button.gray.edit-profile-button {
    width: 124px;
    width: 124px;
    flex: none;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .edit-button.gray.ver-detalhes {
    flex: none;
    margin-right: 0;
  }

  .pagamento-date-wrapper {
    padding: 27px 16px;
  }

  .pagamento-date-wrapper.btm-mrgn {
    grid-row-gap: 24px;
  }

  .social-links {
    width: 30px;
    height: 30px;
  }

  .copyright-dev {
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .copyright {
    max-width: 220px;
    justify-content: center;
    font-size: 16px;
  }

  .developer {
    display: block;
  }

  .powered-by {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .cat-dropdown-toggle {
    border-radius: 12px;
    justify-content: center;
    padding-left: 16px;
  }

  .prfl-grid {
    display: none;
  }

  .profile-info-wrapper {
    text-align: center;
    align-self: center;
  }

  .compras-table-wrapper {
    grid-template-columns: 1fr;
  }

  .table-grid {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .dropdown-wrap {
    border-bottom-color: var(--table-header);
    padding-bottom: 16px;
    display: block;
  }

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

  .bvbv {
    margin-bottom: 16px;
  }

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

  .mobile-results {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .profile-dropdown-list.w--open {
    z-index: 10;
    border-radius: 16px;
    padding-top: 32px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .3);
  }

  .profile-dropdown-link {
    line-height: 1.6;
  }

  .dropdown-content {
    width: auto;
    max-height: 500px;
    border-radius: 24px 24px 0 0;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
    box-shadow: 0 -3px 24px rgba(0, 0, 0, .2);
  }

  .cat-list {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .drop-link-wrapper {
    height: auto;
    border-top: 1px solid rgba(0, 0, 0, 0);
    padding: 16px 8px;
    transition-property: background-color;
  }

  .drop-link-wrapper:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .drop-link-wrapper:active {
    background-color: var(--table-header);
    transform: none;
  }

  .drop-link-container {
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .dec-oy {
    z-index: -1;
    height: 103px;
    opacity: 0;
  }

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

  .menu-dashboard {
    width: 100%;
    max-width: 340px;
    margin-top: 3vh;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
  }

  .div-block-6 {
    margin-right: 10px;
  }

  .address-form-80 {
    padding: 35px 25px 25px;
  }

  .div-block-10 {
    padding-top: 0;
  }

  .confirmed-line-2 {
    height: 100%;
  }

  .center-text-2 {
    margin-top: 2px;
  }

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

  .in-progress-line-2 {
    height: 100%;
    border-style: none dashed none none;
    border-right-width: 2px;
    border-right-color: #d9d9d9;
  }

  .plus-minus-wrapper-2.no-margin {
    width: 100px;
  }

  .resumo-table-wrapper-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price-total-2 {
    height: 20px;
    border-top-style: none;
    margin-top: 10px;
    margin-bottom: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .price-total-2.no-btm-padding._23 {
    height: auto;
    border-top-style: solid;
    margin-top: 16px;
    margin-bottom: 8px;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .extra-info-text-2.small {
    display: none;
  }

  .profile-content-wrapper-2 {
    border-style: none;
    border-radius: 0;
    flex-direction: column;
    padding: 0 0;
  }

  .new-address-button-2 {
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    display: none;
  }

  .new-address-button-2.add-button {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .close-nav-2 {
    z-index: 10;
    top: 16px;
    right: 16px;
  }

  .div-block-34 {
    width: 200px;
    height: 100px;
  }

  .category-card-icon-wrapper-2.float-on-top {
    right: 6vw;
  }

  .compras-table-wrapper-2 {
    grid-template-columns: 1fr;
  }

  .table-grid-2 {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .text-block-2._8.bold {
    font-size: 25px;
  }

  .div-block-39 {
    border-bottom-color: rgba(217, 217, 217, .37);
  }

  .div-block-39._4 {
    background-color: #fff;
    border-bottom-style: none;
  }

  .div-block-40 {
    margin-bottom: 15px;
    padding: 20px;
  }

  .div-block-41 {
    width: 70%;
  }

  .text-block-3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .text-block-4 {
    font-size: 19px;
  }

  .text-block-5.pago {
    margin-bottom: 5px;
  }

  .div-block-43 {
    display: none;
  }

  .mobile-nav {
    z-index: 100;
    width: 100%;
    height: 80px;
    background-color: #fff;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, .14);
  }

  .shadow {
    height: 80px;
  }

  .link-block-2 {
    width: 150px;
    background-image: url('../images/Logo_Kixicredito-2.png');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .div-block-44 {
    line-height: 80px;
  }

  .text-block-8 {
    font-family: Kixicredito main, sans-serif;
    font-size: 28px;
  }

  .section-3 {
    padding-top: 30px;
    padding-bottom: 100px;
  }

  .contain-mob {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-45 {
    height: 200px;
    color: var(--table-header);
    background-image: linear-gradient(263deg, rgba(138, 191, 110, .75), #295236), url('../images/angola1.jpeg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 43px 30px 30px 25px;
    display: block;
  }

  .text-block-9 {
    font-size: 20px;
    font-weight: 600;
  }

  .div-block-46 {
    padding-top: 25px;
  }

  .text-block-10 {
    color: #f69144;
    font-size: 30px;
    font-weight: 800;
  }

  .text-block-11 {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .div-block-47 {
    margin-bottom: 25px;
  }

  .link-block-3 {
    height: 60px;
    background-color: var(--dark-slate-grey);
    color: #fff;
    border: 1px #000;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 0 15px 0 35px;
    line-height: 60px;
    display: flex;
  }

  .link-block-3.done {
    background-color: #fa9052;
  }

  .text-block-12 {
    margin-right: 15px;
    padding-top: 3px;
    font-family: Kixicredito main, sans-serif;
    font-size: 21px;
  }

  .text-block-13 {
    font-size: 17px;
    font-weight: 500;
  }

  .div-block-48 {
    margin-bottom: 25px;
    display: flex;
  }

  .text-block-14 {
    margin-right: 15px;
    font-family: Kixicredito main, sans-serif;
    font-size: 20px;
  }

  .text-block-15 {
    font-size: 20px;
    font-weight: 600;
  }

  .link-block-4 {
    color: #000;
    margin-right: 15px;
  }

  .div-block-49 {
    border: 1px solid var(--light-grey);
    color: #000;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 25px;
    display: flex;
  }

  .div-block-50 {
    width: 80%;
  }

  .div-block-51 {
    width: 20%;
  }

  .text-block-16 {
    margin-bottom: 5px;
    font-weight: 600;
  }

  .text-block-17 {
    color: var(--lime-green);
    text-align: right;
    font-family: Kixicredito main, sans-serif;
    font-size: 22px;
  }

  .text-block-18 {
    margin-bottom: 5px;
  }

  .div-block-52 {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .div-block-53 {
    padding-top: 25px;
  }

  .text-block-19 {
    color: rgba(17, 18, 16, .52);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
  }

  .text-block-20 {
    margin-bottom: 5px;
    font-weight: 600;
  }

  .text-block-20._2 {
    margin-bottom: 10px;
  }

  .text-block-20._50 {
    margin-bottom: 25px;
  }

  .div-block-54 {
    border: 1px solid var(--gainsboro);
    color: #000;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 28px;
    display: flex;
  }

  .div-block-55 {
    width: 80%;
  }

  .div-block-56 {
    width: 20%;
  }

  .text-block-21 {
    margin-bottom: 5px;
    font-weight: 600;
  }

  .text-block-22 {
    margin-bottom: 5px;
  }

  .text-block-23 {
    text-align: right;
    font-family: Kixicredito main, sans-serif;
  }

  .text-block-24 {
    color: var(--dodger-blue);
    font-weight: 700;
  }

  .text-block-24.pendente {
    color: var(--goldenrod);
  }

  .text-block-24.concluido {
    color: var(--lime-green);
  }

  .text-block-24.rejeitado {
    color: var(--firebrick);
  }

  ._4 {
    background-color: #f4f4f4;
  }

  .div-block-131 {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .checkbox-field {
    flex: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

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

  .checkbox-label-2 {
    width: auto;
    margin-top: 0;
    margin-left: 12px;
  }

  .text-block-170 {
    margin-bottom: 15px;
  }

  .div-block-132 {
    border: 1px dashed var(--lime-green);
    background-color: rgba(4, 167, 119, .05);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    display: flex;
  }

  .link-2 {
    color: var(--lime-green);
    align-items: center;
    margin-left: 20px;
    padding-left: 0;
    display: flex;
  }

  .contain {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar {
    height: 90px;
  }

  .brand-2 {
    width: 170px;
    height: 90px;
  }

  .nav-menu-2 {
    width: 80%;
  }

  .grid-5 {
    grid-template-columns: 1.75fr;
  }

  .div-block-138 {
    height: auto;
    padding: 34px;
  }

  .div-block-139 {
    background-color: #295236;
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px;
  }

  .div-block-140 {
    margin-bottom: 40px;
  }

  .heading-10 {
    font-size: 20px;
  }

  .text-block-174 {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 35px;
    line-height: 35px;
  }

  .text-block-175 {
    margin-bottom: 0;
    font-weight: 500;
  }

  .text-block-176 {
    display: none;
  }

  .text-block-177 {
    font-size: 19px;
  }

  .heading-11 {
    font-size: 32px;
  }

  .grid-6 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-columns: 1fr;
  }

  .text-block-179 {
    text-align: left;
    padding-left: 25px;
  }

  .text-block-180 {
    line-height: 150%;
  }

  .text-block-181 {
    margin-bottom: 10px;
    line-height: 150%;
  }

  .menu-button {
    height: 90px;
    padding-top: 30px;
    font-size: 35px;
  }

  .text-block-182 {
    font-size: 13px;
  }

  .link-6 {
    min-width: 150px;
  }
}

#w-node-ee803303-e2a7-dfa9-70c8-7ea23422719e-a7265884 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-fb075e6b-4d60-90ed-637e-3aebe4b665c9-a7265884 {
  align-self: center;
  justify-self: end;
}

#w-node-_3aa9dbdd-aa65-44a6-604e-4b72e57786af-a7265884 {
  align-self: center;
}

#w-node-a69d7336-c5a3-b972-1a22-aa766fac415a-a7265884 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-ef38eecd-9c3a-654e-f1f1-db3825fef038-a7265884 {
  align-self: center;
}

#w-node-ef38eecd-9c3a-654e-f1f1-db3825fef03d-a7265884 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_274b46fd-3167-40b0-941b-62cccd7d8037-a7265884 {
  align-self: baseline;
}

#w-node-_80c032cd-6ad5-1eaa-6cf4-b6498fa750a4-a7265884, #w-node-_7d9ad055-348c-b9b3-a599-ed58328fffdc-a7265884, #w-node-_20c702ec-3eee-f6b9-0bfc-0541d967044e-a7265884, #w-node-_6e29f27f-b83a-c3ac-b9eb-0eb1fb208e50-a7265884, #w-node-c99ef40f-5883-45b0-d1ba-fabe478bf11f-a7265884 {
  align-self: start;
}

#w-node-_74a18d50-5a20-e42b-3f2e-4101c7cc2172-a7265884 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8e702f38-6708-5413-6738-dca1a54bf42e-a7265884 {
  align-self: start;
}

#w-node-_4ca89138-d152-5eb9-b298-71eba05466fe-a7265884 {
  justify-self: end;
}

#w-node-_87b77183-7732-e343-d91f-191292020f72-a7265884 {
  justify-self: center;
}

#w-node-e44a68a3-3ed9-a08e-76e7-8591a4a541ef-a7265884 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e44a68a3-3ed9-a08e-76e7-8591a4a541f2-a7265884 {
  align-self: start;
}

#w-node-e44a68a3-3ed9-a08e-76e7-8591a4a541f7-a7265884 {
  justify-self: end;
}

#w-node-e44a68a3-3ed9-a08e-76e7-8591a4a541f8-a7265884 {
  justify-self: center;
}

#w-node-_485e0351-e11d-b135-fca0-71e535cb7894-a7265884, #w-node-b4567343-4a07-f8bf-2746-ec1d947d16a5-a7265884, #w-node-c42db691-7b0b-ff71-38bf-96c501b88349-a7265884 {
  align-self: start;
}

#field.w-node-_14ec129d-c270-5ee8-0802-94782e666f30-0c84e88b, #field-3.w-node-_14ec129d-c270-5ee8-0802-94782e666f31-0c84e88b, #field-2.w-node-_14ec129d-c270-5ee8-0802-94782e666f32-0c84e88b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9c95f775-f746-6100-284f-1f128c748fd1-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748fd4-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748fd7-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748fda-0c84e88b, #w-node-_1adf96a7-5278-ae88-2a35-4cd68aeca7d1-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748ff9-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c749003-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c749008-0c84e88b, #w-node-d00d7f06-de35-b5db-95ac-3ed841cf2960-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb882-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb886-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb88b-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb890-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb897-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e57-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e5b-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e60-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e65-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e6c-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42d3-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42d7-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42dc-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42e1-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42e8-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df676-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df67a-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df67f-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df684-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df68b-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a0b-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a0f-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a14-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a19-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a20-0c84e88b, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fd9f-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda2-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda5-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda8-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdac-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb0-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb5-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdba-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371cd-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d1-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d6-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371db-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225973-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225977-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a22597c-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225981-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb6e-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb72-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb77-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb7c-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9f6-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9fa-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9ff-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273fa04-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c91240586-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c9124058a-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c9124058f-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c91240594-ff8ca75c {
  justify-self: start;
}

#field.w-node-_14ec129d-c270-5ee8-0802-94782e666f30-72e3a779, #field-3.w-node-_14ec129d-c270-5ee8-0802-94782e666f31-72e3a779, #field-2.w-node-_14ec129d-c270-5ee8-0802-94782e666f32-72e3a779 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5938b16f-957e-850e-08e1-2f19d5394588-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539458b-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539458e-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394591-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394595-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394599-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539459e-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945a3-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ab-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945af-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945b4-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945b9-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945c1-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945c5-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ca-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945cf-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945d7-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945db-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945e0-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945e5-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ed-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945f1-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945f6-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945fb-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394603-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394607-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539460c-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394611-72e3a779, #w-node-_9c95f775-f746-6100-284f-1f128c748fd1-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748fd4-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748fd7-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748fda-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748ff9-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c749003-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c749008-63fa9d63, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f522-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f525-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f528-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f52b-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f52e-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f532-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f537-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f53c-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f541-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f546-b5917794 {
  justify-self: start;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f54b-b5917794 {
  justify-self: center;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f552-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f557-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f55c-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f561-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f566-b5917794 {
  justify-self: start;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f56d-b5917794 {
  justify-self: center;
}

#w-node-_9c95f775-f746-6100-284f-1f128c748fd1-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c748fd4-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c748fd7-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c748fda-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c749003-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c749008-d58dde73, #w-node-_976d6e31-031a-8c4b-770c-23224ef0fc64-d58dde73, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfbd-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfc0-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfc3-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfc6-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfc9-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfcd-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfd2-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfd7-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfdc-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfe1-85e489cd {
  justify-self: start;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67bfe6-85e489cd {
  justify-self: center;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67bfed-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bff2-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bff7-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bffc-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c001-85e489cd {
  justify-self: start;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67c008-85e489cd {
  justify-self: center;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67c00f-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c014-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c019-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c01e-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c023-85e489cd {
  justify-self: start;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67c028-85e489cd {
  justify-self: center;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67c02f-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c034-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c039-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c03e-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c043-85e489cd {
  justify-self: start;
}

#w-node-_45cb5100-26d5-746a-27fe-2268ec67c048-85e489cd {
  justify-self: center;
}

#field-4.w-node-_0f2f88e7-d258-815e-a7a3-934ceeb3caef-3cf5d714, #field-3.w-node-_0f2f88e7-d258-815e-a7a3-934ceeb3caf0-3cf5d714 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_13f0dbd9-63ed-241a-3fc9-ab638930516e-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305171-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305174-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305177-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930517b-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930517f-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305184-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305189-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305191-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305195-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930519a-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930519f-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051a7-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051ab-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051b0-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051b5-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051bd-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051c1-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051c6-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051cb-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051d3-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051d7-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051dc-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051e1-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051e9-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051ed-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051f2-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051f7-3cf5d714, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f59-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f5c-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f5f-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f62-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f65-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f69-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f6e-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f73-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f78-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f7d-8eca33e7 {
  justify-self: start;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308f82-8eca33e7 {
  justify-self: center;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308f89-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f8e-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f93-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f98-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f9d-8eca33e7 {
  justify-self: start;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308fa4-8eca33e7 {
  justify-self: center;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308fab-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fb0-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fb5-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fba-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fbf-8eca33e7 {
  justify-self: start;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308fc4-8eca33e7 {
  justify-self: center;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308fcb-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fd0-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fd5-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fda-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fdf-8eca33e7 {
  justify-self: start;
}

#w-node-_323ee494-b7eb-beda-106b-b3f1ae308fe4-8eca33e7 {
  justify-self: center;
}

#w-node-_1d2d85b0-5207-79cf-dd87-187d18b9952d-33679537 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ffa2e592-c2a6-2094-0ced-bdd8f4868bbd-33679537, #w-node-ab51fddf-c8fb-617c-c24a-f0dff72e276f-33679537, #w-node-_869c406d-524c-50de-b207-cf560d3acf8e-33679537, #w-node-_4e74ed13-f99b-add5-375c-3b5d8ad08a29-33679537, #w-node-ddb3c4d1-5ae0-16ea-e22e-629e5f1a098f-33679537, #w-node-_396f96b1-8aa7-9327-0e7d-0e96b74d51ed-33679537, #w-node-d7cb5a12-2261-5bf1-23f3-aee8b8400c31-33679537, #w-node-_82c1297a-90b1-fbbe-b262-96a6cee834d5-33679537 {
  align-self: start;
}

#field-4.w-node-bf91426b-9db4-900b-b0ae-32547f37253b-fe4cbb82, #field-3.w-node-bf91426b-9db4-900b-b0ae-32547f37253c-fe4cbb82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b289c186-f6ef-9037-f9ce-11820c773093-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c773096-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c773099-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c77309c-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c77309f-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730e5-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730ea-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730ef-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730f4-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730f9-fe4cbb82 {
  justify-self: start;
}

#w-node-b289c186-f6ef-9037-f9ce-11820c7730fe-fe4cbb82 {
  justify-self: center;
}

#w-node-_72700488-6631-27a7-66c9-e436e059c768-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c76d-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c772-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c777-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c77c-fe4cbb82 {
  justify-self: start;
}

#w-node-_72700488-6631-27a7-66c9-e436e059c781-fe4cbb82 {
  justify-self: center;
}

#w-node-_6fb47a82-b2be-4537-6167-618d1cfa0af2-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0af7-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0afc-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b01-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b06-fe4cbb82 {
  justify-self: start;
}

#w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b0b-fe4cbb82 {
  justify-self: center;
}

#w-node-bcc214af-41ee-62fa-b5c8-a924d4acbacd-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbad2-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbad7-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbadc-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbae1-fe4cbb82 {
  justify-self: start;
}

#w-node-bcc214af-41ee-62fa-b5c8-a924d4acbae6-fe4cbb82 {
  justify-self: center;
}

#w-node-_92af79db-3232-0d95-ccaa-23323a39cd8b-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd90-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd95-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd9a-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd9f-fe4cbb82 {
  justify-self: start;
}

#w-node-_92af79db-3232-0d95-ccaa-23323a39cda4-fe4cbb82 {
  justify-self: center;
}

#w-node-_1d2d85b0-5207-79cf-dd87-187d18b9952d-b00e01d8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ffa2e592-c2a6-2094-0ced-bdd8f4868bbd-b00e01d8, #w-node-ab51fddf-c8fb-617c-c24a-f0dff72e276f-b00e01d8, #w-node-_869c406d-524c-50de-b207-cf560d3acf8e-b00e01d8, #w-node-_4e74ed13-f99b-add5-375c-3b5d8ad08a29-b00e01d8, #w-node-ddb3c4d1-5ae0-16ea-e22e-629e5f1a098f-b00e01d8, #w-node-_396f96b1-8aa7-9327-0e7d-0e96b74d51ed-b00e01d8, #w-node-d7cb5a12-2261-5bf1-23f3-aee8b8400c31-b00e01d8, #w-node-_82c1297a-90b1-fbbe-b262-96a6cee834d5-b00e01d8 {
  align-self: start;
}

#field-4.w-node-_0f2f88e7-d258-815e-a7a3-934ceeb3caef-22b9f22b, #field-3.w-node-_0f2f88e7-d258-815e-a7a3-934ceeb3caf0-22b9f22b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4286-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4289-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b428c-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b428f-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4292-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4296-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b429b-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42a0-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42a5-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42aa-22b9f22b {
  justify-self: start;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42af-22b9f22b {
  justify-self: center;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42b6-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42bb-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42c0-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42c5-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42ca-22b9f22b {
  justify-self: start;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42d1-22b9f22b {
  justify-self: center;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42d8-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42dd-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42e2-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42e7-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42ec-22b9f22b {
  justify-self: start;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42f1-22b9f22b {
  justify-self: center;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42f8-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42fd-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4302-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4307-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b430c-22b9f22b {
  justify-self: start;
}

#w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4311-22b9f22b {
  justify-self: center;
}

#w-node-_1e1302fa-7263-2098-97d7-4a84d507fd9f-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda2-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda5-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fda8-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdac-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb0-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb5-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdba-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371cd-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d1-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d6-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371db-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619477-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f261947b-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619480-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619483-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7ad3-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7ad7-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7adc-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7adf-dfaf60b0 {
  justify-self: start;
}

#field-4.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9b-ceafd40b, #field-3.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9c-ceafd40b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ca6-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ca9-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cac-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56caf-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cb3-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cb7-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cbc-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cc1-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cc9-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ccd-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cd2-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cd7-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cdf-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ce3-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ce8-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ced-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cf5-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cf9-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cfe-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d03-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d0b-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d0f-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d14-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d19-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d21-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d25-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d2a-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d2f-ceafd40b, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17983-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17986-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17989-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1798c-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1798f-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17993-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17998-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1799d-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a2-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a7-c3389374 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ac-c3389374 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b3-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b8-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179bd-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c2-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c7-c3389374 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ce-c3389374 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179d5-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179da-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179df-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e4-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e9-c3389374 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ee-c3389374 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179f5-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179fa-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ff-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a04-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a09-c3389374 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a0e-c3389374 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17983-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17986-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17989-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1798c-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1798f-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17993-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17998-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1799d-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a2-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a7-44b6eec0 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ac-44b6eec0 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b3-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b8-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179bd-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c2-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c7-44b6eec0 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ce-44b6eec0 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179d5-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179da-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179df-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e4-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e9-44b6eec0 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ee-44b6eec0 {
  justify-self: center;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179f5-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179fa-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ff-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a04-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a09-44b6eec0 {
  justify-self: start;
}

#w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a0e-44b6eec0 {
  justify-self: center;
}

#w-node-aaa754ae-a141-2e11-1cec-633e1abe8780-7638fbc5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c3-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c6-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c9-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9cc-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9cf-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9d3-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9d8-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9dd-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9e2-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9e7-bc390529 {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9ec-bc390529 {
  justify-self: center;
}

#w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dad-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db2-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db7-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dbc-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc1-bc390529 {
  justify-self: start;
}

#w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc6-bc390529 {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f3-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f8-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9fd-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea02-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea07-bc390529 {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea0e-bc390529 {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea15-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1a-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1f-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea24-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea29-bc390529 {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea2e-bc390529 {
  justify-self: center;
}

#w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e910-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e915-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91a-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91f-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e924-bc390529 {
  justify-self: start;
}

#w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e929-bc390529 {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea35-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3a-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3f-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea44-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea49-bc390529 {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea4e-bc390529 {
  justify-self: center;
}

#field-4.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9b-c3d9f509, #Mes.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9c-c3d9f509 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059a3-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059a6-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059a9-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ac-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059af-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b3-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b8-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059bd-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c2-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c7-c3d9f509 {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059cc-c3d9f509 {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059d3-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d8-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059dd-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e2-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e7-c3d9f509 {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059ee-c3d9f509 {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059f5-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059fa-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ff-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a04-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a09-c3d9f509 {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a0e-c3d9f509 {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a15-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1a-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1f-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a24-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a29-c3d9f509 {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a2e-c3d9f509 {
  justify-self: center;
}

#w-node-b248c9cf-1143-f5ae-c8af-87b0056639a3-b22640cd, #w-node-d0bed9c0-0126-18a6-70c1-68fa00f23973-b22640cd, #w-node-d0bed9c0-0126-18a6-70c1-68fa00f2397b-b22640cd, #w-node-f2d46687-cfce-5931-598f-bad85c8226f1-b22640cd, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e207-b22640cd, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e217-b22640cd, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e21f-b22640cd, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e227-b22640cd, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e22f-b22640cd, #w-node-da12fab9-0598-699c-d18a-00412c955f94-b22640cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1d2d85b0-5207-79cf-dd87-187d18b9952d-b22640cd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ffa2e592-c2a6-2094-0ced-bdd8f4868bbd-b22640cd, #w-node-ab51fddf-c8fb-617c-c24a-f0dff72e276f-b22640cd, #w-node-_869c406d-524c-50de-b207-cf560d3acf8e-b22640cd, #w-node-_4e74ed13-f99b-add5-375c-3b5d8ad08a29-b22640cd, #w-node-ddb3c4d1-5ae0-16ea-e22e-629e5f1a098f-b22640cd, #w-node-_396f96b1-8aa7-9327-0e7d-0e96b74d51ed-b22640cd, #w-node-d7cb5a12-2261-5bf1-23f3-aee8b8400c31-b22640cd, #w-node-_82c1297a-90b1-fbbe-b262-96a6cee834d5-b22640cd {
  align-self: start;
}

#w-node-_2908d371-adeb-cdf0-88fa-f601b9d36bd1-76cc14f7, #w-node-_0adda2c7-4990-ebf5-244b-e662aa12d76a-76cc14f7, #w-node-d74aee4c-8ce2-1bc5-02c4-274f1283fadb-76cc14f7, #w-node-_00564eb1-ecad-7ea1-40aa-fb9368158713-76cc14f7, #w-node-b5d13fac-b4de-e4f3-09d5-70e11c3c423e-76cc14f7, #w-node-b5d13fac-b4de-e4f3-09d5-70e11c3c4240-76cc14f7, #w-node-b5d13fac-b4de-e4f3-09d5-70e11c3c4242-76cc14f7, #w-node-e1af3f13-fa34-1481-92d9-89b61a304556-76cc14f7, #w-node-e1af3f13-fa34-1481-92d9-89b61a304558-76cc14f7, #w-node-e1af3f13-fa34-1481-92d9-89b61a30455a-76cc14f7, #w-node-_74edd3f1-b7fb-a5a9-baaa-f7ce54678546-76cc14f7, #w-node-_74edd3f1-b7fb-a5a9-baaa-f7ce54678548-76cc14f7, #w-node-_74edd3f1-b7fb-a5a9-baaa-f7ce5467854a-76cc14f7, #w-node-_03412888-9fc4-ddcf-b87c-88816a44738f-76cc14f7, #w-node-_03412888-9fc4-ddcf-b87c-88816a447391-76cc14f7, #w-node-_03412888-9fc4-ddcf-b87c-88816a447393-76cc14f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d8f-5232c2f5, #w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d8f-c78ad74f, #w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d8f-d1ce3844, #w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d8f-4b7009d2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd661-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd663-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd665-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd66d-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd66f-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd671-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd679-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd67b-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd67d-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd685-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd687-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd689-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd691-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd693-8755228c, #w-node-_90090cb0-6e3a-4c5f-0a03-3d2eddbfd695-8755228c, #w-node-_2f9fb0a0-23ad-99ba-62a7-a34b9cfef5b7-a83380c6, #w-node-_6180134a-c691-0965-f2f9-f77c55d2a6fc-a83380c6, #w-node-_9da57929-bd52-89d6-e311-92de2393b273-a83380c6, #w-node-_7379fa37-dadf-0573-896a-8129fccf3865-a83380c6, #w-node-_87219947-fa53-6c7e-a518-a73371c8bef7-a83380c6, #w-node-_4eff650f-eb3d-83c3-6ae7-5e3ca3fd2d64-a83380c6, #w-node-eed410b7-563d-efbb-919b-ad39ecf0c20d-a83380c6, #w-node-d922d669-09c9-8ac7-5bf6-988369c85f76-a83380c6, #w-node-_90bfefb5-3e51-61c2-2748-9ec807b95ed1-a83380c6, #w-node-_5c2207b5-4265-9081-1def-4b58e0e317f3-a83380c6, #w-node-_8c727dd5-6f4e-306d-9511-77e83951b54a-8fe9d28c, #w-node-_5746de16-d562-37bf-bcb6-acfe071a9dfd-8fe9d28c, #w-node-_3e029804-17bd-9e81-c7d5-e68e13003764-8fe9d28c, #w-node-_5606599f-2bc8-1a7e-f685-ffdb53672842-8fe9d28c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c3-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c6-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9c9-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9cc-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9cf-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dad-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db2-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db7-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dbc-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc1-0ec4710d {
  justify-self: start;
}

#w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc6-0ec4710d {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f3-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f8-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9fd-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea02-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea07-0ec4710d {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea0e-0ec4710d {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea15-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1a-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1f-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea24-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea29-0ec4710d {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea2e-0ec4710d {
  justify-self: center;
}

#w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e910-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e915-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91a-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91f-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e924-0ec4710d {
  justify-self: start;
}

#w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e929-0ec4710d {
  justify-self: center;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea35-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3a-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3f-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea44-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea49-0ec4710d {
  justify-self: start;
}

#w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea4e-0ec4710d {
  justify-self: center;
}

#field-4.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9b-0ec4f3bc, #Mes.w-node-_96282a62-25b4-d92c-2a3c-9f0448e56c9c-0ec4f3bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059a3-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059a6-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059a9-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ac-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059af-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b3-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b8-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059bd-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c2-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c7-0ec4f3bc {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059cc-0ec4f3bc {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059d3-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d8-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059dd-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e2-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e7-0ec4f3bc {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059ee-0ec4f3bc {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b059f5-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059fa-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ff-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a04-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a09-0ec4f3bc {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a0e-0ec4f3bc {
  justify-self: center;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a15-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1a-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1f-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a24-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a29-0ec4f3bc {
  justify-self: start;
}

#w-node-ae8cf23c-68ce-a63d-a045-d33301b05a2e-0ec4f3bc {
  justify-self: center;
}

#w-node-b248c9cf-1143-f5ae-c8af-87b0056639a3-62009f23, #w-node-d0bed9c0-0126-18a6-70c1-68fa00f23973-62009f23, #w-node-d0bed9c0-0126-18a6-70c1-68fa00f2397b-62009f23, #w-node-f2d46687-cfce-5931-598f-bad85c8226f1-62009f23, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e207-62009f23, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e217-62009f23, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e21f-62009f23, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e227-62009f23, #w-node-cc5f0be8-97d9-66dd-29d9-3cfbb223e22f-62009f23, #w-node-da12fab9-0598-699c-d18a-00412c955f94-62009f23 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1d2d85b0-5207-79cf-dd87-187d18b9952d-62009f23 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ffa2e592-c2a6-2094-0ced-bdd8f4868bbd-62009f23, #w-node-ab51fddf-c8fb-617c-c24a-f0dff72e276f-62009f23, #w-node-_869c406d-524c-50de-b207-cf560d3acf8e-62009f23, #w-node-_4e74ed13-f99b-add5-375c-3b5d8ad08a29-62009f23, #w-node-ddb3c4d1-5ae0-16ea-e22e-629e5f1a098f-62009f23, #w-node-_396f96b1-8aa7-9327-0e7d-0e96b74d51ed-62009f23, #w-node-d7cb5a12-2261-5bf1-23f3-aee8b8400c31-62009f23, #w-node-_82c1297a-90b1-fbbe-b262-96a6cee834d5-62009f23 {
  align-self: start;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f522-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f525-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f528-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f52b-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f52e-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f532-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f537-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f53c-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f541-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f546-20d4ae3f {
  justify-self: start;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f54b-20d4ae3f {
  justify-self: center;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f552-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f557-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f55c-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f561-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f566-20d4ae3f {
  justify-self: start;
}

#w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f56d-20d4ae3f {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_9c95f775-f746-6100-284f-1f128c748ff9-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c749003-0c84e88b, #w-node-_9c95f775-f746-6100-284f-1f128c749008-0c84e88b, #w-node-d00d7f06-de35-b5db-95ac-3ed841cf2960-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb882-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb886-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb88b-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb890-0c84e88b, #w-node-c16cf9ec-6425-befb-e25b-bc86c0ceb897-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e57-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e5b-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e60-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e65-0c84e88b, #w-node-b837a045-b35c-732e-ba37-930537511e6c-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42d3-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42d7-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42dc-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42e1-0c84e88b, #w-node-_6d105b7e-8703-549c-888a-a97d3cae42e8-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df676-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df67a-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df67f-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df684-0c84e88b, #w-node-_1bfe8d3e-c7a4-1360-7a96-a2782c9df68b-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a0b-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a0f-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a14-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a19-0c84e88b, #w-node-_74f9dccf-a88b-f9fd-2363-a1b723c35a20-0c84e88b, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdac-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb0-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb5-ff8ca75c, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdba-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371cd-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d1-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d6-ff8ca75c, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371db-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225973-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225977-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a22597c-ff8ca75c, #w-node-_3091842e-66e7-9180-1642-0bb21a225981-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb6e-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb72-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb77-ff8ca75c, #w-node-_9c99601c-7941-c918-efd1-39e8d060eb7c-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9f6-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9fa-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273f9ff-ff8ca75c, #w-node-_98ea9753-98b4-7d96-29ae-5521d273fa04-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c91240586-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c9124058a-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c9124058f-ff8ca75c, #w-node-_9a93f18f-dedc-4ac0-53e0-016c91240594-ff8ca75c, #w-node-_5938b16f-957e-850e-08e1-2f19d5394595-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394599-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539459e-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945a3-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ab-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945af-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945b4-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945b9-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945c1-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945c5-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ca-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945cf-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945d7-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945db-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945e0-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945e5-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945ed-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945f1-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945f6-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d53945fb-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394603-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394607-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d539460c-72e3a779, #w-node-_5938b16f-957e-850e-08e1-2f19d5394611-72e3a779, #w-node-_9c95f775-f746-6100-284f-1f128c748ff9-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c749003-63fa9d63, #w-node-_9c95f775-f746-6100-284f-1f128c749008-63fa9d63, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f532-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f537-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f53c-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f541-b5917794 {
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f546-b5917794 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f54b-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f552-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f557-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f55c-b5917794, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f561-b5917794 {
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f566-b5917794 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f56d-b5917794, #w-node-_9c95f775-f746-6100-284f-1f128c748ffe-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c749003-d58dde73, #w-node-_9c95f775-f746-6100-284f-1f128c749008-d58dde73, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfcd-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfd2-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfd7-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfdc-85e489cd {
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfe1-85e489cd {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfe6-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bfed-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bff2-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bff7-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67bffc-85e489cd {
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c001-85e489cd {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c008-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c00f-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c014-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c019-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c01e-85e489cd {
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c023-85e489cd {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c028-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c02f-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c034-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c039-85e489cd, #w-node-_45cb5100-26d5-746a-27fe-2268ec67c03e-85e489cd {
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c043-85e489cd {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_45cb5100-26d5-746a-27fe-2268ec67c048-85e489cd, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930517b-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930517f-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305184-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305189-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305191-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab6389305195-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930519a-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab638930519f-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051a7-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051ab-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051b0-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051b5-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051bd-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051c1-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051c6-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051cb-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051d3-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051d7-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051dc-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051e1-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051e9-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051ed-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051f2-3cf5d714, #w-node-_13f0dbd9-63ed-241a-3fc9-ab63893051f7-3cf5d714, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f69-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f6e-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f73-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f78-8eca33e7 {
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f7d-8eca33e7 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f82-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f89-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f8e-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f93-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f98-8eca33e7 {
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308f9d-8eca33e7 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fa4-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fab-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fb0-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fb5-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fba-8eca33e7 {
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fbf-8eca33e7 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fc4-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fcb-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fd0-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fd5-8eca33e7, #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fda-8eca33e7 {
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fdf-8eca33e7 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_323ee494-b7eb-beda-106b-b3f1ae308fe4-8eca33e7, #w-node-b289c186-f6ef-9037-f9ce-11820c7730e5-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730ea-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730ef-fe4cbb82, #w-node-b289c186-f6ef-9037-f9ce-11820c7730f4-fe4cbb82 {
    justify-self: stretch;
  }

  #w-node-b289c186-f6ef-9037-f9ce-11820c7730f9-fe4cbb82 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-b289c186-f6ef-9037-f9ce-11820c7730fe-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c768-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c76d-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c772-fe4cbb82, #w-node-_72700488-6631-27a7-66c9-e436e059c777-fe4cbb82 {
    justify-self: stretch;
  }

  #w-node-_72700488-6631-27a7-66c9-e436e059c77c-fe4cbb82 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_72700488-6631-27a7-66c9-e436e059c781-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0af2-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0af7-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0afc-fe4cbb82, #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b01-fe4cbb82 {
    justify-self: stretch;
  }

  #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b06-fe4cbb82 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_6fb47a82-b2be-4537-6167-618d1cfa0b0b-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbacd-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbad2-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbad7-fe4cbb82, #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbadc-fe4cbb82 {
    justify-self: stretch;
  }

  #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbae1-fe4cbb82 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-bcc214af-41ee-62fa-b5c8-a924d4acbae6-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd8b-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd90-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd95-fe4cbb82, #w-node-_92af79db-3232-0d95-ccaa-23323a39cd9a-fe4cbb82 {
    justify-self: stretch;
  }

  #w-node-_92af79db-3232-0d95-ccaa-23323a39cd9f-fe4cbb82 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_92af79db-3232-0d95-ccaa-23323a39cda4-fe4cbb82, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4296-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b429b-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42a0-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42a5-22b9f22b {
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42aa-22b9f22b {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42af-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42b6-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42bb-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42c0-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42c5-22b9f22b {
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42ca-22b9f22b {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42d1-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42d8-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42dd-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42e2-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42e7-22b9f22b {
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42ec-22b9f22b {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42f1-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42f8-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b42fd-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4302-22b9f22b, #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4307-22b9f22b {
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b430c-22b9f22b {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_80424d1c-a999-0cdf-f0e4-29cd3b3b4311-22b9f22b, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdac-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb0-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdb5-dfaf60b0, #w-node-_1e1302fa-7263-2098-97d7-4a84d507fdba-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371cd-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d1-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371d6-dfaf60b0, #w-node-_8235b42e-8b2b-28f4-4b4b-08395e5371db-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619477-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f261947b-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619480-dfaf60b0, #w-node-f81e5ad5-730b-c309-4d5e-f7a6f2619483-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7ad3-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7ad7-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7adc-dfaf60b0, #w-node-c07c2932-7968-71f1-dc46-76eb728b7adf-dfaf60b0, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cb3-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cb7-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cbc-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cc1-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cc9-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ccd-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cd2-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cd7-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cdf-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ce3-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ce8-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56ced-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cf5-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cf9-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56cfe-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d03-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d0b-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d0f-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d14-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d19-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d21-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d25-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d2a-ceafd40b, #w-node-_96282a62-25b4-d92c-2a3c-9f0448e56d2f-ceafd40b, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17993-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17998-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1799d-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a2-c3389374 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a7-c3389374 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ac-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b3-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b8-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179bd-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c2-c3389374 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c7-c3389374 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ce-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179d5-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179da-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179df-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e4-c3389374 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e9-c3389374 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ee-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179f5-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179fa-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ff-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a04-c3389374 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a09-c3389374 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a0e-c3389374, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17993-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17998-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe1799d-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a2-44b6eec0 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179a7-44b6eec0 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ac-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b3-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179b8-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179bd-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c2-44b6eec0 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179c7-44b6eec0 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ce-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179d5-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179da-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179df-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e4-44b6eec0 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179e9-44b6eec0 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ee-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179f5-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179fa-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe179ff-44b6eec0, #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a04-44b6eec0 {
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a09-44b6eec0 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_2cbb00ae-eea2-013c-a7bf-a3f5abe17a0e-44b6eec0, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9d3-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9d8-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9dd-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9e2-bc390529 {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9e7-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9ec-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dad-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db2-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db7-bc390529, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dbc-bc390529 {
    justify-self: stretch;
  }

  #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc1-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc6-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f3-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f8-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9fd-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea02-bc390529 {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea07-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea0e-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea15-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1a-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1f-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea24-bc390529 {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea29-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea2e-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e910-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e915-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91a-bc390529, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91f-bc390529 {
    justify-self: stretch;
  }

  #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e924-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e929-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea35-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3a-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3f-bc390529, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea44-bc390529 {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea49-bc390529 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea4e-bc390529, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b3-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b8-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059bd-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c2-c3d9f509 {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c7-c3d9f509 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059cc-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d3-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d8-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059dd-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e2-c3d9f509 {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e7-c3d9f509 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ee-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059f5-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059fa-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ff-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a04-c3d9f509 {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a09-c3d9f509 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a0e-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a15-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1a-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1f-c3d9f509, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a24-c3d9f509 {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a29-c3d9f509 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a2e-c3d9f509, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dad-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db2-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87db7-0ec4710d, #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dbc-0ec4710d {
    justify-self: stretch;
  }

  #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc1-0ec4710d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_4fe667e8-7194-4529-d0a9-4ace0ec87dc6-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f3-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9f8-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adce9fd-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea02-0ec4710d {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea07-0ec4710d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea0e-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea15-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1a-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea1f-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea24-0ec4710d {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea29-0ec4710d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea2e-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e910-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e915-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91a-0ec4710d, #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e91f-0ec4710d {
    justify-self: stretch;
  }

  #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e924-0ec4710d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-_6094b1da-c2e1-85f6-d1ce-4915e3e8e929-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea35-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3a-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea3f-0ec4710d, #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea44-0ec4710d {
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea49-0ec4710d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-a29c6e1e-6c96-111f-ec80-e8bd4adcea4e-0ec4710d, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b3-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059b8-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059bd-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c2-0ec4f3bc {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059c7-0ec4f3bc {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059cc-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d3-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059d8-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059dd-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e2-0ec4f3bc {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059e7-0ec4f3bc {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ee-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059f5-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059fa-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b059ff-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a04-0ec4f3bc {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a09-0ec4f3bc {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a0e-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a15-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1a-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a1f-0ec4f3bc, #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a24-0ec4f3bc {
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a29-0ec4f3bc {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-ae8cf23c-68ce-a63d-a045-d33301b05a2e-0ec4f3bc, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f532-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f537-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f53c-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f541-20d4ae3f {
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f546-20d4ae3f {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f54b-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f552-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f557-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f55c-20d4ae3f, #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f561-20d4ae3f {
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f566-20d4ae3f {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: stretch;
  }

  #w-node-d5ad246c-cc5e-0e42-7bee-c8fbeea7f56d-20d4ae3f {
    justify-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-33679537, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-b00e01d8, #w-node-aaa754ae-a141-2e11-1cec-633e1abe874a-7638fbc5, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-b22640cd, #w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d70-5232c2f5, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-62009f23 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-33679537, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-b00e01d8, #w-node-aaa754ae-a141-2e11-1cec-633e1abe874a-7638fbc5, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-b22640cd, #w-node-e55562a6-36a1-ca4b-0c09-ec3d2b1f4d70-5232c2f5, #w-node-_1d2d85b0-5207-79cf-dd87-187d18b994f2-62009f23 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Kixicredito main';
  src: url('../fonts/kixicredito-main.eot') format('embedded-opentype'), url('../fonts/kixicredito-main.woff') format('woff'), url('../fonts/kixicredito-main.ttf') format('truetype'), url('../fonts/kixicredito-main.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Regular Material';
  src: url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-HeavyItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-UltralightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'SF Pro';
  src: url('../fonts/SF-Pro-Display-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Material';
  src: url('../fonts/MaterialIconsOutlined-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}