@font-face {
  font-family: "HELIOS";
  src: url("/fonts/helios-extended-light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "HELIOS";
  src: url("/fonts/helios-extended.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "HELIOS";
  src: url("/fonts/helios-extended-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "HELIOS";
  src: url("/fonts/helios-extended-black.woff") format("woff");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --omate-ink: #333333;
  --omate-accent: #e09130;
  --omate-border: #d4d7db;
  --tmst-container-width: 1199px;
  --text-color: #333333;
  --background-color: #f0f0f0;
  --box-background-color: #ffffff;
  --box-background-color-inner: #f2f2f2;
  --border-color: rgba(51, 51, 51, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--omate-ink);
  font-family: "HELIOS", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--omate-accent);
  outline-offset: 3px;
}

/* Original Tilda Members sign-in shell */
.business-sign-page {
  overflow: hidden;
  background: #fff;
}

.tlk-form {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.tlk-form__container-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  width: 40%;
  max-width: 40%;
  min-width: 30%;
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  padding: 46px 25px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-padding-block: 28px;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.tlk-form__container {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.tlk-form__image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tlk-form__image-wrap {
  display: inline-block;
  width: 100%;
  max-width: 150px;
}

.tlk-form__image img {
  display: block;
  width: 100%;
  height: auto;
}

.tlk-form__title {
  margin: 0 0 30px;
  color: var(--omate-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.tlk-form__wrap {
  padding-bottom: 15px;
}

.tlk-form__item {
  position: relative;
  width: 100%;
}

.tlk-form__item + .tlk-form__item {
  margin-top: 20px;
}

.tlk-input-title {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--omate-ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  opacity: 0.6;
}

.tlk-input {
  display: block;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--omate-border);
  border-radius: 12px;
  background: transparent;
  color: var(--omate-ink);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tlk-input::placeholder {
  color: var(--omate-accent);
  opacity: 1;
}

.tlk-input:focus {
  border-color: var(--omate-accent);
  box-shadow: 0 0 0 3px rgba(224, 145, 48, 0.12);
}

.tlk-input:read-only {
  opacity: 0.55;
}

.tlk-form__submit-wrap {
  margin-top: 18px;
  text-align: center;
}

.tlk-btn {
  position: relative;
  min-width: 146px;
  height: 45px;
  padding: 10px 50px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--omate-ink);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.tlk-btn:hover {
  background: var(--omate-accent);
  color: var(--omate-ink);
}

.tlk-btn:disabled {
  cursor: wait;
  opacity: 0.6;
}

.tlk-form__wrap-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 8px;
  row-gap: 5px;
  margin-top: 32px;
  text-align: center;
}

.tlk-form__wrap-links,
.tlk-form__link,
.tlk-form__sub-text {
  color: var(--omate-ink);
  font-size: 14px;
  line-height: 20px;
}

.tlk-form__link,
.tlk-form__sub-text a {
  color: var(--omate-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--omate-ink);
}

.tlk-form__link:hover,
.tlk-form__sub-text a:hover {
  opacity: 0.7;
}

.tlk-form__sub-text {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  word-break: break-word;
}

.business-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--omate-ink);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.business-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--omate-accent);
}

.business-check a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.business-message {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.business-message.is-visible {
  display: block;
}

.business-message.is-error {
  background: #f95d51;
  color: #fff;
}

.business-message.is-success {
  background: #62c584;
  color: #fff;
}

.tlk-bg-filter {
  position: relative;
  flex: 1 1 auto;
  min-height: 100vh;
  margin-left: -8px;
  background: #f1f1f1 url("/images/tild3434-3632-4361-b265-373861323064__jit07559.jpg") center / cover no-repeat;
}

.tlk-bg-filter__bg {
  width: 100%;
  height: 100%;
}

.business-sign-page--register .tlk-form__container-wrap {
  align-items: flex-start;
}

.business-sign-page--register .tlk-form__container {
  padding: 15px 0;
}

.business-sign-page--register .tlk-form__image {
  margin-bottom: 12px;
}

.business-sign-page--register .tlk-form__title {
  margin-bottom: 22px;
}

.business-sign-page--register .tlk-form__item + .tlk-form__item {
  margin-top: 12px;
}

.business-sign-page--register .tlk-input-title {
  margin-bottom: 3px;
}

.business-sign-page--register .tlk-form__wrap-links {
  margin-top: 20px;
}

/* Original Tilda Members store/account system */
.business-account-page {
  min-height: 100vh;
  background: var(--background-color);
}

.tmst-main__card-documents {
  width: 100%;
  margin-top: 20px;
}

.business-documents-intro {
  margin: 0 0 18px;
  color: #77736d;
  font-size: 14px;
}

.business-documents {
  display: grid;
}

.business-document {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #dfddd7;
}

.business-document__type {
  color: #e09130;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.business-document__main h3 {
  margin: 0;
  color: #333;
  font-size: 16px;
}

.business-document__main p {
  margin: 5px 0 0;
  color: #77736d;
  font-size: 12px;
}

.business-document__download {
  border-bottom: 1px solid #e09130;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.business-document__download span {
  color: #e09130;
  margin-left: 6px;
}

@media (max-width: 640px) {
  .business-document {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .business-document__download {
    grid-column: 2;
    justify-self: start;
  }
}

.tmst-wrap {
  min-height: 100vh;
  padding-bottom: 48px;
}

.tmst-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--tmst-container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.tmst-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 48px;
  margin-bottom: 42px;
  color: var(--text-color);
  font-weight: 400;
}

.tmst-breadcrumbs__home {
  display: flex;
  width: 14px;
  height: 14px;
  color: var(--text-color);
}

.tmst-breadcrumbs__home svg {
  width: 100%;
  height: 100%;
}

.tmst-breadcrumbs__item {
  color: var(--text-color);
  text-decoration: none;
}

.tmst-breadcrumbs__item_current {
  opacity: 0.5;
}

.tmst-account-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.tmst-account-heading h1 {
  margin: 0;
  color: var(--text-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.tmst-account-heading p {
  margin: 8px 0 0;
  font-size: 15px;
  opacity: 0.6;
}

.tmst-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-left: auto;
  padding: 4px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
  font-family: inherit;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
}

.tmst-button_secondary {
  border-color: #000;
  background: #fff;
  color: #000;
}

.tmst-button_secondary:hover {
  border-color: var(--omate-accent);
  color: var(--omate-accent);
}

.tmst-button_primary {
  border-color: var(--omate-accent);
  background: var(--omate-accent);
  color: #fff;
}

.tmst-button_primary:hover {
  border-color: #c77819;
  background: #c77819;
}

.tmst-main {
  margin-bottom: 3em;
  color: var(--text-color);
  font-size: 16px;
}

.tmst-main__cards-container > * + * {
  margin-top: 20px;
}

.tmst-main__cards {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.tmst-main__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  background: var(--box-background-color);
  color: var(--text-color);
}

.tmst-main__card__header,
.tmst-main__card__body,
.tmst-main__card__footer {
  padding-right: 30px;
  padding-left: 30px;
}

.tmst-main__card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 26px;
}

.tmst-main__card__header_underline {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.tmst-main__card__title {
  margin: 0;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.tmst-main__card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 24px;
  color: var(--text-color);
  text-decoration: none;
}

.tmst-main__card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-bottom: 25px;
}

.tmst-main__card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
}

.tmst-main__card__link:hover {
  color: var(--omate-accent);
}

.tmst-main__card__link_secondary {
  opacity: 0.5;
}

.tmst-main__order__profile {
  display: grid;
  gap: 12px;
  margin: 0;
}

.tmst-main__order__profile > div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.4;
}

.tmst-main__order__profile dt {
  opacity: 0.5;
}

.tmst-main__order__profile dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 450;
}

