
:root {
  --font-family-sans: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --line-height-headers: 1.15;
  --line-height-body: 1.5;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.8125rem;
  --font-size-m: 0.875rem;
  --font-size-l: 1rem;
  --font-size-xl: 1.125rem;
  --font-size-xxl: 1.25rem;
  --font-size-xxxl: 1.5rem;
  --font-size-xxxxl: 2rem;
  --color-text-header: #1A1A1A;
  --color-text-body: #333333;
  --color-text-muted: #777777;
  --space-xxxs: 0.25rem;
  --space-xxs: 0.5rem;
  --space-xs: 0.75rem;
  --space-s: 1rem;
  --space-m: 1.25rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 2.5rem;
  --space-xxxl: 3rem;
  --space-xxxxl: 4rem;
  --color-red: #DA3A3B;
  --color-red-hover: #C52829;
  --color-red-light: #FEF0F0;
  --color-black: #1A1A1A;
  --color-primary: var(--color-red);
  --color-primary-hover: var(--color-red-hover);
  --color-primary-bg: var(--color-red-light);
  --color-secondary: var(--color-black);
  --color-secondary-hover: #333333;
  --color-white: #FFFFFF;
  --color-background: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-border: #E0E0E0;
  --color-border-light: #EEEEEE;
  --border-radius: 0.25rem;
  --border-radius-sm: 0.1875rem;
  --border: solid 1px var(--color-border);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
  --color-dark: var(--color-black);
  --color-light: #F0F0F0;
  --color-grey: #F5F5F5;
  --shadow-large: var(--shadow-card);
  --shadow-small: none;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: var(--color-background);
  color: var(--color-text-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-sans);
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-header);
  line-height: var(--line-height-headers);
}

h1 {
  font-size: var(--font-size-xxxxl);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-l);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 200ms;
}
a:hover, a:focus, a:active {
  color: var(--color-primary-rotate);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xxxs);
  height: 2.25rem;
  padding: 0 var(--space-s);
  border-radius: var(--border-radius);
  border: solid 1px var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text-body);
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: var(--font-size-s);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: background-color 150ms, border-color 150ms, color 150ms, box-shadow 150ms;
}
.btn:hover, .btn:active {
  border-color: var(--color-text-muted);
  background-color: #F9F9F9;
}
.btn:focus-visible {
  box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
}
.btn--primary {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--primary:hover, .btn--primary:active {
  color: var(--color-white);
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}
.btn--secondary {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}
.btn--secondary:hover, .btn--secondary:active {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--dark {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn--dark:hover, .btn--dark:active {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}
.btn--sm {
  height: 1.625rem;
  padding: 0 var(--space-xxs);
  font-size: var(--font-size-xs);
  border-radius: var(--border-radius-sm);
}
.btn--text {
  height: auto;
  padding: 0;
  color: var(--color-primary);
  background: none;
  border: none;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.btn--text:hover, .btn--text:active {
  color: var(--color-primary-hover);
  text-decoration: underline;
  background: none;
}
.btn--text-primary {
  height: auto;
  padding: 0;
  color: var(--color-text-body);
  background: none;
  border: none;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.btn--text-primary:hover, .btn--text-primary:active {
  color: var(--color-primary);
  text-decoration: underline;
  background: none;
}

a:not(.btn) {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 150ms;
}
a:not(.btn):hover, a:not(.btn):focus-visible {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.error-message {
  width: 100%;
  color: var(--color-primary);
  background-color: var(--color-primary-bg);
  padding: var(--space-xs) var(--space-s);
  border-radius: var(--border-radius);
  border-left: solid 3px var(--color-primary);
  font-size: var(--font-size-m);
  font-weight: 500;
}

.form {
  display: flex;
  flex-direction: column !important;
  justify-content: space-between;
  align-items: stretch !important;
  width: 100%;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.form__group {
  flex: 1;
}
.form label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xxxs);
  padding-left: 0;
}
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: var(--space-xxs) var(--space-xs);
  background-color: var(--color-surface);
  border: solid 1px var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-m);
  line-height: 1.5;
  color: var(--color-text-body);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #BBBBBB;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(218, 58, 59, 0.12);
}
.form input--invalid,
.form select--invalid,
.form textarea--invalid {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(218, 58, 59, 0.1);
}
.form input[type=submit] {
  width: fit-content;
  align-self: flex-end;
  padding-left: var(--space-m);
  padding-right: var(--space-m);
}
.form .form__checkbox-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.quote,
.business {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xs);
  background-color: var(--color-surface);
  border: var(--border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-xxs);
  padding: var(--space-xs) var(--space-s);
}
@media (min-width: 50rem) {
  .quote,
  .business {
    padding: var(--space-xs) var(--space-m);
  }
}
.quote__actions,
.business__actions {
  display: flex;
  flex: 0 0 auto;
  align-self: flex-start;
  gap: var(--space-xxs);
}

.card {
  background-color: var(--color-surface);
  border: var(--border);
  border-radius: var(--border-radius);
  padding: var(--space-xs) var(--space-s);
}
@media (min-width: 50rem) {
  .card {
    padding: var(--space-xs) var(--space-m);
  }
}

.star-item-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: var(--space-l);
}

.star-item-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--color-surface);
}
.star-item-group .card,
.star-item-group .star-item {
  border-radius: 0;
  border: none;
  border-bottom: solid 1px var(--color-border-light);
}
.star-item-group .card:last-child,
.star-item-group .star-item:last-child {
  border-bottom: none;
}

