/* =========================================================
   SURFBOARD ORDER FORM — Local overrides over /styles.css
   ========================================================= */

.wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.sd-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 16px;
}

.sd-nav__item {
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.sd-nav__item:hover {
  border-color: rgba(10, 61, 98, 0.25);
  box-shadow: 0 0 0 4px rgba(10, 61, 98, 0.06);
}

.sd-nav__item.is-active {
  border-color: rgba(10, 61, 98, 0.28);
  background: rgba(10, 61, 98, 0.06);
  color: var(--fbos-blue);
}

.header {
  margin-bottom: 12px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-top > * {
  min-width: 0;
}

.brand.brand--demo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.brand.brand--demo > div:last-child {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand.brand--demo h1 {
  margin: 0;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand.brand--demo p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}
   
.lang-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 1px;
  padding: 2px 3px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.92);
  flex: 0 0 auto;
  margin-left: auto;
}

.lang-toggle__btn {
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  width: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle__btn.is-active {
  background: #fff;
  color: var(--fbos-blue);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.fbos-logo-slot {
  width: 64px;
  height: 64px;
  min-height: 0;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  padding: 0;
}

.fbos-logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fbos-logo-slot--text {
  background:
    radial-gradient(circle at 24% 20%, rgba(20, 73, 130, 0.16), transparent 40%),
    linear-gradient(135deg, #ffffff, #eef4ff);
  color: var(--fbos-blue);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.card {
  padding: 20px;
}

.intro-copy {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

#fbosForm {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 14px;
}

.form-section__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.field {
  display: grid;
  gap: 10px;
  margin: 0;
}

.field .label {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  color: #334155;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(10, 61, 98, 0.5);
  box-shadow: 0 0 0 4px rgba(10, 61, 98, 0.08);
}

.field-grid {
  display: grid;
  gap: 12px;
}

.volume-feedback {
  min-height: 20px;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.volume-feedback.is-valid {
  background: rgba(10, 61, 98, 0.06);
  border: 1px solid rgba(10, 61, 98, 0.12);
  color: var(--fbos-blue);
  font-size: 14px;
  font-weight: 700;
}

.volume-feedback.is-hint {
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #64748b;
}

.volume-feedback strong {
  color: var(--text);
  font-weight: 900;
}

.volume-label {
  display: block;
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(10, 61, 98, 0.72);
}

.volume-value {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--fbos-blue);
  letter-spacing: -0.02em;
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 18px;
}

.btn {
  width: 100%;
  min-height: 52px;
  border: none;
  background: var(--fbos-blue);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--fbos-blue-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 61, 98, 0.18);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.btn--secondary:hover {
  background: #f8fafc;
}

.status {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.status.err {
  color: #b91c1c;
  font-weight: 700;
}

.status.ok {
  color: #0a7c3a;
  font-weight: 700;
}

.footer {
  padding: 20px 4px 28px;
  text-align: center;
  color: var(--muted);
}

.placeholder-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.canvas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.canvas-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.btn.btn-small {
  width: auto;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.history-list {
  display: grid;
  gap: 14px;
}

.history-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.history-card__cta {
  pointer-events: none;
}

.state-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 2px 10px;
}

.state-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.state-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.state-empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  background: rgba(248, 250, 252, 0.7);
}

.action-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.action-card__top,
.action-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.action-card__bottom {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.action-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.btn-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 61, 98, 0.24);
  border-radius: 12px;
  background: var(--fbos-blue);
  color: #fff;
  min-height: 38px;
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-action:hover:not(:disabled) {
  background: #0e4f7a;
  border-color: rgba(10, 61, 98, 0.36);
}

.btn-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.action-id {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.action-title {
  margin: 12px 0 4px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 900;
}

.action-desc {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.4;
  font-size: 14px;
}

.action-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

.badge--tag {
  height: 22px;
  padding: 0 9px;
  font-size: 11px;
  border-color: rgba(10, 61, 98, 0.22);
  background: rgba(10, 61, 98, 0.08);
  color: #0a3d62;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.48);
}

.confirm-card {
  width: min(430px, 100%);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.confirm-body {
  padding: 20px 20px 14px;
}

.confirm-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.confirm-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.confirm-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.confirm-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--fbos-blue);
  flex: 0 0 auto;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
}

.confirm-btn {
  appearance: none;
  border-radius: 12px;
  min-height: 40px;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.confirm-btn--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.confirm-btn--primary {
  border: 1px solid rgba(10, 61, 98, 0.24);
  background: var(--fbos-blue);
  color: #fff;
}

.confirm-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.submit-confirm {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.48);
}

.submit-confirm[aria-hidden="true"] {
  display: none;
}

.submit-confirm__card {
  width: min(440px, 100%);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.submit-confirm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.submit-confirm__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.submit-confirm__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.submit-confirm__copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.submit-confirm__summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.submit-confirm__summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.submit-confirm__summary strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.submit-confirm__actions {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  align-items: end;
  padding: 12px;
  background: rgba(15, 23, 42, 0.45);
}

.order-modal[aria-hidden="true"] {
  display: none;
}

.order-modal__card {
  width: 100%;
  max-height: calc(100vh - 24px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.order-modal__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.order-modal__head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-modal__close,
.order-modal__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.order-modal__icon-btn {
  color: var(--fbos-blue);
}

.order-modal__icon-btn svg {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.order-modal__close:disabled,
.order-modal__icon-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.order-modal__body {
  padding: 14px;
}

.order-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.order-modal__eyebrow {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-modal__id {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.order-modal__state {
  flex: 0 0 auto;
  max-width: 44%;
  padding: 7px 9px;
  border: 1px solid rgba(10, 61, 98, 0.14);
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  color: var(--fbos-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.order-modal__summary {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.order-modal__metric {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.order-modal__metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.order-modal__metric strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.order-modal__metric--price {
  border-color: rgba(10, 61, 98, 0.18);
  background: rgba(10, 61, 98, 0.07);
}

.order-modal__section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-modal__section-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-modal__list {
  display: grid;
  gap: 8px;
}

.order-modal__row {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.order-modal__row > span:first-child {
  color: var(--muted);
  font-weight: 800;
}

.order-modal__row strong {
  min-width: 0;
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.order-modal__row--stack {
  grid-template-columns: 1fr;
  gap: 4px;
}

.order-modal__status {
  display: none;
  margin-top: 14px;
  color: #991b1b;
  font-size: 13px;
  font-weight: 800;
}

.order-pricing {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-pricing__title {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 900;
}

.order-pricing__grid {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.order-pricing__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 32px;
}

.order-pricing__row span {
  color: var(--muted);
  font-weight: 800;
}

.order-pricing__row strong {
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

.order-pricing__row--total {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.order-pricing__field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.order-pricing__input,
.order-pricing__textarea {
  width: 100%;
  box-sizing: border-box;
}

.order-pricing__textarea {
  resize: vertical;
}

.order-pricing__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.order-pricing__actions .btn-action {
  width: 100%;
}

.order-pricing__lock {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.order-pricing__status {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.order-pricing__status--ok {
  color: #0a7c3a;
}

.order-pricing__status--error {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

.order-comments {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-comments__title {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 900;
}

.order-comments__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.order-comments__item,
.order-comments__empty {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  font-size: 14px;
  line-height: 1.4;
}

.order-comments__meta {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-comments__composer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-comments__textarea {
  min-height: 90px;
  resize: vertical;
}

.order-comments__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.order-comments__by {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.order-comments__actions .btn-action {
  width: 100%;
}

.order-comments__status {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.order-comments__status--error {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

@media (min-width: 640px) {
  .brand.brand--demo {
    gap: 12px;
  }

  .brand.brand--demo h1 {
    font-size: 28px;
  }

  .brand.brand--demo p {
    font-size: 16px;
  }

  .fbos-logo-slot {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 22px;
  }

  .card {
    padding: 24px;
  }

  .field-grid--double {
    grid-template-columns: 1fr 1fr;
  }

  .field-grid--triple {
    grid-template-columns: repeat(3, 1fr);
  }

  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-modal {
    place-items: center;
    padding: 18px;
  }

  .order-modal__card {
    width: min(700px, 100%);
    max-height: min(880px, calc(100vh - 36px));
    border-radius: 18px;
  }

  .order-modal__body {
    padding: 16px;
  }

  .order-modal__summary {
    grid-template-columns: 1.15fr 1fr 0.75fr;
  }

  .order-modal__list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-modal__row--stack {
    grid-column: 1 / -1;
  }

  .order-pricing__actions,
  .order-comments__actions {
    flex-direction: row;
    align-items: center;
  }

  .order-pricing__actions .btn-action,
  .order-comments__actions .btn-action {
    width: auto;
  }

  .order-comments__by {
    width: auto;
  }
}