.tmst-main__card-profile {
  align-self: start;
  width: 100%;
  min-height: 0;
  height: max-content;
}

.business-orders {
  display: grid;
  gap: 12px;
}

.business-order {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.business-order:hover,
.business-order.is-open {
  border-color: rgba(224, 145, 48, 0.62);
}

.business-order.is-open {
  box-shadow: 0 9px 26px rgba(51, 51, 51, 0.06);
}

.business-order__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.business-order__summary-main {
  min-width: 0;
}

.business-order__topline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.business-order__id {
  font-size: 16px;
  font-weight: 600;
}

.business-order__date {
  font-size: 14px;
  opacity: 0.52;
}

.business-order__preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.business-order__products {
  display: flex;
  min-width: 54px;
}

.business-order__products > * + * {
  margin-left: -8px;
}

.business-order__product-image,
.business-order__product-more,
.business-product-image--empty {
  position: relative;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: #f4f4f4;
  object-fit: cover;
}

.business-order__product-more,
.business-product-image--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(51, 51, 51, 0.56);
  font-size: 13px;
  font-weight: 600;
}

.business-order__preview-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  color: rgba(51, 51, 51, 0.62);
  font-size: 13px;
}

.business-order__status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--omate-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}

.business-order__status--confirmed,
.business-order__status--in_progress {
  background: rgba(60, 116, 81, 0.12);
  color: #3c7451;
}