.star-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
  width: 100%;
  min-height: 50px;
  padding: var(--space-xs) var(--space-s);
  background-color: var(--color-surface);
}
.star-item div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}
.star-item div span a {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  font-weight: 600;
}
.star-item div h3 a {
  color: var(--color-text-header);
  font-size: var(--font-size-l);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.star-item div a:hover {
  text-decoration: underline;
}

.star-keyvalue tr td {
  padding: 0 var(--space-s);
}

.card__btn-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xxs);
}

.add-card {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-xs) var(--space-s);
  transition: background-color 150ms;
}
.add-card:hover {
  background-color: var(--color-primary-hover);
}

.product-checkbox {
  display: flex;
  flex-direction: row;
  gap: var(--space-xxxs);
}

.product-checkbox-subcategory-container {
  border: solid 1px var(--color-border);
  border-radius: var(--border-radius);
  margin: var(--space-xxs);
  padding: var(--space-s);
}

/**
 * tom-select.css (v2.4.1) — overrides for MySRC flat aesthetic
 */
.ts-control {
  padding: var(--space-xxs) var(--space-xs);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border: solid 1px var(--color-border);
  border-radius: var(--border-radius);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size-m);
  background-color: var(--color-surface);
  min-height: 2.5rem;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: calc(var(--space-xxxs)) var(--space-xxs);
}

.full .ts-control {
  background-color: var(--color-surface);
}

.disabled .ts-control,
.disabled .ts-control * {
  cursor: default !important;
}

.focus .ts-control {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(218, 58, 59, 0.12);
}

.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}

.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 2px 3px 2px 0;
  padding: 2px 8px;
  background: var(--color-primary-bg);
  color: var(--color-primary);
  border: solid 1px rgba(218, 58, 59, 0.2);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.ts-wrapper.multi .ts-control > div.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.ts-wrapper.multi.disabled .ts-control > div,
.ts-wrapper.multi.disabled .ts-control > div.active {
  color: var(--color-text-muted);
  background: var(--color-border-light);
  border-color: var(--color-border);
}

.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  box-shadow: none !important;
}

.ts-control > input::-ms-clear {
  display: none;
}

.ts-control > input:focus {
  outline: none !important;
}

.has-items .ts-control > input {
  margin: 0 4px !important;
}

.ts-control.rtl {
  text-align: right;
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}

.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}

.disabled .ts-control {
  opacity: 0.5;
  background-color: var(--color-background);
}

.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: solid 1px var(--color-border);
  background: var(--color-surface);
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.ts-dropdown [data-selectable] .highlight {
  background: var(--color-primary-bg);
  border-radius: 1px;
}

.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: var(--space-xxs) var(--space-xs);
}

.ts-dropdown .option,
.ts-dropdown [data-disabled],
.ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.ts-dropdown .optgroup-header {
  color: var(--color-text-header);
  background: var(--color-surface);
  cursor: default;
}

.ts-dropdown .active {
  background-color: var(--color-primary-bg);
  color: var(--color-primary);
}

.ts-dropdown .active.create {
  color: var(--color-primary);
}

.ts-dropdown .create {
  color: var(--color-text-muted);
}

.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}

.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid var(--color-border);
  border-color: var(--color-border) transparent var(--color-border) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}

.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}

.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}

.plugin-clear_button.form-select .clear-button,
.plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}

.plugin-clear_button.focus.has-items .clear-button,
.plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-background);
  border-radius: 3px 3px 0 0;
}

.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: var(--color-text-body);
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
}

.ts-wrapper .dropdown-header-close:hover {
  color: var(--color-black);
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border-color: var(--color-border);
}

.plugin-dropdown_input .dropdown-input {
  border: 1px solid var(--color-border);
  border-width: 0 0 1px;
  display: block;
  padding: 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}

.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}

.plugin-dropdown_input.has-items .items-placeholder,
.plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid var(--color-border-light);
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}

.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}

.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid var(--color-border);
  margin-left: 6px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: var(--color-border);
}

.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: transparent;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid var(--color-border);
  margin-right: 6px;
}

.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: var(--color-border);
}

.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: transparent;
}