.business-order__status--done {
  background: rgba(51, 51, 51, 0.09);
  color: #333;
}

.business-order__status--cancelled {
  background: rgba(168, 69, 50, 0.1);
  color: #a84532;
}

.business-order__summary-side {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  min-width: 144px;
}

.business-order__summary-side > strong {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.business-order__view {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(51, 51, 51, 0.66);
  font-size: 13px;
}

.business-order__view > span {
  color: var(--omate-accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.business-order.is-open .business-order__view > span {
  transform: rotate(90deg);
}

.business-order__details {
  padding: 22px 18px 18px;
  border-top: 1px solid var(--border-color);
  background: #fafafa;
}

.business-order__details[hidden] {
  display: none;
}

.business-order-details__status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.business-order-details__status p {
  margin: 0;
  color: rgba(51, 51, 51, 0.66);
  font-size: 13px;
  line-height: 1.45;
}

.business-order-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.75fr);
  gap: 28px;
}

.business-order-details__products h3,
.business-order-details__aside h4 {
  margin: 0 0 14px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.business-order-details__products ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-order-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 46px minmax(96px, auto);
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.business-order-product:first-child {
  padding-top: 0;
}

.business-order-product__image,
.business-order-product__image-wrap .business-product-image--empty {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border: 0;
  border-radius: 6px;
  object-fit: cover;
}

.business-order-product__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.business-order-product__title a {
  color: inherit;
  text-decoration: none;
}

.business-order-product__title a:hover {
  color: var(--omate-accent);
}

.business-order-product__variant,
.business-order-product__quantity small,
.business-order-product__price small {
  color: rgba(51, 51, 51, 0.54);
  font-size: 12px;
  line-height: 1.35;
}

.business-order-product__variant {
  margin-top: 4px;
}

.business-order-product__quantity,
.business-order-product__price {
  display: flex;
  flex-direction: column;
}

.business-order-product__quantity {
  align-items: center;
}

.business-order-product__price {
  align-items: flex-end;
  text-align: right;
}

.business-order-product__price strong {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.business-order-details__total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  font-size: 15px;
}

.business-order-details__total strong {
  font-weight: 600;
  text-align: right;
}

.business-order-details__aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.business-order-details__contacts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.business-order-details__contacts > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
}

.business-order-details__contacts dt {
  opacity: 0.5;
}

.business-order-details__contacts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.business-order-details__comment {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.business-order-details__timeline ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-order-details__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  min-height: 34px;
}

.business-order-details__timeline li:not(:last-child)::after {
  position: absolute;
  top: 12px;
  bottom: -12px;
  left: 5px;
  width: 1px;
  background: rgba(51, 51, 51, 0.16);
  content: "";
}

.business-order-details__timeline li > span {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 2px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background: #fafafa;
}

.business-order-details__timeline li.is-current > span {
  border-color: var(--omate-accent);
  background: var(--omate-accent);
}

.business-order-details__timeline li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.business-order-details__timeline strong,
.business-order-details__timeline time {
  font-size: 11px;
  line-height: 1.35;
}

.business-order-details__timeline strong {
  font-weight: 600;
}

.business-order-details__timeline time {
  opacity: 0.5;
}

.business-order-details__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.business-order-details__actions .tmst-button {
  min-height: 40px;
  margin: 0;
}

.business-order-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  margin-left: 7px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(224, 145, 48, 0.14);
  color: #a85e08;
  font-size: 12px;
  font-weight: 600;
  vertical-align: 2px;
}