:root {
  --ts-pr-clear-button: 0;
  --ts-pr-caret: 0;
  --ts-pr-min: .75rem;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: var(--color-text-body);
  font-family: inherit;
  line-height: 1.5;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: var(--color-surface);
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.container {
  width: 100%;
  padding-right: var(--space-s);
  padding-left: var(--space-s);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
@media (min-width: 50rem) {
  .container {
    padding-right: var(--space-m);
    padding-left: var(--space-m);
    max-width: 42rem;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  justify-content: space-between;
  align-items: center;
}
.header h1 {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-header);
}

body {
  min-height: 100vh;
  width: 100%;
  font-family: var(--font-family-sans);
  background-color: var(--color-background);
  color: var(--color-text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  height: 48px;
  padding: 0 var(--space-s);
  background-color: var(--color-black);
  z-index: 10;
}
header .header-title h3 {
  display: flex;
  align-items: center;
  gap: var(--space-xxxs);
  font-size: var(--font-size-l);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin: 0;
}
header .header-title h3 .header-logo {
  height: 22px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
header .header-title a {
  color: var(--color-white) !important;
  text-decoration: none !important;
}
header nav.header-nav ul {
  display: flex;
  flex-direction: row;
  gap: var(--space-xxs);
  list-style: none;
}
header nav.header-nav a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 var(--space-xxs);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  border-radius: var(--border-radius-sm);
  transition: color 150ms, background-color 150ms;
}
header nav.header-nav a:hover, header nav.header-nav a:active {
  color: var(--color-white) !important;
  background-color: rgba(255, 255, 255, 0.1);
}
header .header-center {
  flex-grow: 1;
}
header .header-session {
  display: flex;
  align-items: center;
}
header .header-session .btn--text {
  color: rgba(255, 255, 255, 0.7) !important;
}
header .header-session .btn--text:hover {
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 150ms;
}
.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform 200ms, opacity 200ms;
}

header.nav--open .nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
header.nav--open .nav-toggle .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
header.nav--open .nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 799px) {
  .nav-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }
  header nav.header-nav {
    position: fixed;
    top: 48px;
    right: 0;
    bottom: 0;
    width: 260px;
    max-width: 80vw;
    background-color: var(--color-black);
    padding: var(--space-s);
    transform: translateX(100%);
    transition: transform 200ms ease-out;
    z-index: 20;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  header nav.header-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  header nav.header-nav li {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.08);
  }
  header nav.header-nav a {
    display: flex !important;
    align-items: center;
    width: 100%;
    height: 44px;
    padding: 0 var(--space-xs);
    font-size: var(--font-size-s);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    border-radius: var(--border-radius);
    box-sizing: border-box;
  }
  header nav.header-nav a:hover, header nav.header-nav a:active {
    color: var(--color-white) !important;
    background-color: rgba(255, 255, 255, 0.08);
  }
  header.nav--open nav.header-nav {
    transform: translateX(0);
  }
  header.nav--open nav.header-nav::before {
    content: "";
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
  }
  .header-session {
    order: 2;
  }
  .star-item > span,
  .card > span {
    flex-wrap: wrap;
  }
  .btn {
    white-space: normal;
    text-align: center;
  }
}
main {
  padding-top: calc(48px + var(--space-l));
  padding-bottom: var(--space-xxl);
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
  width: 100%;
  padding-right: var(--space-s);
  padding-left: var(--space-s);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50rem) {
  main {
    padding-right: var(--space-m);
    padding-left: var(--space-m);
    max-width: 42rem;
  }
}

.color-white {
  color: var(--color-white);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 50rem) {
  header {
    padding: 0 var(--space-xl);
  }
  header nav.header-nav ul {
    gap: var(--space-xs);
  }
}
.logout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background-color: transparent;
  border: solid 1px transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  transition: color 150ms, background-color 150ms;
}
.logout-icon svg, .logout-icon img {
  display: block;
  margin: 0 auto;
}
.logout-icon:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.card--clickable {
  position: relative;
  cursor: pointer;
  transition: background-color 150ms, border-color 150ms;
}
.card--clickable:hover {
  background-color: var(--color-primary-bg);
  border-color: var(--color-primary);
}
.card--clickable a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card--clickable a:hover,
.card--clickable a:focus-visible {
  text-decoration: none !important;
}
.card--clickable .btn,
.card--clickable .btn--icon-delete,
.card--clickable button,
.card--clickable [data-action],
.card--clickable .business__actions,
.card--clickable .item-actions {
  position: relative;
  z-index: 2;
}

.btn--icon-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: solid 1px transparent;
  border-radius: var(--border-radius);
  color: var(--color-text-muted);
  font-size: var(--font-size-m);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 150ms, background-color 150ms, border-color 150ms;
}
.btn--icon-delete:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-bg);
  border-color: rgba(218, 58, 59, 0.2);
}
.btn--icon-delete:active {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.pricing-summary {
  border: var(--border);
  border-left: solid 3px var(--color-primary);
  border-radius: var(--border-radius);
  background-color: var(--color-surface);
  overflow: hidden;
}
.pricing-summary .pricing-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) var(--space-s);
  border-bottom: solid 1px var(--color-border-light);
  font-size: var(--font-size-m);
  color: var(--color-text-body);
}
.pricing-summary .pricing-summary__row:last-child {
  border-bottom: none;
}
.pricing-summary .pricing-summary__row b {
  color: var(--color-text-header);
  font-weight: 700;
}

trix-toolbar [data-trix-attribute=code],
trix-toolbar [data-trix-action=increaseNestingLevel],
trix-toolbar [data-trix-action=decreaseNestingLevel],
trix-toolbar [data-trix-action=undo],
trix-toolbar [data-trix-action=redo] {
  display: none !important;
}