.business-order-count:empty {
  display: none;
}

.business-empty,
.business-loading {
  margin: 0;
  line-height: 1.5;
  opacity: 0.6;
}

.business-loading {
  padding: 30px 0;
}

.tmst-profile-content-wrapper {
  margin-top: 20px;
  padding: 30px;
  background: var(--box-background-color);
}

.tmst-profile-content-wrapper[hidden] {
  display: none;
}

.tmst-profile-title {
  margin: 0 0 26px;
  font-size: 20px;
  font-weight: 450;
  line-height: 1;
}

.tmst-profile-content {
  display: flex;
  gap: 100px;
}

.tmst-profile-content__left,
.tmst-profile-content__right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 15px;
}

.tlk-profile__item .tlk-input-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 450;
  line-height: 20px;
  opacity: 0.5;
}

.tlk-profile__item .tlk-input {
  max-width: 560px;
  height: 44px;
  border-radius: 4px;
}

.tlk-profile__item textarea.tlk-input {
  min-height: 88px;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}

.business-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tlk-profile__buttons {
  display: flex;
  max-width: 560px;
  gap: 8px;
  margin-top: 34px;
}

.tlk-profile__buttons .tlk-btn {
  width: 100%;
  height: 47px;
  border-radius: 6px;
  font-size: 14px;
}

.tlk-profile__close-save {
  background: #000;
  color: #fff;
}

.tlk-profile__cancel-button {
  border: 1px solid #e6e6e6;
  background: #f1f1f1;
  color: var(--text-color);
}

@media (max-width: 1023px) {
  .tlk-form__container-wrap {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .tlk-form__container-wrap {
    max-width: 70%;
  }

  .tmst-main__cards {
    grid-template-columns: 1fr;
  }

  .business-order-details__grid {
    grid-template-columns: 1fr;
  }

  .tmst-profile-content {
    flex-direction: column;
    gap: 20px;
  }

  .tlk-profile__buttons {
    max-width: none;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .business-sign-page {
    overflow-y: auto;
  }

  .tlk-form {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .tlk-form__container-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
    max-height: none;
    min-height: 100svh;
    padding: 38px 22px;
    overflow: visible;
    scrollbar-gutter: auto;
  }

  .tlk-bg-filter {
    display: none;
  }

  .business-sign-page--register .tlk-form__container {
    padding: 0;
  }

  .tmst-breadcrumbs {
    padding-top: 34px;
    margin-bottom: 32px;
  }

  .tmst-account-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tmst-account-heading h1 {
    font-size: 26px;
  }

  .tmst-account-heading .tmst-button {
    margin-left: 0;
  }

  .tmst-main__card__header,
  .tmst-main__card__body,
  .tmst-main__card__footer,
  .tmst-profile-content-wrapper {
    padding-right: 22px;
    padding-left: 22px;
  }

  .business-form__grid {
    grid-template-columns: 1fr;
  }

  .business-order__summary {
    grid-template-columns: 1fr;
  }

  .business-order__summary-side {
    align-items: center;
    flex-direction: row;
    min-width: 0;
  }

  .business-order-product {
    grid-template-columns: 50px minmax(0, 1fr) 38px minmax(88px, auto);
  }

  .business-order-product__image,
  .business-order-product__image-wrap .business-product-image--empty {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

@media (max-width: 440px) {
  .business-order__summary {
    padding: 15px;
  }

  .business-order__products > :nth-child(3) {
    display: none;
  }

  .business-order__details {
    padding: 18px 15px 15px;
  }

  .business-order-details__status {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-order-product {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .business-order-product__image,
  .business-order-product__image-wrap .business-product-image--empty {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .business-order-product__quantity {
    align-items: flex-end;
  }

  .business-order-product__price {
    grid-column: 2 / -1;
    align-items: flex-start;
    padding-bottom: 2px;
    text-align: left;
  }

  .business-order-details__contacts > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .business-order-details__actions {
    flex-direction: column;
  }

  .business-order-details__actions .tmst-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
